From 59eecdfd0d282fcf68935189cde7a011902c46d2 Mon Sep 17 00:00:00 2001 From: DariusIII Date: Thu, 18 Jan 2018 12:13:49 +0100 Subject: [PATCH] Change installation, remove tsv files and related tables, use migrations and seeding for them --- Changelog | 2 + _install/install_nntmux.php | 10 +- ...8_101314_create_category_regexes_table.php | 40 + ...102213_create_collection_regexes_table.php | 39 + ...18_102716_create_binaryblacklist_table.php | 41 + ...2018_01_18_103104_create_content_table.php | 45 + ...18_01_18_103520_create_forumpost_table.php | 41 + ...21_add_foreign_keys_to_forumpost_table.php | 35 + .../2018_01_18_103816_create_genres_table.php | 37 + .../2018_01_18_104345_create_groups_table.php | 46 + .../2018_01_18_104710_create_menu_table.php | 42 + ...55_create_release_naming_regexes_table.php | 39 + ...018_01_18_105834_create_settings_table.php | 38 + .../2018_01_18_111804_create_tmux_table.php | 35 + database/seeds/BinaryblacklistTableSeeder.php | 222 + database/seeds/CategoryRegexesTableSeeder.php | 34 + .../seeds/CollectionRegexesTableSeeder.php | 5444 ++++++++ database/seeds/ContentTableSeeder.php | 66 + database/seeds/DatabaseSeeder.php | 11 + database/seeds/ForumpostTableSeeder.php | 38 + database/seeds/GenresTableSeeder.php | 1067 ++ database/seeds/GroupsTableSeeder.php | 3272 +++++ database/seeds/MenuTableSeeder.php | 255 + .../seeds/ReleaseNamingRegexesTableSeeder.php | 10441 ++++++++++++++++ database/seeds/SettingsTableSeeder.php | 1483 +++ database/seeds/TmuxTableSeeder.php | 556 + .../db/schema/data/10-binaryblacklist.tsv | 19 - .../db/schema/data/10-category_regexes.tsv | 2 - .../db/schema/data/10-collection_regexes.tsv | 603 - resources/db/schema/data/10-content.tsv | 4 - resources/db/schema/data/10-forumpost.tsv | 2 - resources/db/schema/data/10-genres.tsv | 150 - resources/db/schema/data/10-groups.tsv | 204 - resources/db/schema/data/10-menu.tsv | 23 - .../schema/data/10-release_naming_regexes.tsv | 1158 -- resources/db/schema/data/10-settings.tsv | 164 - resources/db/schema/data/10-tmux.tsv | 77 - resources/db/schema/mysql-ddl.sql | 251 - tests/Install/InstallTest.php | 16 +- 39 files changed, 23385 insertions(+), 2667 deletions(-) create mode 100644 database/migrations/2018_01_18_101314_create_category_regexes_table.php create mode 100644 database/migrations/2018_01_18_102213_create_collection_regexes_table.php create mode 100644 database/migrations/2018_01_18_102716_create_binaryblacklist_table.php create mode 100644 database/migrations/2018_01_18_103104_create_content_table.php create mode 100644 database/migrations/2018_01_18_103520_create_forumpost_table.php create mode 100644 database/migrations/2018_01_18_103521_add_foreign_keys_to_forumpost_table.php create mode 100644 database/migrations/2018_01_18_103816_create_genres_table.php create mode 100644 database/migrations/2018_01_18_104345_create_groups_table.php create mode 100644 database/migrations/2018_01_18_104710_create_menu_table.php create mode 100644 database/migrations/2018_01_18_105455_create_release_naming_regexes_table.php create mode 100644 database/migrations/2018_01_18_105834_create_settings_table.php create mode 100644 database/migrations/2018_01_18_111804_create_tmux_table.php create mode 100644 database/seeds/BinaryblacklistTableSeeder.php create mode 100644 database/seeds/CategoryRegexesTableSeeder.php create mode 100644 database/seeds/CollectionRegexesTableSeeder.php create mode 100644 database/seeds/ContentTableSeeder.php create mode 100644 database/seeds/ForumpostTableSeeder.php create mode 100644 database/seeds/GenresTableSeeder.php create mode 100644 database/seeds/GroupsTableSeeder.php create mode 100644 database/seeds/MenuTableSeeder.php create mode 100644 database/seeds/ReleaseNamingRegexesTableSeeder.php create mode 100644 database/seeds/SettingsTableSeeder.php create mode 100644 database/seeds/TmuxTableSeeder.php delete mode 100755 resources/db/schema/data/10-binaryblacklist.tsv delete mode 100755 resources/db/schema/data/10-category_regexes.tsv delete mode 100755 resources/db/schema/data/10-collection_regexes.tsv delete mode 100755 resources/db/schema/data/10-content.tsv delete mode 100755 resources/db/schema/data/10-forumpost.tsv delete mode 100755 resources/db/schema/data/10-genres.tsv delete mode 100755 resources/db/schema/data/10-groups.tsv delete mode 100755 resources/db/schema/data/10-menu.tsv delete mode 100755 resources/db/schema/data/10-release_naming_regexes.tsv delete mode 100755 resources/db/schema/data/10-settings.tsv delete mode 100755 resources/db/schema/data/10-tmux.tsv diff --git a/Changelog b/Changelog index 29a480b12..d420ef3c8 100755 --- a/Changelog +++ b/Changelog @@ -1,3 +1,5 @@ +2018-01-18 DariusIII + * Chg: Change installation, remove tsv files and related tables, use migrations and seeding for them 2018-01-17 DariusIII * Fix: Fix installation test * Chg: Update newznab_api_specification.txt to version 0.6-NNTmux diff --git a/_install/install_nntmux.php b/_install/install_nntmux.php index c1844703a..4946cc093 100644 --- a/_install/install_nntmux.php +++ b/_install/install_nntmux.php @@ -97,14 +97,18 @@ if (! $error) { ); $pdo->exec('SET FOREIGN_KEY_CHECKS=0;'); + try { $DbSetup->processSQLFile(); // Setup default schema - $DbSetup->loadTables(); // Load default data files - } catch (\PDOException $err) { + ColorCLI::doEcho(ColorCLI::header('Migrating tables and populating them')); + passthru('php '.NN_ROOT.'artisan migrate'); + passthru('php '.NN_ROOT.'artisan db:seed'); + } catch (\RuntimeException $err){ $error = true; - ColorCLI::doEcho(ColorCLI::error('Error inserting: ('.$err->getMessage().')')); + ColorCLI::doEcho(ColorCLI::error('Error (' . $err->getMessage() . ')')); } + if (! $error) { // Check one of the standard tables was created and has data. $dbInstallWorked = false; diff --git a/database/migrations/2018_01_18_101314_create_category_regexes_table.php b/database/migrations/2018_01_18_101314_create_category_regexes_table.php new file mode 100644 index 000000000..d794fc28a --- /dev/null +++ b/database/migrations/2018_01_18_101314_create_category_regexes_table.php @@ -0,0 +1,40 @@ +increments('id'); + $table->string('group_regex', 255)->default('\'\'')->index('ix_category_regexes_group_regex')->comment('This is a regex to match against usenet groups'); + $table->string('regex', 5000)->default('\'\'')->comment('Regex used to match a release name to categorize it'); + $table->boolean('status')->default(1)->index('ix_category_regexes_status')->comment('1=ON 0=OFF'); + $table->string('description', 1000)->default('\'\'')->comment('Optional extra details on this regex'); + $table->integer('ordinal')->default(0)->index('ix_category_regexes_ordinal')->comment('Order to run the regex in'); + $table->smallInteger('categories_id')->unsigned()->default(10)->index('ix_category_regexes_categories_id')->comment('Which categories id to put the release in'); + }); + + DB::unprepared('ALTER TABLE category_regexes AUTO_INCREMENT 100000'); + } + + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::drop('category_regexes'); + } + +} diff --git a/database/migrations/2018_01_18_102213_create_collection_regexes_table.php b/database/migrations/2018_01_18_102213_create_collection_regexes_table.php new file mode 100644 index 000000000..3690b4f03 --- /dev/null +++ b/database/migrations/2018_01_18_102213_create_collection_regexes_table.php @@ -0,0 +1,39 @@ +increments('id'); + $table->string('group_regex', 255)->default('\'\'')->index('ix_collection_regexes_group_regex')->comment('This is a regex to match against usenet groups'); + $table->string('regex', 5000)->default('\'\'')->comment('Regex used for collection grouping'); + $table->boolean('status')->default(1)->index('ix_collection_regexes_status')->comment('1=ON 0=OFF'); + $table->string('description', 1000)->comment('Optional extra details on this regex'); + $table->integer('ordinal')->default(0)->index('ix_collection_regexes_ordinal')->comment('Order to run the regex in'); + }); + + DB::unprepared('ALTER TABLE collection_regexes AUTO_INCREMENT 100000'); + } + + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::drop('collection_regexes'); + } + +} diff --git a/database/migrations/2018_01_18_102716_create_binaryblacklist_table.php b/database/migrations/2018_01_18_102716_create_binaryblacklist_table.php new file mode 100644 index 000000000..ec3204527 --- /dev/null +++ b/database/migrations/2018_01_18_102716_create_binaryblacklist_table.php @@ -0,0 +1,41 @@ +increments('id'); + $table->string('groupname')->nullable()->index('ix_binaryblacklist_groupname'); + $table->string('regex', 2000); + $table->integer('msgcol')->unsigned()->default(1); + $table->integer('optype')->unsigned()->default(1); + $table->integer('status')->unsigned()->default(1)->index('ix_binaryblacklist_status'); + $table->string('description', 1000)->nullable(); + $table->date('last_activity')->nullable(); + }); + + DB::unprepared('ALTER TABLE binaryblacklist AUTO_INCREMENT 1000001'); + } + + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::drop('binaryblacklist'); + } + +} diff --git a/database/migrations/2018_01_18_103104_create_content_table.php b/database/migrations/2018_01_18_103104_create_content_table.php new file mode 100644 index 000000000..58a9fd39a --- /dev/null +++ b/database/migrations/2018_01_18_103104_create_content_table.php @@ -0,0 +1,45 @@ +integer('id', true); + $table->string('title', 255); + $table->string('url', 2000)->nullable(); + $table->text('body', 65535)->nullable(); + $table->string('metadescription', 1000); + $table->string('metakeywords', 1000); + $table->integer('contenttype'); + $table->integer('showinmenu'); + $table->integer('status'); + $table->integer('ordinal')->nullable(); + $table->integer('role')->default(0); + $table->index(['showinmenu','status','contenttype','role'], 'ix_showinmenu_status_contenttype_role'); + }); + + DB::unprepared('ALTER TABLE content AUTO_INCREMENT 1000001'); + } + + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::drop('content'); + } + +} diff --git a/database/migrations/2018_01_18_103520_create_forumpost_table.php b/database/migrations/2018_01_18_103520_create_forumpost_table.php new file mode 100644 index 000000000..b1cba830e --- /dev/null +++ b/database/migrations/2018_01_18_103520_create_forumpost_table.php @@ -0,0 +1,41 @@ +increments('id'); + $table->integer('forumid')->default(1); + $table->integer('parentid')->default(0)->index('parentid'); + $table->integer('users_id')->unsigned()->index('userid'); + $table->string('subject'); + $table->text('message', 65535); + $table->boolean('locked')->default(0); + $table->boolean('sticky')->default(0); + $table->integer('replies')->unsigned()->default(0); + $table->timestamps(); + }); + } + + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::drop('forumpost'); + } + +} diff --git a/database/migrations/2018_01_18_103521_add_foreign_keys_to_forumpost_table.php b/database/migrations/2018_01_18_103521_add_foreign_keys_to_forumpost_table.php new file mode 100644 index 000000000..d0fd6f050 --- /dev/null +++ b/database/migrations/2018_01_18_103521_add_foreign_keys_to_forumpost_table.php @@ -0,0 +1,35 @@ +foreign('users_id', 'FK_users_fp')->references('id')->on('users')->onUpdate('CASCADE')->onDelete('CASCADE'); + }); + } + + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('forumpost', function(Blueprint $table) + { + $table->dropForeign('FK_users_fp'); + }); + } + +} diff --git a/database/migrations/2018_01_18_103816_create_genres_table.php b/database/migrations/2018_01_18_103816_create_genres_table.php new file mode 100644 index 000000000..3b3c2a0b6 --- /dev/null +++ b/database/migrations/2018_01_18_103816_create_genres_table.php @@ -0,0 +1,37 @@ +integer('id', true); + $table->string('title'); + $table->integer('type')->nullable(); + $table->boolean('disabled')->default(0); + }); + + DB::unprepared('ALTER TABLE genres AUTO_INCREMENT 1000001'); + } + + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::drop('genres'); + } + +} diff --git a/database/migrations/2018_01_18_104345_create_groups_table.php b/database/migrations/2018_01_18_104345_create_groups_table.php new file mode 100644 index 000000000..967f130c3 --- /dev/null +++ b/database/migrations/2018_01_18_104345_create_groups_table.php @@ -0,0 +1,46 @@ +integer('id', true); + $table->string('name', 255)->default('\'\'')->unique('ix_groups_name'); + $table->integer('backfill_target')->default(1); + $table->bigInteger('first_record')->unsigned()->default(0); + $table->dateTime('first_record_postdate')->nullable(); + $table->bigInteger('last_record')->unsigned()->default(0); + $table->dateTime('last_record_postdate')->nullable(); + $table->dateTime('last_updated')->nullable(); + $table->integer('minfilestoformrelease')->nullable(); + $table->bigInteger('minsizetoformrelease')->nullable(); + $table->boolean('active')->default(0)->index('active'); + $table->boolean('backfill')->default(0); + $table->string('description')->nullable()->default('\'\''); + }); + + DB::unprepared('ALTER TABLE groups AUTO_INCREMENT 1000001'); + } + + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::drop('groups'); + } + +} diff --git a/database/migrations/2018_01_18_104710_create_menu_table.php b/database/migrations/2018_01_18_104710_create_menu_table.php new file mode 100644 index 000000000..b3acf7df7 --- /dev/null +++ b/database/migrations/2018_01_18_104710_create_menu_table.php @@ -0,0 +1,42 @@ +increments('id'); + $table->string('href', 2000)->default('\'\''); + $table->string('title', 2000)->default('\'\''); + $table->integer('newwindow')->unsigned()->default(0); + $table->string('tooltip', 2000)->default('\'\''); + $table->integer('role')->unsigned(); + $table->integer('ordinal')->unsigned(); + $table->string('menueval', 2000)->default('\'\''); + $table->index(['role','ordinal'], 'ix_role_ordinal'); + }); + + DB::unprepared('ALTER TABLE menu AUTO_INCREMENT 1000001'); + } + + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::drop('menu'); + } + +} diff --git a/database/migrations/2018_01_18_105455_create_release_naming_regexes_table.php b/database/migrations/2018_01_18_105455_create_release_naming_regexes_table.php new file mode 100644 index 000000000..47f20d392 --- /dev/null +++ b/database/migrations/2018_01_18_105455_create_release_naming_regexes_table.php @@ -0,0 +1,39 @@ +increments('id'); + $table->string('group_regex', 255)->default('\'\'')->index('ix_release_naming_regexes_group_regex')->comment('This is a regex to match against usenet groups'); + $table->string('regex', 5000)->default('\'\'')->comment('Regex used for extracting name from subject'); + $table->boolean('status')->default(1)->index('ix_release_naming_regexes_status')->comment('1=ON 0=OFF'); + $table->string('description', 1000)->default('\'\'')->comment('Optional extra details on this regex'); + $table->integer('ordinal')->default(0)->index('ix_release_naming_regexes_ordinal')->comment('Order to run the regex in'); + }); + + DB::unprepared('ALTER TABLE release_naming_regexes AUTO_INCREMENT 100000'); + } + + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::drop('release_naming_regexes'); + } + +} diff --git a/database/migrations/2018_01_18_105834_create_settings_table.php b/database/migrations/2018_01_18_105834_create_settings_table.php new file mode 100644 index 000000000..5a809891e --- /dev/null +++ b/database/migrations/2018_01_18_105834_create_settings_table.php @@ -0,0 +1,38 @@ +string('section', 25)->default('\'\''); + $table->string('subsection', 25)->default('\'\''); + $table->string('name', 25)->default('\'\''); + $table->string('value', 1000)->default('\'\''); + $table->text('hint', 65535); + $table->string('setting', 64)->default('\'\'')->unique('ui_settings_setting'); + $table->primary(['section','subsection','name']); + }); + } + + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::drop('settings'); + } + +} diff --git a/database/migrations/2018_01_18_111804_create_tmux_table.php b/database/migrations/2018_01_18_111804_create_tmux_table.php new file mode 100644 index 000000000..d1ee17778 --- /dev/null +++ b/database/migrations/2018_01_18_111804_create_tmux_table.php @@ -0,0 +1,35 @@ +increments('id'); + $table->string('setting', 64)->unique('ix_tmux_setting'); + $table->string('value', 19000)->nullable(); + $table->timestamp('updated_at'); + }); + } + + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::drop('tmux'); + } + +} diff --git a/database/seeds/BinaryblacklistTableSeeder.php b/database/seeds/BinaryblacklistTableSeeder.php new file mode 100644 index 000000000..32d9b2d92 --- /dev/null +++ b/database/seeds/BinaryblacklistTableSeeder.php @@ -0,0 +1,222 @@ +delete(); + + \DB::table('binaryblacklist')->insert(array ( + 0 => + array ( + 'id' => 1, + 'groupname' => 'alt\\.binaries\\..*', + 'regex' => '(brazilian|chinese|croatian|danish|deutsch|dutch|estonian|flemish|finnish|french|german|greek|hebrew|icelandic|italian|latin|nordic|norwegian|polish|portuguese|japenese|japanese|russian|serbian|slovenian|spanish|spanisch|swedish|thai|turkish)[\\)]?( \\-)?[ \\-\\.]((19|20)\\d\\d|(480|720|1080)(i|p)|3d|5\\.1|dts|ac3|truehd|(bd|dvd|hd|sat|vhs|web)\\.?rip|(bd.)?(h|x).?2?64|divx|xvid|bluray|svcd|board|custom|"|(d|h|p|s)d?v?tv|m?dvd(-|sc)?r|int(ernal)?|nzb|par2|\\b(((dc|ld|md|ml|dl|hr|se)[.])|(anime\\.)|(fs|ws)|dsr|pal|ntsc|iso|complete|cracked|ebook|extended|dirfix|festival|proper|game|limited|read.?nfo|real|rerip|repack|remastered|retail|samplefix|scan|screener|theatrical|uncut|unrated|incl|winall)\\b|doku|doc|dub|sub|\\(uncut\\))', + 'msgcol' => 1, + 'optype' => 1, + 'status' => 0, + 'description' => 'Blacklists non-english releases.', + 'last_activity' => NULL, + ), + 1 => + array ( + 'id' => 2, + 'groupname' => 'alt\\.binaries\\..*', + 'regex' => '[ -.](bl|cz|de|es|fr|ger|heb|hu|hun|ita|ko|kor|nl|pl|se)[ -.]((19|20)\\d\\d|(480|720|1080)(i|p)|(bd|dvd.?|sat|vhs)?rip?|(bd|dl)mux|( -.)?(dub|sub)(ed|bed)?|complete|convert|(d|h|p|s)d?tv|dirfix|docu|dual|dvbs|dvdscr|eng|(h|x).?2?64|int(ernal)?|pal|proper|repack|xbox)', + 'msgcol' => 1, + 'optype' => 1, + 'status' => 0, + 'description' => 'Blacklists non-english abbreviated releases.', + 'last_activity' => NULL, + ), + 2 => + array ( + 'id' => 3, + 'groupname' => 'alt\\.binaries\\..*', + 'regex' => '[ -.]((19|20)\\d\\d|(bd|dvd.?|sat|vhs)?rip?|custom|divx|dts)[ -.](bl|cz|de|es|fr|ger|heb|hu|ita|ko|kor|nl|pl|se)[ -.]', + 'msgcol' => 1, + 'optype' => 1, + 'status' => 0, + 'description' => 'Blacklists non-english abbreviated (reversed) releases.', + 'last_activity' => NULL, + ), + 3 => + array ( + 'id' => 4, + 'groupname' => 'alt\\.binaries\\..*', + 'regex' => '[ -.](chinese.subbed|dksubs|fansubs?|finsub|hebdub|hebsub|korsub|norsub|nordicsubs|nl( -.)?sub(ed|bed|s)?|nlvlaams|pldub|plsub|slosinh|swesub|truefrench|vost(fr)?)[ -.]', + 'msgcol' => 1, + 'optype' => 1, + 'status' => 0, + 'description' => 'Blacklists non-english subtitled releases.', + 'last_activity' => NULL, + ), + 4 => + array ( + 'id' => 5, + 'groupname' => 'alt\\.binaries\\..*', + 'regex' => '[ -._](4u\\.nl|nov[ a]+rip|realco|videomann|vost)[ -._]', + 'msgcol' => 1, + 'optype' => 1, + 'status' => 0, + 'description' => 'Blacklists non-english (release group specific) releases.', + 'last_activity' => NULL, + ), + 5 => + array ( + 'id' => 6, + 'groupname' => 'alt\\.binaries\\..*', + 'regex' => '[ -.]((bd|dl)mux|doku|\\[foreign\\]|seizoen|staffel)[ -.]', + 'msgcol' => 1, + 'optype' => 1, + 'status' => 0, + 'description' => 'Blacklists non-english (lang specific) releases.', + 'last_activity' => NULL, + ), + 6 => + array ( + 'id' => 7, + 'groupname' => 'alt\\.binaries\\..*', + 'regex' => '[ -.](imageset|pictureset|xxx)[ -.]', + 'msgcol' => 1, + 'optype' => 1, + 'status' => 0, + 'description' => 'Blacklists porn releases.', + 'last_activity' => NULL, + ), + 7 => + array ( + 'id' => 8, + 'groupname' => 'alt\\.binaries\\..*', + 'regex' => 'hdnectar|nzbcave', + 'msgcol' => 1, + 'optype' => 1, + 'status' => 0, + 'description' => 'Bad releases.', + 'last_activity' => NULL, + ), + 8 => + array ( + 'id' => 9, + 'groupname' => 'alt\\.binaries\\..*', + 'regex' => 'Passworded', + 'msgcol' => 1, + 'optype' => 1, + 'status' => 0, + 'description' => 'Removes passworded releases.', + 'last_activity' => NULL, + ), + 9 => + array ( + 'id' => 10, + 'groupname' => 'alt\\.binaries\\.(boneless|movies\\.divx)', + 'regex' => '((Frkz|info)@XviD2?|x?VIDZ?@pwrpst|movies@movies?)\\.net|(hsv\\.stoned@hotmail|unequal87@gmail|ilove@movies)\\.com', + 'msgcol' => 2, + 'optype' => 1, + 'status' => 0, + 'description' => 'Virus codec posters.', + 'last_activity' => NULL, + ), + 10 => + array ( + 'id' => 11, + 'groupname' => 'alt\\.binaries\\.tun', + 'regex' => '\\[PRiVATE\\]\\s+[a-z0-9]+ ', + 'msgcol' => 1, + 'optype' => 1, + 'status' => 0, + 'description' => 'Passworded/Encrypted junk.', + 'last_activity' => NULL, + ), + 11 => + array ( + 'id' => 12, + 'groupname' => '^alt\\.binaries\\.teevee$', + 'regex' => '^\\[KoreanTV\\] ', + 'msgcol' => 1, + 'optype' => 1, + 'status' => 0, + 'description' => 'Blocks posts by koreantv.', + 'last_activity' => NULL, + ), + 12 => + array ( + 'id' => 13, + 'groupname' => '^alt\\.binaries\\.(kenpsx|frogs)$', + 'regex' => '^\\s*([a-f0-9]{16})\\s\\[\\d+\\/\\d+\\]\\s-\\s\\"\\1\\"\\s+yEnc$', + 'msgcol' => 1, + 'optype' => 1, + 'status' => 0, + 'description' => 'Block 16 character hash floods in kenpsx frogs.', + 'last_activity' => NULL, + ), + 13 => + array ( + 'id' => 14, + 'groupname' => '^alt\\.binaries\\.multimedia\\.korean$', + 'regex' => 'TESTMAN', + 'msgcol' => 2, + 'optype' => 1, + 'status' => 1, + 'description' => 'Posts by TESTMAN (jpegs)', + 'last_activity' => NULL, + ), + 14 => + array ( + 'id' => 15, + 'groupname' => '^alt\\.binaries\\.multimedia\\.korean$', + 'regex' => '^yEnc ".+torrent"$', + 'msgcol' => 1, + 'optype' => 1, + 'status' => 1, + 'description' => 'torrent uploads ::: yEnc "SBS ÀαⰡ¿ä.E690.120916.HDTV.H264.720p-KOR.avi.torrent"', + 'last_activity' => NULL, + ), + 15 => + array ( + 'id' => 16, + 'groupname' => '^korea\\.binaries\\.movies$', + 'regex' => '^.[?(Kornet|SK|xpeed|KT)]?', + 'msgcol' => 1, + 'optype' => 1, + 'status' => 1, + 'description' => 'Incomplete releases', + 'last_activity' => NULL, + ), + 16 => + array ( + 'id' => 17, + 'groupname' => '^korea\\.binaries\\.movies$', + 'regex' => '^(top@top.t \\(top\\)|shit@xxxxxxxxaa.com \\(shit\\)|none@nonemail.com \\(none\\))$', + 'msgcol' => 2, + 'optype' => 1, + 'status' => 1, + 'description' => 'incomplete cryptic releases', + 'last_activity' => NULL, + ), + 17 => + array ( + 'id' => 18, + 'groupname' => '^korea\\.binaries\\.movies$', + 'regex' => '^filzilla6@web\\.de \\(Baruth\\)$', + 'msgcol' => 2, + 'optype' => 1, + 'status' => 1, + 'description' => 'Virus Poster', + 'last_activity' => NULL, + ), + )); + + + } +} \ No newline at end of file diff --git a/database/seeds/CategoryRegexesTableSeeder.php b/database/seeds/CategoryRegexesTableSeeder.php new file mode 100644 index 000000000..8036a8be4 --- /dev/null +++ b/database/seeds/CategoryRegexesTableSeeder.php @@ -0,0 +1,34 @@ +delete(); + + \DB::table('category_regexes')->insert(array ( + 0 => + array ( + 'id' => 1, + 'group_regex' => '^alt\\.binaries\\.sony\\.psvita$', + 'regex' => '/.*/ ', + 'status' => 1, + 'description' => '', + 'ordinal' => 50, + 'categories_id' => 1120, + ), + )); + + + } +} \ No newline at end of file diff --git a/database/seeds/CollectionRegexesTableSeeder.php b/database/seeds/CollectionRegexesTableSeeder.php new file mode 100644 index 000000000..641ffbc16 --- /dev/null +++ b/database/seeds/CollectionRegexesTableSeeder.php @@ -0,0 +1,5444 @@ +delete(); + + \DB::table('collection_regexes')->insert(array ( + 0 => + array ( + 'id' => 1, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/(?P\\[[\\d#]+\\]-\\[.+?\\]-\\[.+?\\])-\\[ (?P.+?) \\][- ]\\[\\d+\\/\\d+\\] - ".+?" yEnc$/i', + 'status' => 1, + 'description' => '[278997]-[FULL]-[#a.b.erotica]-[ chi-the.walking.dead.xxx ]-[06/51] - "chi-the.walking.dead.xxx-s.mp4" yEnc ::: [######]-[FULL]-[#a.b.teevee@EFNet]-[ Misfits.S01.SUBPACK.DVDRip.XviD-P0W4DVD ] [1/5] - "Misfits.S01.SUBPACK.DVDRip.XviD-P0W4DVD.nfo" yEnc ::: Re: [147053]-[FULL]-[#a.b.teevee]-[ Top_Gear.20x04.HDTV_x264-FoV ]-[11/59] - "top_gear.20x04.hdtv_x264-fov.r00" yEnc', + 'ordinal' => 0, + ), + 1 => + array ( + 'id' => 2, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/(?P\\[[\\d#]+\\]-\\[.+?\\]-\\[.+?\\])-\\[ (?P.+?) \\][ -]{0,3}".+?" yEnc$/i', + 'status' => 1, + 'description' => '[185409]-[FULL]-[a.b.teeveeEFNet]-[ Dragon.Ball.Z.S03E24.1080p.WS.BluRay.x264-CCAT ]-"dragon.ball.z.s03e24.1080p.ws.bluray.x264-ccat.nfo" yEnc', + 'ordinal' => 1, + ), + 2 => + array ( + 'id' => 3, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^(?P\\[#a\\.b\\.teevee\\] .+? - \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '[#a.b.teevee] Parks.and.Recreation.S01E01.720p.WEB-DL.DD5.1.H.264-CtrlHD - [01/24] - "Parks.and.Recreation.S01E01.720p.WEB-DL.DD5.1.H.264-CtrlHD.nfo" yEnc', + 'ordinal' => 2, + ), + 3 => + array ( + 'id' => 4, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^(?P[a-z0-9]+ - )\\[\\d+\\/\\d+\\] - "[a-z0-9]+\\..+?" yEnc$/', + 'status' => 1, + 'description' => 'ah63jka93jf0jh26ahjas558 - [01/22] - "ah63jka93jf0jh26ahjas558.par2" yEnc', + 'ordinal' => 3, + ), + 4 => + array ( + 'id' => 5, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^(?P[a-z0-9]+ \\()\\d+\\/\\d+\\) ".+?" - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/', + 'status' => 1, + 'description' => 'fhdbg34rgjdsfd008c (42/43) "fhdbg34rgjdsfd008c.vol062+64.par2" - 3,68 GB - yEnc', + 'ordinal' => 4, + ), + 5 => + array ( + 'id' => 6, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^(?P[a-zA-Z0-9]+)\\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => 't2EI3CdWdF0hi5b8L9tkx[08/52] - "t2EI3CdWdF0hi5b8L9tkx.part07.rar" yEnc', + 'ordinal' => 5, + ), + 6 => + array ( + 'id' => 7, + 'group_regex' => '^alt\\.binaries\\.0day\\.stuffz$', + 'regex' => '/^(?P[a-zA-Z0-9].+?)(?P - )\\[\\d+(?P\\/\\d+\\] - ").+?" yEnc$/', + 'status' => 1, + 'description' => '//ArcSoft.TotalMedia.Theatre.v5.0.1.87-Lz0 - [08/35] - "ArcSoft.TotalMedia.Theatre.v5.0.1.87-Lz0.vol43+09.par2" yEnc', + 'ordinal' => 5, + ), + 7 => + array ( + 'id' => 8, + 'group_regex' => '^alt\\.binaries\\.0day\\.stuffz$', + 'regex' => '/^(?P[a-zA-Z0-9].+?) \\[\\d+(?P\\/\\d+\\] - ").+?" yEnc$/', + 'status' => 1, + 'description' => '//rld-tcavu1 [5/6] - "rld-tcavu1.rar" yEnc', + 'ordinal' => 10, + ), + 8 => + array ( + 'id' => 9, + 'group_regex' => '^alt\\.binaries\\.0day\\.stuffz$', + 'regex' => '/^(?P\\((.+?)\\) \\[)\\d+(?P\\/\\d+] - ").+?" yEnc$/', + 'status' => 1, + 'description' => '//(DVD Shrink.ss) [1/1] - "DVD Shrink.ss.rar" yEnc', + 'ordinal' => 15, + ), + 9 => + array ( + 'id' => 10, + 'group_regex' => '^alt\\.binaries\\.0day\\.stuffz$', + 'regex' => '/^(?P[a-zA-Z0-9].+?)\\(\\d+(?P\\/\\d+\\) - ").+?" yEnc$/', + 'status' => 1, + 'description' => '//WinASO.Registry.Optimizer.4.8.0.0(1/4) - "WinASO_RO_v4.8.0.rar" yEnc', + 'ordinal' => 20, + ), + 10 => + array ( + 'id' => 11, + 'group_regex' => '^alt\\.binaries\\.3d$', + 'regex' => '/^(?P.+)File \\d+ (?Pof \\d+): ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//ugMBqtZw3vFnmrmr16EQhaAz9mMri9mD - File 01 of 98: "1vJ7wswi9ZG6YrzE5OGBFPKeuRv9X86xgYdK.par2" yEnc', + 'ordinal' => 5, + ), + 11 => + array ( + 'id' => 12, + 'group_regex' => '^alt\\.binaries\\.3d$', + 'regex' => '/^(?P.+)\\[\\d+\\/(?P\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//999XL[074/103] - "LLKJ678CCDE1223ss.part073.rar" yEnc', + 'ordinal' => 10, + ), + 12 => + array ( + 'id' => 13, + 'group_regex' => '^alt\\.binaries\\.amazing$', + 'regex' => '/^\\(\\?+\\) \\[\\d+(?P\\/\\d+\\])[-_ ]{0,3}"(?P[\\w\\säöüÄÖÜß¶!.,&_\\()\\[\\]\\\'\\`-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(???) [1/1] - "Asimov, Isaac - [Foundation 01] - De Foundation_v2.rar" yEnc', + 'ordinal' => 5, + ), + 13 => + array ( + 'id' => 14, + 'group_regex' => '^alt\\.binaries\\.amazing$', + 'regex' => '/^\\([\\w!.,&_ \\()\\[\\]\\\'\\`-]{8,}\\)[-_ ]{0,3}\\[\\d+(?P\\/\\d+\\])[-_ ]{0,3}"(?P[\\w\\säöüÄÖÜß¶!.,&_\\()\\[\\]\\\'\\`-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(Ass Backwards (2013) WEBrip XviD AC3 (english subs)) [18/35] - "Ass Backwards (2013) WEBrip XviD AC3 (english subs).part17.rar" yEnc', + 'ordinal' => 10, + ), + 14 => + array ( + 'id' => 15, + 'group_regex' => '^alt\\.binaries\\.amazing$', + 'regex' => '/^\\w+[-_ ]{0,3}"(?P[\\w\\säöüÄÖÜß¶!.,&_\\()\\[\\]\\\'\\`-]{8,}?\\b.?)([-_](?Pproof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")\\d+(\\/\\d+)[-_\\s]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//05VANmA80DckBho "05VANmA80DckBho.part07.rar"08/94 yEnc', + 'ordinal' => 15, + ), + 15 => + array ( + 'id' => 16, + 'group_regex' => '^alt\\.binaries\\.amazing$', + 'regex' => '/^\\(Angels4Always\\)[-_ ]{0,3}\\[\\d+(?P\\/\\d+\\])[-_ ]{0,3}"(?P[\\w\\säöüÄÖÜß¶!.,&_\\()\\[\\]\\\'\\`-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(Angels4Always) [1/1] - "Vermeulen, John - De tweelingparadox.rar" yEnc', + 'ordinal' => 20, + ), + 16 => + array ( + 'id' => 17, + 'group_regex' => '^alt\\.binaries\\.amazing$', + 'regex' => '/^www\\.wolfsteamers\\.info[-_ ]{0,3}\\[\\d+(?P\\/\\d+\\])[-_ ]{0,3}"(?P[\\w\\säöüÄÖÜß¶!.,&_\\()\\[\\]\\\'\\`-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//www.wolfsteamers.info [1/6] - "Wohnen Bauen Leben - Sommer 2014.par2" - 16,46 MB yEnc', + 'ordinal' => 25, + ), + 17 => + array ( + 'id' => 18, + 'group_regex' => '^alt\\.binaries\\.amazing$', + 'regex' => '/^[\\w!.,&_ \\()\\[\\]\\\'\\`-]{8,}\\[\\d+(?P\\/\\d+\\])[-_ ]{0,3}"(?P[\\w\\säöüÄÖÜß¶!.,&_\\()\\[\\]\\\'\\`-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Heaven_en_Fayth Presenteren Diana Gabaldon - Reiziger Cyclus 01 - De Reiziger[0/3] - "Diana Gabaldon - Reiziger Cyclus 01 - De Reiziger.nzb" yEnc', + 'ordinal' => 30, + ), + 18 => + array ( + 'id' => 19, + 'group_regex' => '^alt\\.binaries\\.amazing$', + 'regex' => '/^\\w+[-_ ]{0,3}\\[\\d+(?P\\/\\d+\\])[-_ ]{0,3}"(?P[\\w\\säöüÄÖÜß¶!.,&_\\()\\[\\]\\\'\\`-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//096XZFUPQ0PxH4441H14fU8V - [34/99] - "096XZFUPQ0PxH4441H14fU8V.part033.rar" yEnc', + 'ordinal' => 35, + ), + 19 => + array ( + 'id' => 20, + 'group_regex' => '^alt\\.binaries\\.amazing$', + 'regex' => '/^\\(.+the-ultimate-force\\.org\\.ua\\/\\)[-_ ]{0,3}\\[\\d+(?P\\/\\d+\\])[-_ ]{0,3}"(?P[\\w\\säöüÄÖÜß¶!.,&_\\()\\[\\]\\\'\\`-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(Slaapkop post voor http://the-ultimate-force.org.ua/) [0/7] - "Wham - I\'m Your Man (1985).nzb" yEnc', + 'ordinal' => 40, + ), + 20 => + array ( + 'id' => 21, + 'group_regex' => '^alt\\.binaries\\.amazing$', + 'regex' => '/^\\(\\d+(?P\\/\\d+\\)) - P2H - "(?P[\\w\\säöüÄÖÜß¶!.,&_\\()\\[\\]\\\'\\`-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}\\w+[-_\\s]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//(001/101) - P2H - "L62WD8P4U539A7.par2" - 4,66 GB - Z9F6KN7SXRCY845 yEnc', + 'ordinal' => 45, + ), + 21 => + array ( + 'id' => 22, + 'group_regex' => '^alt\\.binaries\\.amazing$', + 'regex' => '/^\\(\\d+(?P\\/\\d+\\))([-_ ]{0,4}(Description|FTTEAM\\.INFO))?[-_ ]{0,4}"(?P[\\w\\säöüÄÖÜß¶!.,&_\\()\\[\\]\\\'\\`-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(001/101) "654258ItB1418pBRDNS264159.par2" - 9,74 GB - yEnc ::: //(001/105) - Description - "oH291TB0bPxf3lqm1P7QQ.par2" - 4,56 GB - yEnc ::: //(03/43) - FTTEAM.INFO - "JDSJ2J4ENASJCKR-FTTEAM.INFO.part02.rar" - 2,04 GB - yEnc', + 'ordinal' => 50, + ), + 22 => + array ( + 'id' => 23, + 'group_regex' => '^alt\\.binaries\\.amazing$', + 'regex' => '/^[-_ .]{0,4}\\[\\d+(?P\\/\\d+\\])[-_ ]{0,3}"(?P[\\w\\säöüÄÖÜß¶!.,&_\\()\\[\\]\\\'\\`-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//- - [001/242] - "C65JuogI92CwfMo2TiX59.par2" yEnc', + 'ordinal' => 55, + ), + 23 => + array ( + 'id' => 24, + 'group_regex' => '^alt\\.binaries\\.amazing$', + 'regex' => '/^[-_ ]{0,4}\\[\\d+\\/\\d+\\][-_ ]{0,3}".+" yEnc[-_ ]{0,3}\\[\\d+(?P\\/\\d+\\])[-_ ]{0,3}"(?P[\\w\\säöüÄÖÜß¶!.,&_\\()\\[\\]\\\'\\`-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//- [01/10] - "file.xyz" yEnc - [001/107] - "86u1Qr8mm56jGiW7nUPTM.par2" yEnc', + 'ordinal' => 60, + ), + 24 => + array ( + 'id' => 25, + 'group_regex' => '^alt\\.binaries\\.anime$', + 'regex' => '/^(?P\\((\\[.+?\\] .+?)\\) \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//([AST] One Piece Episode 301-350 [720p]) [007/340] - "One Piece episode 301-350.part006.rar" yEnc', + 'ordinal' => 5, + ), + 25 => + array ( + 'id' => 26, + 'group_regex' => '^alt\\.binaries\\.anime$', + 'regex' => '/^(?P\\[.+?\\]\\[ (.+?) \\] \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//[REPOST][ New Doraemon 2013.05.03 Episode 328 (TV Asahi) 1080i HDTV MPEG2 AAC-DoraClub.org ] [35/61] - "doraclub.org-doraemon-20130503-b8de1f8e.r32" yEnc', + 'ordinal' => 10, + ), + 26 => + array ( + 'id' => 27, + 'group_regex' => '^alt\\.binaries\\.anime$', + 'regex' => '/^(?P\\[.+?\\] (.+?) \\[[A-F0-9]+\\] \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//[De.us] Suzumiya Haruhi no Shoushitsu (1920x1080 h.264 Dual-Audio FLAC 10-bit) [017CB24D] [000/357] - "[De.us] Suzumiya Haruhi no Shoushitsu (1920x1080 h.264 Dual-Audio FLAC 10-bit) [017CB24D].nzb" yEnc', + 'ordinal' => 15, + ), + 27 => + array ( + 'id' => 28, + 'group_regex' => '^alt\\.binaries\\.anime$', + 'regex' => '/^(?P\\[.+?\\] (.+?) - \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//[eraser] Ghost in the Shell ARISE - border_1 Ghost Pain (BD 720p Hi444PP LC-AAC Stereo) - [01/65] - "[eraser] Ghost in the Shell ARISE - border_1 Ghost Pain (BD 720p Hi444PP LC-AAC Stereo) .md5" yEnc', + 'ordinal' => 20, + ), + 28 => + array ( + 'id' => 29, + 'group_regex' => '^alt\\.binaries\\.anime$', + 'regex' => '/^\\(\\d+(?P\\/\\d+\\) - (.+?) - ").+?" - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/', + 'status' => 1, + 'description' => '//(01/27) - Maid.Sama.Jap.dubbed.german.english.subbed - "01 Misaki ist eine Maid!.divx" - 6,44 GB - yEnc', + 'ordinal' => 25, + ), + 29 => + array ( + 'id' => 30, + 'group_regex' => '^alt\\.binaries\\.anime$', + 'regex' => '/^(?P\\[ (.+?) \\] \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//[ New Doraemon 2013.06.14 Episode 334 (TV Asahi) 1080i HDTV MPEG2 AAC-DoraClub.org ] [01/60] - "doraclub.org-doraemon-20130614-fae28cec.nfo" yEnc', + 'ordinal' => 30, + ), + 30 => + array ( + 'id' => 31, + 'group_regex' => '^alt\\.binaries\\.anime$', + 'regex' => '/^ www\\.town\\.ag > sponsored by www\\.ssl-news\\.info > \\(\\d+(?P\\/\\d+\\) ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/i', + 'status' => 1, + 'description' => '// www.town.ag > sponsored by www.ssl-news.info > (1/3) "HolzWerken_40.par2" - 43,89 MB - yEnc ::: // www.town.ag > sponsored by www.ssl-news.info > (1/5) "[HorribleSubs]_Aku_no_Hana_-_01_[480p].par2" - 157,13 MB - yEnc', + 'ordinal' => 35, + ), + 31 => + array ( + 'id' => 32, + 'group_regex' => '^alt\\.binaries\\.anime$', + 'regex' => '/^\\(\\d+\\/\\d+\\)(?P.+?www\\.town\\.ag.+?sponsored by (www\\.)?ssl-news\\.info<+?(.+?)) ".+?" yEnc$/', + 'status' => 1, + 'description' => '//(1/9)<<>> sponsored by ssl-news.info<<<[HorribleSubs]_AIURA_-_01_[480p].mkv "[HorribleSubs]_AIURA_-_01_[480p].par2" yEnc', + 'ordinal' => 40, + ), + 32 => + array ( + 'id' => 33, + 'group_regex' => '^alt\\.binaries\\.anime$', + 'regex' => '/^(?P.+? \\[Dual [aA]udio, EngSub\\] .+?) - \\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Overman King Gainer [Dual audio, EngSub] Exiled Destiny - [002/149] - "Overman King Gainer.part001.rar" yEnc', + 'ordinal' => 45, + ), + 33 => + array ( + 'id' => 34, + 'group_regex' => '^alt\\.binaries\\.anime$', + 'regex' => '/^(?P(blazedazer_.+?) \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//blazedazer_NAN000010 [140/245] - "blazedazer_NAN000010.part138.rar" yEnc', + 'ordinal' => 50, + ), + 34 => + array ( + 'id' => 35, + 'group_regex' => '^alt\\.binaries\\.astronomy$', + 'regex' => '/^(?P\\d+-)\\d+\\[\\d+(\\/\\d+\\] - ").+?" yEnc$/', + 'status' => 1, + 'description' => '//58600-0[51/51] - "58600-0.vol0+1.par2" yEnc', + 'ordinal' => 5, + ), + 35 => + array ( + 'id' => 36, + 'group_regex' => '^alt\\.binaries\\.astronomy$', + 'regex' => '/^\\[ TOWN \\][ _-]{0,3}\\[ www\\.town\\.ag \\][ _-]{0,3}\\[ partner of www\\.ssl-news\\.info \\][ _-]{0,3}\\[ .* \\] \\[\\d+\\/(?P\\d+\\][ _-]{0,3}("|#34;).+)\\.(par2|rar|nfo|nzb)("|#34;)[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//[ TOWN ]-[ www.town.ag ]-[ partner of www.ssl-news.info ]-[ TV ] [01/16] - "Jono.And.Ben.At.Ten.S02E14.PDTV.x264-FiHTV.par2" - 198,25 MB yEnc', + 'ordinal' => 10, + ), + 36 => + array ( + 'id' => 37, + 'group_regex' => '^alt\\.binaries\\.ath$', + 'regex' => '/^\\[\\d+\\/\\d+ (?P[a-zA-Z0-9]+ .+?)\\..+?" yEnc$/', + 'status' => 1, + 'description' => '//[3/3 Karel Gott - Die Biene Maja Original MP3 Karel Gott - Die Biene Maja Original MP3.mp3.vol0+1.PAR2" yEnc', + 'ordinal' => 5, + ), + 37 => + array ( + 'id' => 38, + 'group_regex' => '^alt\\.binaries\\.ath$', + 'regex' => '/^\\[ TOWN \\][ _-]{0,3}\\[ www\\.town\\.ag \\][ _-]{0,3}\\[ partner of www\\.ssl-news\\.info \\][ _-]{0,3}\\[ .* \\] \\[\\d+\\/(?P\\d+\\][ _-]{0,3}("|#34;).+)\\.(par2|rar|nfo|nzb)("|#34;)[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//[ TOWN ]-[ www.town.ag ]-[ partner of www.ssl-news.info ]-[ TV ] [01/16] - "Jono.And.Ben.At.Ten.S02E14.PDTV.x264-FiHTV.par2" - 198,25 MB yEnc', + 'ordinal' => 10, + ), + 38 => + array ( + 'id' => 39, + 'group_regex' => '^alt\\.binaries\\.ath$', + 'regex' => '/^(?P[a-f0-9]{32}) - \\(\\d+\\/\\d+\\) - "[a-f0-9]{32}\\..+" yEnc$/', + 'status' => 1, + 'description' => '//8b33bf5960714efbe6cfcf13dd0f618f - (01/55) - "8b33bf5960714efbe6cfcf13dd0f618f.par2" yEnc', + 'ordinal' => 15, + ), + 39 => + array ( + 'id' => 40, + 'group_regex' => '^alt\\.binaries\\.ath$', + 'regex' => '/^(?P[a-z]+ - \\[)\\d+\\/\\d+\\] - "([a-z]+)\\..+?" yEnc$/', + 'status' => 1, + 'description' => '//nmlsrgnb - [04/37] - "htwlngmrstdsntdnh.part03.rar" yEnc', + 'ordinal' => 20, + ), + 40 => + array ( + 'id' => 41, + 'group_regex' => '^alt\\.binaries\\.ath$', + 'regex' => '/^(?P>+Hell-of-Usenet(\\.org)?>+(?P -)? \\[)\\d+\\/\\d+\\] - "(.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")( - \\d+[.,]\\d+ [kKmMgG][bB])? yEnc$/i', + 'status' => 1, + 'description' => '//>>>>>Hell-of-Usenet>>>>> - [01/33] - "Cassadaga Hier lebt der Teufel 2011 German AC3 DVDRip XViD iNTERNAL-VhV.par2" yEnc', + 'ordinal' => 25, + ), + 41 => + array ( + 'id' => 42, + 'group_regex' => '^alt\\.binaries\\.ath$', + 'regex' => '/^(?P[a-z0-9]{10,}) \\(\\d+\\/\\d+\\) "[a-z0-9]{10,}\\..+?" yEnc$/', + 'status' => 1, + 'description' => '//1dbo1u5ce6182436yb2eo (001/105) "1dbo1u5ce6182436yb2eo.par2" yEnc', + 'ordinal' => 30, + ), + 42 => + array ( + 'id' => 43, + 'group_regex' => '^alt\\.binaries\\.ath$', + 'regex' => '/^(?P<<<>>>kosova-shqip\\.eu<<< (.+?) >>>kosova-shqip.eu<<<<<< - \\()\\d+\\/\\d+\\) - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//<<<>>>kosova-shqip.eu<<< Deep SWG - 90s Club Megamix 2011 >>>kosova-shqip.eu<<<<<< - (2/4) - "Deep SWG - 90s Club Megamix 2011.rar" yEnc', + 'ordinal' => 35, + ), + 43 => + array ( + 'id' => 44, + 'group_regex' => '^alt\\.binaries\\.ath$', + 'regex' => '/^(?P \\[)\\d+(?P\\/\\d+\\] - .+? )yEnc$/', + 'status' => 1, + 'description' => '// [02/39] - SpongeBoZZ yEnc', + 'ordinal' => 40, + ), + 44 => + array ( + 'id' => 45, + 'group_regex' => '^alt\\.binaries\\.ath$', + 'regex' => '/^(?P[a-zA-Z0-9].+?\\s{2,}|Old Dad uppt\\s+)(?P.+?) \\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Old Dad uppt Taffe Mädels XivD LD HDTV Rip oben Kleine Einblendug German 01/43] - "Taffe Mädels.par2" yEnc', + 'ordinal' => 45, + ), + 45 => + array ( + 'id' => 46, + 'group_regex' => '^alt\\.binaries\\.ath$', + 'regex' => '/^\\[\\d+\\/(?P\\d+\\][ _-]{0,3}".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+[.,]\\d+ [kKmMgG][bB].+UpperTeam.+ Secretusenet\\.com.+yEnc$/i', + 'status' => 1, + 'description' => '//[28/55] - "XzrgzBWoRqtcuBF.part27.rar" - 4,78 GB >>>UpperTeam for Usenet-Space-Cowboys.info and Secretusenet.com<<< yEnc', + 'ordinal' => 50, + ), + 46 => + array ( + 'id' => 47, + 'group_regex' => '^alt\\.binaries\\.audio\\.warez$', + 'regex' => '/^(Re: )?(?P\\[.+?\\]-\\[\\d+\\]-\\[(.+?)\\]-\\[)\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//[#nzbx.audio/EFnet]-[1681]-[MagicScore.Note.v7.084-UNION]-[02/12] - "u-msn7.r00" yEnc', + 'ordinal' => 5, + ), + 47 => + array ( + 'id' => 48, + 'group_regex' => '^alt\\.binaries\\.audio\\.warez$', + 'regex' => '/^(?P([\\w.-]+) ?\\[)\\d+( of |\\/)\\d+\\] ".+?" yEnc$/', + 'status' => 1, + 'description' => '//MacProVideo.com.Pro.Tools8.101.Core.Pro.Tools8.TUTORiAL-DYNAMiCS [2 of 50] "dyn-mpvprtls101.sfv" yEnc ::: //Native.Instruments.Komplete.7.VSTi.RTAS.AU.DVDR.D02-DYNAMiCS[01/13] - "dyn.par2" yEnc ::: //Native.Instruments.Komplete.7.VSTi.RTAS.AU.DVDR.DYNAMiCS.NZB.ONLY [02/13] - "dyn.vol0000+001.PAR2" yEnc', + 'ordinal' => 10, + ), + 48 => + array ( + 'id' => 49, + 'group_regex' => '^alt\\.binaries\\.audio\\.warez$', + 'regex' => '/^(?PREQ : .+? ~ (.+?) \\[)\\d+ of \\d+\\] ".+?" yEnc$/', + 'status' => 1, + 'description' => '//REQ : VSL Stuff ~ Here\'s PreSonus Studio One 1.5.2 for OS X [16 of 22] "a-p152x.rar" yEnc', + 'ordinal' => 15, + ), + 49 => + array ( + 'id' => 50, + 'group_regex' => '^alt\\.binaries\\.audio\\.warez$', + 'regex' => '/^(?P([a-zA-Z0-9].+?) - \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Eminem - Recovery (2010) - [1/1] - "Eminem - Recovery (2010).rar" yEnc', + 'ordinal' => 20, + ), + 50 => + array ( + 'id' => 51, + 'group_regex' => '^alt\\.binaries\\.audio\\.warez$', + 'regex' => '/^(?P\\(\\?{4}\\) \\[)\\d+(?P\\/\\d+\\] - "(.+?))([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(????) [1/1] - "Dust in the Wind - the Violin Solo.rar" yEnc', + 'ordinal' => 25, + ), + 51 => + array ( + 'id' => 52, + 'group_regex' => '^alt\\.binaries\\.audio\\.warez$', + 'regex' => '/^(?P(.+?) \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Native Instruments Battery 3 incl Library ( VST DX RTA )( windows ) Libraries [1/1] - "Native Instruments Battery 2 + 3 SERIAL KEY KEYGEN.nfo" yEnc', + 'ordinal' => 30, + ), + 52 => + array ( + 'id' => 53, + 'group_regex' => '^alt\\.binaries\\.b4e$', + 'regex' => '/^(?P"(B4E-vip\\d+))\\..+?" yEnc$/', + 'status' => 1, + 'description' => '//"B4E-vip2851.r83" yEnc', + 'ordinal' => 5, + ), + 53 => + array ( + 'id' => 54, + 'group_regex' => '^alt\\.binaries\\.b4e$', + 'regex' => '/^\\[\\d+(?P\\/\\d+\\] - "(.+?) \\().+?" yEnc$/', + 'status' => 1, + 'description' => '//[02/12] - "The.Call.GERMAN.2013.DL.AC3.Dubbed.720p.BluRay.x264 (Avi-RiP ).rar" yEnc', + 'ordinal' => 10, + ), + 54 => + array ( + 'id' => 55, + 'group_regex' => '^alt\\.binaries\\.b4e$', + 'regex' => '/^(?P- "(.+?))([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//- "as-jew3.vol03+3.PAR2" - yEnc', + 'ordinal' => 15, + ), + 55 => + array ( + 'id' => 56, + 'group_regex' => '^alt\\.binaries\\.barbarella$', + 'regex' => '/^(?P([a-zA-Z0-9].+?) - \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//ACDSee.Video.Converter.Pro.v3.5.41.Incl.Keymaker-CORE - [1/7] - "ACDSee.Video.Converter.Pro.v3.5.41.Incl.Keymaker-CORE.par2" yEnc', + 'ordinal' => 5, + ), + 56 => + array ( + 'id' => 57, + 'group_regex' => '^alt\\.binaries\\.barbarella$', + 'regex' => '/^(?P([\\w.-]+)\\s+-\\s+").+?" yEnc$/', + 'status' => 1, + 'description' => '//Die.Nacht.Der.Creeps.THEATRICAL.GERMAN.1986.720p.BluRay.x264-GH - "gh-notcreepskf720.nfo" yEnc ::: //The.Fast.and.the.Furious.Tokyo.Dr', + 'ordinal' => 10, + ), + 57 => + array ( + 'id' => 58, + 'group_regex' => '^alt\\.binaries\\.barbarella$', + 'regex' => '/^(?P((\\[[A-Za-z]+\\]\\.)?[a-zA-Z0-9].+?) ?([\\^<> ]+give-me-all\\.org[\\^<> ]+|[\\^<> ]+)DRM[\\^<> ]+.+? - \\()\\d+\\/\\d+\\) ".+?" - .+? yEnc$/', + 'status' => 1, + 'description' => '//CorelDRAW Technical Suite X6-16.3.0.1114 x32-x64<><>DRM<><> - (10/48) "CorelDRAW Technical Suite X6-16.3.0.1114 x32-x64.part09.rar" - 2,01 GB - yEnc ::: //AnyDVD_7.1.9.3_-_HD-BR - Beta<>give-me-all.org<>DRM<><> - (1/3) "AnyDVD_7.1.9.3_-_HD-BR - Beta.par2" - 14,53 MB - yEnc ::: //Android Softarchive.net Collection Pack 27^^give-me-all.org^^^^DRM^^^^ - (01/26) "Android Softarchive.net Collection Pack 27.par2" - 1,01 GB - yEnc ::: //WIN7_ULT_SP1_x86_x64_IE10_19_05_13_TRIBAL <> give-me-all.org <> DRM <> <> PW <> - (154/155) "WIN7_ULT_SP1_x86_x64_IE10_19_05_13_TRIBAL.vol57+11.par2" - 7,03 GB - yEnc ::: //[Android].Ultimate.iOS7.Apex.Nova.Theme.v1.45 <> DRM <> - (1/3) "[Android].Ultimate.iOS7.Apex.Nova.Theme.v1.45.par2" - 21,14 MB - yEnc', + 'ordinal' => 15, + ), + 58 => + array ( + 'id' => 59, + 'group_regex' => '^alt\\.binaries\\.barbarella$', + 'regex' => '/^\\(\\d+(?P\\/\\d+\\) - .+? - "(.+?))( \\(\\d+\\))?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/i', + 'status' => 1, + 'description' => '//(004/114) - Description - "Pluralsight.net XAML Patterns (10).rar" - 532,92 MB - yEnc', + 'ordinal' => 20, + ), + 59 => + array ( + 'id' => 60, + 'group_regex' => '^alt\\.binaries\\.barbarella$', + 'regex' => '/^\\(\\d+\\/\\d+\\)( -)? ".+?" - \\d+[,.]\\d+ [mMkKgG](?P[bB] - (.+?)) yEnc$/', + 'status' => 1, + 'description' => '//(59/81) "1973 .Lee.Jun.Fan.DVD9.untouched.z46" - 7,29 GB - Lee.Jun.Fan.sein.Film.DVD9.untouched yEnc ::: //(01/12) - "TransX - Living on a Video 1993.part01.rar" - 561,55 MB - TransX - Living on a Video 1993.[Lossless] Highh Quality yEnc', + 'ordinal' => 25, + ), + 60 => + array ( + 'id' => 61, + 'group_regex' => '^alt\\.binaries\\.barbarella$', + 'regex' => '/^(?P>>> www\\.lords-of-usenet\\.org <<<.+? "(.+?))([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") .+? \\[\\d+\\/\\d+\\] - .+? yEnc$/i', + 'status' => 1, + 'description' => '//>>> www.lords-of-usenet.org <<< "Der Schuh Des Manitu.par2" DVD5 [001/158] - 4,29 GB yEnc', + 'ordinal' => 30, + ), + 61 => + array ( + 'id' => 62, + 'group_regex' => '^alt\\.binaries\\.barbarella$', + 'regex' => '/^.+? (-|\\(PW\\))\\s+\\[.+? -\\] \\[\\d+[,.]\\d+ [mMkKgG][bB]\\] \\[\\d+(?P\\/\\d+\\] "(.+?))([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//NEUES 4y - [@ usenet-4all.info - powered by ssl.news -] [5,58 GB] [002/120] "DovakinPack.part002.rar" yEnc ::: //NEUES 4y (PW) [@ usenet-4all.info - powered by ssl.news -] [7,05 GB] [014/152] "EngelsGleich.part014.rar" yEnc', + 'ordinal' => 35, + ), + 62 => + array ( + 'id' => 63, + 'group_regex' => '^alt\\.binaries\\.barbarella$', + 'regex' => '/^(?P([a-zA-Z0-9].+?\\s{2,}|Old Dad uppt\\s+)(.+?) )\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Old Dad uppt Die Schatzinsel Teil 1+Teil2 AC3 DVD Rip German XviD Wp 01/33] - "upp11.par2" yEnc ::: //Old Dad uppt Scary Movie5 WEB RiP Line XviD German 01/24] - "Scary Movie 5.par2" yEnc', + 'ordinal' => 40, + ), + 63 => + array ( + 'id' => 64, + 'group_regex' => '^alt\\.binaries\\.barbarella$', + 'regex' => '/^.+?\\s{2,}\\d+[,.]\\d+ [mMkKgG][bB]\\s{2,}"(?P.+?_)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")\\s{2,}(\\d+ B|\\d+[,.]\\d+ [mMkKgG][bB]) yEnc$/i', + 'status' => 1, + 'description' => '//>>> 20,36 MB "Winamp.Pro.v5.70.3392.Incl.Keygen-FFF.par2" 552 B yEnc ::: //..:[DoAsYouLike]:.. 9,64 MB "Snooper 1.39.5.par2" 468 B yEnc', + 'ordinal' => 45, + ), + 64 => + array ( + 'id' => 65, + 'group_regex' => '^alt\\.binaries\\.barbarella$', + 'regex' => '/^(?P\\(.+?\\) - "(.+?))([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(MKV - DVD - Rip - German - English - Italiano) - "CALIGULA (1982) UNCUT.sfv" yEnc', + 'ordinal' => 50, + ), + 65 => + array ( + 'id' => 66, + 'group_regex' => '^alt\\.binaries\\.barbarella$', + 'regex' => '/^"(?P[a-z0-9]+)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//"sre56565ztrtzuzi8inzufft.par2" yEnc', + 'ordinal' => 55, + ), + 66 => + array ( + 'id' => 67, + 'group_regex' => '^alt\\.binaries\\.big$', + 'regex' => '/^(?P([\\w.-]+) - ").+?" yEnc$/', + 'status' => 1, + 'description' => '//Girls.against.Boys.2012.German.720p.BluRay.x264-ENCOUNTERS - "encounters-giagbo_720p.nfo" yEnc', + 'ordinal' => 5, + ), + 67 => + array ( + 'id' => 68, + 'group_regex' => '^alt\\.binaries\\.big$', + 'regex' => '/^(?P([a-z]{3,}) - \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//wtvrwschdhfthj - [001/246] - "dtstchhtmrrnvn.par2" yEnc ::: //oijhuiurfjvbklk - [01/18] - "tb5-3ioewr90f.par2" yEnc', + 'ordinal' => 10, + ), + 68 => + array ( + 'id' => 69, + 'group_regex' => '^alt\\.binaries\\.big$', + 'regex' => '/^\\(\\d+(?P\\/\\d+\\) - "(.+?))([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(08/22) - "538D7B021B362A4300D1C0D84DD17E6D.r06" yEnc', + 'ordinal' => 15, + ), + 69 => + array ( + 'id' => 70, + 'group_regex' => '^alt\\.binaries\\.big$', + 'regex' => '/^(?P\\(\\?{4}\\) \\[)\\d+(?P\\/\\d+\\] - "(.+?))([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(????) [02/71] - "Lasting Weep (1969-1971).part.par2" yEnc', + 'ordinal' => 20, + ), + 70 => + array ( + 'id' => 71, + 'group_regex' => '^alt\\.binaries\\.big$', + 'regex' => '/^\\(\\d+(?P\\/\\d+\\) "(.+?))([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB] -(re)? yEnc$/i', + 'status' => 1, + 'description' => '//(01/59) "ThienSuChungQuy_II_E16.avi.001" - 1,49 GB - yEnc ::: //(058/183) "LS_HoangChui_2xdvd5.part057.rar" - 8,36 GB -re yEnc', + 'ordinal' => 25, + ), + 71 => + array ( + 'id' => 72, + 'group_regex' => '^alt\\.binaries\\.big$', + 'regex' => '/^(?P\\[[a-zA-Z]+\\] .+? - \\[)\\d+\\/\\d+\\] - "(.+?)" yEnc$/', + 'status' => 1, + 'description' => '//[AoU] Upload#00287 - [04/43] - "Upload-ZGT1-20130525.part03.rar" yEnc', + 'ordinal' => 30, + ), + 72 => + array ( + 'id' => 73, + 'group_regex' => '^alt\\.binaries\\.big$', + 'regex' => '/^\\([a-z]+\\) \\[\\d+(?P\\/\\d+\\] - "(.+?))([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(nate) [01/27] - "nate_light_13.05.23.par2" yEnc', + 'ordinal' => 35, + ), + 73 => + array ( + 'id' => 74, + 'group_regex' => '^alt\\.binaries\\.big$', + 'regex' => '/^(?P""(.+?))([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")" yEnc$/i', + 'status' => 1, + 'description' => '//""Absolute Database Component for BCBuilder 4-6 MultiUser Edit 4.85.rar"" yEnc', + 'ordinal' => 40, + ), + 74 => + array ( + 'id' => 75, + 'group_regex' => '^alt\\.binaries\\.big$', + 'regex' => '/^(?P[a-f0-9]{32}) - \\(\\d+\\/\\d+\\) - "[a-f0-9]{32}.+?" yEnc$/', + 'status' => 1, + 'description' => '//781e1d8dccc641e8df6530edb7679a0e - (26/30) - "781e1d8dccc641e8df6530edb7679a0e.rar" yEnc', + 'ordinal' => 45, + ), + 75 => + array ( + 'id' => 76, + 'group_regex' => '^alt\\.binaries\\.bloaf$', + 'regex' => '/^(?P[a-f0-9]{32}) - \\(\\d+\\/\\d+\\) - "[a-f0-9]{32}.+?" yEnc$/', + 'status' => 1, + 'description' => '//36c1d5d4eaf558126c67f00be46f77b6 - (01/22) - "36c1d5d4eaf558126c67f00be46f77b6.par2" yEnc', + 'ordinal' => 5, + ), + 76 => + array ( + 'id' => 77, + 'group_regex' => '^alt\\.binaries\\.bloaf$', + 'regex' => '/^\\[\\d+(?P\\/\\d+\\] - "(.+?))([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB] .+? usenet-space.+?yEnc$/i', + 'status' => 1, + 'description' => '//[10/17] - "EGk13kQ1c8.part09.rar" - 372.48 MB <-> usenet-space-cowboys.info <-> powered by secretusenet.com <-> yEnc', + 'ordinal' => 10, + ), + 77 => + array ( + 'id' => 78, + 'group_regex' => '^alt\\.binaries\\.bloaf$', + 'regex' => '/^(?P\\((.+?)\\) - ").+?" yEnc$/', + 'status' => 1, + 'description' => '//(Neu bei Bitfighter vom 23-07-2013) - "01 - Sido - Bilder Im Kopf.mp3" yEnc', + 'ordinal' => 15, + ), + 78 => + array ( + 'id' => 79, + 'group_regex' => '^alt\\.binaries\\.bloaf$', + 'regex' => '/^\\(\\d+(?P\\/\\d+\\) "(.+?))([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/i', + 'status' => 1, + 'description' => '//(2/8) "Mike.und.Molly.S01E22.Maennergespraeche.GERMAN.DL.DUBBED.720p.BluRay.x264-TVP.part1.rar" - 1023,92 MB - yEnc', + 'ordinal' => 20, + ), + 79 => + array ( + 'id' => 80, + 'group_regex' => '^alt\\.binaries\\.bloaf$', + 'regex' => '/^.+? (-|\\(PW\\))\\s+\\[.+? -\\] \\[\\d+[,.]\\d+ [mMkKgG][bB]\\] \\[\\d+(?P\\/\\d+\\] "(.+?))([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//4y (PW) [@ usenet-4all.info - powered by ssl.news -] [27,35 GB] [001/118] "1f8867bb6f89491793d3.part001.rar" yEnc', + 'ordinal' => 25, + ), + 80 => + array ( + 'id' => 81, + 'group_regex' => '^alt\\.binaries\\.bloaf$', + 'regex' => '/^(?P(\\[[A-Za-z]+\\]\\.)?([a-zA-Z0-9].+?)([\\^<> ]+give-me-all\\.org[\\^<> ]+|[\\^<> ]+)DRM[\\^<> ]+.+? - \\()\\d+\\/\\d+\\)\\s+".+?" - .+? - yEnc$/', + 'status' => 1, + 'description' => '//Bennos Special Tools DVD - Die Letzte <> DRM <><> PW <> - (002/183) "Bennos Special Tools DVD - Die Letzte.nfo" - 8,28 GB - yEnc', + 'ordinal' => 30, + ), + 81 => + array ( + 'id' => 82, + 'group_regex' => '^alt\\.binaries\\.bloaf$', + 'regex' => '/^\\(\\d+(?P\\/\\d+\\) - (.+?) ?- ").+?" - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/', + 'status' => 1, + 'description' => '//(1/9) - CyberLink.PhotoDirector.4.Ultra.4.0.3306.Multilingual - "CyberLink.PhotoDirector.4.Ultra.4.0.3306.Multilingual.par2" - 154,07 MB - yEnc ::: //(1/5) - Mac.DVDRipper.Pro.4.0.8.Mac.OS.X- "Mac.DVDRipper.Pro.4.0.8.Mac.OS.X.rar" - 24,12 MB - yEnc', + 'ordinal' => 35, + ), + 82 => + array ( + 'id' => 83, + 'group_regex' => '^alt\\.binaries\\.bloaf$', + 'regex' => '/^\\[\\d+(?P\\/\\d+ (.+?)\\.).+?" yEnc$/', + 'status' => 1, + 'description' => '//[3/3 Helene Fischer - Die Biene Maja 2013 MP3 Helene Fischer - Die Biene Maja 2013 MP3.mp3.vol0+1.PAR2" yEnc', + 'ordinal' => 40, + ), + 83 => + array ( + 'id' => 84, + 'group_regex' => '^alt\\.binaries\\.blu-ray$', + 'regex' => '/^"(?P\\d+\\.MK\\.[A-Z])\\..+?" yEnc$/', + 'status' => 1, + 'description' => '//"786936833607.MK.A.part086.rar" yEnc', + 'ordinal' => 45, + ), + 84 => + array ( + 'id' => 85, + 'group_regex' => '^alt\\.binaries\\.blu-ray$', + 'regex' => '/^(?P\\(\\?{4}\\) \\[)\\d+\\/\\d+\\] - "(?P[a-z0-9]+)\\..+?" yEnc$/', + 'status' => 1, + 'description' => '//(????) [001/107] - "260713thbldnstnsclw.par2" yEnc', + 'ordinal' => 50, + ), + 85 => + array ( + 'id' => 86, + 'group_regex' => '^alt\\.binaries\\.blu-ray$', + 'regex' => '/^(?P\\[www\\..+?\\]-\\[(.+?)\\]-\\[)\\d+\\/\\d+\\] ".+?" - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/', + 'status' => 1, + 'description' => '//[www.allyourbasearebelongtous.pw]-[The Place Beyond the Pines 2012 1080p US Blu-ray AVC DTS-HD MA 5.1-HDWinG]-[03/97] "tt1817273-us-hdwing-bd.r00" - 46.51 GB - yEnc', + 'ordinal' => 55, + ), + 86 => + array ( + 'id' => 87, + 'group_regex' => '^alt\\.binaries\\.blu-ray$', + 'regex' => '/^\\(\\d+(?P\\/\\d+\\)(\\s+ -)? "[a-zA-Z0-9]+?)\\d*\\..+?" - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/', + 'status' => 1, + 'description' => '//(01/71) - "EwRQCtU4BnaeXmT48hbg7bCn.par2" - 54,15 GB - yEnc ::: //(63/63) "dfbgfdgtghtghthgGPGEIBPBrwg34t05.rev" - 10.67 GB - yEnc', + 'ordinal' => 60, + ), + 87 => + array ( + 'id' => 88, + 'group_regex' => '^alt\\.binaries\\.blu-ray$', + 'regex' => '/^\\[\\d+(?P\\/\\d+\\] - "([a-zA-Z0-9]+)\\.).+?" yEnc$/', + 'status' => 1, + 'description' => '//[01/67] - "O3tk4u681gd767Y.par2" yEnc', + 'ordinal' => 65, + ), + 88 => + array ( + 'id' => 89, + 'group_regex' => '^alt\\.binaries\\.blu-ray$', + 'regex' => '/^(?P([a-z0-9]+) \\[.+?\\] \\[.+?\\] \\[)\\d+[,.]\\d+ [mMkKgG][bB]\\] \\[\\d+\\/\\d+\\] ".+?" yEnc$/', + 'status' => 1, + 'description' => '//209a212675ba31ca24a8 [usenet-4all.info] [powered by ssl-news] [21,59 GB] [002/223] "209a212675ba31ca24a8.part001.rar" yEnc', + 'ordinal' => 70, + ), + 89 => + array ( + 'id' => 90, + 'group_regex' => '^alt\\.binaries\\.blu-ray$', + 'regex' => '/^(?P([A-Z0-9]+) - "[a-z0-9]+\\.).+?" yEnc$/', + 'status' => 1, + 'description' => '//TIS97CC - "tis97cc.par2" yEnc', + 'ordinal' => 75, + ), + 90 => + array ( + 'id' => 91, + 'group_regex' => '^alt\\.binaries\\.blu-ray$', + 'regex' => '/^.+?<<\\d+\\/\\d+>> "(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB] - yEnc$/i', + 'status' => 1, + 'description' => '//<><><><<13/14>> "xxtxxlxxrxxbdxx05.vol421+98.par2" - 2,54 GB - yEnc', + 'ordinal' => 80, + ), + 91 => + array ( + 'id' => 92, + 'group_regex' => '^alt\\.binaries\\.blu-ray$', + 'regex' => '/^\\((?P\\w+)\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(wtnybhd7i3g6p1kuj3dffhnqyrx) [27/31] - "wtnybhd7i3g6p1kuj3dffhnqyrx.vol224+8.par2" yEnc', + 'ordinal' => 85, + ), + 92 => + array ( + 'id' => 93, + 'group_regex' => '^alt\\.binaries\\.blu-ray$', + 'regex' => '/^(?P\\w+)[-_\\s]{0,3}File \\d+ of (?P\\d+):[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//nS9XNOrMzD7FNniVfWUswrGmq8hQPMBqMSuQcMty - File 91 of 98: "aWYt0MpWaY6bmDp0d8hOdvBgz6.par2" yEnc', + 'ordinal' => 90, + ), + 93 => + array ( + 'id' => 94, + 'group_regex' => '^alt\\.binaries\\.blu-ray$', + 'regex' => '/^"(?P.+?)(?P[-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\(\\d+\\/(\\d+)\\)[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//"t46e6mopz864y82-Pittis ZusatzTon.English.dtsHDma.vol168+67.PAR2" (46/46) yEnc', + 'ordinal' => 95, + ), + 94 => + array ( + 'id' => 95, + 'group_regex' => '^alt\\.binaries\\.blu-ray$', + 'regex' => '/^\\(\\d+\\/(?P\\d+)\\)[-_\\s]{0,3}"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(190/201) "Kreatur by Eisenschrott & Gollum.vol1781+137.PAR2" - 9,46 GB - yEnc', + 'ordinal' => 100, + ), + 95 => + array ( + 'id' => 96, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^(?P[a-zA-Z0-9]+)\\[\\d+(?P\\/\\d+\\] - "[a-zA-Z0-9]+\\.).+?" yEnc$/', + 'status' => 1, + 'description' => '//4Etmo7uBeuTW[047/106] - "006dEbPcea29U6K.part046.rar" yEnc', + 'ordinal' => 5, + ), + 96 => + array ( + 'id' => 97, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^\\( (?P[\\w. -]{8,}) \\)[-_ ]{0,3}\\[\\d+\\/(?P\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//( Overlord II RELOADED ) - [013/112] - "rld-olii.part001.rar" yEnc', + 'ordinal' => 10, + ), + 97 => + array ( + 'id' => 98, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^(REPOST: )?\\[\\s*#?scnzb@?efnet\\s*\\]\\[(?P\\d+)\\] (?P.+?) \\[\\d+\\/(?P\\d+\\]) - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//[scnzbefnet][500934] Super.Fun.Night.S01E09.720p.HDTV.X264-DIMENSION [1/19] - "bieber.109.720p-dimension.sfv" yEnc ::: //REPOST: [scnzbefnet][500025] Major.Crimes.S02E13.720p.HDTV.x264-IMMERSE [16/33] - "major.crimes.s02e13.720p.hdtv.x264-immerse.r24" yEnc', + 'ordinal' => 15, + ), + 98 => + array ( + 'id' => 99, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^\\[\\s*#?scnzb@?efnet\\s*\\] (?P.+?) \\[\\d+\\/(?P\\d+\\]) - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//[scnzbefnet] Murdoch.Mysteries.S07E09.HDTV.x264-KILLERS [1/20] - "murdoch.mysteries.s07e09.hdtv.x264-killers.r13" yEnc', + 'ordinal' => 20, + ), + 99 => + array ( + 'id' => 100, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^\\(\\d+(?P\\/\\d+\\)\\s+(- )?"([a-zA-Z0-9]+)\\.).+?" - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/', + 'status' => 1, + 'description' => '//(68/89) "dz1R2wT8hH1iQEA28gRvm.part67.rar" - 7,91 GB - yEnc ::: //(01/14) - "JrjCY4pUjQ9qUqQ7jx6k2VLF.par2" - 4,39 GB - yEnc', + 'ordinal' => 25, + ), + 100 => + array ( + 'id' => 101, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^(?P\\((\\d+)\\) \\[)\\d+\\/\\d+\\] - "\\d+\\..+?" yEnc$/', + 'status' => 1, + 'description' => '//(110320152518519) [22/78] - "110320152518519.part21.rar" yEnc', + 'ordinal' => 30, + ), + 101 => + array ( + 'id' => 102, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^(?P[\\w. &\\()\\[\\]\\\'-]{8,}?\\b.?)\\.[A-Za-z0-9]{2,4}[-_\\s]{0,3}\\[\\d+\\/(?P\\d+\\])[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//A.Fantastic.Fear.of.Everything.2012.AC3.BDRiP.XviD-IJf.nfo [01/63] - "A.Fantastic.Fear.of.Everything.2012.AC3.BDRiP.XviD-IJf.nfo" yEnc', + 'ordinal' => 35, + ), + 102 => + array ( + 'id' => 103, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^(?P([a-zA-Z0-9]+) - \\[)\\d+\\/\\d+\\] - "[a-zA-Z0-9]+\\..+?" yEnc$/', + 'status' => 1, + 'description' => '//1VSXrAZPD - [123/177] - "1VSXrAZPD.part122.rar" yEnc', + 'ordinal' => 40, + ), + 103 => + array ( + 'id' => 104, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^(?P\\( (.+?) \\)\\s+\\( .+?\\) \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//( Peter Gabriel Albums 24x +17 Singles = 71x cd By Dready Niek ) ( ** By Dready Niek ** ) [113/178] - "Peter Gabriel Albums 24x +17 Singles = 71CDs By Dready Niek (1977-2010).part112.rar" yEnc', + 'ordinal' => 45, + ), + 104 => + array ( + 'id' => 105, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^(?P([A-Za-z0-9].+?) \\((19|20)\\d\\d\\) ")\\d{2}\\. .+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Tarja - Colours In The Dark (2013) "00. Tarja-Colours In The Dark.m3u" yEnc', + 'ordinal' => 50, + ), + 105 => + array ( + 'id' => 106, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^"(?P[a-zA-Z0-9]+)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\(\\d+\\/\\d+\\) - yEnc$/i', + 'status' => 1, + 'description' => '//"BB636.part14.rar" - (15/39) - yEnc', + 'ordinal' => 55, + ), + 106 => + array ( + 'id' => 107, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^[-a-zA-Z0-9 ]+ \\[\\d+(?P\\/\\d+\\] - "(.+?))([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Lutheria - FC Twente TV Special - Ze wilde op voetbal [16/49] - "Lutheria - FC Twente TV Special - Ze wilde op voetbal.part16.rar" yEnc ::: // panter - [001/101] - "74518-The Hunters (2011).par2" yEnc', + 'ordinal' => 60, + ), + 107 => + array ( + 'id' => 108, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^(?P[-a-zA-Z0-9 ]+ - "(.+?))([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Pee Mak Prakanong - 2013 - Thailand - ENG Subs - "Pee Mak Prakanong.2013.part22.rar" yEnc ::: //P2H - "AMHZQHPHDUZZJSFZ.vol181+33.par2" yEnc', + 'ordinal' => 65, + ), + 108 => + array ( + 'id' => 109, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^\\((?P\\?{4}|[a-zA-Z]+)\\) \\[\\d+(?P\\/\\d+\\] - "(.+?))([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(????) [011/161] - "flynns-image-redux.part010.rar" yEnc ::: //(Dgpc) [000/110] - "Teen Wolf - Seizoen.3 - Dvd.2 (NLsub).nzb" yEnc', + 'ordinal' => 70, + ), + 109 => + array ( + 'id' => 110, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^\\("(?P[a-z0-9A-Z]+).+?" - \\d+[,.]\\d+ [mMkKgG][bB] -\\) ".+?" - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/', + 'status' => 1, + 'description' => '//("Massaladvd5Kilusadisc4S1.par2" - 4,55 GB -) "Massaladvd5Kilusadisc4S1.par2" - 4,55 GB - yEnc', + 'ordinal' => 75, + ), + 110 => + array ( + 'id' => 111, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//"par.4kW9beE.1.vol122+21.par2" yEnc', + 'ordinal' => 80, + ), + 111 => + array ( + 'id' => 112, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^(?P.+?\\.(info|org)>+ - \\[)\\d+\\/\\d+\\] - "(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//brothers-of-usenet.info/.net <<>> - [01/19] - "Age.of.Dinosaurs.German.AC3.HDRip.x264-FuN.par2" yEnc ::: //>>>>>Hell-of-Usenet.org>>>>> - [01/35] - "Female.Agents.German.2008.AC3.DVDRip.XviD.iNTERNAL-VideoStar.par2" yEnc', + 'ordinal' => 85, + ), + 112 => + array ( + 'id' => 113, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^\\[\\d+(?P\\/\\d+\\] - "(.+?))([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[010/101] - "Bf56a8aR-20743f8D-Vf7a11fD-d7c6c0.part09.rar" yEnc ::: //[1/9] - "fdbvgdfbdfb.part.par2" yEnc', + 'ordinal' => 90, + ), + 113 => + array ( + 'id' => 114, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^(?P\\[[A-Z]+\\] - \\[)\\d+\\/\\d+\\] - "(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[LB] - [063/112] - "RVL-GISSFBD.part063.rar" yEnc', + 'ordinal' => 95, + ), + 114 => + array ( + 'id' => 115, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^\\(.+?\\(PWP\\).+?\\) \\(\\d+(?P\\/\\d+\\) "(.+?))([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") .+? \\d+[,.]\\d+ [mMkKgG][bB] .+ yEnc$/i', + 'status' => 1, + 'description' => '//(¯`*.¸(PWP).*´¯) (071/100) "JUST4US_025.part070.rar" - 22,50 GB yEnc', + 'ordinal' => 100, + ), + 115 => + array ( + 'id' => 116, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^thnx to original poster \\[\\d+(?P\\/\\d+\\] - "(.+?))(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2|\\.[A-Za-z0-9]{2,4})("| `).+? yEnc$/', + 'status' => 1, + 'description' => '//thnx to original poster [00/98] - "2669DFKKFD2008.nzb ` 2669DFKKFD2008 " yEnc', + 'ordinal' => 105, + ), + 116 => + array ( + 'id' => 117, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^place2home\\.net - (?P.*?) - (\\[\\d+\\/\\d+\\] - )?".+?" yEnc$/i', + 'status' => 1, + 'description' => '//place2home.net - Call.of.Duty.Ghosts.XBOX360-iMARS - [095/101] - "imars-codghosts-360b.vol049+33.par2" yEnc ::: //Place2home.net - Diablo_III_USA_RF_XBOX360-PROTOCOL - "d3-ptc.r34" yEnc', + 'ordinal' => 110, + ), + 117 => + array ( + 'id' => 118, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^(?P\\((.+?)\\) \\[)\\d+(?P\\/\\d+] - ").+?" yEnc$/', + 'status' => 1, + 'description' => '//(Ancient.Aliens.S03E05.Aliens.and.Mysterious.Rituals.720p.HDTV.x264.AC3.2Ch.REPOST) [41/42] - "Ancient.Aliens.S03E05.Aliens.and.Mysterious.Rituals.720p.HDTV.x264.AC3.2Ch.REPOST.vol071+66.PAR2" yEnc', + 'ordinal' => 115, + ), + 118 => + array ( + 'id' => 119, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^Doobz (?P[a-zA-z-_]+) \\[\\d+\\/(?P\\d+\\]) - ".+([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Doobz Europa_Universalis_IV_Conquest_of_Paradise-FLT [10/54] - "flt-eucp.001" yEnc', + 'ordinal' => 120, + ), + 119 => + array ( + 'id' => 120, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^(?P[\\w. -]{8,}) - \\[\\d+\\/(?P\\d+\\])[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Outlast.Whistleblower-RELOADED - [014/119] - "rld-outwhistle.part001.rar" yEnc', + 'ordinal' => 125, + ), + 120 => + array ( + 'id' => 121, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^.+\\[\\d+\\/(?P\\d+\\]) - "(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Charlies.Angels.2000.iNTERNAL.DVDRip.XviD-Vmr.part44.rar [46/66] - "Charlies.Angels.2000.iNTERNAL.DVDRip.XviD-Vmr.part44.rar" yEnc', + 'ordinal' => 130, + ), + 121 => + array ( + 'id' => 122, + 'group_regex' => '^alt\\.binaries\\.british\\.drama$', + 'regex' => '/^(?P[a-zA-Z0-9].+? \\[XviD\\] \\[)\\d\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Coronation Street 03.05.2012 [XviD] [01/23] - "coronation.street.03.05.12.[ws.pdtv].par2" yEnc ::: //Coronation Street 04.05.2012 - Part 1 [XviD] [01/23] - "coronation.street.04.05.12.part.1.[ws.pdtv].par2" yEnc', + 'ordinal' => 5, + ), + 122 => + array ( + 'id' => 123, + 'group_regex' => '^alt\\.binaries\\.british\\.drama$', + 'regex' => '/^(?P[a-zA-Z0-9]+ .+? (S\\d+)?E\\d+-\\d\\d \\[)\\d+\\/\\d+\\] - "\\d(\\d |\\.).+?" yEnc$/', + 'status' => 1, + 'description' => '//The Prisoner E06-09 [001/152] - "06 The General.mkv.001" yEnc ::: //Danger Man S2E05-08 [075/149] - "7.The colonel\'s daughter.avi.001" yEnc', + 'ordinal' => 10, + ), + 123 => + array ( + 'id' => 124, + 'group_regex' => '^alt\\.binaries\\.british\\.drama$', + 'regex' => '/^.+?\\[\\d+\\/(?P\\d+\\][-_ ]{0,3}.+?)[-_ ]{0,3}("|#34;)(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}("|#34;))[-_ ]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//Wizards Vs Aliens - 1x06 - Rebel Magic, Part Two [XviD][00/27] - "wizards.vs.aliens.106.rebel.magic.part.two.[ws.pdtv].nzb" yEnc', + 'ordinal' => 15, + ), + 124 => + array ( + 'id' => 125, + 'group_regex' => '^alt\\.binaries\\.british\\.drama$', + 'regex' => '/.*"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}").+?yEnc$/i', + 'status' => 1, + 'description' => '//Vera.3x03.Young.Gods.720p.HDTV.x264-FoV - "vera.3x03.young_gods.720p_hdtv_x264-fov.r00" yEnc', + 'ordinal' => 20, + ), + 125 => + array ( + 'id' => 126, + 'group_regex' => '^alt\\.binaries\\.cats$', + 'regex' => '/^(?P[a-zA-Z0-9]{5,} ?\\[)\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Pb7cvL3YiiOu06dsYPzEfpSvvTul[02/37] - "Fkq33mlTVyHHJLm0gJNU.par2" yEnc ::: //DLJorQ37rMDvc [01/16] - "DLJorQ37rMDvc.part1.rar" yEnc', + 'ordinal' => 5, + ), + 126 => + array ( + 'id' => 127, + 'group_regex' => '^alt\\.binaries\\.cbt$', + 'regex' => '/^\\((?P[a-zA-Z0-9-\\.\\&_ ]+)\\) \\[\\d+\\/(?P\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(WinEdt.v8.0.Build.20130513.Cracked-EAT) [01/10] - "eatwedt8.nfo" yEnc', + 'ordinal' => 5, + ), + 127 => + array ( + 'id' => 128, + 'group_regex' => '^alt\\.binaries\\.cbt$', + 'regex' => '/^\\[ (?P[a-zA-Z0-9-\\.\\&\\\\(\\)\\,_ ]+) \\] [a-zA-Z0-9]{3,4}\\.[a-zA-Z0-9]{3,4} \\(\\d+\\/(?P\\d+\\)) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[ ABCAsiaPacific.com - Study English IELTS Preparation (2006) ] AVI.PDF (17/34) - "abcap-senglishielts.r16" yEnc', + 'ordinal' => 10, + ), + 128 => + array ( + 'id' => 129, + 'group_regex' => '^alt\\.binaries\\.cbts$', + 'regex' => '/.*"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}")(.+?)yEnc$/i', + 'status' => 1, + 'description' => '//"softWoRx.Suite.2.0.0.25.x32-TFT.rar" yEnc', + 'ordinal' => 5, + ), + 129 => + array ( + 'id' => 130, + 'group_regex' => '^alt\\.binaries\\.cd\\.image$', + 'regex' => '/^(?P\\[(\\d+|redump)?\\]-+\\[.+?\\]-\\[.+?\\]-)(\\s?\\[\\d+\\/\\d+\\])?(\\s?\\[.+?\\])?[- ]{0,3}".+?"( - \\d+[,.]\\d+ [mMkKgG][bB] -)? yEnc$/i', + 'status' => 1, + 'description' => '//[27849]-[altbinEFNet]-[Full]- "ppt-sogz.001" - 7,62 GB - yEnc ::: //[27925]--[altbinEFNet]-[Full]- "unl_p2rd.par2" yEnc ::: //[27608]-[FULL]-[#altbin@EFNet]-[007/136] "27608-1.005" yEnc ::: //[30605]-[altbinEFNet]-[FULL]- [10/165] - "plaza-the.witcher.3.wild.hunt.r09" yEnc ::: //[]-[#altbin@EFNet]-[Full]-[ACE.LIGHTNING.PLUS.6.TRAINER-DEViANCE]-[0/8] - "deviance.nfo" yEnc', + 'ordinal' => 5, + ), + 130 => + array ( + 'id' => 131, + 'group_regex' => '^alt\\.binaries\\.cd\\.image$', + 'regex' => '/^(?P\\[\\d+\\]-\\[.+?\\]-\\[.+?\\]-\\[ .+? \\] ?- ?\\[)\\d+\\/\\d+\\] (- )?".+?" yEnc$/', + 'status' => 1, + 'description' => '//[27930]-[FULL]-[altbinEFNet]-[ Ubersoldier.UNCUT.PATCH-RELOADED ]-[3/5] "rld-usuc.par2" yEnc ::: //[27607]-[#altbin@EFNet]-[Full]-[ Cars.Radiator.Springs.Adventure.READNFO-CRIME ] - [02/49] - "crm-crsa.par2" yEnc', + 'ordinal' => 10, + ), + 131 => + array ( + 'id' => 132, + 'group_regex' => '^alt\\.binaries\\.cd\\.image$', + 'regex' => '/^(?P\\[\\d+\\]-\\[.+?\\]-\\[.+?\\]-\\[.+?\\]-\\[)\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//[27575]-[#altbin@EFNet]-[Full]-[CD1]-[01/58] - "CD1.par2" yEnc ::: //[27575]-[altbinEFNet]-[Full]-[CD3]-[00/59] - "dev-gk3c.sfv" yEnc', + 'ordinal' => 15, + ), + 132 => + array ( + 'id' => 133, + 'group_regex' => '^alt\\.binaries\\.cd\\.image$', + 'regex' => '/^(?P\\(\\d+(-\\d+)?\\) \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//(27608-1) [2/5] - "skidrow.nfo" yEnc', + 'ordinal' => 20, + ), + 133 => + array ( + 'id' => 134, + 'group_regex' => '^alt\\.binaries\\.cd\\.image$', + 'regex' => '/^(?P\\[www\\..+?\\]-\\[.+?\\]-\\[)\\d+\\/\\d+\\] ".+?" - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/', + 'status' => 1, + 'description' => '//[www.drlecter.tk]-[The_Night_of_the_Rabbit-FLT]-[01/67] "Dr.Lecter.nfo" - 5.61 GB - yEnc', + 'ordinal' => 25, + ), + 134 => + array ( + 'id' => 135, + 'group_regex' => '^alt\\.binaries\\.cd\\.image$', + 'regex' => '/^(?P[a-zA-Z0-9.-]{10,} -( PC GAME -| [A-Z0-9\\[\\]]+ -)? \\[)\\d+\\/\\d+\\] - ".+?" - (.+? - (\\d+[,.]\\d+ [mMkKgG][bB] - )?)?yEnc$/', + 'status' => 1, + 'description' => '//Slender.The.Arrival-WaLMaRT.PC - [01/26] - "wmt-stal.nfo" - yEnc ::: //The.Night.of.the.Rabbit-FLT - [03/66] - "flt-notr.r00" - FAiRLIGHT - 5,10 GB - yEnc ::: //Resident.Evil.Revelations-FLT - PC GAME - [03/97] - "Resident.Evil.Revelations-FLT.r00" - FAiRLIGHT - yEnc ::: //Afterfall.Insanity.Dirty.Arena.Edition-WaLMaRT - [MULTI6][PCDVD] - [02/45] - "wmt-adae.r00" - PC GAME - yEnc', + 'ordinal' => 30, + ), + 135 => + array ( + 'id' => 136, + 'group_regex' => '^alt\\.binaries\\.cd\\.image$', + 'regex' => '/^(PC Game - )?\\[\\d+(?P\\/\\d+\\] - .+? - ").+?" -( .+? -)? yEnc$/', + 'status' => 1, + 'description' => '//[01/46] - Crashtime 5 Undercover RELOADED - "rld-ct5u.nfo" - PC - yEnc ::: //[01/76] - Of.Orcs.And.Men-SKIDROW - "sr-oforcsandmen.nfo" - yEnc ::: //PC Game - [01/71] - MotoGP 13-RELOADED Including NoDVD Fix - "MotoGP 13-RELOADED Including NoDVD Fix nfo" - yEnc', + 'ordinal' => 35, + ), + 136 => + array ( + 'id' => 137, + 'group_regex' => '^alt\\.binaries\\.cd\\.image$', + 'regex' => '/^(?P[A-Za-z0-9][a-zA-Z0-9: ]{8,}(-[a-zA-Z]+)?( \\(.+?\\)| - [\\[A-Z0-9\\]]+)? - \\[)\\d+\\/\\d+\\] - ".+?" - .+? - yEnc$/', + 'status' => 1, + 'description' => '//Magrunner Dark Pulse FLT (FAiRLIGHT) - [02/70] - "flt-madp par2" - PC - yEnc ::: //MotoGP 13 RELOADED - [01/71] - "rld-motogp13 nfo" - PC - yEnc ::: //Dracula 4: Shadow of the Dragon FAiRLIGHT - [01/36] - "flt-drc4 nfo" - PC - yEnc', + 'ordinal' => 40, + ), + 137 => + array ( + 'id' => 138, + 'group_regex' => '^alt\\.binaries\\.cd\\.image$', + 'regex' => '/^(?P(\\[[A-Z ]+\\] - )?[a-zA-Z0-9.-]{10,} - ").+?" - \\[\\d+\\/\\d+\\] - yEnc$/', + 'status' => 1, + 'description' => '//[NEW PC GAME] - Lumber.island-WaLMaRT - "wmt-lisd.nfo" - [01/18] - yEnc ::: //Trine.2.Complete.Story-SKIDROW - "sr-trine2completestory.nfo" - [01/78] - yEnc', + 'ordinal' => 45, + ), + 138 => + array ( + 'id' => 139, + 'group_regex' => '^alt\\.binaries\\.cd\\.image$', + 'regex' => '/^(?PUploader.Presents)[- ](?P.+?)[\\(\\[]\\d+\\/\\d+\\]".+?" yEnc$/', + 'status' => 1, + 'description' => '//Uploader.Presents-Need.For.Speed.Rivals.XBOX360-PROTOCOL[10/94]"nfs.r-ptc.r07" yEnc', + 'ordinal' => 50, + ), + 139 => + array ( + 'id' => 140, + 'group_regex' => '^alt\\.binaries\\.cd\\.lossless$', + 'regex' => '/^(?PFlac Flood( -)? .+? - ").+?" \\(\\d+\\/\\d+\\) .+? yEnc$/', + 'status' => 1, + 'description' => '//Flac Flood - Modern Talking - China In Her Eyes (CDM) - "1 - Modern Talking - China In Her Eyes (feat. Eric Singleton) (Video Version).flac" (01/14) (23,64 MB) 136,66 MB yEnc ::: //Flac Flood Modern Talking - America - "1 - Modern Talking - Win The Race.flac" (01/18) (29,12 MB) 549,35 MB yEnc', + 'ordinal' => 5, + ), + 140 => + array ( + 'id' => 141, + 'group_regex' => '^alt\\.binaries\\.cd\\.lossless$', + 'regex' => '/^(?P[a-zA-Z0-9].+? \\[)\\d+\\/\\d+\\]( -)? "\\d{2,} - .+?" yEnc$/', + 'status' => 1, + 'description' => '//Cannonball Adderley - Nippon Soul [01/17] "00 - Cannonball Adderley - Nippon Soul.nfo" yEnc ::: //Black Tie White Noise [01/24] - "00 - David Bowie - Black Tie White Noise.nfo" yEnc', + 'ordinal' => 10, + ), + 141 => + array ( + 'id' => 142, + 'group_regex' => '^alt\\.binaries\\.cd\\.lossless$', + 'regex' => '/^(?P(\\[\\d{4}\\] )?[a-zA-Z0-9].+? - File )\\d+ of \\d+: .+? yEnc$/', + 'status' => 1, + 'description' => '//[1977] Joan Armatrading - Show Some Emotion - File 15 of 20: 06 Joan Armatrading - Opportunity.flac yEnc ::: //The Allman Brothers Band - Statesboro Blues [Swingin\' Pig - Bootleg] [1970 April 4] - File 09 of 19: Statesboro Blues.cue yEnc', + 'ordinal' => 15, + ), + 142 => + array ( + 'id' => 143, + 'group_regex' => '^alt\\.binaries\\.cd\\.lossless$', + 'regex' => '/^(?P[A-Z0-9].+? - [A-z0-9].+? \\[\\d{4}\\] - )\\d{2,} .+? yEnc$/', + 'status' => 1, + 'description' => '//The Allman Brothers Band - The Fillmore Concerts [1971] - 06 The Allman Brothers Band - Done Somebody Wrong.flac yEnc', + 'ordinal' => 20, + ), + 143 => + array ( + 'id' => 144, + 'group_regex' => '^alt\\.binaries\\.cd\\.lossless$', + 'regex' => '/^(?P[A-Z0-9].+? - [A-Z0-9].+? Disc \\d+ of \\d+ - )[A-Z0-9].+?\\..+? yEnc$/', + 'status' => 1, + 'description' => '//The Velvet Underground - Peel Slow And See (Box Set) Disc 5 of 5 - 13 The Velvet Underground - Oh Gin.flac yEnc', + 'ordinal' => 25, + ), + 144 => + array ( + 'id' => 145, + 'group_regex' => '^alt\\.binaries\\.cd\\.lossless$', + 'regex' => '/^\\(\\d+(?P\\/\\d+\\) ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/i', + 'status' => 1, + 'description' => '//(28/55) "Ivan Neville - If My Ancestors Could See Me Now.par2" - 624,44 MB - yEnc', + 'ordinal' => 30, + ), + 145 => + array ( + 'id' => 146, + 'group_regex' => '^alt\\.binaries\\.chello$', + 'regex' => '/^(?P[A-Za-z0-9]{5,} ?\\[)\\d+\\/\\d+\\] - "[A-Za-z0-9]{3,}.+?" yEnc$/', + 'status' => 1, + 'description' => '//0F623Uv71RHKt0jzA7inbGZLk00[2/5] - "l2iOkRvy80bgLrZm1xxw.par2" yEnc ::: //GMC2G8KixJKy [01/15] - "GMC2G8KixJKy.part1.rar" yEnc', + 'ordinal' => 5, + ), + 146 => + array ( + 'id' => 147, + 'group_regex' => '^alt\\.binaries\\.chello$', + 'regex' => '/^(?P[a-zA-Z0-9][a-zA-Z0-9.-]+ \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Imactools.Cefipx.v3.20.MacOSX.Incl.Keyfilemaker-NOY [03/10] - "parfile.vol000+01.par2" yEnc', + 'ordinal' => 10, + ), + 147 => + array ( + 'id' => 148, + 'group_regex' => '^alt\\.binaries\\.chello$', + 'regex' => '/^(?P[A-Za-z0-9-]+ .+?[. ]\\[)\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Siberian Mouses LS, BD models and special... [150/152] - "Xlola - Luba, Sasha & Vika.avi.jpg" yEnc', + 'ordinal' => 15, + ), + 148 => + array ( + 'id' => 149, + 'group_regex' => '^alt\\.binaries\\.classic\\.tv\\.shows$', + 'regex' => '/^(?PRe: REQ: .+? - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Re: REQ: All In The Family - "Archie Bunkers Place 1x01 Archies New Partner part 1.nzb" yEnc', + 'ordinal' => 5, + ), + 149 => + array ( + 'id' => 150, + 'group_regex' => '^alt\\.binaries\\.classic\\.tv\\.shows$', + 'regex' => '/^(?PPer REQ - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") .+? \\[\\d+\\/\\d+\\] yEnc$/i', + 'status' => 1, + 'description' => '//Per REQ - "The.Wild.Wild.West.S03E11.The.Night.of.the.Cut-Throats.DVDRip.XVID-tz.par2" 512x384 [01/40] yEnc', + 'ordinal' => 10, + ), + 150 => + array ( + 'id' => 151, + 'group_regex' => '^alt\\.binaries\\.classic\\.tv\\.shows$', + 'regex' => '/^(?PBy req: ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//By req: "Dennis The Menace - 4x25 - Dennis and the Homing Pigeons.part05.rar" yEnc', + 'ordinal' => 15, + ), + 151 => + array ( + 'id' => 152, + 'group_regex' => '^alt\\.binaries\\.classic\\.tv\\.shows$', + 'regex' => '/^(?P[a-zA-Z ]+HQ DVDRips ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") \\[\\d+\\/\\d+\\] yEnc$/i', + 'status' => 1, + 'description' => '//I Spy HQ DVDRips "I Spy - 3x26 Pinwheel.part10.rar" [13/22] yEnc', + 'ordinal' => 20, + ), + 152 => + array ( + 'id' => 153, + 'group_regex' => '^alt\\.binaries\\.classic\\.tv\\.shows$', + 'regex' => '/^(?P[a-zA-Z0-9].+? (S\\d+D\\d+|- Season \\d+ -) \\[)\\d+\\/\\d+\\] - ".+?"? yEnc$/', + 'status' => 1, + 'description' => '//Sledge Hammer! S2D2 [016/138] - "SH! S2 D2.ISO.016" yEnc ::: //Sledge Hammer! S2D2 [113/138] - "SH! S2 D2.ISO.1132 yEnc ::: //Lost In Space - Season 1 - [13/40] - "S1E02 - The Derelict.avi" yEnc', + 'ordinal' => 25, + ), + 153 => + array ( + 'id' => 154, + 'group_regex' => '^alt\\.binaries\\.classic\\.tv\\.shows$', + 'regex' => '/^(?P[a-zA-Z0-9].+? \\d{4}-\\d\\d-\\d\\d( \\[.+?\\])? \\()\\d+\\/\\d+\\) - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Night Flight TV Show rec 1991-01-12 (02/54) - "night flight rec 1991-01-12.nfo" yEnc ::: //Night Flight TV Show rec 1991-05-05 [NEW PAR SET] (1/9) - "night flight rec 1991-05-05.par2" yEnc', + 'ordinal' => 30, + ), + 154 => + array ( + 'id' => 155, + 'group_regex' => '^alt\\.binaries\\.classic\\.tv\\.shows$', + 'regex' => '/^(?P[a-zA-Z0-9][a-zA-Z0-9.-]+ \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//The.Love.Boat.S05E08 [01/31] - "The.Love.Boat.S05E08.Chefs.Special.Kleinschmidt.New.Beginnings.par2" yEnc', + 'ordinal' => 35, + ), + 155 => + array ( + 'id' => 156, + 'group_regex' => '^alt\\.binaries\\.classic\\.tv\\.shows$', + 'regex' => '/^(?P".+?)(\\.part\\d*|\\.rar)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/i', + 'status' => 1, + 'description' => '//"Batman - S1E13-The Thirteenth Hat.par2" yEnc', + 'ordinal' => 40, + ), + 156 => + array ( + 'id' => 157, + 'group_regex' => '^alt\\.binaries\\.classic\\.tv\\.shows$', + 'regex' => '/^(Re: )?(?P[a-zA-Z0-9]+ .+? series \\d+ - \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Re: Outside Edge series 1 - [01/20] - "Outside Edge S01.nfo" yEnc', + 'ordinal' => 45, + ), + 157 => + array ( + 'id' => 158, + 'group_regex' => '^alt\\.binaries\\.classic\\.tv\\.shows$', + 'regex' => '/^(?P[a-zA-Z0-9 -_\\.:]+) - \\d+(?P of \\d+)[-_ ]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") (\\(\\d+\\/\\d+\\) )?(yEnc)?$/i', + 'status' => 1, + 'description' => '//\'Mission: Impossible\' - 1x09 - NTSC - DivX - 28 of 48 - "MI-S01E09.r23" yEnc ::: //\'Mission: Impossible\' - 1x09 - NTSC - DivX - 01 of 48 - "MI-S01E09.nfo" (1/1)', + 'ordinal' => 50, + ), + 158 => + array ( + 'id' => 159, + 'group_regex' => '^alt\\.binaries\\.classic\\.tv\\.shows$', + 'regex' => '/^"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")(yEnc)?( )?$/i', + 'status' => 1, + 'description' => '//"Batman - S2E58-Ice Spy.par2"yEnc ::: //"Black Sheep Squadron 1x03 Best Three Out of Five.par2"', + 'ordinal' => 55, + ), + 159 => + array ( + 'id' => 160, + 'group_regex' => '^alt\\.binaries\\.classic\\.tv\\.shows$', + 'regex' => '/^"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") \\(Not My Rip\\).+ \\d+ (?P- \\d+) .+ yEnc$/i', + 'status' => 1, + 'description' => '//"Guns of Will Sonnett - 1x04.mp4" (Not My Rip)Guns Of Will Sonnett Season 1 1 - 26 Mp4 With Pars yEnc', + 'ordinal' => 60, + ), + 160 => + array ( + 'id' => 161, + 'group_regex' => '^alt\\.binaries\\.classic\\.tv\\.shows$', + 'regex' => '/^\\(\\d+\\/(?P\\d+\\) ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB] - yEnc$/i', + 'status' => 1, + 'description' => '//(01/10) "Watch_With_Mother-Bill_And_Ben-1953_02_12-Scarecrow-VHSRip-XviD.avi" - 162.20 MB - yEnc', + 'ordinal' => 65, + ), + 161 => + array ( + 'id' => 162, + 'group_regex' => '^alt\\.binaries\\.classic\\.tv\\.shows$', + 'regex' => '/^\\(.+\\) "(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") \\[\\d+\\/(?P\\d+\\]) (Last One I Have! )?yEnc$/i', + 'status' => 1, + 'description' => '//(Our Gang - Little Rascals DVDRips) "Our Gang - The Lucky Corner (1936).part0.sfv" [01/19] yEnc ::: //(Our Gang - Little Rascals DVDRips) "Our Gang - Wild Poses (1933).part.par" [02/20] Last One I Have! yEnc', + 'ordinal' => 70, + ), + 162 => + array ( + 'id' => 163, + 'group_regex' => '^alt\\.binaries\\.classic\\.tv\\.shows$', + 'regex' => '/^.+ Usenet Past .+\\[\\d+\\/(?P\\d+\\]) - "(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[EnJoY] =>A Blast from Usenet Past (1/3)<= [00/14] - "Mcdonalds Training Film - 1972 (Vhs-Mpg).part.nzb" yEnc', + 'ordinal' => 75, + ), + 163 => + array ( + 'id' => 164, + 'group_regex' => '^alt\\.binaries\\.classic\\.tv\\.shows$', + 'regex' => '/^ \\[\\d+\\/(?P\\d+\\]) - "(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '// [01/12] - "Yancy Derringer - 03 - Geheime Fracht.par2" yEnc', + 'ordinal' => 80, + ), + 164 => + array ( + 'id' => 165, + 'group_regex' => '^alt\\.binaries\\.classic\\.tv\\.shows$', + 'regex' => '/^.+ [\\[\\(]\\d+( of |\\/)(?P\\d+[\\]\\)])[-_ ]{0,3}"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//77 Sunset Strip 409 [1 of 23] "77 Sunset Strip 409 The Missing Daddy Caper.avi.vol63+34.par2" yEnc ::: //Barney.Miller.NZBs [001/170] - "Barney.Miller.S01E01.Ramon.nzb" yEnc', + 'ordinal' => 85, + ), + 165 => + array ( + 'id' => 166, + 'group_regex' => '^alt\\.binaries\\.classic\\.tv\\.shows$', + 'regex' => '/^.+[-_ ]{0,3}"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") [\\[\\(]\\d+\\/(?P\\d+[\\]\\)]) yEnc$/i', + 'status' => 1, + 'description' => '//All in the Family - missing eps - DVDRips "All in the Family - 6x23 Gloria & Mike\'s House Guests.part5.rar" [08/16] yEnc ::: //Amos \'n\' Andy - more shows---read info.txt "Amos \'n\' Andy S01E00 Introduction of the Cast.mkv.001" (002/773) yEnc', + 'ordinal' => 90, + ), + 166 => + array ( + 'id' => 167, + 'group_regex' => '^alt\\.binaries\\.classic\\.tv\\.shows$', + 'regex' => '/^(?P.+\\d+x\\d+.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol\\d+\\+\\d+\\.par2|\\.[A-Za-z0-9]{2,4})( yEnc)?( (Series|Season) Finale)?$/', + 'status' => 1, + 'description' => '//Andy Griffith Show,The 1x05....Irresistible Andy - (DVD).part04.rar', + 'ordinal' => 95, + ), + 167 => + array ( + 'id' => 168, + 'group_regex' => '^alt\\.binaries\\.comp$', + 'regex' => '/^(?P[\\w.]+\\s+\\[)\\d+\\/\\d+\\] -\\d+\\s+".+?" yEnc$/i', + 'status' => 1, + 'description' => '//Sims3blokjesremover [0/0] -3162 "Sims3blokjesremover.nzb" yEnc ::: //xSIMS_The_Sims_3_Censor_Remover_v2.91', + 'ordinal' => 5, + ), + 168 => + array ( + 'id' => 169, + 'group_regex' => '^alt\\.binaries\\.comp$', + 'regex' => '/^(?P[a-zA-Z0-9].+?\\s+\\()\\d+\\/\\d+\\) ".+?" - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/', + 'status' => 1, + 'description' => '//Photo Mechanic 5.0 build 13915 (1/6) "Photo Mechanic 5.0 build 13915 (1).par2" - 32,97 MB - yEnc', + 'ordinal' => 10, + ), + 169 => + array ( + 'id' => 170, + 'group_regex' => '^alt\\.binaries\\.comp$', + 'regex' => '/^\\(\\d+(?P\\/\\d+\\) .+? post .+? ").+?" yEnc$/', + 'status' => 1, + 'description' => '//(45/74) NikJosuf post Magento tutorials "43 - Theming Magento 19 - Adding a Responsive Slideshow.mp4" yEnc', + 'ordinal' => 15, + ), + 170 => + array ( + 'id' => 171, + 'group_regex' => '^alt\\.binaries\\.cores$', + 'regex' => '/^Film - \\[\\d+\\/(?P\\d+\\] - )?"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Film - [13/59] - "Jerry Maguire (1996) 1080p DTS multisub HUN HighCode-PHD.part13.rar" yEnc ::: //Film - "Phone.booth.2003.RERIP.Bluray.1080p.DTS-HD.x264-Grym.part001.rar" yEnc', + 'ordinal' => 5, + ), + 171 => + array ( + 'id' => 172, + 'group_regex' => '^alt\\.binaries\\.cores$', + 'regex' => '/^\\[Art-Of-Use\\.Net\\] :: \\[.+?\\] :: - \\[\\d+\\/(?P\\d+\\][-_ ]{0,3}"(.+?))([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[Art-Of-Use.Net] :: [AUTO] :: - [34/36] - "ImmoralLive.13.11.10.Immoral.Orgies.Rikki.Six.Carmen.Callaway.And.Amanda.Tate.XXX.1080p.MP4-KTR.vol15+16.par2" yEnc', + 'ordinal' => 10, + ), + 172 => + array ( + 'id' => 173, + 'group_regex' => '^alt\\.binaries\\.cores$', + 'regex' => '/^brothers-of-usenet\\.info\\.net.+SSL-News\\.info-----(?P.+) - "(.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//brothers-of-usenet.info.net Partner von---- SSL-News.info----- brothers-of-usenet.info.net Partner von---- SSL-News.info-----AVG.Internet.Security.2014.Build.4335.x86.x64 - "AVG.Internet.Security.2014.Build.4335.vol00+01.PAR2" - 315,68 MB - yEnc', + 'ordinal' => 15, + ), + 173 => + array ( + 'id' => 174, + 'group_regex' => '^alt\\.binaries\\.cores$', + 'regex' => '/^>+GOU<+ (?P.+?) >+www\\..+?<+ - \\(\\d+\\/\\d+\\) - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//>GOU<< ZDF.History.Das.Geiseldrama.von.Gladbeck.GERMAN.DOKU.720p.HDTV.x264-TVP >>www.SSL-News.info< - (02/35) - "tvp-gladbeck-720p.nfo" yEnc', + 'ordinal' => 20, + ), + 174 => + array ( + 'id' => 175, + 'group_regex' => '^alt\\.binaries\\.cores$', + 'regex' => '/^<<>> \\[\\d+\\/(?P\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//<<>> USC <<>> [22/26] - "Zombie.Tycoon.2.Brainhovs.Revenge-SKIDROW.vol00+1.par2" - 1,85 GB yEnc', + 'ordinal' => 25, + ), + 175 => + array ( + 'id' => 176, + 'group_regex' => '^alt\\.binaries\\.cores$', + 'regex' => '/^[a-zA-Z0-9]+ post voor u op www\\..+? - \\[\\d+\\/\\d+\\] - "(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Jipejans post voor u op www.Dreamplace.biz - [010/568] - "Alien-Antology-DC-Special-Edition-1979-1997-1080p-GER-HUN-HighCode.part009.rar" yEnc ::: //Egbert47 post voor u op www.nzbworld.me - [01/21] - "100 Hits - Lady Sings The Blues 2006 (5cd\'s).par2" yEnc', + 'ordinal' => 30, + ), + 176 => + array ( + 'id' => 177, + 'group_regex' => '^alt\\.binaries\\.cores$', + 'regex' => '/^>+ .+?\\.info [<>+]+ .+?\\.com <+ "(?P.+?)\\s+- .*?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - .+? yEnc$/i', + 'status' => 1, + 'description' => '//>>> usenet4ever.info <<<+>>> secretusenet.com <<< "Weltnaturerbe USA Grand Canyon Nationalpark 2012 3D Blu-ray untouched - DarKneSS.part039.rar" - DarKneSS yEnc', + 'ordinal' => 35, + ), + 177 => + array ( + 'id' => 178, + 'group_regex' => '^alt\\.binaries\\.cores$', + 'regex' => '/^Old\\s+Dad\\s+uppt?\\s*?(?P.+?)( mp4| )?\\[?\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Old Dad uppt Der gro?e Gatsby BD Rip AC3 Line XvidD German 01/57] - "Der gro?e Gatsby.par2" yEnc', + 'ordinal' => 40, + ), + 178 => + array ( + 'id' => 179, + 'group_regex' => '^alt\\.binaries\\.cores$', + 'regex' => '/^[A-Za-z]+ - \\[\\d+\\/\\d+\\] - "\\d+-(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//panter - [46/60] - "68645-Busty Beauties Car Wash XXX 3D BD26.part45.rar" yEnc ::: //Wildrose - [01/57] - "49567-Kleine Rode Tractor Buitenpret.par2" yEnc', + 'ordinal' => 45, + ), + 179 => + array ( + 'id' => 180, + 'group_regex' => '^alt\\.binaries\\.cores$', + 'regex' => '/^\\[ TOWN \\][ _-]{0,3}\\[ www\\.town\\.ag \\][ _-]{0,3}\\[ partner of www\\.ssl-news\\.info \\][ _-]{0,3}\\[ .* \\] \\[\\d+\\/(?P\\d+\\][ _-]{0,3}("|#34;).+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//[ TOWN ]-[ www.town.ag ]-[ partner of www.ssl-news.info ]-[ MOVIE ] [14/19] - "Night.Vision.2011.DVDRip.x264-IGUANA.part12.rar" - 660,80 MB yEnc', + 'ordinal' => 50, + ), + 180 => + array ( + 'id' => 181, + 'group_regex' => '^alt\\.binaries\\.cores$', + 'regex' => '/^\\[ TOWN \\][ _-]{0,3}\\[ www\\.town\\.ag \\][ _-]{0,3}\\[ partner of www\\.ssl-news\\.info \\] \\[\\d+\\/(?P\\d+\\][ _-]{0,3}("|#34;).+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//[ TOWN ]-[ www.town.ag ]-[ partner of www.ssl-news.info ] [01/28] - "Shadowrun_Returns_MULTi4-iNLAWS.par2" - 1,11 GB yEnc', + 'ordinal' => 55, + ), + 181 => + array ( + 'id' => 182, + 'group_regex' => '^alt\\.binaries\\.cores$', + 'regex' => '/^[ _-]{0,3}\\w+(-\\w+)?[ _-]{0,3}\\d+[ _-]{0,3}(?P.+) - \\[\\d+\\/\\d+\\][ _-]{0,3}("|#34;).+?("|#34;) yEnc$/i', + 'status' => 1, + 'description' => '// - FLAC - 1330543524 - Keziah_Jones-Femiliarise-PROMO_CDS-FLAC-2003-oNePiEcE - [01/11] - "00-keziah_jones-femiliarise-promo_cds-flac-2003-1.jpg" yEnc', + 'ordinal' => 60, + ), + 182 => + array ( + 'id' => 183, + 'group_regex' => '^alt\\.binaries\\.cores$', + 'regex' => '/.*[\\(\\[]\\d+\\/(?P\\d+[\\)\\]])[-_ ]{0,3}"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4})[-_ ]{0,3}(\\d+[.,]\\d+ [kKmMgG][bB](ytes)?)? yEnc$/i', + 'status' => 1, + 'description' => '//[ TOWN ]-[ www.town.ag ]-[ partner of www.ssl-news.info ] [26/26] - "Legally.Brown.S01E06.HDTV.x264-BWB.vol7+4.par2" - 332,80 MB yEnc', + 'ordinal' => 65, + ), + 183 => + array ( + 'id' => 184, + 'group_regex' => '^alt\\.binaries\\.cores$', + 'regex' => '/^Doobz (?P[a-zA-z-_]+) \\[\\d+\\/(?P\\d+\\]) - ".+([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Doobz Europa_Universalis_IV_Conquest_of_Paradise-FLT [10/54] - "flt-eucp.001" yEnc', + 'ordinal' => 70, + ), + 184 => + array ( + 'id' => 185, + 'group_regex' => '^alt\\.binaries\\.cores$', + 'regex' => '/^\\[\\d+\\/(?P\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/i', + 'status' => 1, + 'description' => '//[01/10] - "Wondershare.Video.Converter.Ultimate.v6.7.1.0.Multilanguage.par2" - 45,44 MB yEnc', + 'ordinal' => 75, + ), + 185 => + array ( + 'id' => 186, + 'group_regex' => '^alt\\.binaries\\.pictures\\.erotica\\.anime$', + 'regex' => '/(?P.*)\\s+-\\s+\\d+\\s+of\\s+\\d+\\s+-\\s+yEnc\\s+".*"/i', + 'status' => 1, + 'description' => '// pictures.erotica.anime has really only header we care about in the form ::: // [ABPEA - Original] Arima Zin - Tennen Koiiro Alcohol [BB, Boy] - 005 of 229 - yEnc "Tennen_Koiiro_Alcohol-005.jpg" ::: // in this case we only need the title of the manga, not which image we are viewing or the post file name', + 'ordinal' => 5, + ), + 186 => + array ( + 'id' => 187, + 'group_regex' => '^alt\\.binaries\\.console\\.ps3$', + 'regex' => '/^(?P\\[\\d+\\]-\\[ABGX\\.(?Pnet|NET)\\] - ").+?(" - \\d+[,.]\\d+ [kKmMgG][bB] - )yEnc$/', + 'status' => 1, + 'description' => '//[4062]-[ABGX.net] - "unlimited-skyrim.legendary.multi4.ps3.par2" - 17.10 GB - yEnc', + 'ordinal' => 5, + ), + 187 => + array ( + 'id' => 188, + 'group_regex' => '^alt\\.binaries\\.console\\.ps3$', + 'regex' => '/^(?P\\[\\d+\\]-\\[abgx\\] - ").+?" yEnc$/', + 'status' => 1, + 'description' => '//[4017]-[abgx]- "duplex.nfo" yEnc', + 'ordinal' => 10, + ), + 188 => + array ( + 'id' => 189, + 'group_regex' => '^alt\\.binaries\\.console\\.ps3$', + 'regex' => '/^(?P\\[\\d+\\] \\[\\d+\\/\\d+\\] - ").+?" yEnc$/', + 'status' => 1, + 'description' => '//[4197] [036/103] - "ant-mgstlcd2.r34" yEnc', + 'ordinal' => 15, + ), + 189 => + array ( + 'id' => 190, + 'group_regex' => '^alt\\.binaries\\.console\\.ps3$', + 'regex' => '/(?P[A-Z0-9]\\w{10,}-?PS3-[a-zA-Z0-9]+ \\[)\\d+\\/\\d+\\] - ".+?" $/', + 'status' => 1, + 'description' => '//Musou_Orochi_Z_JPN_PS3-JPMORGAN [62/62] - "jpmorgan.nfo" yEnc', + 'ordinal' => 20, + ), + 190 => + array ( + 'id' => 191, + 'group_regex' => '^alt\\.binaries\\.console\\.ps3$', + 'regex' => '/^"(?P.+)__www.realmom.info__.+" \\(\\d+\\/(?P\\d+\\)) \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/', + 'status' => 1, + 'description' => '//"Armored_Core_V_PS3-ANTiDOTE__www.realmom.info__.r00" (03/78) 3,32 GB yEnc', + 'ordinal' => 25, + ), + 191 => + array ( + 'id' => 192, + 'group_regex' => '^alt\\.binaries\\.console\\.ps3$', + 'regex' => '/^"(?P.+)__www.realmom.info__.+" (?P\\d+[.,]\\d+ [kKmMgG][bB]) yEnc$/', + 'status' => 1, + 'description' => '//"Ace.Combat.Assault.Horizon.PS3-DUPLEX__www.realmom.info__.nfo" 7,14 GB yEnc', + 'ordinal' => 30, + ), + 192 => + array ( + 'id' => 193, + 'group_regex' => '^alt\\.binaries\\.country\\.mp3$', + 'regex' => '/^(?PAttn: .+? - .+? - .+? - )(\\d+ - )?.+?\\.[A-Za-z0-9]{2,4} yEnc$/', + 'status' => 1, + 'description' => '//Attn: wulf109 - Jim Reeves - There\'s Someone Who Loves You - 01 - Anna Marie.mp3 yEnc ::: //Attn: wulf109 - Jim Reeves - There\'s Someone Who Loves You - Front.jpg yEnc', + 'ordinal' => 5, + ), + 193 => + array ( + 'id' => 194, + 'group_regex' => '^alt\\.binaries\\.country\\.mp3$', + 'regex' => '/^(?P[A-Z0-9].{3,} -( (19|20)\\d\\d - )?[A-Z0-9].{3,}\\s+")[A-Z0-9].{3,} - \\d+ - [A-Z0-9].+?\\.[A-Za-z0-9]{2,4}" yEnc$/', + 'status' => 1, + 'description' => '//Jo Dee Messina - A Joyful Noise "01 - Winter Wonderland.mp3" yEnc ::: //Karen Lynne - 2000 - Six Days in December "Pat Drummond and Karen Lynne - 01 - The Rush.mp3" yEnc', + 'ordinal' => 10, + ), + 194 => + array ( + 'id' => 195, + 'group_regex' => '^alt\\.binaries\\.country\\.mp3$', + 'regex' => '/^(?P(\\]?"[A-Z0-9].{3,} - )+?([A-Z0-9].{3,}? - )+?)(\\d\\d - )?[a-zA-Z0-9].+?\\.[A-Za-z0-9]{2,4}" yEnc$/', + 'status' => 1, + 'description' => '//"Heather Myles - Highways and Honky Tonks - 05 - True Love.mp3" yEnc ::: //"Reba McEntire - The Secret Of Giving - A Christmas Collection - 09 - This Christmas.mp3" yEnc ::: //]"Heather Myles - Highways and Honky Tonks - 05 - True Love.mp3" yEnc ::: //"Reba McEntire - Moments & Memories - The Best Of Reba - Australian-back.jpg" yEnc ::: //"Reba McEntire - The Secret Of Giving - A Christmas Collection - 01 - This Is My Prayer For You.mp3" yEnc ::: //"Reba McEntire - American Legends-Best Of The Early Years - 02 - You Really Better Love Me After This.Mp3" yEnc', + 'ordinal' => 15, + ), + 195 => + array ( + 'id' => 196, + 'group_regex' => '^alt\\.binaries\\.country\\.mp3$', + 'regex' => '/^(?P"[A-Z0-9].{3,}? - )(([A-Z0-9][^-]{3,}?|\\s*\\d\\d) - )?[a-zA-Z0-9].{2,}?\\.[A-Za-z0-9]{2,4}?" yEnc$/', + 'status' => 1, + 'description' => '//"Reba McEntire - Duets.m3u" yEnc ::: //"Reba McEntire - Greatest Hits Volume Two - back.jpg" yEnc ::: //"Reba McEntire - American Legends-Best Of The Early Years.m3u" yEnc ::: //"Jason Allen - 00 - nfo.txt" yEnc ::: //"Sean Ofarrell-L', + 'ordinal' => 20, + ), + 196 => + array ( + 'id' => 197, + 'group_regex' => '^alt\\.binaries\\.country\\.mp3$', + 'regex' => '/^(?P\\]"[\\w-]{10,}?)-[a-zA-Z0-9]+\\.[a-zA-Z0-9]{2,4}" yEnc$/', + 'status' => 1, + 'description' => '//]"Heather_Myles_-_Highways_And_Honky_Tonks-back.jpg" yEnc', + 'ordinal' => 25, + ), + 197 => + array ( + 'id' => 198, + 'group_regex' => '^alt\\.binaries\\.country\\.mp3$', + 'regex' => '/^(?P[A-Z0-9].{3,}? - [A-Z0-9].{3,}? - )\\d\\d - [a-zA-Z0-9].{2,}?\\.[A-Za-z0-9]{2,4}?" yEnc$/', + 'status' => 1, + 'description' => '//Merv & Maria - Chasing Rainbows Merv & Maria - 01 - Sowin\' Love.mp3" yEnc', + 'ordinal' => 30, + ), + 198 => + array ( + 'id' => 199, + 'group_regex' => '^alt\\.binaries\\.dc$', + 'regex' => '/^(?P[A-Z0-9].+? postet\\s+.+?\\s+\\[)\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Eragon postet Horror S01 E01 german Sub [02/22] - "kopiert neu.par2" yEnc ::: //Eragon postet Rapunzel S02E12 german Sub hardcodet [02/18] - "Rapunzel S02E12 HDTV x264-LOL ger subbed.par2" yEnc', + 'ordinal' => 5, + ), + 199 => + array ( + 'id' => 200, + 'group_regex' => '^alt\\.binaries\\.documentaries$', + 'regex' => '/^(?P#sterntuary - .+? - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//#sterntuary - Alex Jones Radio Show - "05-03-2009_INFO_BAK_ALJ.nfo" yEnc', + 'ordinal' => 5, + ), + 200 => + array ( + 'id' => 201, + 'group_regex' => '^alt\\.binaries\\.documentaries$', + 'regex' => '/^\\(\\d+\\/(?P\\d+\\)) "((BBC|ITV) )?(?P.+?)(\\.part\\d+)?(\\.(par2|(vol.+?))"|\\.[a-z0-9]{3}"|") - \\d.+? - (\\d.+? -)? yEnc$/', + 'status' => 1, + 'description' => '//(08/25) "Wild Russia 5 of 6 The Secret Forest 2009.part06.rar" - 47.68 MB - 771.18 MB - yEnc ::: //(01/24) "ITV Wild Britain With Ray Mears 1 of 6 Deciduous Forest 2011.nfo" - 4.34 kB - 770.97 MB - yEnc ::: //(24/24) "BBC Great British Garden Revival 03 of 10 Cottage Gardens And House Plants 2013.vol27+22.PAR2" - 48.39 MB - 808.88 MB - yEnc', + 'ordinal' => 10, + ), + 201 => + array ( + 'id' => 202, + 'group_regex' => '^alt\\.binaries\\.documentaries$', + 'regex' => '/^.+?\\[\\d+\\/(?P\\d+\\][-_ ]{0,3}.+?)[-_ ]{0,3}("|#34;)(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}("|#34;))[-_ ]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//(World Air Routes - WESTJET - B737-700) [028/109] - "World Air Routes - WESTJET - B737-700.part027.rar" yEnc', + 'ordinal' => 15, + ), + 202 => + array ( + 'id' => 203, + 'group_regex' => '^alt\\.binaries\\.documentaries$', + 'regex' => '/.*[\\(\\[]\\d+\\/(?P\\d+[\\)\\]])[-_ ]{0,3}("|#34;)(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4})("|#34;)(.+?)yEnc$/i', + 'status' => 1, + 'description' => '//Beyond Vanilla (2010) Documentary DVDrip XviD-Uncut - (02/22) "Beyond.Vanilla.2010.Documentary.DVDrip.XviD-Uncut.par2" - yenc yEnc', + 'ordinal' => 20, + ), + 203 => + array ( + 'id' => 204, + 'group_regex' => '^alt\\.binaries\\.documentaries$', + 'regex' => '/.*[\\(\\[]\\d+-(?P\\d+[\\)\\]])[-_ ]{0,3}("|#34;)(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}("|#34;)).+?yEnc$/i', + 'status' => 1, + 'description' => '//Rough Cut - Woodworking with Tommy Mac - Pilgrim Blanket Chest (1600s) DVDrip DivX - (02-17) "Rough.Cut-Woodworking.with.Tommy.Mac-Pilgrim.Blanket.Chest.1600s-DVDrip.DivX.2010.par2" - yEnc yEnc', + 'ordinal' => 25, + ), + 204 => + array ( + 'id' => 205, + 'group_regex' => '^alt\\.binaries\\.documentaries$', + 'regex' => '/(?P.+) - [\\(\\[]\\d+(?P\\|\\d+[\\)\\]])[-_ ]{0,3}("|#34;).+?(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}("|#34;)).+?yEnc$/i', + 'status' => 1, + 'description' => '//Asia This Week (NHK World, 19 & 20 July 2013) - \'Malala\'s movement for girls\' education + Japan seeks imports from Southeast Asia - soccer players\' - (02|14) - "ATW-2013-07-20.par2" yEnc ::: //Asia Biz Forecast (NHK World, 6 & 7 July 2013) - \'China: limits of growth + Japan: remote access\' - (05|14) - "ABF-2013-07-07.part3.rar" yEnc', + 'ordinal' => 30, + ), + 205 => + array ( + 'id' => 206, + 'group_regex' => '^alt\\.binaries\\.documentaries$', + 'regex' => '/(?P.+) - File \\d+ of (?P\\d+)[-_ ]{0,3}.+?(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}).+?yEnc$/i', + 'status' => 1, + 'description' => '//Asia Biz Forecast (NHK World, 16-17 June 2012) - "Japan seeks energy options" - File 01 of 14 - ABF-2012-06-16.nfo (yEnc', + 'ordinal' => 35, + ), + 206 => + array ( + 'id' => 207, + 'group_regex' => '^alt\\.binaries\\.documentaries$', + 'regex' => '/.*"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}") (?P\\d+[,.]\\d+ [kKmMgG][bB]ytes) yEnc$/i', + 'status' => 1, + 'description' => '//Dark MatterDark Energy S02E06 - "Dark Matter_Dark Energy S02E06 - The Universe - History Channel.part1.rar" 51.0 MBytes yEnc', + 'ordinal' => 40, + ), + 207 => + array ( + 'id' => 208, + 'group_regex' => '^alt\\.binaries\\.documentaries$', + 'regex' => '/\\(\\d+\\/(?P\\d+\\) - .+) - "(.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB] - yEnc$/i', + 'status' => 1, + 'description' => '//(35/45) - Keating Pt4 - "Keating Pt4.part34.rar" - 1.77 GB - yEnc', + 'ordinal' => 45, + ), + 208 => + array ( + 'id' => 209, + 'group_regex' => '^alt\\.binaries\\.downunder$', + 'regex' => '/^(?P[a-zA-Z0-9]{5,}\\[)\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//RWlgVffClWxD0vXT1peIwb9DubTLMiYm3nvD1aMMDe[04/16] - "A9jFik7Fk4hCG4GWuxAg.r02" yEnc', + 'ordinal' => 5, + ), + 209 => + array ( + 'id' => 210, + 'group_regex' => '^alt\\.binaries\\.dvd$', + 'regex' => '/^(thnx to original poster )?\\[\\d+(?P\\/\\d+\\] - ".+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2|\\.[A-Za-z0-9]{2,4})("| `).* yEnc$/', + 'status' => 1, + 'description' => '//thnx to original poster [00/98] - "2669DFKKFD2008.nzb ` 2669DFKKFD2008 " yEnc', + 'ordinal' => 5, + ), + 210 => + array ( + 'id' => 211, + 'group_regex' => '^alt\\.binaries\\.dvd-r$', + 'regex' => '/^(?Pkatanxya "katanxya\\d+)/', + 'status' => 1, + 'description' => '//katanxya "katanxya7221.par2" yEnc', + 'ordinal' => 5, + ), + 211 => + array ( + 'id' => 212, + 'group_regex' => '^alt\\.binaries\\.dvd-r$', + 'regex' => '/^\\[\\d+\\/\\d+\\] - "(?P[A-Z0-9](19|20)\\d\\d[01]\\d[123]\\d_\\d+\\.).+?" - \\d+[,.]\\d+ [mMkKgG][bB] yEnc$/', + 'status' => 1, + 'description' => '//[01/52] - "H1F3E_20130715_005.par2" - 4.59 GB yEnc', + 'ordinal' => 10, + ), + 212 => + array ( + 'id' => 213, + 'group_regex' => '^alt\\.binaries\\.ebook$', + 'regex' => '/^New eBooks.+[ _-]{0,3}("|#34;)(?P.+?.+)\\.(par|vol|rar|nfo).*?("|#34;)/i', + 'status' => 1, + 'description' => '//New eBooks 8 June 2013 - "Melody Carlson - [Carter House Girls 08] - Last Dance (mobi).rar"', + 'ordinal' => 5, + ), + 213 => + array ( + 'id' => 214, + 'group_regex' => '^alt\\.binaries\\.ebook$', + 'regex' => '/www.nzbworld.me - \\[\\d+\\/(?P\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") yEnc/i', + 'status' => 1, + 'description' => '//(Nora Roberts)"Black Rose - Nora Roberts.epub" yEnc ::: //Rowwendees post voor u op www.nzbworld.me - [0/6] - "Animaniacs - Lights, Camera, Action!.nzb" yEnc (1/1)', + 'ordinal' => 10, + ), + 214 => + array ( + 'id' => 215, + 'group_regex' => '^alt\\.binaries\\.ebook$', + 'regex' => '/town\\.ag.+?(download all our files with|partner of).+?www\\..+?\\.info.+? \\[\\d+\\/(?P\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/i', + 'status' => 1, + 'description' => '// >> www.ssl-news.info <<< > [02/19] - "2013.AUG.non-fiction.NEW.releases.part.1.(PDF)-MiMESiS.part01.rar" - 1,31 GB yEnc ::: // [3/3] - "Career.Secrets.Exposed.by.Gavin.F..Redelman_.RedStarResume.vol0+1.par2" - 8,16 MB yEnc', + 'ordinal' => 15, + ), + 215 => + array ( + 'id' => 216, + 'group_regex' => '^alt\\.binaries\\.ebook$', + 'regex' => '/\\((?P.+works)\\) \\[\\d+\\/(?P\\d+\\]) - "(?P.+?)\\.(mobi|pdf|epub|html|azw)" yEnc$/', + 'status' => 1, + 'description' => '//(Zelazny works) [36/39] - "Roger Zelazny - The Furies.mobi" yEnc', + 'ordinal' => 20, + ), + 216 => + array ( + 'id' => 217, + 'group_regex' => '^alt\\.binaries\\.ebook$', + 'regex' => '/^\\([a-zA-Z ]+ sampler\\) \\[\\d+(?P\\/\\d+\\]) - "(?P.+?)\\.(txt|pdf|mobi|epub|azw)" yEnc$/', + 'status' => 1, + 'description' => '//(Joan D Vinge sampler) [17/17] - "Joan D Vinge - World\'s End.txt" yEnc', + 'ordinal' => 25, + ), + 217 => + array ( + 'id' => 218, + 'group_regex' => '^alt\\.binaries\\.ebook$', + 'regex' => '/^New - Retail -( Juvenile Fiction -)? "(?P.+?)\\.(txt|pdf|mobi|epub|azw)" yEnc$/', + 'status' => 1, + 'description' => '//New - Retail - Juvenile Fiction - "Magic Tree House #47_ Abe Lincoln at Last! - Mary Pope Osborne & Sal Murdocca.epub" yEnc ::: //New - Retail - "Linda Howard - Cover of Night.epub" yEnc ::: //New - Retail - "Kylie Logan_Button Box Mystery 01 - Button Holed.epub" yEnc', + 'ordinal' => 30, + ), + 218 => + array ( + 'id' => 219, + 'group_regex' => '^alt\\.binaries\\.ebook$', + 'regex' => '/^\\(No\\. 1 Ladies Detective Agency\\) \\[\\d+(?P\\/\\d+\\]) - "(?P.+?)\\.(txt|pdf|mobi|epub|azw)" yEnc$/', + 'status' => 1, + 'description' => '//(No. 1 Ladies Detective Agency) [04/13] - "Alexander McCall Smith - No 1-12 - The Saturday Big Tent Wedding Party.mobi" yEnc', + 'ordinal' => 35, + ), + 219 => + array ( + 'id' => 220, + 'group_regex' => '^alt\\.binaries\\.ebook$', + 'regex' => '/^\\[\\d+\\/(?P\\d+\\]) (?P.+?)\\.(txt|pdf|mobi|epub|azw)/', + 'status' => 1, + 'description' => '//[25/33] Philip Jose Farmer - Toward the Beloved City [ss].mobi ::: //[2/4] Graham Masterton - Descendant.mobi', + 'ordinal' => 40, + ), + 220 => + array ( + 'id' => 221, + 'group_regex' => '^alt\\.binaries\\.ebook$', + 'regex' => '/(?P.+)[-_ ]{0,3}[\\(\\[]\\d+\\/(?P\\d+[\\)\\]][-_ ]{0,3}".+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//(NordicAlbino) [01/10] - "SWHQ_NA_675qe0033102suSmzSE.sfv" yEnc ::: //365 Sex Positions A New Way Every Day for a Steamy Erotic Year [eBook] - (1/5) "365.Sex.Positions.A.New.Way.Every.Day.for.a.Steamy.Erotic.Year.eBook.nfo" - yenc yEnc', + 'ordinal' => 45, + ), + 221 => + array ( + 'id' => 222, + 'group_regex' => '^alt\\.binaries\\.ebook$', + 'regex' => '/^\\[\\d+\\/(?P\\d+\\] .+?) - "(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}") yEnc$/', + 'status' => 1, + 'description' => '//[001/125] (NL Epub Wierook Set 49) - "Abulhawa, Susan - Litteken van David_Ochtend in Jenin.epub" yEnc', + 'ordinal' => 50, + ), + 222 => + array ( + 'id' => 223, + 'group_regex' => '^alt\\.binaries\\.ebook$', + 'regex' => '/^\\(\\d+\\/(?P\\d+\\)) "(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//(1/1) "Radiological Imaging of the Kidney - E. Quaia (Springer, 2011) WW.pdf" - 162,82 MB - (Radiological Imaging of the Kidney - E. Quaia (Springer, 2011) WW) yEnc', + 'ordinal' => 55, + ), + 223 => + array ( + 'id' => 224, + 'group_regex' => '^alt\\.binaries\\.ebook$', + 'regex' => '/^\\(\\d+\\/(?P\\d+\\)) "(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//(1/7) "0865779767.epub" - 88,93 MB - "Anatomic Basis of Neurologic Diagnosis - epub" yEnc', + 'ordinal' => 60, + ), + 224 => + array ( + 'id' => 225, + 'group_regex' => '^alt\\.binaries\\.ebook$', + 'regex' => '/^(?PAttn:|Re:|REQ:|New Scan).+?[-_ ]{0,3}"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")[-_ ]{0,3}(\\d+[.,]\\d+ [kKmMgG][bB](ytes)?)? yEnc$/i', + 'status' => 1, + 'description' => '//Re: REQ: Jay Lake\'s Mainspring series/trilogy (see titles inside) - "Lake, Jay - Clockwork Earth 03 - Pinion [epub].rar" 405.6 kBytes yEnc ::: //Attn: Brownian - "del Rey, Maria - Paradise Bay (FBS).rar" yEnc ::: //New Scan "Herbert, James - Sepulchre (html).rar" yEnc', + 'ordinal' => 65, + ), + 225 => + array ( + 'id' => 226, + 'group_regex' => '^alt\\.binaries\\.ebook$', + 'regex' => '/.*"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}").+?yEnc$/i', + 'status' => 1, + 'description' => '//"Gabaldon, Diana - Outlander [5] The Fiery Cross.epub" yEnc ::: //Kiny Friedman "Friedman, Kinky - Prisoner of Vandam Street_ A Novel, The.epub" yEnc', + 'ordinal' => 70, + ), + 226 => + array ( + 'id' => 227, + 'group_regex' => '^alt\\.binaries\\.ebook$', + 'regex' => '/(?P.+?)[-_ ]{0,3}\\d+\\/(?P\\d+[-_ ]{0,3}".+?)\\.(txt|pdf|mobi|epub|azw)"( \\(\\d+\\/\\d+\\))?( )?$/', + 'status' => 1, + 'description' => '//Patterson flood - Mobi - 15/45 "James Patterson - AC 13 - Double Cross.mobi"', + 'ordinal' => 75, + ), + 227 => + array ( + 'id' => 228, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/^New eBooks.+[ _-]{0,3}("|#34;)(?P.+?.+)\\.(par|vol|rar|nfo).*?("|#34;)/i', + 'status' => 1, + 'description' => '//New eBooks 8 June 2013 - "Melody Carlson - [Carter House Girls 08] - Last Dance (mobi).rar"', + 'ordinal' => 80, + ), + 228 => + array ( + 'id' => 229, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/^\\(Nora Roberts\\)"(?P.+?)\\.(?Pepub|mobi|html|pdf|azw)" yEnc$/', + 'status' => 1, + 'description' => '//(Nora Roberts)"Black Rose - Nora Roberts.epub" yEnc', + 'ordinal' => 85, + ), + 229 => + array ( + 'id' => 230, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/town\\.ag.+?download all our files with.+?www\\..+?\\.info.+? \\[\\d+(?P\\/\\d+\\] - ".+?)(-sample)?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/i', + 'status' => 1, + 'description' => '// >> www.ssl-news.info <<< > [02/19] - "2013.AUG.non-fiction.NEW.releases.part.1.(PDF)-MiMESiS.part01.rar" - 1,31 GB yEnc', + 'ordinal' => 90, + ), + 230 => + array ( + 'id' => 231, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/^Doctor Who - Target Books \\[\\d+\\/(?P\\d+\\]) - "DW[0-9]{0,3}[-_ ]{0,3}(?P.+?)\\.(txt|pdf|mobi|epub|azw)" yEnc$/', + 'status' => 1, + 'description' => '//Doctor Who - Target Books [128/175] - "DW125_ Terror of the Vervoids - Pip Baker.mobi" yEnc', + 'ordinal' => 95, + ), + 231 => + array ( + 'id' => 232, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/^\\((?P[a-zA-Z0-9 -]+)\\) \\[\\d+\\/(?P\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(American Curves - Summer 2012) [01/10] - "AMECURSUM12.par2" yEnc', + 'ordinal' => 100, + ), + 232 => + array ( + 'id' => 233, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/(?P.+)[-_ ]{0,3}[\\(\\[]\\d+\\/(?P\\d+[\\)\\]][-_ ]{0,3}".+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}").+?yEnc$/i', + 'status' => 1, + 'description' => '//(NordicAlbino) [01/10] - "SWHQ_NA_675qe0033102suSmzSE.sfv" yEnc ::: //365 Sex Positions A New Way Every Day for a Steamy Erotic Year [eBook] - (1/5) "365.Sex.Positions.A.New.Way.Every.Day.for.a.Steamy.Erotic.Year.eBook.nfo" - yenc yEnc', + 'ordinal' => 105, + ), + 233 => + array ( + 'id' => 234, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/^[\\(\\[]\\d+\\/(?P\\d+[\\)\\]][-_ ]{0,3}".+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}")([-_ ]{0,3}\\d+[.,]\\d+ [kKmMgG][bB])?[-_ ]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//[1/8] - "Robin Lane Fox - Travelling heroes.epub" yEnc ::: //(1/1) "Unintended Consequences - John Ross.nzb" - 8.67 kB - yEnc', + 'ordinal' => 110, + ), + 234 => + array ( + 'id' => 235, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/^[\\(\\[] .+? [\\)\\][-_ ]{0,3}"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")[-_ ]{0,3}[\\(\\[]\\d+\\/(?P\\d+[\\)\\]])[-_ ]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//[ Mega Dating and Sex Advice Ebooks - Tips and Tricks for Men PDF ] - "Vatsyayana - The Kama Sutra.pdf.rar" - (54/58) yEnc', + 'ordinal' => 115, + ), + 235 => + array ( + 'id' => 236, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/^(?PWWII in Photos)[-_ ]{0,3}"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")[-_ ]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//WWII in Photos - "WWII in Photos_05_Conflict Spreads Around the Globe - The Atlantic.epub" yEnc', + 'ordinal' => 120, + ), + 236 => + array ( + 'id' => 237, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/^.+?"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")[-_ ]{0,3}\\[\\d+ of (?P\\d+\\])[-_ ]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//Various ebooks on History pdf format "Chelsea House Publishing Discovering U.S. History Vol. 8, World War I and the Roaring Twenties - 1914-1928 (2010).pdf" [1 of 1] yEnc', + 'ordinal' => 125, + ), + 237 => + array ( + 'id' => 238, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/.+[\\(\\[]\\d+ of (?P\\d+[\\)\\]] ".+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}") yEnc$/', + 'status' => 1, + 'description' => '//A few things - [4 of 13] "Man From U.N.C.L.E. 08 - The Monster Wheel Affair - David McDaniel.epub" yEnc', + 'ordinal' => 130, + ), + 238 => + array ( + 'id' => 239, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/.+[\\(\\[]\\d+\\/(?P\\d+[\\)\\]] - ".+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}") toby\\d+$/', + 'status' => 1, + 'description' => '//DDR Kochbuch 1968-wir kochen gut [1/1] - "DDR Kochbuch 1968-wir kochen gut.pdf" toby042002', + 'ordinal' => 135, + ), + 239 => + array ( + 'id' => 240, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/^.+?[-_ ]{0,3}"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}") [\\(\\[]\\d+\\/(?P\\d+[\\)\\]]) ([-_ ]{0,3}\\d+[.,]\\d+ [kKmMgG][bB])?[-_ ]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//Pottermore UK retail - "Harry Potter and the Goblet of Fire - J.K. Rowling.epub" (05/14) - 907.57 kB - yEnc', + 'ordinal' => 140, + ), + 240 => + array ( + 'id' => 241, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/^\\[\\d+\\/(?P\\d+\\] .+?) - "(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}") yEnc$/', + 'status' => 1, + 'description' => '//[001/125] (NL Epub Wierook Set 49) - "Abulhawa, Susan - Litteken van David_Ochtend in Jenin.epub" yEnc', + 'ordinal' => 145, + ), + 241 => + array ( + 'id' => 242, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/^\\(\\d+\\/(?P\\d+\\)) "(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//(1/1) "Radiological Imaging of the Kidney - E. Quaia (Springer, 2011) WW.pdf" - 162,82 MB - (Radiological Imaging of the Kidney - E. Quaia (Springer, 2011) WW) yEnc', + 'ordinal' => 150, + ), + 242 => + array ( + 'id' => 243, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/^\\(\\d+\\/(?P\\d+\\)) "(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//(1/7) "0865779767.epub" - 88,93 MB - "Anatomic Basis of Neurologic Diagnosis - epub" yEnc', + 'ordinal' => 155, + ), + 243 => + array ( + 'id' => 244, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/^(?PAttn:|Re:|REQ:|New Scan).+?[-_ ]{0,3}"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")[-_ ]{0,3}(\\d+[.,]\\d+ [kKmMgG][bB](ytes)?)? yEnc$/i', + 'status' => 1, + 'description' => '//Re: REQ: Jay Lake\'s Mainspring series/trilogy (see titles inside) - "Lake, Jay - Clockwork Earth 03 - Pinion [epub].rar" 405.6 kBytes yEnc ::: //Attn: Brownian - "del Rey, Maria - Paradise Bay (FBS).rar" yEnc ::: //New Scan "Herbert, James - Sepulchre (html).rar" yEnc', + 'ordinal' => 160, + ), + 244 => + array ( + 'id' => 245, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/.*"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}").+?yEnc$/i', + 'status' => 1, + 'description' => '//"Gabaldon, Diana - Outlander [5] The Fiery Cross.epub" yEnc ::: //Kiny Friedman "Friedman, Kinky - Prisoner of Vandam Street_ A Novel, The.epub" yEnc', + 'ordinal' => 165, + ), + 245 => + array ( + 'id' => 246, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/(?P.+?)[-_ ]{0,3}\\d+\\/(?P\\d+[-_ ]{0,3}".+?)\\.(txt|pdf|mobi|epub|azw)"( \\(\\d+\\/\\d+\\))?( )?$/', + 'status' => 1, + 'description' => '//Patterson flood - Mobi - 15/45 "James Patterson - AC 13 - Double Cross.mobi"', + 'ordinal' => 170, + ), + 246 => + array ( + 'id' => 247, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/\\d+\\/(?P\\d+[-_ ]{0,3}.+)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4})[-_ ]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//04/63 Brave New World Revisited - Aldous Huxley.mobi yEnc', + 'ordinal' => 175, + ), + 247 => + array ( + 'id' => 248, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/^- (?P.+?)\\.(par|vol|rar|nfo)[-_ ]{0,3}(?P.+)/', + 'status' => 1, + 'description' => '//- Campbell, F.E. - Susan - HIT 125.rar BDSM Themed Adult Erotica - M/F F/F - Rtf & Pdf', + 'ordinal' => 180, + ), + 248 => + array ( + 'id' => 249, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/^"(?P.+?)\\.(txt|pdf|mobi|epub|azw)" \\(\\d+\\/(?P\\d+\\))/', + 'status' => 1, + 'description' => '//"D. F. Jones - 03 - Colossus and The Crab.epub" (1/3)', + 'ordinal' => 185, + ), + 249 => + array ( + 'id' => 250, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/^"(?P.+?)\\.(txt|pdf|mobi|epub|azw|lit|rar|nfo|par)" $/', + 'status' => 1, + 'description' => '//"D. F. Jones - 01 - Colossus.epub" (note the space on the end)', + 'ordinal' => 190, + ), + 250 => + array ( + 'id' => 251, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/^\\[\\d*+\\/(?P\\d+\\]) - "(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4} "|") yEnc$/i', + 'status' => 1, + 'description' => '//[01/19] - "13_X_Panzer_Tracts_EBook.nfo " yEnc', + 'ordinal' => 195, + ), + 251 => + array ( + 'id' => 252, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/^\\[\\d+\\/(?P\\d+\\]) (?P.+?)\\.(txt|pdf|mobi|epub|azw|lit|rar|nfo|par).+?(yEnc)?$/', + 'status' => 1, + 'description' => '//[09/14] Sven Hassel - Legion of the Damned 09, Reign of Hell.mobi sven hassel as requested (1/7) yEnc ::: //[1/1] Alex Berenson - John Wells 05, The Secret Soldier.mobi (space at end)', + 'ordinal' => 200, + ), + 252 => + array ( + 'id' => 253, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/^\\[\\d+\\/(?P\\d+\\]) - "(?P.+?)\\.(txt|pdf|mobi|epub|azw|lit|rar|nfo|par)"( \\d+K)?( )?$/', + 'status' => 1, + 'description' => '//[1/1] - "Die Kunst der Fotografie Lehrbuch und Bildband f r ambitionierte Fotografen.rar" ::: //[1/1] - "Demonic_ How the Liberal Mob Is Endanger - Coulter, Ann.mobi" (note space at end) ::: //[1/1] - "Paris in Love_ A Memoir - Eloisa James.mobi" 1861K', + 'ordinal' => 205, + ), + 253 => + array ( + 'id' => 254, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/^\\d+\\/(?P\\d+)[-_ ]{0,3}(?P.+?)\\.(txt|pdf|mobi|epub|azw|lit|rar|nfo|par)$/', + 'status' => 1, + 'description' => '//002/240 Swordships.of.Scorpio.(Dray.Prescot).-.Alan.Burt.Akers.epub', + 'ordinal' => 210, + ), + 254 => + array ( + 'id' => 255, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/^(?P[a-zA-Z0-9. ].+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|) yEnc$/i', + 'status' => 1, + 'description' => '//Akers Alan Burt - Dray Prescot Saga 14 - Krozair von Kregen.rar yEnc', + 'ordinal' => 215, + ), + 255 => + array ( + 'id' => 256, + 'group_regex' => '^alt\\.binaries\\.e-book.flood$', + 'regex' => '/^New eBooks.+[ _-]{0,3}("|#34;)(?P.+?.+)\\.(par|vol|rar|nfo).*?("|#34;)/i', + 'status' => 1, + 'description' => '//New eBooks 8 June 2013 - "Melody Carlson - [Carter House Girls 08] - Last Dance (mobi).rar"', + 'ordinal' => 220, + ), + 256 => + array ( + 'id' => 257, + 'group_regex' => '^alt\\.binaries\\.e-book.flood$', + 'regex' => '/town\\.ag.+?download all our files with.+?www\\..+?\\.info.+? \\[\\d+(?P\\/\\d+\\] - ".+?)(-sample)?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/i', + 'status' => 1, + 'description' => '// >> www.ssl-news.info <<< > [02/19] - "2013.AUG.non-fiction.NEW.releases.part.1.(PDF)-MiMESiS.part01.rar" - 1,31 GB yEnc', + 'ordinal' => 225, + ), + 257 => + array ( + 'id' => 258, + 'group_regex' => '^alt\\.binaries\\.e-book.flood$', + 'regex' => '/^[A-Za-z ]+[-_ ]{0,3}"(?P.+?)\\.(txt|pdf|mobi|epub|azw)"[-_ ]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//World War II History - "Spies of the Balkans - Alan Furst.mobi" yEnc ::: //True Crime "T. J. English - Havana Nocturne (v5.0).mobi" yEnc ::: //E C Tubb Flood - "E C Tubb - Dumarest 31 The Temple of Truth.epub" - yEnc', + 'ordinal' => 230, + ), + 258 => + array ( + 'id' => 259, + 'group_regex' => '^alt\\.binaries\\.e-book.flood$', + 'regex' => '/^SFF Dump - "(?P.+?)\\.(txt|pdf|mobi|epub|azw)" \\(\\d+\\/\\d+\\) - \\d+[.,]\\d+ [kKmMgG][bB] - yEnc$/', + 'status' => 1, + 'description' => '//SFF Dump - "Thomas M. Disch - Camp Concentration.epub" (1033/1217) - 226.47 kB - yEnc', + 'ordinal' => 235, + ), + 259 => + array ( + 'id' => 260, + 'group_regex' => '^alt\\.binaries\\.e-book.flood$', + 'regex' => '/^\\((?P[a-zA-Z0-9 -]+)\\) \\[\\d+\\/(?P\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(American Curves - Summer 2012) [01/10] - "AMECURSUM12.par2" yEnc', + 'ordinal' => 240, + ), + 260 => + array ( + 'id' => 261, + 'group_regex' => '^alt\\.binaries\\.e-book.flood$', + 'regex' => '/(?P.+?)[-_ ]{0,3}\\d+\\/(?P\\d+[-_ ]{0,3}".+?)\\.(txt|pdf|mobi|epub|azw)"( \\(\\d+\\/\\d+\\))?( )?$/', + 'status' => 1, + 'description' => '//Patterson flood - Mobi - 15/45 "James Patterson - AC 13 - Double Cross.mobi"', + 'ordinal' => 245, + ), + 261 => + array ( + 'id' => 262, + 'group_regex' => '^alt\\.binaries\\.e-book.flood$', + 'regex' => '/^\\[\\d+\\/(?P\\d+\\] .+?) - "(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}") yEnc$/', + 'status' => 1, + 'description' => '//[001/125] (NL Epub Wierook Set 49) - "Abulhawa, Susan - Litteken van David_Ochtend in Jenin.epub" yEnc', + 'ordinal' => 250, + ), + 262 => + array ( + 'id' => 263, + 'group_regex' => '^alt\\.binaries\\.e-book.flood$', + 'regex' => '/^\\(\\d+\\/(?P\\d+\\)) "(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//(1/1) "Radiological Imaging of the Kidney - E. Quaia (Springer, 2011) WW.pdf" - 162,82 MB - (Radiological Imaging of the Kidney - E. Quaia (Springer, 2011) WW) yEnc', + 'ordinal' => 255, + ), + 263 => + array ( + 'id' => 264, + 'group_regex' => '^alt\\.binaries\\.e-book.flood$', + 'regex' => '/^\\(\\d+\\/(?P\\d+\\)) "(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//(1/7) "0865779767.epub" - 88,93 MB - "Anatomic Basis of Neurologic Diagnosis - epub" yEnc', + 'ordinal' => 260, + ), + 264 => + array ( + 'id' => 265, + 'group_regex' => '^alt\\.binaries\\.e-book.flood$', + 'regex' => '/^(?PAttn:|Re:|REQ:|New Scan).+?[-_ ]{0,3}"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")[-_ ]{0,3}(\\d+[.,]\\d+ [kKmMgG][bB](ytes)?)? yEnc$/i', + 'status' => 1, + 'description' => '//Re: REQ: Jay Lake\'s Mainspring series/trilogy (see titles inside) - "Lake, Jay - Clockwork Earth 03 - Pinion [epub].rar" 405.6 kBytes yEnc ::: //Attn: Brownian - "del Rey, Maria - Paradise Bay (FBS).rar" yEnc ::: //New Scan "Herbert, James - Sepulchre (html).rar" yEnc', + 'ordinal' => 265, + ), + 265 => + array ( + 'id' => 266, + 'group_regex' => '^alt\\.binaries\\.e-book.flood$', + 'regex' => '/^\\*(FULL )?REPOST\\* New eBooks.+[-_ ]{0,3}"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}")$/i', + 'status' => 1, + 'description' => '//*FULL REPOST* New eBooks 26 Nov 2012 & 20% PAR2 Set - "Elisabeth Kyle - The Captain\'s House (siPDF).rar" ::: //*REPOST* New eBooks 23 Nov 2012 - "Charles Culver - [The 11th Floor 02] - Awakening (mobi).rar"', + 'ordinal' => 270, + ), + 266 => + array ( + 'id' => 267, + 'group_regex' => '^alt\\.binaries\\.e-book.flood$', + 'regex' => '/^.+?Search (for|4) (number|Numeric String) at end of (title|Subject)[-_ ]{0,3}(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4})[-\\=_ ]{0,3}\\d+[-_ ]{0,3}.+?yEnc$/i', + 'status' => 1, + 'description' => '//1 - 5 July 2013 - Search for number at end of title - Bevin Alexander - How Hitler Could Have Won World War II- The Fatal Errors That Lead to Nazi Defeat (epub).rar - 14418-25255-6053.rar.txt yEnc ::: //10 July 2013 - Search 4 Numeric String at End of Subject - Andew Hodges - Alan Turing- The Enigma (Centenary Edition) (kf8 mobi).rar = 21317-25234-21710.rar.txt yEnc', + 'ordinal' => 275, + ), + 267 => + array ( + 'id' => 268, + 'group_regex' => '^alt\\.binaries\\.e-book.flood$', + 'regex' => '/.*"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}").+?yEnc$/i', + 'status' => 1, + 'description' => '//"Gabaldon, Diana - Outlander [5] The Fiery Cross.epub" yEnc ::: //Kiny Friedman "Friedman, Kinky - Prisoner of Vandam Street_ A Novel, The.epub" yEnc', + 'ordinal' => 280, + ), + 268 => + array ( + 'id' => 269, + 'group_regex' => '^alt\\.binaries\\.e-book.flood$', + 'regex' => '/^"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}")[-_ ]{0,3}\\d+[kKmMgG]$/i', + 'status' => 1, + 'description' => '//"Back to Pakistan_ A Fifty-Year Journey - Leslie Noyes Mass.pdf" 2778K', + 'ordinal' => 285, + ), + 269 => + array ( + 'id' => 270, + 'group_regex' => '^alt\\.binaries\\.e-book.flood$', + 'regex' => '/^\\[\\d+\\/(?P\\d+\\][-_ ]{0,3}.+)\\.(txt|pdf|mobi|epub|azw)[-_ ]{0,3}.+flood( )?$/', + 'status' => 1, + 'description' => '//[002/182] A. E. Van Vogt - The Anarchistic Colossus.mobi mobi flood ::: //[002/115] Alan Dean Foster - Alien.mobi sf single author flood', + 'ordinal' => 290, + ), + 270 => + array ( + 'id' => 271, + 'group_regex' => '^alt\\.binaries\\.e-book.flood$', + 'regex' => '/^\\[\\d+\\/(?P\\d+\\]) (?P.+?)\\.(txt|pdf|mobi|epub|azw)/', + 'status' => 1, + 'description' => '//[2/4] Graham Masterton - Descendant.mobi', + 'ordinal' => 295, + ), + 271 => + array ( + 'id' => 272, + 'group_regex' => '^alt\\.binaries\\.e-book\\.magazines$', + 'regex' => '/^(?P\\[.+?\\] - ").+?" yEnc$/', + 'status' => 1, + 'description' => '// e-book.magazines has really only header we care about in the form ::: // [Top.Gear.South.Africa-February.2014] - "Top.Gear.South.Africa-February.2014.pdf.vol00+1.par2" yEnc - 809.32 KB', + 'ordinal' => 5, + ), + 272 => + array ( + 'id' => 273, + 'group_regex' => '^alt\\.binaries\\.e-book\\.rpg$', + 'regex' => '/^.+?\\[\\d+\\/(?P\\d+\\]) - "(?P.+?)\\.(txt|pdf|mobi|epub|azw)" yEnc$/', + 'status' => 1, + 'description' => '//ATTN: falsifies RE: REQ:-Pathfinder RPG anything at all TIA [362/408] - "Pathfinder_-_PZO1110B_-_Pathfinder_RPG_-_Beta_Playtest_-_Prestige_Enhancement.pdf" yEnc', + 'ordinal' => 10, + ), + 273 => + array ( + 'id' => 274, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/(?P\\[[\\d]+\\]-\\[FULL\\]-\\[#a\\.b\\.erotica@EFNet\\]-\\[) \\d{2,3}_.+? \\][- ]\\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '// SPECIAL CASE FOR XXX PACKS ::: //[398342]-[FULL]-[#a.b.erotica@EFNet]-[ 02_18onlygirls.com.a.golden.lady..12.10.12.stephanie ]-[04/16] - "02_18onlygirls.com.a.golden.lady..12.10.12.stephanie.part03.rar" yEnc', + 'ordinal' => 5, + ), + 274 => + array ( + 'id' => 275, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/\\[(?P[a-fA-F0-9]+)][-_ ]{0,3}.+?[-_ ]{0,3}[\\(\\[]\\d+\\/(?P\\d+[\\)\\]])[-_ ]{0,3}"(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}") yEnc$/', + 'status' => 1, + 'description' => '//[f3a543495657d38c361dbe767a8506df] - sandramilka01-casting [10/25] - "sandramilka01-casting.part08.rar" yEnc', + 'ordinal' => 10, + ), + 275 => + array ( + 'id' => 276, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/^(?P\\w+)\\[\\d+\\/(?P\\d+)\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//ECG190215XUTFQI4JB[34/37] - "ECG190215XUTFQI4JB.vol03+04.par2" yEnc', + 'ordinal' => 15, + ), + 276 => + array ( + 'id' => 277, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/(?P\\[[\\d#]+\\]-\\[.+?\\]-\\[.+?\\])-\\[ (?P.+?) \\][- ]\\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//[278997]-[FULL]-[#a.b.erotica]-[ chi-the.walking.dead.xxx ]-[06/51] - "chi-the.walking.dead.xxx-s.mp4" yEnc ::: //[######]-[FULL]-[#a.b.teevee@EFNet]-[ Misfits.S01.SUBPACK.DVDRip.XviD-P0W4DVD ] [1/5] - "Misfits.S01.SUBPACK.DVDRip.XviD-P0W4DVD.nfo" yEnc ::: //Re: [147053]-[FULL]-[#a.b.teevee]-[ Top_Gear.20x04.HDTV_x264-FoV ]-[11/59] - "top_gear.20x04.hdtv_x264-fov.r00" yEnc (01/20)', + 'ordinal' => 20, + ), + 277 => + array ( + 'id' => 278, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/\\[.+?\\] - \\[\\d+\\/(?P\\d+\\]) - "(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}") yEnc$/i', + 'status' => 1, + 'description' => '//[U4A] - [11/12] - "yyf535864ky3btdmeq3bvh1y089v0bsw44oukp15fxtnqiu4wi.vol062+64.par2" yEnc ::: //[Art-of-Usenet] - [21/31] - "XxX2015PeHo02AoU15XxX.part20.rar" yEnc', + 'ordinal' => 25, + ), + 278 => + array ( + 'id' => 279, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/\\w+ - \\[\\d+\\/(?P\\d+\\]) - "(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}") yEnc$/i', + 'status' => 1, + 'description' => '//999akilina88cast77 - [06/27] - "999akilina88cast77.part05.rar" yEnc', + 'ordinal' => 30, + ), + 279 => + array ( + 'id' => 280, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/^ >> www\\.ssl-news\\.info <<< > \\[\\d+(?P\\/\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - /i', + 'status' => 1, + 'description' => '// >> www.ssl-news.info <<< > [01/28] - "TayTO-heyzo_hd_0317_full.par2" - 2,17 GB yEnc', + 'ordinal' => 35, + ), + 280 => + array ( + 'id' => 281, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/^NihilCumsteR \\[\\d+\\/\\d+\\] - "(?P.+?NihilCumsteR\\.)/', + 'status' => 1, + 'description' => '//NihilCumsteR [1/8] - "Conysgirls.cumpilation.xxx.NihilCumsteR.par2" yEnc', + 'ordinal' => 40, + ), + 281 => + array ( + 'id' => 282, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/^(?P[a-zA-Z0-9._-]+)[-_ ]{0,3}[\\(\\[]\\d+ of (?P\\d+[\\)\\]])[-_ ]{0,3}"(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//Brazilian.Transsexuals.SR.UD.12.28.13.HD.720p.HDL [19 of 24] "JhoanyWilkerXmasLD_1_hdmp4.mp4.vol00+1.par2" yEnc', + 'ordinal' => 45, + ), + 282 => + array ( + 'id' => 283, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/^(?P".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//"Lesbian seductions 26.part.nzb" yEnc', + 'ordinal' => 50, + ), + 283 => + array ( + 'id' => 284, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/(.+)[-_ ]{0,3}[\\(\\[]\\d+\\/(?P\\d+[\\)\\]][-_ ]{0,3}("|#34;).+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4})("|#34;)(.+?)yEnc$/i', + 'status' => 1, + 'description' => '//..::kleverig.eu::.. [001/141] - "ZYGBUTD5TPgMdjjxnvrl.par2" - 13,28 GB yEnc', + 'ordinal' => 55, + ), + 284 => + array ( + 'id' => 285, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/.*"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}") - \\(\\d+ - (?P\\d+\\)) yEnc$/i', + 'status' => 1, + 'description' => '//Whornitas 3 (2015) XXX DVDRiP x264-DivXfacTory - "Whornitas.3.XXX.DVDRiP.x264-DivXfacTory.part40.rar" - (42 - 50) yEnc', + 'ordinal' => 60, + ), + 285 => + array ( + 'id' => 286, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/.*"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}")(?P.+?)yEnc$/i', + 'status' => 1, + 'description' => '//"Babysitters_a_Slut_4_Scene_4.part01.rar"_SpotBots yEnc ::: //- "JH2U0H5FIK8TO7YK3Q.part12.rar" yEnc', + 'ordinal' => 65, + ), + 286 => + array ( + 'id' => 287, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/^(?P.+?usenet-space.+?Powered by.+? ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|").+? \\d+\\/(\\d+.+?)$/i', + 'status' => 1, + 'description' => '//<<<>>CowboyUp2012 XXX><<>>usenet-space-cowboys.info<<< "Is.Not.Force.It.My.Younger.SOE-806.Jav.Censored.DVDRip.XviD-MotTto.part01.rar" >< 01/15 (1,39', + 'ordinal' => 70, + ), + 287 => + array ( + 'id' => 288, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/^"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")(?P_SpotBots)[-_\\s]{0,3}yEnc$/iu', + 'status' => 1, + 'description' => '//"HD_1110.part01.rar"_SpotBots yEnc', + 'ordinal' => 75, + ), + 288 => + array ( + 'id' => 289, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/\\((?P[\\w\\s-]{8,})\\)[-_\\s]{0,3}\\[\\d+\\/(?P\\d+)\\][-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(Czech Amateurs 01) [30/43] - "CZEAMA01.part29.rar" yEnc', + 'ordinal' => 80, + ), + 289 => + array ( + 'id' => 290, + 'group_regex' => '^alt\\.binaries\\.etc$', + 'regex' => '/^(?P\\d+ - \\[)\\d+\\/\\d+\\] - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//7000999555666777123754 - [334/389] - "The Secret of Bible & Jesus. Beyond The Da Vinci Code - YouTube.3gp" yEnc', + 'ordinal' => 5, + ), + 290 => + array ( + 'id' => 291, + 'group_regex' => '^alt\\.binaries\\.etc$', + 'regex' => '/^\\[\\s*#?scnzb@?efnet\\s*\\] (?P.+?) \\[\\d+\\/(?P\\d+\\]) - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//[scnzbefnet] Were.the.Millers.2013.EXTENDED.720p.BluRay.x264-SPARKS [01/61] - "were.the.millers.2013.extended.720p.bluray.x264-sparks.nfo" yEnc', + 'ordinal' => 10, + ), + 291 => + array ( + 'id' => 292, + 'group_regex' => '^alt\\.binaries\\.font$', + 'regex' => '/^(?P[a-zA-Z0-9]{5,}\\[)\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//RWlgVffClWxD0vXT1peIwb9DubTLMiYm3nvD1aMMDe[04/16] - "A9jFik7Fk4hCG4GWuxAg.r02" yEnc', + 'ordinal' => 5, + ), + 292 => + array ( + 'id' => 293, + 'group_regex' => '^alt\\.binaries\\.fz$', + 'regex' => '/^(?P>ghost-of-usenet\\.org>.+?<.+?> ").+?" yEnc$/', + 'status' => 1, + 'description' => '//>ghost-of-usenet.org>Monte.Cristo.GERMAN.2002.AC3.DVDRiP.XviD.iNTERNAL-HACO "haco-montecristo-xvid-a.par2" yEnc', + 'ordinal' => 5, + ), + 293 => + array ( + 'id' => 294, + 'group_regex' => '^alt\\.binaries\\.game$', + 'regex' => '/(?P\\[[\\d#]+\\]-\\[.+?\\]-\\[.+?\\])-\\[ (?P.+?) \\][- ]\\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//[192474]-[MP3]-[a.b.inner-sanctumEFNET]-[ Newbie_Nerdz_-_I_Cant_Forget_that_Girl_EP-(IM005)-WEB-2012-YOU ] [17/17] - "newbie_nerdz_-_i_cant_forget_that_girl_ep-(im005)-web-2012-you.nfo" yEnc', + 'ordinal' => 5, + ), + 294 => + array ( + 'id' => 295, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^(?P>ghost-of-usenet\\.org>.+?<.+?> ").+?" yEnc$/', + 'status' => 1, + 'description' => '//>ghost-of-usenet.org>Monte.Cristo.GERMAN.2002.AC3.DVDRiP.XviD.iNTERNAL-HACO "haco-montecristo-xvid-a.par2" yEnc', + 'ordinal' => 5, + ), + 295 => + array ( + 'id' => 296, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^\\( (?P[\\w. -]{8,}) \\)[-_ ]{0,3}\\[\\d+\\/(?P\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//( Overlord II RELOADED ) - [013/112] - "rld-olii.part001.rar" yEnc', + 'ordinal' => 10, + ), + 296 => + array ( + 'id' => 297, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^(?P.+? \\[)\\d+\\/\\d+\\] - ".+?" .+? yEnc$/', + 'status' => 1, + 'description' => '//XCOM.Enemy.Unknown.Deutsch.Patch.TokZic [0/9] - "XCOM Deutsch.nzb" ein CrazyUpp yEnc', + 'ordinal' => 15, + ), + 297 => + array ( + 'id' => 298, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^(?P\\[ [-.a-zA-Z0-9]+ \\] - \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//[ Dawn.of.Fantasy.Kingdom.Wars-PROPHET ] - [12/52] - "ppt-dfkw.part04.rar" yEnc', + 'ordinal' => 20, + ), + 298 => + array ( + 'id' => 299, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/\\.net <<>> - \\[\\d+\\/\\d+\\] - "(?P.+?)(?P[-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//brothers-of-usenet.info/.net <<>> - [11/17] - "Reload.Outdoor.Action.Target.Down.GERMAN-0x0007.vol003+004.PAR2" yEnc', + 'ordinal' => 25, + ), + 299 => + array ( + 'id' => 300, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/(?P\\[[\\d#]+\\]-\\[.+?\\]-\\[.+?\\])-\\[ (?P.+?) \\][- ]\\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//[162198]-[FULL]-[a.b.teevee]-[ MasterChef.Junior.S01E07.720p.HDTV.X264-DIMENSION ]-[09/54] - "masterchef.junior.107.720p-dimension.nfo" yEnc', + 'ordinal' => 30, + ), + 300 => + array ( + 'id' => 301, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^"(?P.+)__www.realmom.info__.+" \\(\\d+\\/(?P\\d+\\)) \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/', + 'status' => 1, + 'description' => '//"A.Stroke.of.Fate.Operation.Valkyrie-SKIDROW__www.realmom.info__.nfo" (02/38) 1,34 GB yEnc', + 'ordinal' => 35, + ), + 301 => + array ( + 'id' => 302, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//"Mad.Men.S06E11.HDTV.x264-2HD.par2" yEnc', + 'ordinal' => 40, + ), + 302 => + array ( + 'id' => 303, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\[\\d+\\/(?P\\d+\\])[ _-]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//"Marvels.Agents.of.S.H.I.E.L.D.S01E07.HDTV.XviD-FUM.avi.nfo" [09/16] yEnc', + 'ordinal' => 45, + ), + 303 => + array ( + 'id' => 304, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^\\(\\?+\\) \\[\\d+\\/(?P\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(????) [03/20] - "Weblinger - The.Haunted.House.Mysteries.v1.0-ZEKE.part01.rar" yEnc', + 'ordinal' => 50, + ), + 304 => + array ( + 'id' => 305, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^\\(\\d+\\/\\d+\\)(?P - Description)?[-_ ]{0,5}"(.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")( - \\d+([.,]\\d+ [kKmMgG])?[bB])? - \\d+([.,]\\d+ [kKmMgG])?[bB][-_ ]{0,3}(\\[REPOST\\] )?yEnc$/i', + 'status' => 1, + 'description' => '//(001/132) "Harry.Potter.And.The.Goblet.Of.Fire.2005.810p.BluRay.x264.DTS.PRoDJi.nfo" - 8,71 GB - yEnc ::: //(01/11) - Description - "ba588f108dbd068dc93e4b0182de652d.par2" - 696,63 MB - yEnc ::: //(01/11) "Microsoft Games for Windows 8 v1.2.par2" - 189,87 MB - [REPOST] yEnc ::: //(01/24) "ExBrULlNjyRPMdxqSlJKEtAYSncStZs3.nfo" - 3.96 kB - 404.55 MB - yEnc ::: //(01/44) - - "Wii_2688_R_Knorloading.par2" - 1,81 GB - yEnc', + 'ordinal' => 55, + ), + 305 => + array ( + 'id' => 306, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^\\(\\d+\\/(?P\\d+\\)) - \\[Lords-of-Usenet\\] presents (?P.+?)[-_ ]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - yEnc$/i', + 'status' => 1, + 'description' => '//(01/59) - [Lords-of-Usenet] presents Sins.of.a.Solar.Empire.Rebellion.Forbidden.Worlds-RELOADED - "rld-soaserfw.nfo" - yEnc', + 'ordinal' => 60, + ), + 306 => + array ( + 'id' => 307, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^\\(\\d+\\/(?P\\d+\\))[-_ ]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d+([.,]\\d+ [kKmMgG])?[bB] -(?P[a-zA-Z0-9-_\\.]+) yEnc$/i', + 'status' => 1, + 'description' => '//(19/28) "sr-joedanger.rar" - 816,05 MB -Joe.Danger-SKIDROW yEnc ::: //(39/40) "flt-ts31554.vol061+57.PAR2" - 1,43 GB -The_Sims_3_v1.55.4-FLTDOX yEnc', + 'ordinal' => 65, + ), + 307 => + array ( + 'id' => 308, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^[\\(\\[]\\d+\\/(?P\\d+[\\)\\]][-_ ]{0,3}".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[02/17] - "Castle.Of.Illusion.Starring.Mickey.Mouse.PSN.PS3-DUPLEX.nfo" yEnc', + 'ordinal' => 70, + ), + 308 => + array ( + 'id' => 309, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^\\[PROPER\\] (?P[a-zA-Z0-9-_\\.]+) [\\(\\[]\\d+\\/(?P\\d+[\\)\\]])[-_ ]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[PROPER] F', + 'ordinal' => 75, + ), + 309 => + array ( + 'id' => 310, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^<<<< (?P[a-zA-Z0-9-_ ]+) >>>> < USC> <".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")>\\[\\d+\\/(?P\\d+\\]) \\d+([.,]\\d+ [kKmMgG])?[bB] yEnc$/i', + 'status' => 1, + 'description' => '//<<<< Alien Zombie Death v2 EUR PSN PSP-PLAYASiA >>>> < USC> <"Alien Zombie Death v2 EUR PSN PSP-PLAYASiA.part4.rar">[06/16] 153,78 MB yEnc', + 'ordinal' => 80, + ), + 310 => + array ( + 'id' => 311, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^<<<.+\\.info>>> fuzzy <<<(?P[a-zA-Z0-9-_ ]+)>< ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") >< \\d+\\/(?P\\d+) \\(\\d+([.,]\\d+ [kKmMgG])?[bB]\\) >< \\d+([.,]\\d+ [kKmMgG])?[bB] > yEnc$/i', + 'status' => 1, + 'description' => '//<<>> fuzzy <<< "Adventures To Go EUR PSP-ZER0.nfo" >< 2/6 (195,70 MB) >< 10,70 kB > yEnc', + 'ordinal' => 85, + ), + 311 => + array ( + 'id' => 312, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^(?P[a-zA-Z0-9 -\\._]+) - \\[\\d+\\/(?P\\d+\\])[-_ ]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Baku.No.JAP.Working.PSP-PaL - [1/7] - "Baku.No.JAP.Working.PSP-PaL.rar" yEnc', + 'ordinal' => 90, + ), + 312 => + array ( + 'id' => 313, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^.+?town\\.ag.+?(www\\..+?|news)\\.[iI]nfo.+? \\(\\d+\\/(?P\\d+\\)) "(?P.+?)(-sample)?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB]? - yEnc$/i', + 'status' => 1, + 'description' => '// www.town.ag > sponsored by www.ssl-news.info > (53/86) "Afro_Samurai_NTSC_PROPER_XBOX360-GameStop.part51.rar" - 7.74 GB - yEnc', + 'ordinal' => 95, + ), + 313 => + array ( + 'id' => 314, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^FTDWORLD\\.NET\\| (?P[a-zA-Z0-9 -_\\.]+) \\[\\d+\\/(?P\\d+\\])- ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//FTDWORLD.NET| Grand.Theft.Auto.V.XBOX360-QUACK [020/195]- "gtavdisc1.r17" yEnc', + 'ordinal' => 100, + ), + 314 => + array ( + 'id' => 315, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^\\((?P[a-zA-Z0-9 -_\\.]+)\\) \\[\\d+\\/(?P\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(F', + 'ordinal' => 105, + ), + 315 => + array ( + 'id' => 316, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^\\[\\d+\\/(?P\\d+\\]) \\((?P[a-zA-Z0-9 -_\\.]+)\\) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[16/62] (CastleStorm.XBLA.XBOX360-MoNGoLS) - "mgl-cast.part15.rar" yEnc', + 'ordinal' => 110, + ), + 316 => + array ( + 'id' => 317, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^GOGDump (?P.+) \\[\\d+\\/(?P\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//GOGDump Wing Commander - Privateer (1993) [GOG] [03/14] - "Wing Commander - Privateer (1993) [GOG].part2.rar" yEnc', + 'ordinal' => 115, + ), + 317 => + array ( + 'id' => 318, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^(?PUploader.Presents)[- ](?P.+?)[\\(\\[]\\d+\\/\\d+\\]".+?" yEnc$/', + 'status' => 1, + 'description' => '//Uploader.Presents-Need.For.Speed.Rivals.XBOX360-PROTOCOL[10/94]"nfs.r-ptc.r07" yEnc', + 'ordinal' => 120, + ), + 318 => + array ( + 'id' => 319, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^\\(\\d+\\/(?P\\d+\\))[-_ ]{0,3}Description[-_ ]{0,3}"\\w+(?P[-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '// ', + 'ordinal' => 0, + ), + 319 => + array ( + 'id' => 320, + 'group_regex' => '^alt\\.binaries\\.games\\.dox$', + 'regex' => '/(?P\\[[\\d#]+\\]-\\[.+?\\]-\\[.+?\\])-\\[ (?P.+?) \\][- ]\\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//[142961]-[MP3]-[a.b.inner-sanctumEFNET]-[ Pascal_and_Pearce-Passport-CDJUST477-2CD-2011-1REAL ] [28/36] - "Pascal_and_Pearce-Passport-CDJUST477-2CD-2011-1REAL.par2" yEnc', + 'ordinal' => 5, + ), + 320 => + array ( + 'id' => 321, + 'group_regex' => '^alt\\.binaries\\.games\\.dox$', + 'regex' => '/^\\[NEW DOX\\][ _-]{0,3}(?P.+?)[ _-]{0,3}\\[\\d+\\/\\d+\\][ _-]{0,3}"(.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_ ]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//[NEW DOX] The.King.of.Fighters.XIII.Update.v1.1c-RELOADED [1/6] - "The.King.of.Fighters.XIII.Update.v1.1c-RELOADED.par2" yEnc ::: //[NEW DOX] Crysis.3.Crackfix.3.INTERNAL-RELOADED [00/12] ".nzb" yEnc', + 'ordinal' => 10, + ), + 321 => + array ( + 'id' => 322, + 'group_regex' => '^alt\\.binaries\\.games\\.dox$', + 'regex' => '/^\\[NEW DOX\\][ _-]{0,3}(?P.+?)[ _-]{0,3}"(.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_ ]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '// for some reason the nzb is posted separately with d', + 'ordinal' => 15, + ), + 322 => + array ( + 'id' => 323, + 'group_regex' => '^alt\\.binaries\\.games\\.dox$', + 'regex' => '/^\\[ (?P[a-zA-Z0-9-\\._ ]+) \\d+\\/(?P\\d+ \\]) ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[ Assassins.Creed.3.UPDATE 1.01.CRACK.READNFO-P2P 00/17 ] "Assassins.Creed.3.UPDATE 1.01.nzb" yEnc', + 'ordinal' => 20, + ), + 323 => + array ( + 'id' => 324, + 'group_regex' => '^alt\\.binaries\\.games\\.dox$', + 'regex' => '/^\\[\\d+\\/(?P\\d+\\]) - (?P[a-zA-Z0-9-\\.\\&_ ]+) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")( - PC)? - yEnc$/i', + 'status' => 1, + 'description' => '//[01/16] - GRID.2.Update.v1.0.83.1050.Incl.DLC-RELOADED - "reloaded.nfo" - yEnc ::: //[12/17] - Call.of.Juarez.Gunslinger.Update.v1.03-FTS - "fts-cojgsu103.vol00+01.PAR2" - PC - yEnc ::: //[4/5] - Dungeons.&.Dragons.HD.Chronicles.of.Mystara.Update.2-FTS - "fts-ddcomu2.vol0+1.PAR2" - PC - yEnc', + 'ordinal' => 25, + ), + 324 => + array ( + 'id' => 325, + 'group_regex' => '^alt\\.binaries\\.games\\.dox$', + 'regex' => '/^\\[\\d+\\/(?P\\d+\\]) (?P[a-zA-Z0-9-\\._ ]+) ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[36/48] NASCAR.The.Game.2013.Update.2-SKIDROW - "sr-nascarthegame2013u2.r33" yEnc', + 'ordinal' => 30, + ), + 325 => + array ( + 'id' => 326, + 'group_regex' => '^alt\\.binaries\\.games\\.dox$', + 'regex' => '/^\\[(?P[a-zA-Z0-9-\\._ ]+)\\]- ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[Grand_Theft_Auto_Vice_City_1.1_Blood_NoCD_Patch-gimpsRus]- "grugtavc11bcd.nfo" yEnc', + 'ordinal' => 35, + ), + 326 => + array ( + 'id' => 327, + 'group_regex' => '^alt\\.binaries\\.games\\.dox$', + 'regex' => '/^\\[OLD DOX\\][ _-]{0,3}\\(\\d+\\/(?P\\d+\\)[ _-]{0,3}".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_ ]{0,3}\\d+[,.]\\d+ [mMkKgG][bB][-_ ]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//[OLD DOX] (0001/2018) - "18.Wheels.of.Steel.American.Long.Haul.CHEAT.CODES-RETARDS.7z" - 1,44 GB - yEnc', + 'ordinal' => 40, + ), + 327 => + array ( + 'id' => 328, + 'group_regex' => '^alt\\.binaries\\.games\\.dox$', + 'regex' => '/^(?P[a-zA-Z0-9-\\._ ]+) - \\[\\d+\\/(?P\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|"){0,3}yEnc$/i', + 'status' => 1, + 'description' => '//Endless.Space.Disharmony.v1.1.1.Update-SKIDROW - [1/6] - "Endless.Space.Disharmony.v1.1.1.Update-SKIDROW.nfo" - yEnc', + 'ordinal' => 45, + ), + 328 => + array ( + 'id' => 329, + 'group_regex' => '^alt\\.binaries\\.games\\.dox$', + 'regex' => '/^\\((?P[a-zA-Z0-9-\\._ ]+)\\) \\[\\d+\\/(?P\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|"){0,3}yEnc$/i', + 'status' => 1, + 'description' => '//(F.E.A.R.3.Update.1-SKIDROW) [01/12] - "F.E.A.R.3.Update.1-SKIDROW.par2" yEnc', + 'ordinal' => 50, + ), + 329 => + array ( + 'id' => 330, + 'group_regex' => '^alt\\.binaries\\.games\\.dox$', + 'regex' => '/^\\((?P[a-zA-Z0-9-\\._ ]+)\\) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(Company.of.Heroes.2.Update.v3.0.0.9704.Incl.DLC.GERMAN-0x0007) - "0x0007.nfo" yEnc', + 'ordinal' => 55, + ), + 330 => + array ( + 'id' => 331, + 'group_regex' => '^alt\\.binaries\\.games\\.xbox360$', + 'regex' => '/^(?PUploader.Presents)[- ](?P.+?)[\\(\\[]\\d+\\/\\d+\\]".+?" yEnc$/', + 'status' => 1, + 'description' => '//Uploader.Presents-Injustice.Gods.Among.Us.Ultimate.Edition.XBOX360-COMPLEX(02/92]"complex-injustice.ultimate.nfo" yEnc ::: //Uploader.Presents-Need.For.Speed.Rivals.XBOX360-PROTOCOL[10/94]"nfs.r-ptc.r07" yEnc', + 'ordinal' => 5, + ), + 331 => + array ( + 'id' => 332, + 'group_regex' => '^alt\\.binaries\\.games\\.xbox360$', + 'regex' => '/^place2home\\.net - (?P.*?) - (\\[\\d+\\/\\d+\\] - )?".+?" yEnc$/i', + 'status' => 1, + 'description' => '//place2home.net - Call.of.Duty.Ghosts.XBOX360-iMARS - [095/101] - "imars-codghosts-360b.vol049+33.par2" yEnc ::: //Place2home.net - Diablo_III_USA_RF_XBOX360-PROTOCOL - "d3-ptc.r34" yEnc', + 'ordinal' => 10, + ), + 332 => + array ( + 'id' => 333, + 'group_regex' => '^alt\\.binaries\\.games\\.xbox360$', + 'regex' => '/^"(?P.+)(__www\\.realmom\\.info__)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}") [\\[\\(]\\d+\\/(?P\\d+[\\]\\)]) \\d+[,.]\\d+ [mMkKgG][bB] yEnc$/', + 'status' => 1, + 'description' => '//"Arcana_Heart_3_PAL_XBOX360-ZER0__www.realmom.info__.nfo" (02/89) 7,58 GB yEnc', + 'ordinal' => 15, + ), + 333 => + array ( + 'id' => 334, + 'group_regex' => '^alt\\.binaries\\.games\\.xbox360$', + 'regex' => '/^[\\[\\(]\\d+\\/(?P\\d+[\\)\\]])[-_ ]{0,3}"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//(01/15) "Mass.Effect.3.Collectors.Edition.DLC.JTAG-XPG.par2" - 747.42 MB - yEnc', + 'ordinal' => 20, + ), + 334 => + array ( + 'id' => 335, + 'group_regex' => '^alt\\.binaries\\.games\\.xbox360$', + 'regex' => '/^\\(.+\\)[-_ ]{0,3}[\\(\\[]\\d+\\/(?P\\d+[\\)\\]])[-_ ]{0,3}"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//(????) [00/28] - "Farming.Simulator.XBOX360.JTAG.RGH.nzb" yEnc', + 'ordinal' => 25, + ), + 335 => + array ( + 'id' => 336, + 'group_regex' => '^alt\\.binaries\\.games\\.xbox360$', + 'regex' => '/^\\(\\d+\\)[-_ ]{0,3}(?P.+)[-_ ]{0,3}[\\(\\[]\\d+\\/(?P\\d+[\\)\\]])[-_ ]{0,3}"(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//(14227) BloodRayne_Betrayal_XBLA_XBOX360-XBLAplus [01/25] - "xp-blobe.nfo" yEnc', + 'ordinal' => 30, + ), + 336 => + array ( + 'id' => 337, + 'group_regex' => '^alt\\.binaries\\.games\\.xbox360$', + 'regex' => '/^(?P\\(\\d+\\))[-_ ]{0,3}\\[.+EFNet\\][-_ ]{0,3}\\[(?P.+)\\][-_ ]{0,3}\\[\\][-_ ]{0,3}"(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//(14811) [#alt.binaries.games.xbox360@EFNet]-[AMY_XBLA_XBOX360-XBLAplus]-[]- "xp-amyxb.nfo" yEnc', + 'ordinal' => 35, + ), + 337 => + array ( + 'id' => 338, + 'group_regex' => '^alt\\.binaries\\.games\\.xbox360$', + 'regex' => '/^(?P\\(\\d+\\))[-_ ]{0,3}\\[.+EFNet\\][-_ ]{0,3}\\[(?P.+)\\][-_ ]{0,3}"(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//(14872) [#alt.binaries.games.xbox360@EFNet]-[BlazBlue_CS_System_Version_Data_Pack_1.03-DLC_XBOX360]- "xp-bbcssvdp103.nfo" yEnc', + 'ordinal' => 40, + ), + 338 => + array ( + 'id' => 339, + 'group_regex' => '^alt\\.binaries\\.games\\.xbox360$', + 'regex' => '/^\\(\\d+\\/(?P\\d+\\))[-_ ]{0,3}(?P.+?)[-_ ]{0,3}"(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//(44/82) - Fuzion_Frenzy_2_REPACK-USA-XBOX360-DAGGER - "ff2r-dgr.041" - 6.84 GB - yEnc', + 'ordinal' => 45, + ), + 339 => + array ( + 'id' => 340, + 'group_regex' => '^alt\\.binaries\\.games\\.xbox360$', + 'regex' => '/^\\[[-_ ]{0,3}(?P\\d+)[-_ ]{0,3}\\][-_ ]{0,3}\\[ ABGX.+\\][-_ ]{0,3}\\[[-_ ]{0,3}(?P.+)[-_ ]{0,4}\\][-_ ]{0,4}\\(\\d+\\/\\d+\\)[-_ ]{0,3}"(.+?)(\\.part\\d*|\\.rar)?(\\.vol.+\\(\\d+\\\\d+\\)"|\\.[A-Za-z0-9]{2,4}")[-_ ]{0,3}\\d+[,.]\\d+ [mMkKgG][bB][-_ ]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//[ 14047 ] - [ ABGX@EFNET ] - [ Rock.Band.Pearl.Jam.Ten.DLC.XBOX360-FYK ALL DLC ] - (01/46) "rbpjtdlc-fyk.nfo" - 526,92 MB - yEnc ::: //[ 14046 ] - [ ABGX@EFNET ] - [ Rock_Band-2011-07-19-DLC_XBOX360-XBLAplus ALL ] - (01/12) "xp-rb-2011-07-19.nfo" - 198,70 MB - yEnc ::: //[ 14102 ] -[ ABGX.NET ] - [ F1.2010.XBOX360-COMPLEX NTSC DVD9 ] - (01/79) "cpx-f12010.nfo" - 6,57 GB - yEnc', + 'ordinal' => 50, + ), + 340 => + array ( + 'id' => 341, + 'group_regex' => '^alt\\.binaries\\.games\\.xbox360$', + 'regex' => '/^\\[[-_ ]{0,3}(?P\\d+)[-_ ]{0,3}\\][-_ ]{0,3}\\[FULL\\][-_ ]{0,3}\\[ (abgx360EFNet|#abgx360@EFNet) \\][-_ ]{0,3}\\[[-_ ]{0,3}(?P.+)[-_ ]{0,3}\\][-_ ]{0,3}\\[\\d+\\/\\d+\\][-_ ]{0,3}"(.+?)(\\.part\\d*|\\.rar)?(\\.vol.+\\(\\d+\\\\d+\\)"|\\.[A-Za-z0-9]{2,4}")[-_ ]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//[ 17956]-[FULL]-[ abgx360EFNet ]-[ F1_2012_JPN_XBOX360-Caravan ]-[78/99] - "cvn-f12012j.r75" yEnc ::: //[ 17827]-[FULL]-[ #abgx360@EFNet ]-[ Capcom_Arcade_Cabinet_XBLA_XBOX360-XBLAplus ]-[01/34] - "xp-capac.nfo" yEnc', + 'ordinal' => 55, + ), + 341 => + array ( + 'id' => 342, + 'group_regex' => '^alt\\.binaries\\.games\\.xbox360$', + 'regex' => '/^\\[(?P\\d+)\\][-_ ]{0,3}\\[FULL\\][-_ ]{0,3}\\[(abgx360EFNet|#abgx360@EFNet)\\][-_ ]{0,3}\\[\\d+\\/\\d+\\][-_ ]{0,3}"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//[19672]-[FULL]-[abgx360EFNet]-[01/29] "mgl-cont.par2" yEnc', + 'ordinal' => 60, + ), + 342 => + array ( + 'id' => 343, + 'group_regex' => '^alt\\.binaries\\.games\\.xbox360$', + 'regex' => '/^\\[[-_ ]{0,3}GAMERZZ[-_ ]{0,3}\\][-_ ]{0,3}\\[[-_ ]{0,3}(?P.+)[-_ ]{0,3}\\][-_ ]{0,3}\\[\\d+\\/(?P\\d+\\])[-_ ]{0,3}"(.+?)(\\.part\\d*|\\.rar)?(\\.vol.+\\(\\d+\\\\d+\\)"|\\.[A-Za-z0-9]{2,4}")[-_ ]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//[ GAMERZZ ] - [ Grand.Theft.Auto.V.XBOX360-COMPLEX ] [159/170] - "complex-gta5.vol000+18.par2" yEnc', + 'ordinal' => 65, + ), + 343 => + array ( + 'id' => 344, + 'group_regex' => '^alt\\.binaries\\.games\\.xbox360$', + 'regex' => '/^\\[ TOWN \\][ _-]{0,3}\\[ www\\.town\\.ag \\][ _-]{0,3}\\[ (?P.+?) \\][ _-]{0,3}\\[ partner of www\\.ssl-news\\.info \\][ _-]{0,3}\\[\\d+\\/(?P\\d+\\])[ _-]{0,3}"(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")[ _-]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//[ TOWN ]-[ www.town.ag ]-[ Assassins.Creed.IV.Black.Flag.XBOX360-COMPLEX ]-[ partner of www.ssl-news.info ] [074/195]- "complex-ac4.bf.d1.r71" yEnc', + 'ordinal' => 70, + ), + 344 => + array ( + 'id' => 345, + 'group_regex' => '^alt\\.binaries\\.german\\.movies$', + 'regex' => '/^(?P>ghost-of-usenet\\.org>.+?<.+?> ").+?" yEnc$/', + 'status' => 1, + 'description' => '//>ghost-of-usenet.org>Monte.Cristo.GERMAN.2002.AC3.DVDRiP.XviD.iNTERNAL-HACO "haco-montecristo-xvid-a.par2" yEnc', + 'ordinal' => 5, + ), + 345 => + array ( + 'id' => 346, + 'group_regex' => '^alt\\.binaries\\.german\\.movies$', + 'regex' => '/^\\( (?P[\\w. -]{8,}) \\)[-_ ]{0,3}\\[\\d+\\/(?P\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//( Overlord II RELOADED ) - [013/112] - "rld-olii.part001.rar" yEnc', + 'ordinal' => 10, + ), + 346 => + array ( + 'id' => 347, + 'group_regex' => '^alt\\.binaries\\.german\\.movies$', + 'regex' => '/^(?P.+? \\[)\\d+\\/\\d+\\] - ".+?" .+? yEnc$/', + 'status' => 1, + 'description' => '//XCOM.Enemy.Unknown.Deutsch.Patch.TokZic [0/9] - "XCOM Deutsch.nzb" ein CrazyUpp yEnc', + 'ordinal' => 15, + ), + 347 => + array ( + 'id' => 348, + 'group_regex' => '^alt\\.binaries\\.ghosts$', + 'regex' => '/^(?P.+? \\[)\\d+\\/\\d+\\] - ".+?" .+? yEnc$/', + 'status' => 1, + 'description' => '//XCOM.Enemy.Unknown.Deutsch.Patch.TokZic [0/9] - "XCOM Deutsch.nzb" ein CrazyUpp yEnc', + 'ordinal' => 5, + ), + 348 => + array ( + 'id' => 349, + 'group_regex' => '^alt\\.binaries\\.ghosts$', + 'regex' => '/^\\(\\d+\\/(?P\\d+\\)) ("|#34;)(?P.+)(\\.[vol|part].+)?\\.(par2|nfo|rar|nzb)("|#34;) - \\d+[.,]\\d+ [kKmMgG][bB] - yEnc$/i', + 'status' => 1, + 'description' => '//(14/20) "Jack.the.Giant.Slayer.2013.AC3.192Kbps.23fps.2ch.TR.Audio.BluRay-Demuxed.by.par2" - 173,15 MB - yEnc', + 'ordinal' => 10, + ), + 349 => + array ( + 'id' => 350, + 'group_regex' => '^alt\\.binaries\\.hdtv$', + 'regex' => '/^(\\[ TrollHD \\] - )?[\\[\\(][-_ ]{0,3}\\d+\\/(?P\\d+[-_ ]{0,3}[\\)\\]]) - "(?P.+?) MPEG2-(DON|TrollHD)\\..+?" yEnc$/', + 'status' => 1, + 'description' => '//[ TrollHD ] - [ 0270/2688 ] - "Tour De France 2013 1080i HDTV MPA 2.0 MPEG2-TrollHD.part0269.rar" yEnc ::: //[17/48] - "Oprah\'s Next Chapter S02E37 Lindsay Lohan 1080i HDTV DD5.1 MPEG2-TrollHD.part16.rar" yEnc ::: //[02/29] - "Fox Sports 1 on 1 - Tom Brady 720p HDTV DD5.1 MPEG2-DON.part01.rar" yEnc', + 'ordinal' => 5, + ), + 350 => + array ( + 'id' => 351, + 'group_regex' => '^alt\\.binaries\\.hdtv$', + 'regex' => '/.* - \\[\\d+\\/(?P\\d+\\]) - "(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}").+?yEnc$/i', + 'status' => 1, + 'description' => '//Covert.Affairs.S05E06.Embassy.Row.1080p.WEB-DL.DD5.1.H.264-NTb.vol093+82.par2 - [41/42] - "Covert.Affairs.S05E06.Embassy.Row.1080p.WEB-DL.DD5.1.H.264-NTb.vol093+82.par2" yEnc', + 'ordinal' => 10, + ), + 351 => + array ( + 'id' => 352, + 'group_regex' => '^alt\\.binaries\\.hdtv$', + 'regex' => '/.*"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}(\\.txt)?").+?yEnc$/i', + 'status' => 1, + 'description' => '//"bhuhirawniowrj3io2o34.vol061+4.par2" yEnc', + 'ordinal' => 15, + ), + 352 => + array ( + 'id' => 353, + 'group_regex' => '^alt\\.binaries\\.hdtv\\.x264$', + 'regex' => '/(?P\\[\\d+\\]-\\[.+?\\]-\\[.+?\\]-\\[ .+? \\](-| ))\\[\\d+\\/\\d+\\][ -]* ".+?" yEnc$/', + 'status' => 1, + 'description' => '//[133170]-[FULL]-[#a.b.moovee]-[ Hansel.And.Gretel.Witch.Hunters.DVDR-iGNiTiON ]-[032/117] "ign-witchhunters.r24" yEnc ::: //Re: [133388]-[FULL]-[#a.b.moovee]-[ Familiar.Grounds.2011.DVDRip.XViD-TWiST ]-[01/59] - "twist-xvid-terrainsconus.nfo" yEnc ::: //[134212]-[FULL]-[#a.b.moovee]-[ Monsters.Inc.2001.1080p.BluRay.x264-CiNEFiLE ] [80/83] - "monsters.inc.2001.1080p.bluray.x264-cinefile.vol015+16.par2" yEnc ::: //[134912]-[FULL]-[#a.b.moovee]-[ Epic.2013.DVDRip.X264-SPARKS ]-[01/70]- "epic.2013.dvdrip.x264-sparks.nfo" yEnc', + 'ordinal' => 5, + ), + 353 => + array ( + 'id' => 354, + 'group_regex' => '^alt\\.binaries\\.hdtv\\.x264$', + 'regex' => '/^\\(\\d+(?P\\/\\d+\\) ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/i', + 'status' => 1, + 'description' => '//(23/36) "Love.Is.In.The.Meadow.S08E08.HDTV.720p.x264.ac3.part22.rar" - 2,80 GB - yEnc', + 'ordinal' => 10, + ), + 354 => + array ( + 'id' => 355, + 'group_regex' => '^alt\\.binaries\\.hdtv\\.x264$', + 'regex' => '/^\\[ (?P.+) \\][-_ ]{0,3}\\[\\d+(?P\\/\\d+)\\][-_ ]{0,3}".+?" yEnc$/', + 'status' => 1, + 'description' => '//[ House.of.Lies.S03E05.1080p.WEB-DL.DD5.1.H.264-NTb ] - [01/35] - "House.of.Lies.S03E05.Soldiers.1080p.WEB-DL.DD5.1.H.264-NTb.nfo" yEnc', + 'ordinal' => 15, + ), + 355 => + array ( + 'id' => 356, + 'group_regex' => '^alt\\.binaries\\.hdtv\\.x264$', + 'regex' => '/^(?P[A-Z0-9a-z][A-Za-z0-9.-]+ -? \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Hard.Target.1993.1080p.Bluray.X264-BARC0DE - [36/68] - "BARC0DE1080pHTAR.r22" yEnc ::: //Goddess.2013.720p.BDRip.x264.AC3-noOne [086/100] - "Goddess.2013.720p.BDRip.x264.AC3-noOne.part84.rar" yEnc', + 'ordinal' => 20, + ), + 356 => + array ( + 'id' => 357, + 'group_regex' => '^alt\\.binaries\\.hdtv\\.x264$', + 'regex' => '/(?P.+?\\s+by Waldorf\\s+-\\s+\\[)\\d+\\/\\d+\\]\\s+-\\s+".+?"\\s+yEnc$/', + 'status' => 1, + 'description' => '//I Love Democracy - Norwegen - Doku - 2012 - (German) - AC3 HD720p Avi by Waldorf - [02/71] - "Waldorf.jpg" yEnc', + 'ordinal' => 25, + ), + 357 => + array ( + 'id' => 358, + 'group_regex' => '^alt\\.binaries\\.hdtv\\.x264$', + 'regex' => '/^-{NR\\.C}- - \\[\\d+\\/(?P\\d+\\]) - ("|#34;)(?P.+)(\\.[vol|part].+)?\\.(par2|nfo|rar|nzb)("|#34;) yEnc$/', + 'status' => 1, + 'description' => '//-{NR.C}- - [00/96] - "Being.Liverpool.S01.720p.HDTV.x264-DHD.nzb" yEnc', + 'ordinal' => 30, + ), + 358 => + array ( + 'id' => 359, + 'group_regex' => '^alt\\.binaries\\.hdtv\\.x264$', + 'regex' => '/^- \\[\\d+\\/(?P\\d+\\]) - "(?P.+?)(\\.part\\d*|\\.rar|\\.pdf)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/i', + 'status' => 1, + 'description' => '//- [34/69] - "Zero.Charisma.2013.WEB-DL.DD5.1.H.264-HaB.part33.rar" yEnc', + 'ordinal' => 35, + ), + 359 => + array ( + 'id' => 360, + 'group_regex' => '^alt\\.binaries\\.hdtv\\.x264$', + 'regex' => '/.+www\\.hotrodpage\\.info.+\\[\\d+\\/(?P\\d+\\]) - "(?P.+?)(\\.part\\d*|\\.rar|\\.pdf)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/i', + 'status' => 1, + 'description' => '//-=www.hotrodpage.info=- Makaveli -=HoTCreWTeam=- Post: - [000/192] - "Hop (2011) 1080p AVCHD.nzb" yEnc', + 'ordinal' => 40, + ), + 360 => + array ( + 'id' => 361, + 'group_regex' => '^alt\\.binaries\\.hdtv\\.x264$', + 'regex' => '/^.+?\\[(?P\\d+[.,]\\d+ [kKmMgG][bB])\\] \\[\\d+\\/(?P\\d+\\][-_ ]{0,3}.+?)[-_ ]{0,3}"(?P.+?)(\\.part\\d*|\\.rar|\\.pdf)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/i', + 'status' => 1, + 'description' => '//-4y (PW) [ usenet-4all.info - powered by ssl.news -] [12,40 GB] [49/57] "43842168c542ed3.vol000+01.par2" yEnc', + 'ordinal' => 45, + ), + 361 => + array ( + 'id' => 362, + 'group_regex' => '^alt\\.binaries\\.hdtv\\.x264$', + 'regex' => '/.*[\\(\\[]\\d+\\/(?P\\d+[\\)\\]])[-_ ]{0,3}("|#34;)(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4})("|#34;)(.+?)yEnc$/i', + 'status' => 1, + 'description' => '//!MR [01/49] - "Persuasion 2007.par2" EN MKV yEnc', + 'ordinal' => 50, + ), + 362 => + array ( + 'id' => 363, + 'group_regex' => '^alt\\.binaries\\.hdtv\\.x264$', + 'regex' => '/^.+ ?\\[\\d+( of |\\/)(?P\\d+\\] ("|#34;).+?)(\\.part\\d*|\\.rar)?(\\.[A-Za-z0-9]{2,4})?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4})("|#34;)(.+?)yEnc$/i', + 'status' => 1, + 'description' => '//Wonders.of.the.Universe.S02E03.1080p.HDTV.x264.AC3.mp4 [1 of 54] "Wonders.of.the.Universe.S02E03.The.Known.and.the.Unknown.1080p.HDTV.x264.AC3-tNe.mp4.001" yEnc ::: //Wilfred Season 2 - US - 720p WEB-DL [28 of 43] "Wilfred.US.S02E01.Progress.720p.WEB-DL.DD5.1.H264-NTb.mkv.001" yEnc', + 'ordinal' => 55, + ), + 363 => + array ( + 'id' => 364, + 'group_regex' => '^alt\\.binaries\\.hdtv\\.x264$', + 'regex' => '/^.+ ?\\d+( of |\\/)(?P\\d+ - ("|#34;).+?)(\\.part\\d*|\\.rar)?(\\.[A-Za-z0-9]{2,4})?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4})("|#34;)(.+?)yEnc$/i', + 'status' => 1, + 'description' => '//The.Walking.Dead.S02E13.720p.WEB-DL.AAC2.0.H.264-CtrlHD -Kopimi- - 01/37 - "The.Walking.Dead.S02E13.Beside.the.Dying.Fire.720p.WEB-DL.AAC2.0.H.264-CtrlHD.nfo" yEnc', + 'ordinal' => 60, + ), + 364 => + array ( + 'id' => 365, + 'group_regex' => '^alt\\.binaries\\.hdtv\\.x264$', + 'regex' => '/.*"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}").+?yEnc$/i', + 'status' => 1, + 'description' => '//The.Guild.S05E12.Grande.Finale.1080p.WEB-DL.x264.AC3.PSIV - "The.Guild.S05E12.Grande.Finale.1080p.WEB-DL.x264.AC3.PSIV.nfo" yEnc', + 'ordinal' => 65, + ), + 365 => + array ( + 'id' => 366, + 'group_regex' => '^alt\\.binaries\\.highspeed$', + 'regex' => '/^(?POld\\s+Dad\\s+uppt?.+?)( mp4| )?\\[?\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Old Dad uppt 18 und immer (noch) Jungfrau DvD Rip AC3 XviD German 02/34] - "18 und immer (noch) Jungfrau.part01.rar" yEnc ::: //Old Dad uppt In ihrem Haus DVD Ripp AC3 German Xvid [01/31] - "In ihrem Haus.par2" yEnc ::: //Old Dad uppt Eine offene Rechnung XviD German DVd Rip[02/41] - "Eine offene Rechnung.part01.rar" yEnc ::: //Old Dad uppMiss Marple: Der Wachsblumenstrauß , Wunschpost Xvid German10/29] - "Miss Marple Der Wachsblumenstrauß.part09.rar" yEnc', + 'ordinal' => 5, + ), + 366 => + array ( + 'id' => 367, + 'group_regex' => '^alt\\.binaries\\.highspeed$', + 'regex' => '/^\\[\\d+(?P\\/\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/i', + 'status' => 1, + 'description' => '//[03/61] - "www.realmom.info - xvid - xf-fatalmovecd1.r00" - 773,34 MB - yEnc', + 'ordinal' => 10, + ), + 367 => + array ( + 'id' => 368, + 'group_regex' => '^alt\\.binaries\\.highspeed$', + 'regex' => '/^www\\..+? \\[Sponsored.+?\\] \\(\\d+(?P\\/\\d+\\) ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//www.usenet-town.com [Sponsored by Astinews] (103/103) "Intimate.Enemies.German.2007.AC3.[passwort protect].vol60+21.PAR2" yEnc', + 'ordinal' => 15, + ), + 368 => + array ( + 'id' => 369, + 'group_regex' => '^alt\\.binaries\\.highspeed$', + 'regex' => '/^\\(\\?{4}\\) \\[\\d+\\/\\d+\\] - "(?P.+?)(\\.part\\d*|\\.rar|\\.pdf)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/i', + 'status' => 1, + 'description' => '//(????) [3/4] - "0024456.pdf.par2" yEnc', + 'ordinal' => 20, + ), + 369 => + array ( + 'id' => 370, + 'group_regex' => '^alt\\.binaries\\.inner-sanctum$', + 'regex' => '/\\[ (?P.+) \\][-_ ]{0,3}[\\(\\[]\\d+\\/(?P\\d+[\\)\\]])[-_ ]{0,3}"(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//[ 9970e7535ccc06155129f5971ff575e2 ] [23/30] - "19-sub6_-_blox_loggers_(mr.what_remix)-psycz_int.mp3" yEnc', + 'ordinal' => 25, + ), + 370 => + array ( + 'id' => 371, + 'group_regex' => '^alt\\.binaries\\.inner-sanctum$', + 'regex' => '/(?P.+)[-_ ]{0,3}[\\(\\[]\\d+\\/(?P\\d+[\\)\\]])[-_ ]{0,3}"(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '////ea17079f47de702eead5114038355a70 [1/9] - "00-da_morty_-_boondock_sampler_02-(tbr002)-web-2013-srg.m3u" yEnc', + 'ordinal' => 30, + ), + 371 => + array ( + 'id' => 372, + 'group_regex' => '^alt\\.binaries\\.inner-sanctum$', + 'regex' => '/^\\[ (?P[a-fA-F0-9]+) \\] \\[\\d+\\/\\d+\\] - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[ 9970e7535ccc06155129f5971ff575e2 ] [23/30] - "19-sub6_-_blox_loggers_(mr.what_remix)-psycz_int.mp3" yEnc', + 'ordinal' => 35, + ), + 372 => + array ( + 'id' => 373, + 'group_regex' => '^alt\\.binaries\\.inner-sanctum$', + 'regex' => '/^(?P\\[\\d+\\]-\\[.+?\\]-\\[ .+? \\] \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//[30762]-[android]-[ Fairway.Solitaire.v1.91.1-AnDrOiD ] [01/10] - "AnDrOiD.nfo" yEnc', + 'ordinal' => 40, + ), + 373 => + array ( + 'id' => 374, + 'group_regex' => '^alt\\.binaries\\.inner-sanctum$', + 'regex' => '/^\\[ nEwZ\\[NZB\\]\\.iNFO( \\])?[-_ ]{0,3}\\[ (?P.+?) \\][-_ ]{0,3}(File )?[\\(\\[]\\d+\\/(?P\\d+[\\)\\]]): "(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?(yEnc)?$/', + 'status' => 1, + 'description' => '//[ nEwZ[NZB].iNFO - [ Zed--The_Invitation-WEB-2010-WUS ] - File [12/13]: "08-zed--the_river.mp3" yEnc', + 'ordinal' => 45, + ), + 374 => + array ( + 'id' => 375, + 'group_regex' => '^alt\\.binaries\\.inner-sanctum$', + 'regex' => '/^nEwZ\\[NZB\\]\\.iNFO[-_ ]{0,3} (?P.+?) [-_ ]{0,3}(File )?[\\(\\[]\\d+\\/(?P\\d+[\\)\\]]): "(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")$/', + 'status' => 1, + 'description' => '//nEwZ[NZB].iNFO - VA-Universal_Music_Sampler_07_February-PROMO-CDR-FLAC-2013-WRE - File [6/9]: "01-alesso-years_(hard_rock_sofa_remix).flac"', + 'ordinal' => 50, + ), + 375 => + array ( + 'id' => 376, + 'group_regex' => '^alt\\.binaries\\.inner-sanctum$', + 'regex' => '/.+[DoAsYouLike\\].?[ _-]{0,3}\\d+[,.]\\d+ [mMkKgG][bB][-_ ]{0,3}"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")[ _-]{0,3}\\d+([,.]\\d+ [mMkKgG])? [bB][-_ ]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//..:[DoAsYouLike]:.. 1,11 GB "KGMmDSSHBWnxV4g7Vbq5.part01.rar" 47,68 MB yEnc', + 'ordinal' => 55, + ), + 376 => + array ( + 'id' => 378, + 'group_regex' => '^alt\\.binaries\\.inner-sanctum$', + 'regex' => '/^\\(\\d+\\/(?P\\d+\\))( - Description -)? "(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")( - \\d+[,.]\\d+ [mMkKgG][bB])? - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/i', + 'status' => 1, + 'description' => '//(01/10) "LeeDrOiD HD V3.3.2-Port-R4-A2SD.par2" - 357.92 MB - yEnc', + 'ordinal' => 65, + ), + 377 => + array ( + 'id' => 379, + 'group_regex' => '^alt\\.binaries\\.inner-sanctum$', + 'regex' => '/^\\((?P[a-zA-Z0-9._-]+)\\) \\[\\d+\\/(?P\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/i', + 'status' => 1, + 'description' => '//(VA-I_Love_Yaiza_Vol.1-WEB-2012-ServerLab) [01/11] - ".sfv" yEnc', + 'ordinal' => 70, + ), + 378 => + array ( + 'id' => 380, + 'group_regex' => '^alt\\.binaries\\.inner-sanctum$', + 'regex' => '/^[\\[\\(]\\d+( of |\\/)(?P\\d+[\\]\\)])[-_ ]{0,3}"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(17/41) - "3-8139g0m530.017" yEnc', + 'ordinal' => 75, + ), + 379 => + array ( + 'id' => 381, + 'group_regex' => '^alt\\.binaries\\.inner-sanctum$', + 'regex' => '/^\\[\\d+\\]-\\[.+?\\]-\\[(?P.+?)\\][-_ ]{0,3}\\[\\d+\\/(?P\\d+\\]) - .+? yEnc$/', + 'status' => 1, + 'description' => '//[153618]-[#a.b.inner-sanctum@EFNET]-[MetaProducts.DiskWatchman.v2.0.240.Incl.Keygen.And.Patch.REPACK-Lz0]-[0/6] - MetaProducts.DiskWatchman.v2.0.240.Incl.Keygen.And.Patch.REPACK-Lz0.nzb yEnc', + 'ordinal' => 80, + ), + 380 => + array ( + 'id' => 382, + 'group_regex' => '^alt\\.binaries\\.milo$', + 'regex' => '/^(?P[a-zA-Z0-9]{5,} ?\\[)\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//RWlgVffClWxD0vXT1peIwb9DubTLMiYm3nvD1aMMDe[04/16] - "A9jFik7Fk4hCG4GWuxAg.r02" yEnc ::: //H8XxBd44qXBGk [05/15] - "H8XxBd44qXBGk.part5.rar" yEnc', + 'ordinal' => 5, + ), + 381 => + array ( + 'id' => 383, + 'group_regex' => '^alt\\.binaries\\.mojo$', + 'regex' => '/^\\[\\d+(?P\\/\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/i', + 'status' => 1, + 'description' => '//[17/61] - "www.realmom.info - xvid - xf-devilstomb.r14" - 773,11 MB - yEnc', + 'ordinal' => 5, + ), + 382 => + array ( + 'id' => 384, + 'group_regex' => '^alt\\.binaries\\.mojo$', + 'regex' => '/^(?P[a-zA-Z0-9]{5,} ?\\[)\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//RWlgVffClWxD0vXT1peIwb9DubTLMiYm3nvD1aMMDe[04/16] - "A9jFik7Fk4hCG4GWuxAg.r02" yEnc ::: //3JgtmNAbZbJ6Q [14/21] - "parfile.par2" yEnc', + 'ordinal' => 10, + ), + 383 => + array ( + 'id' => 385, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^(?P\\[usenet4ever\\.info\\] und \\[SecretUsenet\\.com\\] - .+?-u4e - ").+?" yEnc$/', + 'status' => 1, + 'description' => '//[usenet4ever.info] und [SecretUsenet.com] - 96e323468c5a8a7b948c06ec84511839-u4e - "96e323468c5a8a7b948c06ec84511839-u4e.par2" yEnc', + 'ordinal' => 5, + ), + 384 => + array ( + 'id' => 386, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/(?P.+?\\.net <<>> - \\[)\\d+(?P\\/\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//brothers-of-usenet.info/.net <<>> - [01/26] - "Be.Cool.German.AC3.HDRip.x264-FuN.par2" yEnc', + 'ordinal' => 10, + ), + 385 => + array ( + 'id' => 387, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^(?P\\d+-\\d)\\[\\d+\\/(?P\\d+\\])[-_\\s]{0,3}"\\d+-\\d.+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//62544-8[30/78] - "62544-0.35" yEnc', + 'ordinal' => 15, + ), + 386 => + array ( + 'id' => 388, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^\\[Art-of-Usenet\\] ([a-fA-F0-9]+) \\[\\d+\\/(?P\\d+\\][-_ ]{0,3}".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[Art-of-Usenet] dea75eb65e65c56197d749d57919806d [01/19] - "dea75eb65e65c56197d749d57919806d.par2" yEnc', + 'ordinal' => 20, + ), + 387 => + array ( + 'id' => 389, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^(?P.+? \\[)\\d+\\/\\d+\\] - ".+?" .+? yEnc$/', + 'status' => 1, + 'description' => '//XCOM.Enemy.Unknown.Deutsch.Patch.TokZic [0/9] - "XCOM Deutsch.nzb" ein CrazyUpp yEnc', + 'ordinal' => 25, + ), + 388 => + array ( + 'id' => 390, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^brothers-of-usenet.info\\/\\.net <<>> - \\[\\d+\\/\\d+\\] - "(?P.+?)(\\.vol|\\.par).+?" yEnc$/', + 'status' => 1, + 'description' => '//brothers-of-usenet.info/.net <<>> - [21/22] - "e4e4ztb54238ibftu.vol127+128.par2" yEnc', + 'ordinal' => 30, + ), + 389 => + array ( + 'id' => 391, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^(?P\\d+)\\-\\d+\\s?\\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//58600-0[51/51] - "58600-0.vol0+1.par2" yEnc', + 'ordinal' => 35, + ), + 390 => + array ( + 'id' => 392, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^\\[ TOWN \\][ _-]{0,3}\\[ www\\.town\\.ag \\][ _-]{0,3}\\[ partner of www\\.ssl-news\\.info \\][ _-]{0,3}\\[\\d+\\/(?P\\d+\\][ _-]{0,3}".+)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//[ TOWN ]-[ www.town.ag ]-[ partner of www.ssl-news.info ]-[ MOVIE ] [14/19] - "Night.Vision.2011.DVDRip.x264-IGUANA.part12.rar" - 660,80 MB yEnc', + 'ordinal' => 40, + ), + 391 => + array ( + 'id' => 393, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^\\[(?P.+?)\\][ _-]{0,3}\\[www\\.usenet4ever\\.info by Secretusenet][ _-]{0,3} ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[A_New_Found_Glory-Its_All_About_The_Girls-Reissue-CDEP-FLAC-2003-JLM] [www.usenet4ever.info by Secretusenet] - "00-a_new_found_glory-its_all_about_the_girls-reissue-cdep-flac-2003.jpg" yEnc', + 'ordinal' => 45, + ), + 392 => + array ( + 'id' => 394, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^(Mom\\d+[ _-]{0,3})?"(?P.+?)__www\\.realmom\\.info__([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}[\\(\\[]\\d+\\/(?P\\d+[\\)\\]]) \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/i', + 'status' => 1, + 'description' => '//MoM100060 - "Florian_Arndt-Trix-(BBM36)-WEB-2012-UKHx__www.realmom.info__.nfo" [2/7] 29,04 MB yEnc ::: //"Alan.Wake.v1.02.16.4261.Update-SKIDROW__www.realmom.info__.nfo" (02/17) 138,07 MB yEnc', + 'ordinal' => 50, + ), + 393 => + array ( + 'id' => 395, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^"(?P.+?)"\\(\\d+\\/(?P\\d+\\))[ _-]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB] yEnc$/i', + 'status' => 1, + 'description' => '//"The.Draughtsmans.Contract.1982.576p.BluRay.DD2.0.x264-EA"(15/56) "The.Draughtsmans.Contract.1982.576p.BluRay.DD2.0.x264-EA.part13.rar" - 2.37 GB yEnc', + 'ordinal' => 55, + ), + 394 => + array ( + 'id' => 396, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^\\(\\d+\\/(?P\\d+\\))[ _-]{0,3}Description[ _-]{0,3}"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//(01/29) - Description - "Revolution.2012.S01E06.HDTV.x264-LOL.nfo" - 317.24 MB - yEnc', + 'ordinal' => 60, + ), + 395 => + array ( + 'id' => 397, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^\\(\\d+\\/(?P\\d+\\))[ _-]{0,3}\\[Lords-of-Usenet\\][ _-]{0,3}<>[ _-]{0,3}(?P.+?)[ _-]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//(02/17) - [Lords-of-Usenet] <> i8dewFjzft94BW71EI0s -"19913.r00" - 928,75 MB - yEnc', + 'ordinal' => 65, + ), + 396 => + array ( + 'id' => 398, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^\\[\\d+\\/(?P\\d+\\][ _-]{0,3}".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[002/161] - "Rayman_Legends_USA_PS3-CLANDESTiNE.nfo" yEnc', + 'ordinal' => 70, + ), + 397 => + array ( + 'id' => 399, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^\\((?P\\w+?)\\d{3}\\.[A-Za-z0-9]{3,4}\\)[-_\\s]{0,3}\\[\\d+\\/(?P\\d+\\])[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(4n4o8xq59kxq40bk8ukf3o4d163.163) [162/282] - "4n4o8xq59kxq40bk8ukf3o4d163.163" yEnc', + 'ordinal' => 75, + ), + 398 => + array ( + 'id' => 400, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^<-{Retrouvez-nous sur NextDownload}-> > >"(?P\\w+)"\\[\\d+\\/(?P\\d+\\])[ _-]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//<-{Retrouvez-nous sur NextDownload}-> > >"Next1023"[15/24] - "Next1023.9.vol001+001.par2" yEnc', + 'ordinal' => 80, + ), + 399 => + array ( + 'id' => 401, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^\\[\\d+\\/(?P\\d+\\][ _-]{0,3}".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+[.,]\\d+ [kKmMgG][bB].+UpperTeam.+ Secretusenet\\.com.+yEnc$/i', + 'status' => 1, + 'description' => '//[28/55] - "XzrgzBWoRqtcuBF.part27.rar" - 4,78 GB >>>UpperTeam for Usenet-Space-Cowboys.info and Secretusenet.com<<< yEnc', + 'ordinal' => 85, + ), + 400 => + array ( + 'id' => 402, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^\\(\\d+(?P\\/\\d+\\))[-_\\s]{0,3}[|][-_\\s]{0,3}"(?P[\\w\\säöüÄÖܖ¤ß¶!.,&_\\()\\[\\]\\\'\\`-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}[|] yEnc$/iu', + 'status' => 1, + 'description' => '//(38/55) | "Apocalypse.La.premiere.guerre.mondiale.e02.Peur.HDTV.1080p-STL.7z.037" | yEnc', + 'ordinal' => 90, + ), + 401 => + array ( + 'id' => 403, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/NextDownload.+"\\w+"\\[\\d+\\/(?P\\d+)\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖܖ¤ß¶!.,&_\\()\\[\\]\\\'\\`-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//<-{NextDownload}->"Next2163"[21/22] - "Next2163.6.vol127+128.par2" yEnc', + 'ordinal' => 95, + ), + 402 => + array ( + 'id' => 404, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^(?PSecretUsenet\\.com.+)[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//SecretUsenet.com _98iu89iujh_4312 225bea29_87db55d2_b9f1844e_7842adb-u4e - "225bea29_87db55d2_b9f1844e_7842adb-u4e.par2" yEnc', + 'ordinal' => 100, + ), + 403 => + array ( + 'id' => 405, + 'group_regex' => '^alt\\.binaries\\.moovee$', + 'regex' => '/(?P\\[\\d+\\]-\\[.+?\\]-\\[.+?\\]-\\[ .+? \\](-| ))\\[\\d+\\/\\d+\\][ -]* ".+?" yEnc$/', + 'status' => 1, + 'description' => '//[133170]-[FULL]-[#a.b.moovee]-[ Hansel.And.Gretel.Witch.Hunters.DVDR-iGNiTiON ]-[032/117] "ign-witchhunters.r24" yEnc ::: //Re: [133388]-[FULL]-[#a.b.moovee]-[ Familiar.Grounds.2011.DVDRip.XViD-TWiST ]-[01/59] - "twist-xvid-terrainsconus.nfo" yEnc ::: //[134212]-[FULL]-[#a.b.moovee]-[ Monsters.Inc.2001.1080p.BluRay.x264-CiNEFiLE ] [80/83] - "monsters.inc.2001.1080p.bluray.x264-cinefile.vol015+16.par2" yEnc ::: //[134912]-[FULL]-[#a.b.moovee]-[ Epic.2013.DVDRip.X264-SPARKS ]-[01/70]- "epic.2013.dvdrip.x264-sparks.nfo" yEnc', + 'ordinal' => 5, + ), + 404 => + array ( + 'id' => 406, + 'group_regex' => '^alt\\.binaries\\.moovee$', + 'regex' => '/^(?P\\[\\d+\\]-\\[.+?\\]-\\[.+?\\]- ").+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[42788]-[#altbin@EFNet]-[Full]- "margin-themasterb-xvid.par2" yEnc', + 'ordinal' => 10, + ), + 405 => + array ( + 'id' => 407, + 'group_regex' => '^alt\\.binaries\\.moovee$', + 'regex' => '/^(?P\\[ [a-zA-Z0-9.-]+ \\] ?- ?\\[)\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//[ Hammer.of.the.Gods.2013.720p.WEB-DL.DD5.1.H.264-ELiTE ]-[01/44] - "Hammer.of.the.Gods.2013.720p.WEB-DL.DD5.1.H.264-ELiTE.par2" yEnc ::: //[ Admission.2013.720p.WEB-DL.DD5.1.H.264-HD4FUN ] - [01/82] - "Admission.2013.720p.WEB-DL.DD5.1.H.264-HD4FUN.nfo" yEnc', + 'ordinal' => 15, + ), + 406 => + array ( + 'id' => 408, + 'group_regex' => '^alt\\.binaries\\.moovee$', + 'regex' => '/^\\(\\?{4}\\) \\[\\d+(?P\\/\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(????) [0/1] - "A.Good.Day.to.Die.Hard.2013.nzb" yEnc', + 'ordinal' => 20, + ), + 407 => + array ( + 'id' => 409, + 'group_regex' => '^alt\\.binaries\\.moovee$', + 'regex' => '/^\\[x+\\]-\\[.+?\\]-\\[ x+ \\]-\\[\\d+(?P\\/\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[xxxxx]-[#a.b.moovee@EFNet]-[ xxxxx ]-[02/66] - "tulob88.part01.rar" yEnc', + 'ordinal' => 25, + ), + 408 => + array ( + 'id' => 410, + 'group_regex' => '^alt\\.binaries\\.moovee$', + 'regex' => '/^(?P[a-zA-Z0-9._-]+ - ?\\[)\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Groove.2000.iNTERNAL.DVDRip.XviD-UBiK - [001/111] - "ubik-groove-cd1.par2" yEnc ::: //Antony.and.Cleopatra.1972.720p.WEB-DL.H264-brento -[35/57] - "Antony.and.Cleopatra.1972.720p.WEB-DL.AAC2.0.H.264-brento.part34.rar" yEnc', + 'ordinal' => 30, + ), + 409 => + array ( + 'id' => 411, + 'group_regex' => '^alt\\.binaries\\.moovee$', + 'regex' => '/^(?P\\[\\d+\\] - [a-z0-9]+.+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2|\\.[A-Za-z0-9]{2,4}) - \\[\\d+\\/\\d+\\]\\s+yEnc$/', + 'status' => 1, + 'description' => '//[133668] - p00okjiue34635xxzx$$££zll-b.vol3+2.PAR2 - [005/118] yEnc', + 'ordinal' => 35, + ), + 410 => + array ( + 'id' => 412, + 'group_regex' => '^alt\\.binaries\\.moovee$', + 'regex' => '/^(?P(\\[\\d+\\])?-(\\[REPOST\\])?\\[)\\d+(?P\\/\\d+\\] - "\\d+-)\\d\\..+?" yEnc$/', + 'status' => 1, + 'description' => '//-[004/115] - "134218-0.par2" yEnc ::: //[134824]-[001/117] - "134824-0.0" yEnc ::: //[134510]-[REPOST]-[001/110] - "134510-rp-0.0" yEnc', + 'ordinal' => 40, + ), + 411 => + array ( + 'id' => 413, + 'group_regex' => '^alt\\.binaries\\.moovee$', + 'regex' => '/^\\[\\d+\\]-\\[\\d+(?P\\/\\d+\\] - ".+?)([-_](proof|sample|subs|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[134517]-[01/76] - "Lara Croft Tomb Raider 2001 720p BluRay DTS x264-RightSiZE.nfo" yEnc', + 'ordinal' => 45, + ), + 412 => + array ( + 'id' => 414, + 'group_regex' => '^alt\\.binaries\\.moovee$', + 'regex' => '/^(?P\\([a-zA-Z0-9.-]+\\) \\()\\d+\\/\\d+\\) - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//(Iron.Man.3.2013.R5.DVDRip.XviD-AsA) (01/26) - "Iron.Man.3.2013.R5.DVDRip.XviD-AsA.part01.part.sfv" yEnc', + 'ordinal' => 50, + ), + 413 => + array ( + 'id' => 415, + 'group_regex' => '^alt\\.binaries\\.moovee$', + 'regex' => '/^(?P\\([a-zA-Z0-9].+?\\) [a-zA-Z0-9.-]+ \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//(Classic Surf) Morning.Of.The.Earth.1971 [03/29] - "Morning.Of.The.Earth.1971.part02.rar" yEnc', + 'ordinal' => 55, + ), + 414 => + array ( + 'id' => 416, + 'group_regex' => '^alt\\.binaries\\.moovee$', + 'regex' => '/^(?P\\[\\d+\\]-\\[.+?\\]-\\[)\\d+\\/\\d+\\] - "\\d+-.+?" yEnc$/', + 'status' => 1, + 'description' => '// No example????? Probably : [32432]-[Something]-[4/24] - "02312-1.nzb" yEnc', + 'ordinal' => 60, + ), + 415 => + array ( + 'id' => 417, + 'group_regex' => '^alt\\.binaries\\.moovee$', + 'regex' => '/^\\((?P[\\w.-]+)\\)\\[\\d+\\/(?P\\d+\\])[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(Ringside.The.Best.of.Mike.Tyson.DVDRip.x264.AC3-FCZ)[01/68] - "Ringside.The.Best.of.Mike.Tyson.DVDRip.1.of.2.x264.AC3-FCZ.nfo" yEnc', + 'ordinal' => 65, + ), + 416 => + array ( + 'id' => 418, + 'group_regex' => '^alt\\.binaries\\.movies$', + 'regex' => '/^(?P[a-z].+) - \\[\\d+\\/(?P\\d+\\])[ _-]{0,3}("|#34;).+("|#34;) yEnc$/i', + 'status' => 1, + 'description' => '//Underworld.Evolution.2006.480p.BDRip.XviD.AC3-AsA - [000/143] - "asa.nzb" yEnc', + 'ordinal' => 5, + ), + 417 => + array ( + 'id' => 419, + 'group_regex' => '^alt\\.binaries\\.movies$', + 'regex' => '/^Have Fun - ("|#34;)(?P.+)\\.nfo("|#34;) Ph4let0ast3r yEnc$/i', + 'status' => 1, + 'description' => '///^Have Fun - ("|#34;)(.+).nfo("|#34;) Ph4let0ast3r yEnc$/i', + 'ordinal' => 10, + ), + 418 => + array ( + 'id' => 420, + 'group_regex' => '^alt\\.binaries\\.movies$', + 'regex' => '/^\\(\\d+\\/\\d+\\) (?P"|#34;)(.+)\\.(?Ppar2|nfo|rar|nzb)("|#34;) - \\d+[.,]\\d+ [kKmMgG][bB] - yEnc$/i', + 'status' => 1, + 'description' => '//(01/34) "Sniper.Reloaded.2011.BluRay.810p.DTS.x264-PRoDJi.Turkish.Audio.par2" - 139,30 MB - yEnc', + 'ordinal' => 15, + ), + 419 => + array ( + 'id' => 421, + 'group_regex' => '^alt\\.binaries\\.movies$', + 'regex' => '/^("|#34;)(?P.+)\\.rar("|#34;)$/i', + 'status' => 1, + 'description' => '//"Discovery.Channel.Tsunami.Facing.The.Wave.720p.HDTV.x264-PiX.rar"', + 'ordinal' => 20, + ), + 420 => + array ( + 'id' => 422, + 'group_regex' => '^alt\\.binaries\\.movies$', + 'regex' => '/^(?P[a-z].+) .+\\.(par2|nfo|rar|nzb)$/i', + 'status' => 1, + 'description' => '//Saw.VII.2010.720p.Bluray.x264.DTS-HDChina Saw.VII.2010.720p.Bluray.x264.DTS-HDChina.nzb', + 'ordinal' => 25, + ), + 421 => + array ( + 'id' => 423, + 'group_regex' => '^alt\\.binaries\\.movies$', + 'regex' => '/^\\(\\?+\\) \\[\\d+\\/(?P\\d+\\])[-_ ]{0,3}"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(????) [1/1] - "The Secret L', + 'ordinal' => 30, + ), + 422 => + array ( + 'id' => 424, + 'group_regex' => '^alt\\.binaries\\.movies$', + 'regex' => '/^\\(\\d+\\/(?P\\d+\\))[-_ ]{0,3}Description[-_ ]{0,3}"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(001/114) - Description - "The.Chronicles.of.Riddick.2004.DC.BluRay.1080p.DTS.par2" - 10,50 GB - yEnc', + 'ordinal' => 35, + ), + 423 => + array ( + 'id' => 425, + 'group_regex' => '^alt\\.binaries\\.movies$', + 'regex' => '/^\\[\\d+\\/(?P\\d+\\])[-_ ]{0,3}"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[00/56] - "The.Last.Days.On.Mars.720p.BluRay.x264-DR.nzb" yEnc', + 'ordinal' => 40, + ), + 424 => + array ( + 'id' => 426, + 'group_regex' => '^alt\\.binaries\\.movies$', + 'regex' => '/^\\[REUP\\]( )?(?P.+?) - \\[\\d+\\/(?P\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[REUP] 6.Degress.of.Hell.2012.1080p.BluRay.DTS-HD.x264-BARC0DE - [03/50] - "BARC0DE.vol00+1.PAR2" yEnc ::: //[REUP]Home.Of.The.Brave.2006.1080p.BluRay.DTS-HD.x264-BARC0DE - [03/38] - "BARC0DE.vol00+1.PAR2" yEnc', + 'ordinal' => 45, + ), + 425 => + array ( + 'id' => 427, + 'group_regex' => '^alt\\.binaries\\.movies$', + 'regex' => '/^.+\\[\\d+\\/(?P\\d+\\]) - "(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//22.Jump.Street.2014.720p.BluRay.x264-tpU.vol000+01.PAR2 [73/84] - "22.Jump.Street.2014.720p.BluRay.x264-tpU.vol000+01.PAR2" yEnc', + 'ordinal' => 50, + ), + 426 => + array ( + 'id' => 428, + 'group_regex' => '^alt\\.binaries\\.movies$', + 'regex' => '/^- Description - "(?P[\\w. -]{8,}?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")(?P[-_\\s]{0,3}\\d+[.,]\\d+ [kKmMgG][bB])[- ]{0,4}yEnc$/i', + 'status' => 1, + 'description' => '//- Description - "The.Legend.of.Hercules.2014.720p.BluRay.x264.Y', + 'ordinal' => 55, + ), + 427 => + array ( + 'id' => 429, + 'group_regex' => '^alt\\.binaries\\.movies\\.divx$', + 'regex' => '/^(?P\\(www\\.Thunder-News\\.org\\) .+? - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(www.Thunder-News.org) >CD2< - "exvid-emma-cd2.par2" yEnc', + 'ordinal' => 5, + ), + 428 => + array ( + 'id' => 430, + 'group_regex' => '^alt\\.binaries\\.movies\\.divx$', + 'regex' => '/^(?P[a-zA-Z ]+Post Voor FTN - \\[\\d+\\/\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Movieland Post Voor FTN - [01/43] - "movieland0560.par2" yEnc', + 'ordinal' => 10, + ), + 429 => + array ( + 'id' => 431, + 'group_regex' => '^alt\\.binaries\\.movies\\.divx$', + 'regex' => '/(?P.+?by mayhem masta".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Disney short films collection by mayhem masta"1923 - Alice\'s Wonderland.vol15+7.par2" yEnc', + 'ordinal' => 15, + ), + 430 => + array ( + 'id' => 432, + 'group_regex' => '^alt\\.binaries\\.movies\\.x264$', + 'regex' => '/^http:\\/\\/nzbroyalty\\.com - (?P.+?) - \\[\\d+\\/(?P\\d+\\]) - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//http://nzbroyalty.com - House.of.The.Rising.sun.2011.BluRay.720p.DTS.x264-CHD - [00/48] - "House.of.The.Rising.sun.2011.BluRay.720p.DTS.x264-CHD.nzb" yEnc', + 'ordinal' => 5, + ), + 431 => + array ( + 'id' => 433, + 'group_regex' => '^alt\\.binaries\\.movies\\.x264$', + 'regex' => '/^(?P[a-zA-Z0-9._-]+ - ?\\[)\\d+\\/(?P\\d+\\]) - "(.+?)\\.(nzb|rar|par2)" yEnc$/', + 'status' => 1, + 'description' => '//Scream.4.2011.WS.720p.BluRay.X264-AMIABLE - [000/106] - "Scream.4.2011.WS.720p.BluRay.X264-AMIABLE.nzb" yEnc', + 'ordinal' => 10, + ), + 432 => + array ( + 'id' => 434, + 'group_regex' => '^alt\\.binaries\\.movies\\.x264$', + 'regex' => '/^(?P[a-zA-Z0-9].+?)(?P - )\\[\\d+(?P\\/\\d+\\] - ").+?" yEnc$/', + 'status' => 1, + 'description' => '//The Beaver 2011 720p BluRay DD5.1 x264-CtrlHD - [00/65] - "The Beaver 2011 720p BluRay DD5.1 x264-CtrlHD.nzb" yEnc', + 'ordinal' => 15, + ), + 433 => + array ( + 'id' => 435, + 'group_regex' => '^alt\\.binaries\\.movies\\.x264$', + 'regex' => '/("|#34;)(?P.+)("|#34;)[-_ ]{0,3}[\\(\\[]\\d+\\/(?P\\d+[\\)\\]])[-_ ]{0,3}("|#34;).+?(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4})("|#34;)[-_ ]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][-_ ]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//"The.Hudsucker.Proxy.1994.1080p.Blu-ray.Remux.AVC.DTS.HD.MA.2.0-KRaLiMaRKo"(127/132) "The.Hudsucker.Proxy.1994.1080p.Blu-ray.Remux.AVC.DTS.HD.MA.2.0-KRaLiMaRKo.vol379+20.par2" - 24.61 GB - yEnc', + 'ordinal' => 20, + ), + 434 => + array ( + 'id' => 436, + 'group_regex' => '^alt\\.binaries\\.movies\\.x264$', + 'regex' => '/^(?P[\\w.-]+)[-_\\s]{0,3}\\[\\d+\\/(?P\\d+\\])[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Fly.With.The.Gold.2012.720p.BluRay.x264-WiKi [03/73] - "wiki-fwtg.par2" yEnc', + 'ordinal' => 25, + ), + 435 => + array ( + 'id' => 437, + 'group_regex' => '^alt\\.binaries\\.mp3$', + 'regex' => '/"(?P.+)"[-_ ]{0,3}[\\(\\[]\\d+\\/(?P\\d+[\\)\\]])[-_ ]{0,3}".+(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//"The Absence - Riders Of The Plague" [00/14] - "the_absence-riders_of_the_plague.nzb" yEnc', + 'ordinal' => 5, + ), + 436 => + array ( + 'id' => 438, + 'group_regex' => '^alt\\.binaries\\.mp3$', + 'regex' => '/(?P.+)[-_ ]{0,3}[\\(\\[]\\d+\\/(?P\\d+[\\)\\]])[-_ ]{0,3}".+(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//( Albert Cummings Albums 6x By Dready Niek (1999-2012) ) ( ** By Dready Niek ** ) [11/20] - "Albert Cummings Albums 6x By Dready Niek (1999-2012).part10.rar" yEnc ::: //( Fat Freddy\'s Drop - Blackbird (2013) -- By Dready Niek ) -- By Dready Niek ) [01/15] - "Fat Freddy\'s Drop - Blackbird (2013) -- By Dready Niek.par2" yEnc', + 'ordinal' => 10, + ), + 437 => + array ( + 'id' => 439, + 'group_regex' => '^alt\\.binaries\\.mp3$', + 'regex' => '/^(?P.+?)[-_ ]{0,3}("|#34;)(.+?)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}("|#34;))[-_ ]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//Metallica - Ride The Lightning "01 - Fight Fire With Fire.mp3" yEnc', + 'ordinal' => 15, + ), + 438 => + array ( + 'id' => 440, + 'group_regex' => '^alt\\.binaries\\.mp3\\.complete_cd$', + 'regex' => '/^(?P\\[\\d+\\]-\\[.+?\\]-\\[.+?\\]-\\[)\\d+\\/\\d+\\] ".+?" yEnc$/', + 'status' => 1, + 'description' => '//[052713]-[#eos@EFNet]-[All_Shall_Perish-Montreal_QUE_0628-2007-EOS]-[09/14] "06-all_shall_perish-deconstruction-eos.mp3" yEnc', + 'ordinal' => 5, + ), + 439 => + array ( + 'id' => 441, + 'group_regex' => '^alt\\.binaries\\.mp3\\.complete_cd$', + 'regex' => '/^\\(\\d+\\/(?P\\d+\\))[ _-]{0,3}\\[Lords-of-usenet\\][ _-]{0,3}<>[ _-]{0,3}"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//(05/10) - [Lords-of-usenet] <> "Wynardtage Praise The Fallen(2007).vol00+01.PAR2" - 132,64 MB - yEnc', + 'ordinal' => 10, + ), + 440 => + array ( + 'id' => 442, + 'group_regex' => '^alt\\.binaries\\.mp3\\.complete_cd$', + 'regex' => '/^\\(\\d+\\/(?P\\d+\\))[ _-]{0,3}[ _-]{0,3}"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//(06/11) - - "Diens - Schwarzmale.vol00+01.PAR2" - 141,07 MB - yEnc', + 'ordinal' => 15, + ), + 441 => + array ( + 'id' => 443, + 'group_regex' => '^alt\\.binaries\\.mp3\\.complete_cd$', + 'regex' => '/^[ _-]{0,3}\\(\\d+\\/(?P\\d+\\))[ _-]{0,3}"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '// (09/18) - "Mantus - Fatum (2013) [2CD].FH.vol00+2.PAR2" - 336,39 MB - yEnc', + 'ordinal' => 20, + ), + 442 => + array ( + 'id' => 444, + 'group_regex' => '^alt\\.binaries\\.mp3\\.complete_cd$', + 'regex' => '/^\\(\\d+\\/(?P\\d+\\))[ _-]{0,3}"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//(08/15) "Noemi-Red.(Unreleased).2006.by.NYCrules.vol000+01.PAR2" - 179,66 MB - yEnc', + 'ordinal' => 25, + ), + 443 => + array ( + 'id' => 445, + 'group_regex' => '^alt\\.binaries\\.mp3\\.complete_cd$', + 'regex' => '/^\\[(?P[a-zA-Z0-9-_\\\\(\\)\\.]+)\\] \\[www\\.usenet4ever\\.info by Secretusenet\\] - "(.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[16_Bit_Lolitas-Warung_Brazil_002-2CD-2012-iHF] [www.usenet4ever.info by Secretusenet] - "000-16_bit_lolitas-warung_brazil_002-2cd-2012-ihf.sfv" yEnc ::: //[3RD_Prototype_-_On_My_Way-(TB7368)-WEB-2013-FMC] [www.usenet4ever.info by Secretusenet] - "01-3rd_prototype_-_deafback-when_you_are_in_the_dark_(deafback_remix).mp3" yEnc ::: //[Armin_Van_Buuren_Feat._Fiora-Waiting_For_The_Night-(ARMD1140)-WEB-2013-UKHx] [www.usenet4ever.info by Secretusenet] - "00-armin_van_buuren_feat._fiora-waiting_for_the_night-(armd1140)-web-2013-ukhx.m3u" yEnc', + 'ordinal' => 30, + ), + 444 => + array ( + 'id' => 446, + 'group_regex' => '^alt\\.binaries\\.mp3\\.complete_cd$', + 'regex' => '/^>ghost-of-usenet\\.org<< (?P[a-zA-Z0-9-_\\\\(\\)\\.]+) >>www\\.SSL-News\\.info> - "(.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//>ghost-of-usenet.org<< 16_Bit_Lolitas-Warung_Brazil_002-2CD-2012-iHF >>www.SSL-News.info> - "101-16_bit_lolitas-warung_brazil_002_cd1.mp3" yEnc', + 'ordinal' => 35, + ), + 445 => + array ( + 'id' => 447, + 'group_regex' => '^alt\\.binaries\\.mp3\\.complete_cd$', + 'regex' => '/^(?P[a-zA-Z0-9 -_\\\\(\\)\\.]+) \\[\\d+(\\/| of )(?P\\d+\\])[-_ ]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Blok_B-Bienvenue_Dans_Mon_Blok_Vol.1-2005-BZ_INT [20 of 27] "01-gangsta.mp3" yEnc ::: //DJ Neev - HedKandi_2013-06-08 (Ministry of Sound Radio) [01/13] - "DJ Neev - HedKandi_2013-06-08 (Ministry of Sound Radio).par2" yEnc', + 'ordinal' => 40, + ), + 446 => + array ( + 'id' => 448, + 'group_regex' => '^alt\\.binaries\\.mp3\\.complete_cd$', + 'regex' => '/^\\(www\\.Thunder-News\\.org\\) >(?P.+?)< - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(www.Thunder-News.org) >Dee_And_Crane-Let_The_Music_Play-WEB-2012-UKHx< - "05-dee_and_crane-let_the_music_play_(jay_frogs_keep_the_groove_remix_edit).mp3" yEnc', + 'ordinal' => 45, + ), + 447 => + array ( + 'id' => 449, + 'group_regex' => '^alt\\.binaries\\.mp3\\.complete_cd$', + 'regex' => '/^.+\\[\\d+\\/(?P\\d+\\].+)"(.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/i', + 'status' => 1, + 'description' => '//VA 200 NRJ 2014 CD2 mp3_320kbps[18/27]VA 200 NRJ 2014 CD2 mp3_320kbps"(217) [Capital Cities] Safe And Sound.mp3" yEnc', + 'ordinal' => 50, + ), + 448 => + array ( + 'id' => 450, + 'group_regex' => '^alt\\.binaries\\.mp3\\.full_albums$', + 'regex' => '/^\\. - \\[\\d+\\/(?P\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//. - [05/10] - "Blues \'N Trouble - With Friends Like These [1989].vol00+01.par2" yEnc', + 'ordinal' => 5, + ), + 449 => + array ( + 'id' => 451, + 'group_regex' => '^alt\\.binaries\\.mp3\\.full_albums$', + 'regex' => '/^\\(\\d+\\/(?P\\d+\\)) "\\[www\\.Lords-of-Usenet\\.org\\]_\\[Partner von SSL-News\\]_(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//(001/122) "[www.Lords-of-Usenet.org]_[Partner von SSL-News]_Blind_Guardian-Discographie.par2" - 2,20 GB - yEnc', + 'ordinal' => 10, + ), + 450 => + array ( + 'id' => 452, + 'group_regex' => '^alt\\.binaries\\.mp3\\.full_albums$', + 'regex' => '/^\\(\\d+\\/(?P\\d+\\)) "(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,4}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}.+?yEnc$/i', + 'status' => 1, + 'description' => '//(06/10) "Pink Floyd - Dark Side Of The Moon [MFSL UDCD 517].vol00+01.PAR2"- - 67,88 MB - Pink Floyd - Dark Side Of The Moon [MFSL UDCD 517] yEnc ::: //(07/11) "VA - Twilight - New Moon - Ost.vol00+01.PAR2"- - 93,69 MB - VA - Twilight - New Moon - Ost yEnc', + 'ordinal' => 15, + ), + 451 => + array ( + 'id' => 453, + 'group_regex' => '^alt\\.binaries\\.mp3\\.full_albums$', + 'regex' => '/^\\(.+\\) \\[\\d+\\/(?P\\d+\\]) - "(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol\\d+\\+\\d+\\.par2|\\.[A-Za-z0-9]{2,4}) . http:\\/\\/usenet4ever\\.info_Sponsored by www\\.Secretusenet\\.com " yEnc$/', + 'status' => 1, + 'description' => '//(Kitty Samtpfote) [01/12] - "Electronic Music of the 80s.Michael Garrison - In The Regions Of Sunreturn and beyond 1991.par2 . http://usenet4ever.info_Sponsored by www.Secretusenet.com " yEnc', + 'ordinal' => 20, + ), + 452 => + array ( + 'id' => 454, + 'group_regex' => '^alt\\.binaries\\.mp3\\.full_albums$', + 'regex' => '/^\\(.+\\) >(?P.+?)< - \\(\\d+\\/(?P\\d+\\)) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(www.Thunder-News.org) >Boehse Onkelz - Discography< - (113/145) - "Boehse Onkelz - Discography.s10" yEnc', + 'ordinal' => 25, + ), + 453 => + array ( + 'id' => 455, + 'group_regex' => '^alt\\.binaries\\.mp3\\.full_albums$', + 'regex' => '/^\\[(?P\\d+\\]-\\[".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")\\[ yEnc$/i', + 'status' => 1, + 'description' => '//[00021]-["1999 Alphaville - Dreamscapes.part069.rar"[ yEnc', + 'ordinal' => 30, + ), + 454 => + array ( + 'id' => 456, + 'group_regex' => '^alt\\.binaries\\.mp3\\.full_albums$', + 'regex' => '/^\\(.+\\) \\[\\d+\\/(?P\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(nzbDMZ) [0/2] - "Miles Crossing - Miles Crossing (2011).nzb" yEnc', + 'ordinal' => 35, + ), + 455 => + array ( + 'id' => 457, + 'group_regex' => '^alt\\.binaries\\.mp3\\.full_albums$', + 'regex' => '/^\\[\\d+\\/(?P\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[06/10] - "Jeff Healey - Legacy Volume One [The Singles].vol00+01.PAR2" yEnc', + 'ordinal' => 40, + ), + 456 => + array ( + 'id' => 458, + 'group_regex' => '^alt\\.binaries\\.mp3\\.full_albums$', + 'regex' => '/^(?P\\d+ ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//00008 "2003 Camouflage - Sensor.par2" yEnc', + 'ordinal' => 45, + ), + 457 => + array ( + 'id' => 459, + 'group_regex' => '^alt\\.binaries\\.mp3\\.full_albums$', + 'regex' => '/^(?P[a-zA-Z0-9 -_\\\\(\\)\\.]+) \\[\\d+(\\/| of )(?P\\d+\\])[-_ ]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Alex Oriental Experience_-_Live II (Live II) [1/9] - "01_Red_Dress.mp3" yEnc', + 'ordinal' => 50, + ), + 458 => + array ( + 'id' => 460, + 'group_regex' => '^alt\\.binaries\\.multimedia$', + 'regex' => '/^(?P[A-Z0-9a-z.-]{10,}\\s+(- )?\\[)\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Escort.2006.DUTCH.WEB-RiP.x264-DLH - [01/23] - "Escort.2006.DUTCH.WEB-RiP.x264-DLH.par2" yEnc ::: //Tusenbroder.S01E05.PDTV.XViD.SWEDiSH-NTV [01/69] - "ntv-tusenbroder.s01e05.nfo" yEnc', + 'ordinal' => 5, + ), + 459 => + array ( + 'id' => 461, + 'group_regex' => '^alt\\.binaries\\.multimedia$', + 'regex' => '/.*"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}").+?yEnc$/i', + 'status' => 1, + 'description' => '//- "Auction Hunters S04E04.HDTV.x264-StarryNights1.nzb" yEnc', + 'ordinal' => 10, + ), + 460 => + array ( + 'id' => 462, + 'group_regex' => '^alt\\.binaries\\.multimedia$', + 'regex' => '/^(?P.+?)\\.[A-Za-z0-9]{2,4} - \\[\\d+\\/(?P\\d+\\]) yEnc$/', + 'status' => 1, + 'description' => '//homeland.s02e12.1080p.bluray-bia.r08 - [011/111] yEnc', + 'ordinal' => 15, + ), + 461 => + array ( + 'id' => 463, + 'group_regex' => '^alt\\.binaries\\.multimedia$', + 'regex' => '/^\\(TOWN\\)\\(www\\.town\\.ag \\)[ _-]{0,3}\\(partner of www\\.ssl-news\\.info \\)[ _-]{0,3} (.+?) \\[\\d+\\/(?P\\d+\\][ _-]{0,3}("|#34;).+?)\\.(par2|rar|nfo|nzb)("|#34;)[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//(TOWN)(www.town.ag ) (partner of www.ssl-news.info ) Twinz-Conversation-CD-FLAC-1995-CUSTODES [01/23] - #34;Twinz-Conversation-CD-FLAC-1995-CUSTODES.par2#34; - 266,00 MB - yEnc', + 'ordinal' => 20, + ), + 462 => + array ( + 'id' => 464, + 'group_regex' => '^alt\\.binaries\\.multimedia\\.anime$', + 'regex' => '/(?P.+? \\((360|480|720|1080)p\\|.+? ~bY .+? \\[)\\d+\\/\\d+\\] - ".+?\\[[A-F0-9]+\\].+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//High School DxD New 01 (480p|.avi|xvid|mp3) ~bY Hatsuyuki [01/18] - "[Hatsuyuki]_High_School_DxD_New_01_[848x480][76B2BB8C].avi.001" yEnc', + 'ordinal' => 5, + ), + 463 => + array ( + 'id' => 465, + 'group_regex' => '^alt\\.binaries\\.multimedia\\.anime$', + 'regex' => '#\\[(?P[\\w-]+\\][\\w-]+_\\d+_\\[\\d{3,4}[ip])\\]\\s*\\[([0-9A-Fa-f]{8})\\]\\s*\\[\\d+/(\\d+)\\].*#i', + 'status' => 1, + 'description' => '//[Hatsuyuki]_Seirei_Tsukai_no_Blade_Dance_-_03_[720p] [E18FCA59] [01/18]', + 'ordinal' => 10, + ), + 464 => + array ( + 'id' => 466, + 'group_regex' => '^alt\\.binaries\\.multimedia\\.anime\\.highspeed$', + 'regex' => '/(.+? \\((?P360|480|720|1080)p\\|.+?\\s*~bY\\s*.+?\\s*\\[)\\d+\\/\\d+\\]\\s*-\\s*".+?\\[[A-Z0-9\\[\\]\\.]+.*([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//High School DxD New 01 (480p|.avi|xvid|mp3) ~bY Hatsuyuki [01/18] - "[Hatsuyuki]_High_School_DxD_New_01_[848x480][76B2BB8C].avi.001" yEnc', + 'ordinal' => 5, + ), + 465 => + array ( + 'id' => 467, + 'group_regex' => '^alt\\.binaries\\.multimedia\\.documentaries$', + 'regex' => '/^(?P".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\[\\d+ of \\d+ - \\d+ [kKmMgG][bB]\\] yEnc$/i', + 'status' => 1, + 'description' => '//"Universe S4E08.part40.rar" - [41 of 76 - 10013 kb] yEnc', + 'ordinal' => 5, + ), + 466 => + array ( + 'id' => 468, + 'group_regex' => '^alt\\.binaries\\.multimedia\\.scifi$', + 'regex' => '/^(?Psome m4vs - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//some m4vs - "SilverHawks_v1eps01_The Origin Story.par2" yEnc', + 'ordinal' => 5, + ), + 467 => + array ( + 'id' => 469, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^\\[ TOWN \\][ _-]{0,3}\\[ www\\.town\\.ag \\][ _-]{0,3}\\[ partner of www\\.ssl-news\\.info \\][ _-]{0,3}\\[ .* \\] \\[\\d+\\/(?P\\d+\\][ _-]{0,3}("|#34;).+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//[ TOWN ]-[ www.town.ag ]-[ partner of www.ssl-news.info ]-[ MOVIE ] [14/19] - "Night.Vision.2011.DVDRip.x264-IGUANA.part12.rar" - 660,80 MB yEnc', + 'ordinal' => 5, + ), + 468 => + array ( + 'id' => 470, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^.+By Dready Niek \\) \\[\\d+\\/(?P\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//( 80\'s Giga Hits Collection (32 CDs) By Dready Niek ) By Dready Niek ) [44/54] - "80\'s Giga Hits Collection (32 CDs) By Dready Niek.part43.rar" yEnc', + 'ordinal' => 10, + ), + 469 => + array ( + 'id' => 471, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^\\(\\d+\\/(?P\\d+\\] .+?) ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - nightsteff yEnc$/i', + 'status' => 1, + 'description' => '//(00/24] Marco Mengoni - Prontoacorrere (2013) "Marco Mengoni - Prontoacorrere (2013).nzb" - nightsteff yEnc', + 'ordinal' => 15, + ), + 470 => + array ( + 'id' => 472, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^\\((?P.+)\\) \\[\\d+\\/(?P\\d+\\]) - \\[".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")\\] yEnc$/i', + 'status' => 1, + 'description' => '//(80\'s Disco-Soul-Funk) [136/426] - ["Level 42 - Lessons In Love.mp3"] yEnc', + 'ordinal' => 20, + ), + 471 => + array ( + 'id' => 473, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^\\((?P.+)\\) \\[\\d+\\/(?P\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(Jungle Fever Tapepacks) [67/79] - "Jungle Fever Tapepacks.part65.rar" yEnc', + 'ordinal' => 25, + ), + 472 => + array ( + 'id' => 474, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^\\[\\d+\\/(?P\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[1/8] - "Black Market Flowers - Bind (1993).sfv" yEnc', + 'ordinal' => 30, + ), + 473 => + array ( + 'id' => 475, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^\\[DreamPieter\\] \\((?P.+)\\) \\[\\d+\\/(?P\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[DreamPieter] (Glen Tipton - Two solo albums) [04/23] - "Glenn Tipton - Baptizm of Fire - 04 - Fuel Me Up.mp3" yEnc', + 'ordinal' => 35, + ), + 474 => + array ( + 'id' => 476, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^\\(\\d+\\/(?P\\d+\\)[ -]{0,3}".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(01/10) "Mylène Farmer - Monkey me (2012 Bluray Audio).rar" - 1,56 GB - yEnc', + 'ordinal' => 40, + ), + 475 => + array ( + 'id' => 477, + 'group_regex' => '^alt\\.binaries\\.music\\.mp3$', + 'regex' => '/^[\\(\\[]\\d+\\/(?P\\d+[\\]\\)][ -]{0,3}.+) ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[ -]{0,3}nightsteff yEnc$/i', + 'status' => 1, + 'description' => '//(00/20] Nomadi - Terzo Tempo (2012) "Nomadi - Terzo Tempo (2012).nzb" - nightsteff yEnc', + 'ordinal' => 5, + ), + 476 => + array ( + 'id' => 478, + 'group_regex' => '^alt\\.binaries\\.music\\.mp3$', + 'regex' => '/^\\(\\?+\\) \\[\\d+\\/(?P\\d+\\][ -]{0,3}.+) ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(????) [19/22] - C.K.N. Demo 85 "19-rotten system.mp3" yEnc', + 'ordinal' => 10, + ), + 477 => + array ( + 'id' => 479, + 'group_regex' => '^alt\\.binaries\\.music\\.mp3$', + 'regex' => '/^\\((?P.+)\\) \\[\\d+\\/(?P\\d+\\])[ -]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(BierbauchFreddy Quwinn seine größten Coversongs Vol2) [22/60] - "040c - Freddy Quinn - Don\'t Forbid Me (1957) (NH 22 639, EPH 20 575).mp3" yEnc', + 'ordinal' => 15, + ), + 478 => + array ( + 'id' => 480, + 'group_regex' => '^alt\\.binaries\\.music\\.mp3$', + 'regex' => '/^\\[ (?P.+) \\] - \\[\\d+\\] - \\[\\d+ Kbps MP3\\] \\[\\d+ of (?P\\d+\\]) ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[ Spectrum (ft. Matthew Koma) (Extended Mix) - Zedd ] - [2012] - [256 Kbps MP3] [1 of 7] "Spectrum (ft. Matthew Koma) [Extended Mix].mp3" yEnc', + 'ordinal' => 20, + ), + 479 => + array ( + 'id' => 481, + 'group_regex' => '^alt\\.binaries\\.music\\.mp3$', + 'regex' => '/^\\[\\d+\\/(?P\\d+\\][ -]{0,3}\\(((Top)?\\d+ )?(MP3 )?(Album )?Charts\\)[ -]{0,3}".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/i', + 'status' => 1, + 'description' => '//[1/1] - (150 MP3 Album Charts) - "Atlantean Kodex - The White Goddess.rar" yEnc ::: //[1/1] - (MP3 Album Charts) - "Black Sabbath - 13.rar" yEnc ::: //[1/1] - (Top100 Album Charts) - "Bastille - Pompeii.rar" yEnc ::: //[1/1] - (Top100 Charts) - "Beatrice Egli - Gluecksgefuehle.rar" yEnc', + 'ordinal' => 25, + ), + 480 => + array ( + 'id' => 482, + 'group_regex' => '^alt\\.binaries\\.music\\.mp3$', + 'regex' => '/^\\[\\d+\\/(?P\\d+\\][ -]{0,3}(Album )?Top \\d+( Album Charts \\d+)?[ -]{0,3}".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/i', + 'status' => 1, + 'description' => '//[1/1] - Album Top 100 - "Amy MacDonald - L', + 'ordinal' => 30, + ), + 481 => + array ( + 'id' => 483, + 'group_regex' => '^alt\\.binaries\\.music\\.mp3$', + 'regex' => '/^\\[\\d+\\/(?P\\d+\\][ -]{0,3}\\(Album Top \\d+(( -)? \\d+)?\\)[ -]{0,3}".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/i', + 'status' => 1, + 'description' => '//[1/1] (Album Top 100 - 2012) - "Cro - Einmal Um Die Welt.rar" yEnc ::: //[1/1] (Album Top 100 2012) - "Cro - Einmal Um Die Welt.rar" yEnc ::: //[1/1] (Album Top 100) - "Cro - Raop.rar" yEnc', + 'ordinal' => 35, + ), + 482 => + array ( + 'id' => 484, + 'group_regex' => '^alt\\.binaries\\.music\\.mp3$', + 'regex' => '/^\\[ech0park\\]-\\[spotnet\\]-\\[(?P.+?)\\] \\[\\d+\\/(?P\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[ech0park]-[spotnet]-[Snow Patrol 2012 Tour Sampler - 2012-iND] [02/20] - "02-snow_patrol-ill_never_let_go.mp3" yEnc', + 'ordinal' => 40, + ), + 483 => + array ( + 'id' => 485, + 'group_regex' => '^alt\\.binaries\\.music\\.mp3$', + 'regex' => '/^(?P.+?)[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\[\\d+\\/ (?P\\d+\\]) nightsteff[-_\\s]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//40 Italo Dance Tunes (2CD) - "00. 40 Italo Dance Tunes 2011.nfo" [02/ 50] nightsteff yEnc', + 'ordinal' => 45, + ), + 484 => + array ( + 'id' => 486, + 'group_regex' => '^alt\\.binaries\\.music\\.mp3$', + 'regex' => '/^(?P.+?) ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[ -]{0,3}nightsteff yEnc$/i', + 'status' => 1, + 'description' => '//Bud Spencer & Terence Hill - Greatest Hits Vol 1 (1995) "04 - Just A Good Boy.mp3" nightsteff yEnc', + 'ordinal' => 50, + ), + 485 => + array ( + 'id' => 487, + 'group_regex' => '^alt\\.binaries\\.music\\.mp3$', + 'regex' => '/^Attn: \\w+ - (?P.+?)\\[\\d+\\/(?P\\d+\\]) - .+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol\\d+\\+\\d+\\.par2|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}\\d+[.,]\\d+[kKmMgG][bB][-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//Attn: bearcat - Avenged Sevenfold - Avenged Sevenfold 320[17/18] - .vol15+16.par2 5.9Mb yEnc', + 'ordinal' => 55, + ), + 486 => + array ( + 'id' => 488, + 'group_regex' => '^alt\\.binaries\\.nl$', + 'regex' => '/\\((\\d+|\\?+)\\) \\[\\d+\\/(?P\\d+\\]).*"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//(????) [01/46] - "NCIS.S11E02.Past.Present.and.Future.1080p.WEB-DL.DD5.1.H.264-CtrlHD.par2" yEnc', + 'ordinal' => 5, + ), + 487 => + array ( + 'id' => 489, + 'group_regex' => '^alt\\.binaries\\.nl$', + 'regex' => '/^\\w+[-_ ]{0,3}[\\[\\(]\\d+\\/(?P\\d+[\\]\\)])[-_ ]{0,3}"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//JN - [1/3] - "Operatie Teheran-Joel C Rosenberg JN.par2" yEnc', + 'ordinal' => 10, + ), + 488 => + array ( + 'id' => 490, + 'group_regex' => '^alt\\.binaries\\.nl$', + 'regex' => '/^\\( (?P[\\w. -]{8,}) \\)[-_ ]{0,3}\\[\\d+\\/(?P\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//( Overlord II RELOADED ) - [013/112] - "rld-olii.part001.rar" yEnc', + 'ordinal' => 15, + ), + 489 => + array ( + 'id' => 491, + 'group_regex' => '^alt\\.binaries\\.nl$', + 'regex' => '/^(?P[\\w. &\\()-]{8,}?\\b)[-_\\s]{0,3}\\[\\d+\\/(?P\\d+\\])[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Batman.Arkham-Origins.Initiation-RELOADED - [006/296] - "r.vol010+08.PAR2" yEnc', + 'ordinal' => 20, + ), + 490 => + array ( + 'id' => 492, + 'group_regex' => '^alt\\.binaries\\.ps3$', + 'regex' => '/^\\[\\d+\\] \\[\\d+(?P\\/\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[4197] [036/103] - "ant-mgstlcd2.r34" yEnc', + 'ordinal' => 5, + ), + 491 => + array ( + 'id' => 493, + 'group_regex' => '^alt\\.binaries\\.pwp$', + 'regex' => '/^\\(\\d+\\/(?P\\d+\\)[-_ ]{0,4}"Giggi.+)[A-Z]\\d([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(620/899) - "Giggi_9M05YD32TO4.part147.rar" - 252,53 GB - yEnc', + 'ordinal' => 5, + ), + 492 => + array ( + 'id' => 494, + 'group_regex' => '^alt\\.binaries\\.pwp$', + 'regex' => '/^\\(\\d+\\/(?P\\d+\\)[-_ ]{0,4}".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(300/454) "James_Bond_You_Only_Live_Twice_bd25.part300.rar" - 22,22 GB - yEnc', + 'ordinal' => 10, + ), + 493 => + array ( + 'id' => 495, + 'group_regex' => '^alt\\.binaries\\.series\\.tv\\.french$', + 'regex' => '/^\\(\\d+\\/(?P\\d+\\)) "(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB]( -)? yEnc$/i', + 'status' => 1, + 'description' => '//(01/34) "Merlin.2008.1x04.la.vengeance.de.nimue.par2" - 388,38 MB - yEnc', + 'ordinal' => 5, + ), + 494 => + array ( + 'id' => 496, + 'group_regex' => '^alt\\.binaries\\.series\\.tv\\.french$', + 'regex' => '/^(?P[a-zA-Z0-9._-]+)[-_ ]{0,3}[\\(\\[]\\d+\\/(?P\\d+[\\)\\]])[-_ ]{0,3}"(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//Breaking.Bad.S02.MULTi.720p.BluRay.AC3.x264-BoO [749/883] - "212ACS3517.part01.rar" yEnc', + 'ordinal' => 10, + ), + 495 => + array ( + 'id' => 497, + 'group_regex' => '^alt\\.binaries\\.series\\.tv\\.french$', + 'regex' => '/^(?P[a-zA-Z0-9._-]+)[-_ ]{0,3}[\\(\\[]\\d+ of (?P\\d+[\\)\\]])[-_ ]{0,3}"(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//Dawson.Saison2.DVDRIP.x264.FRENCH [111 of 196] "Dawson.S2.E22.Tout feu, tout flambe.m4v.003" yEnc', + 'ordinal' => 15, + ), + 496 => + array ( + 'id' => 498, + 'group_regex' => '^alt\\.binaries\\.series\\.tv\\.french$', + 'regex' => '/^[\\(\\[]\\d+\\/(?P\\d+[\\)\\]])[-_ ]{0,3}"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//[01/22] - "Unnatural.History.1x03.Espion.En.Sommeil.FR.LD.par2" yEnc', + 'ordinal' => 20, + ), + 497 => + array ( + 'id' => 499, + 'group_regex' => '^alt\\.binaries\\.series\\.tv\\.french$', + 'regex' => '/^\\[(?P.+?)\\][-_ ]{0,3}[\\(\\[]\\d+\\/(?P\\d+[\\)\\]])[-_ ]{0,3}"(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//[MagNeum 3.14 S1 D.V.D + par2][1148/1167] - "ZDFRIKK8470DO776.D7P" yEnc', + 'ordinal' => 25, + ), + 498 => + array ( + 'id' => 500, + 'group_regex' => '^alt\\.binaries\\.sony\\.psp$', + 'regex' => '/^\\(\\d+\\/(?P\\d+\\) ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d+([.,]\\d+ [kKmMgG])?[bB] yEnc$/i', + 'status' => 1, + 'description' => '//(01/10) "Assassins Creed - Bloodlines [EUR].par2" - 408,46 MB yEnc', + 'ordinal' => 5, + ), + 499 => + array ( + 'id' => 501, + 'group_regex' => '^alt\\.binaries\\.sony\\.psp$', + 'regex' => '/^\\(\\d+\\) (?P[a-zA-Z0-9 -_\\.]+) \\[\\d+\\/(?P\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(20444) F', + 'ordinal' => 10, + ), + )); + \DB::table('collection_regexes')->insert(array ( + 0 => + array ( + 'id' => 502, + 'group_regex' => '^alt\\.binaries\\.sound\\.mp3$', + 'regex' => '/.+[-_ ]{0,3}[\\(\\[]\\d+\\/(?P\\d+[\\)\\]][-_ ]{0,3}".+)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//- codari_4_usenetrevolution.info-Partner of SSL-News UK.Single.Charts.Top.40 [01/25] - "UK.Single.Charts.Top.40.par2" - 301,70 MB - yEnc', + 'ordinal' => 5, + ), + 1 => + array ( + 'id' => 503, + 'group_regex' => '^alt\\.binaries\\.sound\\.mp3$', + 'regex' => '/^"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}\\(\\d+\\/(?P\\d+\\))[ _-]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//"Terraplane Sun - Funnel of Love.mp3" - 21.55 MB - (1/6) - yEnc', + 'ordinal' => 10, + ), + 2 => + array ( + 'id' => 504, + 'group_regex' => '^alt\\.binaries\\.sound\\.mp3$', + 'regex' => '/^(?P.+? meil29) ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//jean ferrat année 1967 à 1969 meil29 "17 Rien à voir.mp3" yEnc', + 'ordinal' => 15, + ), + 3 => + array ( + 'id' => 505, + 'group_regex' => '^alt\\.binaries\\.sounds\\.flac$', + 'regex' => '/^(?P\\[\\d+\\]-\\[.+?\\]-\\[.+?\\]-\\[.+?\\]-\\[)\\d+\\/\\d+] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//[32974]-[FULL]-[#a.b.flac]-[ Tenniscoats-Tokinouta-JP-CD-FLAC-2011-BCC ]-[04/28] - "00-tenniscoats-tokinouta-jp-cd-flac-2011.nfo" yEnc', + 'ordinal' => 5, + ), + 4 => + array ( + 'id' => 506, + 'group_regex' => '^alt\\.binaries\\.sounds\\.lossless$', + 'regex' => '/^http:\\/\\/dream-of-usenet\\.org .+? - \\[\\d+(?P\\/\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//http://dream-of-usenet.org empfehlen newsconnection.eu - [02/32] - "Adam_Ant-Manners_and_Physique-(MCAD-6315)-CD-FLAC-1989-2Eleven.par2" yEnc', + 'ordinal' => 5, + ), + 5 => + array ( + 'id' => 507, + 'group_regex' => '^alt\\.binaries\\.sounds\\.lossless$', + 'regex' => '/^(?P[A-Z0-9].+? - \\d{4} - .+? - )\\d+ of \\d+ - \\d+ - .+? yEnc$/', + 'status' => 1, + 'description' => '//Sonny Landreth - 2010 - Mississippi Blues - 04 of 29 - 00 - Mississippi Blues.sfv yEnc ::: //Fruteland Jackson - 1996 - ... Is All I Crave - 08 of 20 - 00 - Fruteland Jackson - ... Is All I Crave.log yEnc', + 'ordinal' => 10, + ), + 6 => + array ( + 'id' => 508, + 'group_regex' => '^alt\\.binaries\\.sounds\\.lossless$', + 'regex' => '/^(?P.+?[a-zA-Z0-9][^\\[(?P ])\\d{2,}(\\/\\d+\\] - ").+?" yEnc$/', + 'status' => 1, + 'description' => '//Restless Breed00/27] - ".nzb" yEnc', + 'ordinal' => 15, + ), + 7 => + array ( + 'id' => 509, + 'group_regex' => '^alt\\.binaries\\.sounds\\.lossless$', + 'regex' => '/^\\([A-Z0-9][a-zA-Z0-9 ]+\\) \\[\\d+(?P\\/\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(Rolling Stones) [01/28] - "Bell Center, Montreal, QC - 09-06-2013 (alt source sb remaster).par2" yEnc', + 'ordinal' => 20, + ), + 8 => + array ( + 'id' => 510, + 'group_regex' => '^alt\\.binaries\\.sounds\\.lossless$', + 'regex' => '/^.:[-_ ]{0,3}(?P.+?)[-_ ]{0,3}:..+?thunder-news\\.org.+?secretusenet\\.com:. - "(.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//.: VA-Liquid_Music-The_Future_House_Compilation-CD-FLAC-1993-WRS :. - .:www.thunder-news.org:. - .:sponsored by secretusenet.com:. - "00-va-liquid_music-the_future_house_compilation-cd-flac-1993-wrs.nfo" yEnc ::: //.:Bruce_BecVar-Arriba-CD-FLAC-1993-JLM:. - .:thunder-news.org:. - .:sponsored by secretusenet.com:. - "00-bruce_becvar-arriba-cd-flac-1993.m3u" yEnc', + 'ordinal' => 25, + ), + 9 => + array ( + 'id' => 511, + 'group_regex' => '^alt\\.binaries\\.sounds\\.lossless$', + 'regex' => '/^[-_ ]{0,3}"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//_ "CARUSO & GIGLI - O Sole Mio - The Unknown.nzb" yEnc', + 'ordinal' => 30, + ), + 10 => + array ( + 'id' => 512, + 'group_regex' => '^alt\\.binaries\\.sounds\\.lossless$', + 'regex' => '/^[-_ ]{0,3}"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_ ]{0,3}\\d+ (?Pof \\d+)( \\(\\d+\\/\\d+\\)){1,2} (yEnc)?$/i', + 'status' => 1, + 'description' => '//"Art Tatum - The Complete Trio Sessions with Tiny Grimes & Slam Stewart - Vol 1.NFO" - 1 of 6 (1/1) ::: //"Galen Jeter and the Dallas Jazz Orchestra - Thank You, Leon.NFO" - 1 of 5 (1/1) (1/1)', + 'ordinal' => 35, + ), + 11 => + array ( + 'id' => 513, + 'group_regex' => '^alt\\.binaries\\.sounds\\.lossless$', + 'regex' => '/^[-_ ]{0,3}"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//"Doc Watson - 1973 - The Essential Doc Watson - 01 - Tom Dooley.flac" - 406.64 MB - yEnc', + 'ordinal' => 40, + ), + 12 => + array ( + 'id' => 514, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3\\.audiobooks$', + 'regex' => '/^\\(dream-of-usenet\\.info\\) - \\[\\d+(?P\\/\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '// currently these are teh same as mp3, but in the future these should be mod', + 'ordinal' => 5, + ), + 13 => + array ( + 'id' => 515, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3\\.audiobooks$', + 'regex' => '/^http:\\/\\/dream-of-usenet\\.org .+? - \\[\\d+(?P\\/\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//http://dream-of-usenet.org empfehlen newsconnection.eu - [02/32] - "Adam_Ant-Manners_and_Physique-(MCAD-6315)-CD-FLAC-1989-2Eleven.par2" yEnc', + 'ordinal' => 10, + ), + 14 => + array ( + 'id' => 516, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3\\.audiobooks$', + 'regex' => '/^(?P>>> CREATIVE COMMONS NZB <<< ".+?" - File )\\d+ of \\d+: ".+?" yEnc$/', + 'status' => 1, + 'description' => '//>>> CREATIVE COMMONS NZB <<< "dexter romweber duo-lookout" - File 1 of 9: "creative_commons_nzb_dexter_romweber_duo-lookout.rar" yEnc', + 'ordinal' => 15, + ), + 15 => + array ( + 'id' => 517, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3\\.audiobooks$', + 'regex' => '/^(?P.+?usenet-space.+?Powered by.+? ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|").+? \\d+\\/\\d+ \\(\\d+[.,]\\d+ [kKmMgG][bB]\\) .+? \\d+[.,]\\d+ [kKmMgG][bB] .+?yEnc$/i', + 'status' => 1, + 'description' => '//<<>> <<< "Justin_Bieber-Believe_Acoustic-2013-pLAN9_usenet-space-cowbys.info.rar" >< 4/6 (78.65 MB) >< 60.84 MB > yEnc', + 'ordinal' => 20, + ), + 16 => + array ( + 'id' => 518, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3$', + 'regex' => '/^\\(dream-of-usenet\\.info\\) - \\[\\d+(?P\\/\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(dream-of-usenet.info) - [04/15] - "Enya-And_Winter_Came...-2008.part2.rar" yEnc', + 'ordinal' => 5, + ), + 17 => + array ( + 'id' => 519, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3$', + 'regex' => '/^http:\\/\\/dream-of-usenet\\.org .+? - \\[\\d+(?P\\/\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//http://dream-of-usenet.org empfehlen newsconnection.eu - [02/32] - "Adam_Ant-Manners_and_Physique-(MCAD-6315)-CD-FLAC-1989-2Eleven.par2" yEnc', + 'ordinal' => 10, + ), + 18 => + array ( + 'id' => 520, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3$', + 'regex' => '/^(?P>>> CREATIVE COMMONS NZB <<< ".+?" - File )\\d+ of \\d+: ".+?" yEnc$/', + 'status' => 1, + 'description' => '//>>> CREATIVE COMMONS NZB <<< "dexter romweber duo-lookout" - File 1 of 9: "creative_commons_nzb_dexter_romweber_duo-lookout.rar" yEnc', + 'ordinal' => 15, + ), + 19 => + array ( + 'id' => 521, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3$', + 'regex' => '/^(?P.+?usenet-space.+?Powered by.+? ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|").+? \\d+\\/\\d+ \\(\\d+[.,]\\d+ [kKmMgG][bB]\\) .+? \\d+[.,]\\d+ [kKmMgG][bB] .+?yEnc$/i', + 'status' => 1, + 'description' => '//<<>> <<< "Justin_Bieber-Believe_Acoustic-2013-pLAN9_usenet-space-cowbys.info.rar" >< 4/6 (78.65 MB) >< 60.84 MB > yEnc', + 'ordinal' => 20, + ), + 20 => + array ( + 'id' => 522, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3$', + 'regex' => '/"(?P.+)"[-_ ]{0,3}[\\(\\[]\\d+\\/(?P\\d+[\\)\\]])[-_ ]{0,3}".+(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//"The Absence - Riders Of The Plague" [00/14] - "the_absence-riders_of_the_plague.nzb" yEnc', + 'ordinal' => 25, + ), + 21 => + array ( + 'id' => 523, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3$', + 'regex' => '/\\( (?P.+?)\\)[-_ ]{0,3}( |\\().+\\)[-_ ]{0,3}[\\(\\[]\\d+\\/(?P\\d+[\\)\\]])[-_ ]{0,3}".+(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//( Albert Cummings Albums 6x By Dready Niek (1999-2012) ) ( ** By Dready Niek ** ) [11/20] - "Albert Cummings Albums 6x By Dready Niek (1999-2012).part10.rar" yEnc ::: //( Fat Freddy\'s Drop - Blackbird (2013) -- By Dready Niek ) -- By Dready Niek ) [01/15] - "Fat Freddy\'s Drop - Blackbird (2013) -- By Dready Niek.par2" yEnc', + 'ordinal' => 30, + ), + 22 => + array ( + 'id' => 524, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3$', + 'regex' => '/\\( (?P.+?) \\)[-_ ]{0,3}[\\(\\[]\\d+\\/(?P\\d+[\\)\\]])[-_ ]{0,3}".+(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//( Addison_Road-Addison_Road-2008 ) [01/10] - "01. Addison Road - This Could Be Our Day.mp3" yEnc', + 'ordinal' => 35, + ), + 23 => + array ( + 'id' => 525, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3$', + 'regex' => '/^.+?\\[\\d+\\/(?P\\d+\\][-_ ]{0,3}.+?)[-_ ]{0,3}("|#34;)(.+?)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}("|#34;))[-_ ]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//(????) [0/8] - Crionics Post - Alice In Chains - Dirt REPOST"Alice In Chains - Dirt.nzb" yEnc', + 'ordinal' => 40, + ), + 24 => + array ( + 'id' => 526, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$', + 'regex' => '/(?P.+)[-_ ]{0,3}[\\(\\[]\\d+\\/(?P\\d+[\\)\\]][-_ ]{0,3}".+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//The Refreshments - [1/9] - "The Refreshments - Rock´n Roll Christmas [2003].par2" yEnc', + 'ordinal' => 5, + ), + 25 => + array ( + 'id' => 527, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$', + 'regex' => '/^\\[(?P.+?)\\][-_ ]{0,3}\\[(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}\\])[-_ ]{0,3}[\\(\\[]\\d+\\/(?P\\d+[\\)\\]])[-_ ]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//[BFMP3] [Barrelhouse_Time Frames.nzb] [00/18] yEnc', + 'ordinal' => 10, + ), + 26 => + array ( + 'id' => 528, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$', + 'regex' => '/^(?P.+?)[-_ ]{0,3}("|#34;)(.+?)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}("|#34;))[-_ ]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//Metallica - Ride The Lightning "01 - Fight Fire With Fire.mp3" yEnc', + 'ordinal' => 15, + ), + 27 => + array ( + 'id' => 529, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$', + 'regex' => '/^\\(\\d+\\/(?P\\d+\\) ".+?) www\\.brothers-of-usenet\\.org - empfehlen - Newsconnection(\\.eu)?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(01/11) "Der Kleine Vampir Komplett - Folge 01 bis 18 www.brothers-of-usenet.org - empfehlen - Newsconnection.eu.nfo" yEnc', + 'ordinal' => 20, + ), + 28 => + array ( + 'id' => 530, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$', + 'regex' => '/^\\(D(\\))? (?P.+) {1,2}\\[\\d+\\/(?P\\d+\\]) - .+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol\\d+\\+\\d+\\.par2|\\.[A-Za-z0-9]{2,4}) {1,2}yEnc$/', + 'status' => 1, + 'description' => '//(D The Best Of Leon Russell [23/28] - The Best Of Leon Russell.vol00+01.PAR2 yEnc', + 'ordinal' => 25, + ), + 29 => + array ( + 'id' => 531, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3\\.dance$', + 'regex' => '/^\\[\\d+\\](?P.+?)[-_ ]{0,3}("|#34;)(.+?)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}("|#34;))[-_ ]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//[2707]Solarstone-Solarstone_Collected_Vol_1-ARDI3177-WEB-2012-TraX "02-solarstone_feat_kym_marsh-day_by_day_(red_jerry_smackthe_bigot_up_remix).mp3" - yEnc', + 'ordinal' => 5, + ), + 30 => + array ( + 'id' => 532, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3\\.electronic$', + 'regex' => '/^\\(\\d+\\/(?P\\d+\\))[ -]{0,3}"(?P[\\w. &\\()\\[\\]\\\'-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(03/10) "Washing Machines - Planet-E CH-Basel Ultimate Hardcore - 4.9.1993.vol00+01.PAR2" - 232.39 MB - yEnc', + 'ordinal' => 5, + ), + 31 => + array ( + 'id' => 533, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3\\.electronic$', + 'regex' => '/^\\(\\d+\\/(?P\\d+\\))[ -]{0,3}"(?P[\\w. &\\()\\[\\]\\\'-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+ [bB][-_\\s]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//(2/7) "Cosmic Baby live at Energy 1995.vol00+01.PAR2" - 0 B - yEnc', + 'ordinal' => 10, + ), + 32 => + array ( + 'id' => 534, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3\\.electronic$', + 'regex' => '/^\\[0sk\\]-\\[\\d+-\\d+-\\d+\\]-\\[.+\\]-\\[.+\\]-\\[\\d+\\/(?P\\d+\\])-\\[(?P[\\w. &\\()\\[\\]\\\'-]{8,})\\]--.+? yEnc$/', + 'status' => 1, + 'description' => '//[0sk]-[2002-12-06]-[idm]-[vinyl]-[4/5]-[Maps_And_Diagrams_-_Ti_Sta_Bene_Marone-(cact_001)-Vinyl-2002]--cact 001.sfv yEnc', + 'ordinal' => 15, + ), + 33 => + array ( + 'id' => 535, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3\\.electronic$', + 'regex' => '/^\\[.+\\]-\\[.+\\]-\\[\\d+\\/(?P\\d+\\])-\\[(?P[\\w. &\\()\\[\\]\\\'-]{8,})\\]-.+? yEnc$/', + 'status' => 1, + 'description' => '//[10_years---happy_bday_absme]-[cd]-[04/15]-[va_-_spacewars_01-(plkcd003)-cd-1996-nwd]-01-Nuw Idol - Union Of Ilk -nwd-.mp3 yEnc', + 'ordinal' => 20, + ), + 34 => + array ( + 'id' => 536, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3\\.electronic$', + 'regex' => '/^(?P[\\w. &\\()\\[\\]\\\'-]{8,}?)[ -]{0,3}\\d+[ -]{0,3}[\\w., &\\()\\[\\]\\\'-]{8,}?\\b.?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev|\\.vol\\d+\\+\\d+\\.par2|\\.[A-Za-z0-9]{2,4})[ -]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//Alec Empire - Low On Ice 06 - Untitled.mp3 yEnc', + 'ordinal' => 25, + ), + 35 => + array ( + 'id' => 537, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\(\\d+(?P\\/\\d+\\) ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d.+?B - (\\d.+?B -)? yEnc$/i', + 'status' => 1, + 'description' => '//(01/37) "Entourage S08E08.part01.rar" - 349,20 MB - yEnc ::: //(01/24) "EGtnu7OrLNQMO2pDbgpDrBL8SnjZDpab.nfo" - 686 B - 338.74 MB - yEnc (1/1)', + 'ordinal' => 30, + ), + 36 => + array ( + 'id' => 538, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\[\\d+(?P\\/\\d+\\] - "[A-Za-z0-9.-]+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[01/42] - "King.And.Maxwell.S01E08.1080p.WEB-DL.DD5.1.H264-Abjex.par2" yEnc', + 'ordinal' => 35, + ), + 37 => + array ( + 'id' => 539, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^(?P[a-zA-Z0-9 ]+ \\()\\d+(?P\\/\\d+\\) - ?".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Divers (12/42) -"Juste.Pour.Rire.2013.Gala.JF.Mercier.FRENCH.720p.HDTV.x264-QuebecRules.part11.rar" yEnc ::: //Par le chapeau (06/43) - "8C7D59F472E03.part04.rar" yEnc', + 'ordinal' => 40, + ), + 38 => + array ( + 'id' => 540, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^(Re: )?(?P[a-zA-Z0-9._-]+([{}A-Z_]+)?( -)? \\[)\\d+(\\/| of )\\d+\\]( -)? ".+?" yEnc$/', + 'status' => 1, + 'description' => '//House.Hunters.International.S05E502.720p.hdtv.x264 [01/27] - "House.Hunters.International.S05E502.720p.hdtv.x264.nfo" yEnc ::: //Criminal.Minds.S03E01.Doubt.PROPER.DVDRip.XviD-SAiNTS - [01/33] - "Criminal.Minds.S03E01.Doubt.PROPER.DVDRip.XviD-SAiNTS.par2" yEnc', + 'ordinal' => 45, + ), + 39 => + array ( + 'id' => 541, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\[ (?P.+?) \\] .+ \\(\\d+\\/(?P\\d+\\)) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[ Anthony.Bourdain.Parts.Unknown.S01.480p.HDTV.x264-mSD ] MKV.h264 (03/17) - "Anthony.Bourdain.Parts.Unknown.S01E01.480p.HDTV.x264-mSD.mkv" yEnc', + 'ordinal' => 50, + ), + 40 => + array ( + 'id' => 542, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^(?P[a-zA-Z0-9 ]+)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2 |\\.[A-Za-z0-9]{2,4} )\\[\\d+(?P\\/\\d+\\] - yEnc)$/', + 'status' => 1, + 'description' => '//Silent Witness S15E02 Death has no dominion.par2 [01/44] - yEnc', + 'ordinal' => 55, + ), + 41 => + array ( + 'id' => 543, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\(bf1\\) \\[\\d+(?P\\/\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(bf1) [03/31] - "The.Block.AU.Sky.High.S07E61.WS.PDTV.XviD.BF1.part01.sfv" yEnc (1/1)', + 'ordinal' => 60, + ), + 42 => + array ( + 'id' => 544, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^(?P\\[ [A-Za-z]+ \\] - (\\[\\d+\\/\\d+\\] - )?".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[ TVPower ] - "Dexter.S07E10.720p.HDTV.x264-NLsubs.par2" yEnc ::: //[ TVPower ] - [010/101] - "Desperate.Housewives.S08Disc2.NLsubs.part009.rar" yEnc', + 'ordinal' => 65, + ), + 43 => + array ( + 'id' => 545, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^(?P\\[.+?\\]-\\[.+?\\]-\\[)\\d+\\/\\d+\\] ".+?" - \\d+([.,]\\d+ [kKmMgG])?[bB] - yEnc$/', + 'status' => 1, + 'description' => '//[www.allyourbasearebelongtous.pw]-[WWE.Monday.Night.Raw.2013.07.22.HDTV.x264-IWStreams]-[03/69] "WWE.Monday.Night.Raw.2013.07.22.HDTV.x264-IWStreams.r00" - 1.58 GB - yEnc', + 'ordinal' => 70, + ), + 44 => + array ( + 'id' => 546, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^(?P\\(www\\..+?\\) .+? - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(www.Thunder-News.org) >CD1< - "moovee-fastest.cda.par2" yEnc', + 'ordinal' => 75, + ), + 45 => + array ( + 'id' => 547, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/(?P\\.info .+?Powered by .+?\\.com ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") .+? \\d+\\/\\d+ \\(\\d+[,.]\\d+ [mMkKgG][bB]\\) .+? yEnc$/i', + 'status' => 1, + 'description' => '//<<>> usenet-space-cowboys.info <<< "S05E03 Pack die Badehose ein_usenet-space-cowbys.info.par2" >< 01/10 (411,16 MB) >< 3,48 kB > yEnc', + 'ordinal' => 80, + ), + 46 => + array ( + 'id' => 548, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^(?P[a-zA-Z0-9]+ .+? - S\\d+E\\d+ - .+? \\[)\\d+\\/\\d+\\] - ".+?\\..+?" yEnc$/', + 'status' => 1, + 'description' => '//Newport Harbor The Real Orange County - S01E01 - A Black & White Affair [01/11] - "Newport Harbor The Real Orange County - S01E01 - A Black & White Affair.mkv" yEnc', + 'ordinal' => 85, + ), + 47 => + array ( + 'id' => 549, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//"Mad.Men.S06E11.HDTV.x264-2HD.par2" yEnc', + 'ordinal' => 90, + ), + 48 => + array ( + 'id' => 550, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\[\\d+\\/(?P\\d+\\])[ _-]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//"Marvels.Agents.of.S.H.I.E.L.D.S01E07.HDTV.XviD-FUM.avi.nfo" [09/16] yEnc', + 'ordinal' => 95, + ), + 49 => + array ( + 'id' => 551, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\[\\d+\\]-\\[ (?P.+?) \\]- ".+?" yEnc$/i', + 'status' => 1, + 'description' => '//[185891]-[ Suits.S01E01.720p.BluRay.X264-REWARD ]- "Suits.S01E01.720p.BluRay.par2" yEnc', + 'ordinal' => 100, + ), + 50 => + array ( + 'id' => 552, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\.\\.[-_\\s]{0,3}\\[\\d+\\/(?P\\d+\\])[-_\\s]{0,3}"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//.. - [01/42] - "Under.the.Dome.S01E04.Outbreak.1080p.WEB-DL.DD5.1.H.264-NTb.par2" yEnc', + 'ordinal' => 105, + ), + 51 => + array ( + 'id' => 553, + 'group_regex' => '^alt\\.binaries\\.town$', + 'regex' => '/town\\.ag.+?download all our files with.+?www\\..+?\\.info.+? \\[\\d+(?P\\/\\d+\\] - ".+?)(-sample)?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/i', + 'status' => 1, + 'description' => '// >> www.ssl-news.info <<< > [05/87] - "Deep.Black.Ass.5.XXX.1080p.WEBRip.x264-TBP.part03.rar" - 7,87 GB yEnc', + 'ordinal' => 5, + ), + 52 => + array ( + 'id' => 554, + 'group_regex' => '^alt\\.binaries\\.town$', + 'regex' => '/^"(?P.+)__www.realmom.info__.+" \\(\\d+\\/(?P\\d+\\)) \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/', + 'status' => 1, + 'description' => '//"Armored_Core_V_PS3-ANTiDOTE__www.realmom.info__.r00" (03/78) 3,32 GB yEnc', + 'ordinal' => 10, + ), + 53 => + array ( + 'id' => 555, + 'group_regex' => '^alt\\.binaries\\.tun$', + 'regex' => '/^(?P\\[PRiVATE\\] [a-z0-9A-Z]+=+ \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//[PRiVATE] UmVndWxhci5TaG93LlMwMkUyOC4xMDgwcC5CbHVSYXkueDI2NC1ERWlNT1M= [06/32] - "89769f0736162e1cb113655cb10e42ff.part02.rar" yEnc', + 'ordinal' => 5, + ), + 54 => + array ( + 'id' => 556, + 'group_regex' => '^alt\\.binaries\\.tun$', + 'regex' => '/^\\[ nEwZ\\[NZB\\]\\.iNFO( \\])?[-_ ]{0,3}\\[ (?P.+?) \\][-_ ]{0,3}(File )?[\\(\\[]\\d+\\/(?P\\d+[\\)\\]]): "(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//[ nEwZ[NZB].iNFO - [ Zed--The_Invitation-WEB-2010-WUS ] - File [12/13]: "08-zed--the_river.mp3" yEnc', + 'ordinal' => 10, + ), + 55 => + array ( + 'id' => 557, + 'group_regex' => '^alt\\.binaries\\.tun$', + 'regex' => '/^nEwZ\\[NZB\\]\\.iNFO[-_ ]{0,3} (?P.+?) [-_ ]{0,3}(File )?[\\(\\[]\\d+\\/(?P\\d+[\\)\\]]): "(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")$/', + 'status' => 1, + 'description' => '//nEwZ[NZB].iNFO - VA-Universal_Music_Sampler_07_February-PROMO-CDR-FLAC-2013-WRE - File [6/9]: "01-alesso-years_(hard_rock_sofa_remix).flac"', + 'ordinal' => 15, + ), + 56 => + array ( + 'id' => 558, + 'group_regex' => '^alt\\.binaries\\.tv$', + 'regex' => '/^(?P[a-zA-Z0-9.-]+ \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Borgen.2x02.A.Bruxelles.Non.Ti.Sentono.Urlare.ITA.BDMux.x264-NovaRip [02/22] - "borgen.2x02.ita.bdmux.x264-novarip.par2" yEnc', + 'ordinal' => 5, + ), + 57 => + array ( + 'id' => 559, + 'group_regex' => '^alt\\.binaries\\.tv$', + 'regex' => '/^\\(bf1\\) \\[\\d+(?P\\/\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(bf1) [03/31] - "The.Block.AU.Sky.High.S07E56.WS.PDTV.XviD.BF1.part01.sfv" yEnc', + 'ordinal' => 10, + ), + 58 => + array ( + 'id' => 560, + 'group_regex' => '^alt\\.binaries\\.tv$', + 'regex' => '/^\\[\\d+\\/(?P\\d+\\])[-_\\s]{0,3}(?P[\\w.\\() -]{8,}?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol\\d+\\+\\d+\\.par2|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//[014/144] - The Bible (2013) - S1E01 - In the Beginning AVC 480p.vol31+27.PAR2 yEnc', + 'ordinal' => 15, + ), + 59 => + array ( + 'id' => 561, + 'group_regex' => '^alt\\.binaries\\.tv$', + 'regex' => '/^Saturday Morning Classic (?P[\\w. -]{8,}?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol\\d+\\+\\d+\\.par2|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//Saturday Morning Classic Return-to-the-Planet-of-the-Apes-S01E03 - Lagoon of Peril.avi.001 yEnc', + 'ordinal' => 20, + ), + 60 => + array ( + 'id' => 562, + 'group_regex' => '^alt\\.binaries\\.tvseries$', + 'regex' => '/^"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")( - \\d+([.,]\\d+ [kKmMgG])?[bB])? - \\d+([.,]\\d+ [kKmMgG])?[bB] - yEnc$/i', + 'status' => 1, + 'description' => '//"Forbrydelsen.II.S01E03.2009.DVDRip.MULTi.DD5.1.x264.nzb" - 213.54 kB - yEnc ::: //"Futurama S07E01 The Bots And The Bees.vol26+23.PAR2" - 8.49 MB - 193.51 MB - yEnc', + 'ordinal' => 5, + ), + 61 => + array ( + 'id' => 563, + 'group_regex' => '^alt\\.binaries\\.tvseries$', + 'regex' => '/^"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\[\\d+\\/(?P\\d+\\]) - yEnc$/i', + 'status' => 1, + 'description' => '//"Rijdende.Rechter.-.19x01.-.Huisbiggen.1080p.MKV-BNABOYZ.part38.rar" - [40/56] - yEnc', + 'ordinal' => 10, + ), + 62 => + array ( + 'id' => 564, + 'group_regex' => '^alt\\.binaries\\.tvseries$', + 'regex' => '/^\\(\\d+\\/(?P\\d+\\) ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB] - yEnc$/i', + 'status' => 1, + 'description' => '//(003/104) "blackcave1001.part002.rar" - 4,83 GB - yEnc', + 'ordinal' => 15, + ), + 63 => + array ( + 'id' => 565, + 'group_regex' => '^alt\\.binaries\\.tvseries$', + 'regex' => '/^[a-zA-Z0-9 -_\\.]+ \\[\\d+\\/(?P\\d+\\]) - "(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//X-Men Evolution - 2000 - [01/20] - "X-Men Evolution - 3x03 - Mainstream.par2" yEnc', + 'ordinal' => 20, + ), + 64 => + array ( + 'id' => 566, + 'group_regex' => '^alt\\.binaries\\.tvseries$', + 'regex' => '/^(?P[a-zA-Z0-9 -_\\.]+) (RETRY)?[-_ ]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") \\d+(?P\\/\\d+)( {0,2}yEnc)?$/i', + 'status' => 1, + 'description' => '//\'X-Files\' Season 1 XviD RETRY "Files101.par2" 004/387 ::: //\'X-Files\' Season 5 XviD "Files502.par2" 018/321 yEnc ::: //\'X-Files\' Season 2 XviD "Files223.part2.rar" 356/401 yEnc', + 'ordinal' => 25, + ), + 65 => + array ( + 'id' => 567, + 'group_regex' => '^alt\\.binaries\\.tvseries$', + 'regex' => '/^"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//"the.tudors.s03e03.nfo" yEnc', + 'ordinal' => 30, + ), + 66 => + array ( + 'id' => 568, + 'group_regex' => '^alt\\.binaries\\.tvseries$', + 'regex' => '/^\\(\\d+\\/(?P\\d+\\)) "((BBC|ITV) )?(?P.+?)(\\.part\\d+)?(\\.(par2|(vol.+?))"|\\.[a-z0-9]{3}"|") - \\d.+? - (\\d.+? -)? yEnc$/', + 'status' => 1, + 'description' => '//(08/25) "Wild Russia 5 of 6 The Secret Forest 2009.part06.rar" - 47.68 MB - 771.18 MB - yEnc ::: //(01/24) "ITV Wild Britain With Ray Mears 1 of 6 Deciduous Forest 2011.nfo" - 4.34 kB - 770.97 MB - yEnc ::: //(24/24) "BBC Great British Garden Revival 03 of 10 Cottage Gardens And House Plants 2013.vol27+22.PAR2" - 48.39 MB - 808.88 MB - yEnc', + 'ordinal' => 35, + ), + 67 => + array ( + 'id' => 569, + 'group_regex' => '^alt\\.binaries\\.tvseries$', + 'regex' => '/^(?P[a-zA-Z0-9 -_\\.]+) \\(\\d+(?P\\/\\d+\\)) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Chuck - Season2 (015/164) - "2x04.par2" yEnc', + 'ordinal' => 40, + ), + 68 => + array ( + 'id' => 570, + 'group_regex' => '^alt\\.binaries\\.tvseries$', + 'regex' => '/^(?P[a-zA-Z0-9 -_\\.]+) - \\[\\d+(?P\\/\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//FIRST.WAVE.NTSC.DVD.DD2.0 - [121/512] - "FIRST_WAVE_SEASON_1_DVD2.r26" - 44,33 GB - yEnc', + 'ordinal' => 45, + ), + 69 => + array ( + 'id' => 571, + 'group_regex' => '^alt\\.binaries\\.tvseries$', + 'regex' => '/^\\(\\d+(?P\\/\\d+\\)) "(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(03/19) "Damages S04E02 FR.avi" - 5,49 GB yEnc', + 'ordinal' => 50, + ), + 70 => + array ( + 'id' => 572, + 'group_regex' => '^alt\\.binaries\\.u-4all$', + 'regex' => '/\\[ usenet-4all\\.info - powered by ssl\\.news -\\][-_\\s]{0,3}\\[\\d+([.,]\\d+)? [kKmMgG][bB]\\][-_\\s]{0,3}\\[\\d+\\/(?P\\d+)\\][-_\\s]{0,3}"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//-4y (PW) [ usenet-4all.info - powered by ssl.news -] [1,44 GB] [08/14] "71cc4edc6R08eb7.vol00+01.PAR2" yEnc', + 'ordinal' => 55, + ), + 71 => + array ( + 'id' => 573, + 'group_regex' => '^alt\\.binaries\\.warez$', + 'regex' => '/.*[\\(\\[]\\d+\\/(?P\\d+[\\)\\]][-_ ]{0,3}("|#34;).+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4})("|#34;)(.+?)yEnc$/i', + 'status' => 1, + 'description' => '//-Panzer.Command.Kharkov-SKIDROW - [1/7] - "-Panzer.Command.Kharkov-SKIDROW.rar" yEnc ::: //-AssMasterpiece.12.07.09.Alexis.Monroe.XXX.1080p.x264-SEXORS - [1/7] - #34;-AssMasterpiece.12.07.09.Alexis.Monroe.XXX.1080p.x264-SEXORS.rar#34; yEnc', + 'ordinal' => 5, + ), + 72 => + array ( + 'id' => 574, + 'group_regex' => '^alt\\.binaries\\.warez$', + 'regex' => '/.*"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}")(?P.+?)yEnc$/i', + 'status' => 1, + 'description' => '//- "JH2U0H5FIK8TO7YK3Q.part12.rar" yEnc', + 'ordinal' => 10, + ), + 73 => + array ( + 'id' => 575, + 'group_regex' => '^alt\\.binaries\\.warez$', + 'regex' => '/^\\( (?P.+?) \\) - yEnc$/', + 'status' => 1, + 'description' => '//( XS Video Converter Ultimate 7.7.0 Build 20121226 ) - yEnc', + 'ordinal' => 15, + ), + 74 => + array ( + 'id' => 576, + 'group_regex' => '^alt\\.binaries\\.warez\\.0-day$', + 'regex' => '/.*[\\(\\[]\\d+\\/(?P\\d+[\\)\\]][-_ ]{0,3}("|#34;).+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4})("|#34;)(.+?)yEnc$/i', + 'status' => 1, + 'description' => '//-Panzer.Command.Kharkov-SKIDROW - [1/7] - "-Panzer.Command.Kharkov-SKIDROW.rar" yEnc ::: //-AssMasterpiece.12.07.09.Alexis.Monroe.XXX.1080p.x264-SEXORS - [1/7] - #34;-AssMasterpiece.12.07.09.Alexis.Monroe.XXX.1080p.x264-SEXORS.rar#34; yEnc', + 'ordinal' => 5, + ), + 75 => + array ( + 'id' => 577, + 'group_regex' => '^alt\\.binaries\\.warez\\.0-day$', + 'regex' => '/.*"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}")(?P.+?)yEnc$/i', + 'status' => 1, + 'description' => '//- "JH2U0H5FIK8TO7YK3Q.part12.rar" yEnc', + 'ordinal' => 10, + ), + 76 => + array ( + 'id' => 578, + 'group_regex' => '^alt\\.binaries\\.warez\\.0-day$', + 'regex' => '/^\\( (?P.+?) \\) - yEnc$/', + 'status' => 1, + 'description' => '//( XS Video Converter Ultimate 7.7.0 Build 20121226 ) - yEnc', + 'ordinal' => 15, + ), + 77 => + array ( + 'id' => 579, + 'group_regex' => '^alt\\.binaries\\.warez\\.0-day$', + 'regex' => '/^(?P[a-zA-Z].+) - \\[\\d+\\/(?P\\d+\\]) - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//BabysitterMovies.13.03.11.Babysitter.Jocelyn.Pink.XXX.HR.WMV-VSEX - [7/7] - "BabysitterMovies.13.03.11.Babysitter.Jocelyn.Pink.XXX.HR.WMV-VSEX.rar.vol15+5.par2" yEnc', + 'ordinal' => 20, + ), + 78 => + array ( + 'id' => 580, + 'group_regex' => '^alt\\.binaries\\.worms$', + 'regex' => '/^(?P\\[U4A]) (?P.+?)\\[\\d+(?P\\/\\d+\\]) - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//[U4A] 2 Dudes and a Dream 2009 BRRip XvidHD 720p-NPW[01/36] - "2 Dudes and a Dream 2009 BRRip XvidHD 720p-NPW-Sample.avi" yEnc', + 'ordinal' => 5, + ), + 79 => + array ( + 'id' => 581, + 'group_regex' => '^alt\\.binaries\\.worms$', + 'regex' => '/^\\(\\d+\\/(?P\\d+\\)) ("|#34;)(?P.+)(\\.[vol|part].+)?\\.(par2|nfo|rar|nzb)("|#34;) - \\d+[.,]\\d+ [kKmMgG][bB] - yEnc$/i', + 'status' => 1, + 'description' => '//(12/57) "Fright.Night.2.New.Blood.2013.UNRATED.BluRay.810p.DTS.x264-PRoDJi.nfo" - 4,81 GB - yEnc ::: //(14/20) "Jack.the.Giant.Slayer.2013.AC3.192Kbps.23fps.2ch.TR.Audio.BluRay-Demuxed.by.par2" - 173,15 MB - yEnc', + 'ordinal' => 10, + ), + 80 => + array ( + 'id' => 582, + 'group_regex' => '^alt\\.binaries\\.x264$', + 'regex' => '/^"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}") \\(\\d+\\/(?P\\d+\\)) yEnc$/i', + 'status' => 1, + 'description' => '//"Batman-8 TDKR-Pittis AVCHD-ADD.English.dtsHDma.part013.rar" (042/197) yEnc', + 'ordinal' => 5, + ), + 81 => + array ( + 'id' => 583, + 'group_regex' => '^alt\\.binaries\\.x264$', + 'regex' => '/^\\(\\d+\\/(?P\\d+\\)) "(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB]( -)? yEnc$/i', + 'status' => 1, + 'description' => '//(001/108) "Wizards.of.Waverly.Place.720p.S04E01.by.sugarr.par2" - 5,15 GB - yEnc', + 'ordinal' => 10, + ), + 82 => + array ( + 'id' => 584, + 'group_regex' => '^dk\\.binaer\\.tv$', + 'regex' => '/^(?P[a-zA-Z0-9].+? - \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Store.Boligdroemme.S02E06.DANiS H.HDTV.x264-TVBYEN - [01/28] - "store.boligdroemme.s02e06.danis h.hdtv.x264-tvbyen.nfo" yEnc', + 'ordinal' => 5, + ), + 83 => + array ( + 'id' => 585, + 'group_regex' => '^alt\\.binaries\\.fz$', + 'regex' => '#^(?PUploader\\.Presents-.+?)\\s+\\[\\d{1,3}(?P/\\d{1,3}\\]\\s*").+?"\\s+yEnc$#i', + 'status' => 1, + 'description' => 'Uploader.Presents-Black.Sails.S02E02.Die.schwarze.Flagge.GERMAN.DUBBED.BLURAYRiP.x264-SOF [00/23]"sof-black-sails-s02e02.nzb" yEnc', + 'ordinal' => 10, + ), + 84 => + array ( + 'id' => 586, + 'group_regex' => '^alt\\.binaries\\.sounds\\.(flac|lossless)$', + 'regex' => '/^.+dream-of-usenet.+[-_ ]{0,3}\\[\\d+\\/(?P\\d+\\])[-_ ]{0,3}("|#34;)(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+ (\\d+\\/\\d+) "|\\.[A-Za-z0-9]{2,4}("|#34;))[-_ ]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//(dream-of-usenet.info) - [01/21] - "A_Perfect_Circle-aMOTION-CD-FLAC-2004-SCORN.nfo" yEnc', + 'ordinal' => 5, + ), + 85 => + array ( + 'id' => 587, + 'group_regex' => '^alt\\.binaries\\.sounds\\.flac$', + 'regex' => '/^.+www\\.EliteNZB\\.net.+[-_ ]{0,3}\\[\\d+\\/(?P\\d+\\])[-_ ]{0,3}("|#34;)(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+ (\\d+\\/\\d+) "|\\.[A-Za-z0-9]{2,4}("|#34;))[-_ ]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//The Elite Team Presents www.EliteNZB.net, Powered by 4UX.NL, Only The Best 4 You!!!! [01/19] - "Habariyaasubuhi_12352_TvPYrS1128.par2" yEnc', + 'ordinal' => 15, + ), + 86 => + array ( + 'id' => 588, + 'group_regex' => '^alt\\.binaries\\.sounds\\.flac$', + 'regex' => '/^("|#34;)(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}("|#34;))[-_ ]{0,3}\\[\\d+\\/(?P\\d+\\]).+www\\.EliteNZB\\.net.+[-_ ]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//"Jinsi_12187_v807.par2" [01/13] - The Elite Team Presents www.EliteNZB.net, Powered by 4UX.NL, Only The Best 4 You!!!! yEnc', + 'ordinal' => 20, + ), + 87 => + array ( + 'id' => 589, + 'group_regex' => '^alt\\.binaries\\.mp3(\\.full_albums)?$', + 'regex' => '/^JN Dutplanet.+[-_ ]{0,3}\\[\\d+\\/(?P\\d+\\])[-_ ]{0,3}("|#34;)(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+ (\\d+\\/\\d+) "|\\.[A-Za-z0-9]{2,4}("|#34;))[-_ ]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//JN Dutplanet.net - [02/16] - "JN Dutplanet.net Foreigner - I Want To Know What Love Is - The Ballads [2014]FLAC.part1.rar" yEnc', + 'ordinal' => 5, + ), + 88 => + array ( + 'id' => 590, + 'group_regex' => '(audiobooks|abooks)', + 'regex' => '#^(?P.{8,}? )[\\[)]?\\d+(?P(?:/| of )\\d+[\\[)]?(?:[0-9\\WBKMG]+)?").+?"(?:[0-9\\WBKMG]+)? yEnc$#i', + 'status' => 1, + 'description' => 'As requested Diana Gabaldon 1of 3 parts - [025/356] - "Diana Gabaldon - (Outlander 06) A Breath Of Snow And Ashes - D01.07-18.mp3" yEnc', + 'ordinal' => 80, + ), + 89 => + array ( + 'id' => 591, + 'group_regex' => '(audiobooks|abooks)', + 'regex' => '#^(?P.{8,}? ").+?" [\\[)]?\\d+(?P/\\d+[\\[)]? yEnc)$#i', + 'status' => 1, + 'description' => 'Dragonlance Second Generation - Dragons of Summer Flame (NMR 32 kbps) "Dragonlance Second Generation - Dragons of Summer Flame.nzb" 000/141 yEnc', + 'ordinal' => 85, + ), + 90 => + array ( + 'id' => 592, + 'group_regex' => '^alt\\.binaries\\.multimedia\\.korean$', + 'regex' => '/^(?P\\[KoreanTV\\]s.+?\\[)\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '[KoreanTV] The.Village.Achiaras.Secret.E08.151029.HDTV.XviD-WITH [2/18] - "마을.아치아라의.비밀.E08.151029.HDTV.XviD-WITH.part01.rar" yEnc', + 'ordinal' => 5, + ), + 91 => + array ( + 'id' => 593, + 'group_regex' => '^korea\\.binaries\\.tv$', + 'regex' => '/^(?P\\[KoreanTV\\]s.+?\\[)\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '[KoreanTV] The.Village.Achiaras.Secret.E08.151029.HDTV.XviD-WITH [2/18] - "마을.아치아라의.비밀.E08.151029.HDTV.XviD-WITH.part01.rar" yEnc', + 'ordinal' => 5, + ), + 92 => + array ( + 'id' => 594, + 'group_regex' => '^korea\\.binaries\\.music\\.videos$', + 'regex' => '/^(?P\\[KoreanMusic\\] .+) \\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '[KoreanMusic] 151015.TWTV.MTV.Idols.of.Asia.Lovelyz [2/45] - "151015.TWTV.MTV.Idols.of.Asia.Lovelyz.part01.rar" yEnc', + 'ordinal' => 5, + ), + 93 => + array ( + 'id' => 595, + 'group_regex' => '^korea\\.binaries\\.movies$', + 'regex' => '/^(?P\\[KoreanMovies\\] .+) \\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '[KoreanMovies] Gangnam.Blues.2015.720p.BluRay.x264-WiKi [2/125] - "Gangnam.Blues.2015.720p.BluRay.x264-WiKi.part001.rar" yEnc', + 'ordinal' => 5, + ), + 94 => + array ( + 'id' => 596, + 'group_regex' => '^korea\\.binaries\\.tv$', + 'regex' => '/^(?Parea-11) "(?P.+?)\\.(vol\\d+\\+\\d+\\.par2|part\\d+\\.rar|par2|nzb)" \\[\\d+\\/\\d+\\] yEnc$/i', + 'status' => 1, + 'description' => 'area-11 "Glamorous.Temptation.E01.720p.HDTV.x264-AREA11.nzb" [00/56] yEnc', + 'ordinal' => 10, + ), + 95 => + array ( + 'id' => 597, + 'group_regex' => '^alt\\.binaries\\.multimedia\\.korean$', + 'regex' => '/^(?P.+?(MP3 320K|FLAC)\\[)\\d+\\/\\d+\\] - ".+" yEnc$/', + 'status' => 1, + 'description' => 'Davichi - Amaranth Repackage MP3 320K[01/21] - ".par2" yEnc', + 'ordinal' => 10, + ), + 96 => + array ( + 'id' => 598, + 'group_regex' => '^alt\\.binaries\\.e-book\\.technical$', + 'regex' => '/^(?P(New )?tech eBooks -=?\\[?\\s?[\\w\\.-]+\\s?\\]?=?- )".+?" yEnc$/i', + 'status' => 1, + 'description' => 'New tech eBooks -[ Springer.Toxic.Trauma.A.Basic.Clinical.Guide.2014.RETAIL.EBOOK-METHLAB ]- "ml-0435a.zip" yEnc', + 'ordinal' => 5, + ), + 97 => + array ( + 'id' => 599, + 'group_regex' => '^alt\\.binaries\\.(cores|ath)$', + 'regex' => '/^(?P\\[(SERIES|MOVIES)\\]-\\[ www\\.vip-lounge\\.me \\]) \\[\\d+\\/\\d+\\] - "(?P.+?)\\.(par2|nfo|rar|part\\d+\\.rar|vol\\d+\\+\\d+\\.par2)" - \\d+\\d+ [MG]B yEnc$/i', + 'status' => 1, + 'description' => '55', + 'ordinal' => 0, + ), + 98 => + array ( + 'id' => 600, + 'group_regex' => '^alt\\.binaries\\.cores$', + 'regex' => '/^(?P.+?) - \\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => 'Gracepoint S01E04 Episode Four 1080p WEB-DL DD51 H 264 CtrlHD - [52/52] - "Gracepoint S01E04 Episode Four 1080p WEB-DL DD51 H 264 CtrlHD.vol511+021.par2" yEnc', + 'ordinal' => 80, + ), + 99 => + array ( + 'id' => 601, + 'group_regex' => '^alt\\.binaries\\.howard-stern$', + 'regex' => '/^(?P.+?) \\[\\d+\\/\\d+\\] "(?P.+?)\\.(mp3|nzb).*?" yEnc$/', + 'status' => 1, + 'description' => 'Artie Lange ArtieQuitter Podcast [2/9] "ArtieQuiterPodcast_2015-11-05_161_CF_128k.mp3.par2" yEnc', + 'ordinal' => 5, + ), + 100 => + array ( + 'id' => 602, + 'group_regex' => '^alt\\.binaries\\.howard-stern$', + 'regex' => '/^(?P.+?) - File \\d+ of \\d+ - yEnc "(?P.+?).mp3" \\d+ bytes$/', + 'status' => 1, + 'description' => 'Howard Stern 11.04.2015 CF 32K 57.7MB + WUS - File 1 of 1 - yEnc "Howard Stern 11.04.15 (Alanis Morissette Visits).mp3" 60596352 bytes', + 'ordinal' => 10, + ), + 101 => + array ( + 'id' => 603, + 'group_regex' => '^alt\\.binaries\\.howard-stern$', + 'regex' => '/^(?P.+?) \\d (?P\\d+kbps) - \\[\\d+\\/\\d+\\] - "(?P.+?)Part_\\d+\\.(mp3|nzb).*?" yEnc$/', + 'status' => 1, + 'description' => 'Howard Stern Show Oct 19 2015 Mon Hour 6 96kbps - [1/1] - "Stern-2015_10_19-96k-Part_06.mp3" yEnc', + 'ordinal' => 15, + ), + )); + + + } +} \ No newline at end of file diff --git a/database/seeds/ContentTableSeeder.php b/database/seeds/ContentTableSeeder.php new file mode 100644 index 000000000..c63ce6d94 --- /dev/null +++ b/database/seeds/ContentTableSeeder.php @@ -0,0 +1,66 @@ +delete(); + + \DB::table('content')->insert(array ( + 0 => + array ( + 'id' => 1, + 'title' => 'Welcome to NNTmux.', + 'url' => 'NULL', + 'body' => '

Since NNTmux is a fork of newznab, the API is compatible with sonarr, sickbeard, couchpotato, etc...

', + 'metadescription' => '""', + 'metakeywords' => '""', + 'contenttype' => 3, + 'showinmenu' => 0, + 'status' => 1, + 'ordinal' => 0, + 'role' => 0, + ), + 1 => + array ( + 'id' => 2, + 'title' => 'example content', + 'url' => '/great/seo/content/page/', + 'body' => '

this is an example content page

', + 'metadescription' => '""', + 'metakeywords' => '""', + 'contenttype' => 1, + 'showinmenu' => 2, + 'status' => 1, + 'ordinal' => 1, + 'role' => 0, + ), + 2 => + array ( + 'id' => 3, + 'title' => 'another example', + 'url' => '/another/great/seo/content/page/', + 'body' => '

this is another example content page

', + 'metadescription' => '""', + 'metakeywords' => '""', + 'contenttype' => 1, + 'showinmenu' => 2, + 'status' => 1, + 'ordinal' => 0, + 'role' => 0, + ), + )); + + + } +} \ No newline at end of file diff --git a/database/seeds/DatabaseSeeder.php b/database/seeds/DatabaseSeeder.php index 93afa9e46..8dc1b7796 100644 --- a/database/seeds/DatabaseSeeder.php +++ b/database/seeds/DatabaseSeeder.php @@ -15,5 +15,16 @@ class DatabaseSeeder extends Seeder $this->call(UserRolesTableSeeder::class); $this->call(CountriesSeeder::class); $this->call(CategoriesTableSeeder::class); + $this->call(CategoryRegexesTableSeeder::class); + $this->call(CollectionRegexesTableSeeder::class); + $this->call(BinaryblacklistTableSeeder::class); + $this->call(ContentTableSeeder::class); + $this->call(ForumpostTableSeeder::class); + $this->call(GenresTableSeeder::class); + $this->call(GroupsTableSeeder::class); + $this->call(MenuTableSeeder::class); + $this->call(ReleaseNamingRegexesTableSeeder::class); + $this->call(SettingsTableSeeder::class); + $this->call(TmuxTableSeeder::class); } } \ No newline at end of file diff --git a/database/seeds/ForumpostTableSeeder.php b/database/seeds/ForumpostTableSeeder.php new file mode 100644 index 000000000..3d8fef249 --- /dev/null +++ b/database/seeds/ForumpostTableSeeder.php @@ -0,0 +1,38 @@ +delete(); + + \DB::table('forumpost')->insert(array ( + 0 => + array ( + 'id' => 1, + 'forumid' => 1, + 'parentid' => 0, + 'users_id' => 1, + 'subject' => 'Welcome to NNTmux!', + 'message' => 'Feel free to leave a message.', + 'locked' => 0, + 'sticky' => 0, + 'replies' => 0, + 'created_at' => '0000-00-00 00:00:00', + 'updated_at' => '0000-00-00 00:00:00', + ), + )); + + + } +} \ No newline at end of file diff --git a/database/seeds/GenresTableSeeder.php b/database/seeds/GenresTableSeeder.php new file mode 100644 index 000000000..c2d8fda55 --- /dev/null +++ b/database/seeds/GenresTableSeeder.php @@ -0,0 +1,1067 @@ +delete(); + + \DB::table('genres')->insert(array ( + 0 => + array ( + 'id' => 1000001, + 'title' => 'Blues', + 'type' => 3000, + 'disabled' => 0, + ), + 1 => + array ( + 'id' => 1000002, + 'title' => 'Classic Rock', + 'type' => 3000, + 'disabled' => 0, + ), + 2 => + array ( + 'id' => 1000003, + 'title' => 'Country', + 'type' => 3000, + 'disabled' => 0, + ), + 3 => + array ( + 'id' => 1000004, + 'title' => 'Dance', + 'type' => 3000, + 'disabled' => 0, + ), + 4 => + array ( + 'id' => 1000005, + 'title' => 'Disco', + 'type' => 3000, + 'disabled' => 0, + ), + 5 => + array ( + 'id' => 1000006, + 'title' => 'Funk', + 'type' => 3000, + 'disabled' => 0, + ), + 6 => + array ( + 'id' => 1000007, + 'title' => 'Grunge', + 'type' => 3000, + 'disabled' => 0, + ), + 7 => + array ( + 'id' => 1000008, + 'title' => 'Hip-Hop', + 'type' => 3000, + 'disabled' => 0, + ), + 8 => + array ( + 'id' => 1000009, + 'title' => 'Jazz', + 'type' => 3000, + 'disabled' => 0, + ), + 9 => + array ( + 'id' => 1000010, + 'title' => 'Metal', + 'type' => 3000, + 'disabled' => 0, + ), + 10 => + array ( + 'id' => 1000011, + 'title' => 'New Age', + 'type' => 3000, + 'disabled' => 0, + ), + 11 => + array ( + 'id' => 1000012, + 'title' => 'Oldies', + 'type' => 3000, + 'disabled' => 0, + ), + 12 => + array ( + 'id' => 1000013, + 'title' => 'Other', + 'type' => 3000, + 'disabled' => 0, + ), + 13 => + array ( + 'id' => 1000014, + 'title' => 'Pop', + 'type' => 3000, + 'disabled' => 0, + ), + 14 => + array ( + 'id' => 1000015, + 'title' => 'R&B', + 'type' => 3000, + 'disabled' => 0, + ), + 15 => + array ( + 'id' => 1000016, + 'title' => 'Rap', + 'type' => 3000, + 'disabled' => 0, + ), + 16 => + array ( + 'id' => 1000017, + 'title' => 'Reggae', + 'type' => 3000, + 'disabled' => 0, + ), + 17 => + array ( + 'id' => 1000018, + 'title' => 'Rock', + 'type' => 3000, + 'disabled' => 0, + ), + 18 => + array ( + 'id' => 1000019, + 'title' => 'Techno', + 'type' => 3000, + 'disabled' => 0, + ), + 19 => + array ( + 'id' => 1000020, + 'title' => 'Industrial', + 'type' => 3000, + 'disabled' => 0, + ), + 20 => + array ( + 'id' => 1000021, + 'title' => 'Alternative', + 'type' => 3000, + 'disabled' => 0, + ), + 21 => + array ( + 'id' => 1000022, + 'title' => 'Ska', + 'type' => 3000, + 'disabled' => 0, + ), + 22 => + array ( + 'id' => 1000023, + 'title' => 'Death Metal', + 'type' => 3000, + 'disabled' => 0, + ), + 23 => + array ( + 'id' => 1000024, + 'title' => 'Pranks', + 'type' => 3000, + 'disabled' => 0, + ), + 24 => + array ( + 'id' => 1000025, + 'title' => 'Soundtrack', + 'type' => 3000, + 'disabled' => 0, + ), + 25 => + array ( + 'id' => 1000026, + 'title' => 'Euro-Techno', + 'type' => 3000, + 'disabled' => 0, + ), + 26 => + array ( + 'id' => 1000027, + 'title' => 'Ambient', + 'type' => 3000, + 'disabled' => 0, + ), + 27 => + array ( + 'id' => 1000028, + 'title' => 'Trip-Hop', + 'type' => 3000, + 'disabled' => 0, + ), + 28 => + array ( + 'id' => 1000029, + 'title' => 'Vocal', + 'type' => 3000, + 'disabled' => 0, + ), + 29 => + array ( + 'id' => 1000030, + 'title' => 'Jazz+Funk', + 'type' => 3000, + 'disabled' => 0, + ), + 30 => + array ( + 'id' => 1000031, + 'title' => 'Fusion', + 'type' => 3000, + 'disabled' => 0, + ), + 31 => + array ( + 'id' => 1000032, + 'title' => 'Trance', + 'type' => 3000, + 'disabled' => 0, + ), + 32 => + array ( + 'id' => 1000033, + 'title' => 'Classical', + 'type' => 3000, + 'disabled' => 0, + ), + 33 => + array ( + 'id' => 1000034, + 'title' => 'Instrumental', + 'type' => 3000, + 'disabled' => 0, + ), + 34 => + array ( + 'id' => 1000035, + 'title' => 'Acid', + 'type' => 3000, + 'disabled' => 0, + ), + 35 => + array ( + 'id' => 1000036, + 'title' => 'House', + 'type' => 3000, + 'disabled' => 0, + ), + 36 => + array ( + 'id' => 1000037, + 'title' => 'Game', + 'type' => 3000, + 'disabled' => 0, + ), + 37 => + array ( + 'id' => 1000038, + 'title' => 'Sound Clip', + 'type' => 3000, + 'disabled' => 0, + ), + 38 => + array ( + 'id' => 1000039, + 'title' => 'Gospel', + 'type' => 3000, + 'disabled' => 0, + ), + 39 => + array ( + 'id' => 1000040, + 'title' => 'Noise', + 'type' => 3000, + 'disabled' => 0, + ), + 40 => + array ( + 'id' => 1000041, + 'title' => 'Alternative Rock', + 'type' => 3000, + 'disabled' => 0, + ), + 41 => + array ( + 'id' => 1000042, + 'title' => 'Bass', + 'type' => 3000, + 'disabled' => 0, + ), + 42 => + array ( + 'id' => 1000043, + 'title' => 'Soul', + 'type' => 3000, + 'disabled' => 0, + ), + 43 => + array ( + 'id' => 1000044, + 'title' => 'Punk', + 'type' => 3000, + 'disabled' => 0, + ), + 44 => + array ( + 'id' => 1000045, + 'title' => 'Space', + 'type' => 3000, + 'disabled' => 0, + ), + 45 => + array ( + 'id' => 1000046, + 'title' => 'Meditative', + 'type' => 3000, + 'disabled' => 0, + ), + 46 => + array ( + 'id' => 1000047, + 'title' => 'Instrumental Pop', + 'type' => 3000, + 'disabled' => 0, + ), + 47 => + array ( + 'id' => 1000048, + 'title' => 'Instrumental Rock', + 'type' => 3000, + 'disabled' => 0, + ), + 48 => + array ( + 'id' => 1000049, + 'title' => 'Ethnic', + 'type' => 3000, + 'disabled' => 0, + ), + 49 => + array ( + 'id' => 1000050, + 'title' => 'Gothic', + 'type' => 3000, + 'disabled' => 0, + ), + 50 => + array ( + 'id' => 1000051, + 'title' => 'Darkwave', + 'type' => 3000, + 'disabled' => 0, + ), + 51 => + array ( + 'id' => 1000052, + 'title' => 'Techno-Industrial', + 'type' => 3000, + 'disabled' => 0, + ), + 52 => + array ( + 'id' => 1000053, + 'title' => 'Electronic', + 'type' => 3000, + 'disabled' => 0, + ), + 53 => + array ( + 'id' => 1000054, + 'title' => 'Pop-Folk', + 'type' => 3000, + 'disabled' => 0, + ), + 54 => + array ( + 'id' => 1000055, + 'title' => 'Eurodance', + 'type' => 3000, + 'disabled' => 0, + ), + 55 => + array ( + 'id' => 1000056, + 'title' => 'Dream', + 'type' => 3000, + 'disabled' => 0, + ), + 56 => + array ( + 'id' => 1000057, + 'title' => 'Southern Rock', + 'type' => 3000, + 'disabled' => 0, + ), + 57 => + array ( + 'id' => 1000058, + 'title' => 'Comedy', + 'type' => 3000, + 'disabled' => 0, + ), + 58 => + array ( + 'id' => 1000059, + 'title' => 'Cult', + 'type' => 3000, + 'disabled' => 0, + ), + 59 => + array ( + 'id' => 1000060, + 'title' => 'Gangsta', + 'type' => 3000, + 'disabled' => 0, + ), + 60 => + array ( + 'id' => 1000061, + 'title' => 'Top 40', + 'type' => 3000, + 'disabled' => 0, + ), + 61 => + array ( + 'id' => 1000062, + 'title' => 'Christian Rap', + 'type' => 3000, + 'disabled' => 0, + ), + 62 => + array ( + 'id' => 1000063, + 'title' => 'Pop/Funk', + 'type' => 3000, + 'disabled' => 0, + ), + 63 => + array ( + 'id' => 1000064, + 'title' => 'Jungle', + 'type' => 3000, + 'disabled' => 0, + ), + 64 => + array ( + 'id' => 1000065, + 'title' => 'Native US', + 'type' => 3000, + 'disabled' => 0, + ), + 65 => + array ( + 'id' => 1000066, + 'title' => 'Cabaret', + 'type' => 3000, + 'disabled' => 0, + ), + 66 => + array ( + 'id' => 1000067, + 'title' => 'New Wave', + 'type' => 3000, + 'disabled' => 0, + ), + 67 => + array ( + 'id' => 1000068, + 'title' => 'Psychadelic', + 'type' => 3000, + 'disabled' => 0, + ), + 68 => + array ( + 'id' => 1000069, + 'title' => 'Rave', + 'type' => 3000, + 'disabled' => 0, + ), + 69 => + array ( + 'id' => 1000070, + 'title' => 'Showtunes', + 'type' => 3000, + 'disabled' => 0, + ), + 70 => + array ( + 'id' => 1000071, + 'title' => 'Trailer', + 'type' => 3000, + 'disabled' => 0, + ), + 71 => + array ( + 'id' => 1000072, + 'title' => 'Lo-Fi', + 'type' => 3000, + 'disabled' => 0, + ), + 72 => + array ( + 'id' => 1000073, + 'title' => 'Tribal', + 'type' => 3000, + 'disabled' => 0, + ), + 73 => + array ( + 'id' => 1000074, + 'title' => 'Acid Punk', + 'type' => 3000, + 'disabled' => 0, + ), + 74 => + array ( + 'id' => 1000075, + 'title' => 'Acid Jazz', + 'type' => 3000, + 'disabled' => 0, + ), + 75 => + array ( + 'id' => 1000076, + 'title' => 'Polka', + 'type' => 3000, + 'disabled' => 0, + ), + 76 => + array ( + 'id' => 1000077, + 'title' => 'Retro', + 'type' => 3000, + 'disabled' => 0, + ), + 77 => + array ( + 'id' => 1000078, + 'title' => 'Musical', + 'type' => 3000, + 'disabled' => 0, + ), + 78 => + array ( + 'id' => 1000079, + 'title' => 'Rock & Roll', + 'type' => 3000, + 'disabled' => 0, + ), + 79 => + array ( + 'id' => 1000080, + 'title' => 'Hard Rock', + 'type' => 3000, + 'disabled' => 0, + ), + 80 => + array ( + 'id' => 1000081, + 'title' => 'Folk', + 'type' => 3000, + 'disabled' => 0, + ), + 81 => + array ( + 'id' => 1000082, + 'title' => 'Folk-Rock', + 'type' => 3000, + 'disabled' => 0, + ), + 82 => + array ( + 'id' => 1000083, + 'title' => 'National Folk', + 'type' => 3000, + 'disabled' => 0, + ), + 83 => + array ( + 'id' => 1000084, + 'title' => 'Swing', + 'type' => 3000, + 'disabled' => 0, + ), + 84 => + array ( + 'id' => 1000085, + 'title' => 'Fast Fusion', + 'type' => 3000, + 'disabled' => 0, + ), + 85 => + array ( + 'id' => 1000086, + 'title' => 'Bebob', + 'type' => 3000, + 'disabled' => 0, + ), + 86 => + array ( + 'id' => 1000087, + 'title' => 'Latin', + 'type' => 3000, + 'disabled' => 0, + ), + 87 => + array ( + 'id' => 1000088, + 'title' => 'Revival', + 'type' => 3000, + 'disabled' => 0, + ), + 88 => + array ( + 'id' => 1000089, + 'title' => 'Celtic', + 'type' => 3000, + 'disabled' => 0, + ), + 89 => + array ( + 'id' => 1000090, + 'title' => 'Bluegrass', + 'type' => 3000, + 'disabled' => 0, + ), + 90 => + array ( + 'id' => 1000091, + 'title' => 'Avantgarde', + 'type' => 3000, + 'disabled' => 0, + ), + 91 => + array ( + 'id' => 1000092, + 'title' => 'Gothic Rock', + 'type' => 3000, + 'disabled' => 0, + ), + 92 => + array ( + 'id' => 1000093, + 'title' => 'Progressive Rock', + 'type' => 3000, + 'disabled' => 0, + ), + 93 => + array ( + 'id' => 1000094, + 'title' => 'Psychedelic Rock', + 'type' => 3000, + 'disabled' => 0, + ), + 94 => + array ( + 'id' => 1000095, + 'title' => 'Symphonic Rock', + 'type' => 3000, + 'disabled' => 0, + ), + 95 => + array ( + 'id' => 1000096, + 'title' => 'Slow Rock', + 'type' => 3000, + 'disabled' => 0, + ), + 96 => + array ( + 'id' => 1000097, + 'title' => 'Big Band', + 'type' => 3000, + 'disabled' => 0, + ), + 97 => + array ( + 'id' => 1000098, + 'title' => 'Chorus', + 'type' => 3000, + 'disabled' => 0, + ), + 98 => + array ( + 'id' => 1000099, + 'title' => 'Easy Listening', + 'type' => 3000, + 'disabled' => 0, + ), + 99 => + array ( + 'id' => 1000100, + 'title' => 'Acoustic', + 'type' => 3000, + 'disabled' => 0, + ), + 100 => + array ( + 'id' => 1000101, + 'title' => 'Humour', + 'type' => 3000, + 'disabled' => 0, + ), + 101 => + array ( + 'id' => 1000102, + 'title' => 'Speech', + 'type' => 3000, + 'disabled' => 0, + ), + 102 => + array ( + 'id' => 1000103, + 'title' => 'Chanson', + 'type' => 3000, + 'disabled' => 0, + ), + 103 => + array ( + 'id' => 1000104, + 'title' => 'Opera', + 'type' => 3000, + 'disabled' => 0, + ), + 104 => + array ( + 'id' => 1000105, + 'title' => 'Chamber Music', + 'type' => 3000, + 'disabled' => 0, + ), + 105 => + array ( + 'id' => 1000106, + 'title' => 'Sonata', + 'type' => 3000, + 'disabled' => 0, + ), + 106 => + array ( + 'id' => 1000107, + 'title' => 'Symphony', + 'type' => 3000, + 'disabled' => 0, + ), + 107 => + array ( + 'id' => 1000108, + 'title' => 'Booty Bass', + 'type' => 3000, + 'disabled' => 0, + ), + 108 => + array ( + 'id' => 1000109, + 'title' => 'Primus', + 'type' => 3000, + 'disabled' => 0, + ), + 109 => + array ( + 'id' => 1000110, + 'title' => 'Porn Groove', + 'type' => 3000, + 'disabled' => 0, + ), + 110 => + array ( + 'id' => 1000111, + 'title' => 'Satire', + 'type' => 3000, + 'disabled' => 0, + ), + 111 => + array ( + 'id' => 1000112, + 'title' => 'Slow Jam', + 'type' => 3000, + 'disabled' => 0, + ), + 112 => + array ( + 'id' => 1000113, + 'title' => 'Club', + 'type' => 3000, + 'disabled' => 0, + ), + 113 => + array ( + 'id' => 1000114, + 'title' => 'Tango', + 'type' => 3000, + 'disabled' => 0, + ), + 114 => + array ( + 'id' => 1000115, + 'title' => 'Samba', + 'type' => 3000, + 'disabled' => 0, + ), + 115 => + array ( + 'id' => 1000116, + 'title' => 'Folklore', + 'type' => 3000, + 'disabled' => 0, + ), + 116 => + array ( + 'id' => 1000117, + 'title' => 'Ballad', + 'type' => 3000, + 'disabled' => 0, + ), + 117 => + array ( + 'id' => 1000118, + 'title' => 'Power Ballad', + 'type' => 3000, + 'disabled' => 0, + ), + 118 => + array ( + 'id' => 1000119, + 'title' => 'Rhytmic Soul', + 'type' => 3000, + 'disabled' => 0, + ), + 119 => + array ( + 'id' => 1000120, + 'title' => 'Freestyle', + 'type' => 3000, + 'disabled' => 0, + ), + 120 => + array ( + 'id' => 1000121, + 'title' => 'Duet', + 'type' => 3000, + 'disabled' => 0, + ), + 121 => + array ( + 'id' => 1000122, + 'title' => 'Punk Rock', + 'type' => 3000, + 'disabled' => 0, + ), + 122 => + array ( + 'id' => 1000123, + 'title' => 'Drum Solo', + 'type' => 3000, + 'disabled' => 0, + ), + 123 => + array ( + 'id' => 1000124, + 'title' => 'Acapella', + 'type' => 3000, + 'disabled' => 0, + ), + 124 => + array ( + 'id' => 1000125, + 'title' => 'Euro-House', + 'type' => 3000, + 'disabled' => 0, + ), + 125 => + array ( + 'id' => 1000126, + 'title' => 'Dance Hall', + 'type' => 3000, + 'disabled' => 0, + ), + 126 => + array ( + 'id' => 1000127, + 'title' => 'Goa', + 'type' => 3000, + 'disabled' => 0, + ), + 127 => + array ( + 'id' => 1000128, + 'title' => 'Drum & Bass', + 'type' => 3000, + 'disabled' => 0, + ), + 128 => + array ( + 'id' => 1000129, + 'title' => 'Club-House', + 'type' => 3000, + 'disabled' => 0, + ), + 129 => + array ( + 'id' => 1000130, + 'title' => 'Hardcore', + 'type' => 3000, + 'disabled' => 0, + ), + 130 => + array ( + 'id' => 1000131, + 'title' => 'Terror', + 'type' => 3000, + 'disabled' => 0, + ), + 131 => + array ( + 'id' => 1000132, + 'title' => 'Indie', + 'type' => 3000, + 'disabled' => 0, + ), + 132 => + array ( + 'id' => 1000133, + 'title' => 'BritPop', + 'type' => 3000, + 'disabled' => 0, + ), + 133 => + array ( + 'id' => 1000134, + 'title' => 'Negerpunk', + 'type' => 3000, + 'disabled' => 0, + ), + 134 => + array ( + 'id' => 1000135, + 'title' => 'Polsk Punk', + 'type' => 3000, + 'disabled' => 0, + ), + 135 => + array ( + 'id' => 1000136, + 'title' => 'Beat', + 'type' => 3000, + 'disabled' => 0, + ), + 136 => + array ( + 'id' => 1000137, + 'title' => 'Christian Gangsta', + 'type' => 3000, + 'disabled' => 0, + ), + 137 => + array ( + 'id' => 1000138, + 'title' => 'Heavy Metal', + 'type' => 3000, + 'disabled' => 0, + ), + 138 => + array ( + 'id' => 1000139, + 'title' => 'Black Metal', + 'type' => 3000, + 'disabled' => 0, + ), + 139 => + array ( + 'id' => 1000140, + 'title' => 'Crossover', + 'type' => 3000, + 'disabled' => 0, + ), + 140 => + array ( + 'id' => 1000141, + 'title' => 'Contemporary C', + 'type' => 3000, + 'disabled' => 0, + ), + 141 => + array ( + 'id' => 1000142, + 'title' => 'Christian Rock', + 'type' => 3000, + 'disabled' => 0, + ), + 142 => + array ( + 'id' => 1000143, + 'title' => 'Merengue', + 'type' => 3000, + 'disabled' => 0, + ), + 143 => + array ( + 'id' => 1000144, + 'title' => 'Salsa', + 'type' => 3000, + 'disabled' => 0, + ), + 144 => + array ( + 'id' => 1000145, + 'title' => 'Thrash Metal', + 'type' => 3000, + 'disabled' => 0, + ), + 145 => + array ( + 'id' => 1000146, + 'title' => 'Anime', + 'type' => 3000, + 'disabled' => 0, + ), + 146 => + array ( + 'id' => 1000147, + 'title' => 'JPop', + 'type' => 3000, + 'disabled' => 0, + ), + 147 => + array ( + 'id' => 1000148, + 'title' => 'SynthPop', + 'type' => 3000, + 'disabled' => 0, + ), + 148 => + array ( + 'id' => 1000149, + 'title' => 'Electronica', + 'type' => 3000, + 'disabled' => 0, + ), + )); + + + } +} \ No newline at end of file diff --git a/database/seeds/GroupsTableSeeder.php b/database/seeds/GroupsTableSeeder.php new file mode 100644 index 000000000..519a8e1a9 --- /dev/null +++ b/database/seeds/GroupsTableSeeder.php @@ -0,0 +1,3272 @@ +delete(); + + \DB::table('groups')->insert(array ( + 0 => + array ( + 'id' => 1, + 'name' => 'alt.binaries.0day.stuffz', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 2, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains mostly 0day software.', + ), + 1 => + array ( + 'id' => 2, + 'name' => 'alt.binaries.anime', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => 268435456, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains mostly Anime Television.', + ), + 2 => + array ( + 'id' => 3, + 'name' => 'alt.binaries.astronomy', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 10, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains mostly movies.', + ), + 3 => + array ( + 'id' => 4, + 'name' => 'alt.binaries.ath', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 8, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains a variety of Music. Some Foreign.', + ), + 4 => + array ( + 'id' => 5, + 'name' => 'alt.binaries.barbarella', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains a variety of German content.', + ), + 5 => + array ( + 'id' => 6, + 'name' => 'alt.binaries.audio.warez', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'There is some old stuff in here, but this group is pretty much dead.', + ), + 6 => + array ( + 'id' => 7, + 'name' => 'alt.binaries.b4e', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains 0day and has some foreign.', + ), + 7 => + array ( + 'id' => 8, + 'name' => 'alt.binaries.big', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains XVid Movies. Mostly Foreign.', + ), + 8 => + array ( + 'id' => 9, + 'name' => 'alt.binaries.bloaf', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains a variety. Mostly Foreign.', + ), + 9 => + array ( + 'id' => 10, + 'name' => 'alt.binaries.blu-ray', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains blu-ray movies.', + ), + 10 => + array ( + 'id' => 11, + 'name' => 'alt.binaries.boneless', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains XVid and X264 Movies. Some Foreign.', + ), + 11 => + array ( + 'id' => 12, + 'name' => 'alt.binaries.british.drama', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 10, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains British TV shows.', + ), + 12 => + array ( + 'id' => 13, + 'name' => 'alt.binaries.cartoons.french', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains French cartoons.', + ), + 13 => + array ( + 'id' => 14, + 'name' => 'alt.binaries.cats', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains mostly TV.', + ), + 14 => + array ( + 'id' => 15, + 'name' => 'alt.binaries.cd.image.linux', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Linux distributions.', + ), + 15 => + array ( + 'id' => 16, + 'name' => 'alt.binaries.cd.image', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 4, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains PC-ISO.', + ), + 16 => + array ( + 'id' => 17, + 'name' => 'alt.binaries.cd.lossless', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains a variety of lossless Music.', + ), + 17 => + array ( + 'id' => 18, + 'name' => 'alt.binaries.chello', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains mostly TV.', + ), + 18 => + array ( + 'id' => 19, + 'name' => 'alt.binaries.classic.tv.shows', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Classic TV and Movies.', + ), + 19 => + array ( + 'id' => 20, + 'name' => 'alt.binaries.comics.dcp', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Comic Books', + ), + 20 => + array ( + 'id' => 21, + 'name' => 'alt.binaries.comp', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Warez. Mostly Foreign.', + ), + 21 => + array ( + 'id' => 22, + 'name' => 'alt.binaries.console.ps3', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains PS3 Games.', + ), + 22 => + array ( + 'id' => 23, + 'name' => 'alt.binaries.cores', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains a variety including Nintendo DS. Lots of Foreign.', + ), + 23 => + array ( + 'id' => 24, + 'name' => 'alt.binaries.country.mp3', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Country Music.', + ), + 24 => + array ( + 'id' => 25, + 'name' => 'alt.binaries.dc', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains XVid and X264 Movies and TV. Mostly Foreign.', + ), + 25 => + array ( + 'id' => 26, + 'name' => 'alt.binaries.dgma', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains XVid Movies. Mostly Foreign.', + ), + 26 => + array ( + 'id' => 27, + 'name' => 'alt.binaries.divx.french', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains French XVid Movies.', + ), + 27 => + array ( + 'id' => 28, + 'name' => 'alt.binaries.documentaries', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Documentaries TV and Movies.', + ), + 28 => + array ( + 'id' => 29, + 'name' => 'alt.binaries.documentaries.french', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains French Documentaries TV and Movies.', + ), + 29 => + array ( + 'id' => 30, + 'name' => 'alt.binaries.downunder', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains mostly TV.', + ), + 30 => + array ( + 'id' => 31, + 'name' => 'alt.binaries.dvd', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains DVD Movies.', + ), + 31 => + array ( + 'id' => 32, + 'name' => 'alt.binaries.dvd.movies', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains DVDR Movies.', + ), + 32 => + array ( + 'id' => 33, + 'name' => 'alt.binaries.dvdr', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains DVD Movies.', + ), + 33 => + array ( + 'id' => 34, + 'name' => 'alt.binaries.dvd-r', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains DVD Movies.', + ), + 34 => + array ( + 'id' => 35, + 'name' => 'alt.binaries.e-book.flood', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains E-Books.', + ), + 35 => + array ( + 'id' => 36, + 'name' => 'alt.binaries.e-book.technical', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains E-Books.', + ), + 36 => + array ( + 'id' => 37, + 'name' => 'alt.binaries.e-book', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains E-Books.', + ), + 37 => + array ( + 'id' => 38, + 'name' => 'alt.binaries.ebook', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Ebook\'s.', + ), + 38 => + array ( + 'id' => 39, + 'name' => 'alt.binaries.erotica.divx', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains XXX.', + ), + 39 => + array ( + 'id' => 40, + 'name' => 'alt.binaries.erotica', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 10, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains XXX.', + ), + 40 => + array ( + 'id' => 41, + 'name' => 'alt.binaries.etc', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 10, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains a variety of items.', + ), + 41 => + array ( + 'id' => 42, + 'name' => 'alt.binaries.font', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains mostly TV.', + ), + 42 => + array ( + 'id' => 43, + 'name' => 'alt.binaries.french-tv', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains French TV.', + ), + 43 => + array ( + 'id' => 44, + 'name' => 'alt.binaries.frogs', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains a variety.', + ), + 44 => + array ( + 'id' => 45, + 'name' => 'alt.binaries.ftn', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains a variety of Music and TV.', + ), + 45 => + array ( + 'id' => 46, + 'name' => 'alt.binaries.games.nintendods', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Nintendo DS Games ', + ), + 46 => + array ( + 'id' => 47, + 'name' => 'alt.binaries.games', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains PC and Console Games.', + ), + 47 => + array ( + 'id' => 48, + 'name' => 'alt.binaries.games.wii', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Nintendo WII Games, WII-Ware, and VC.', + ), + 48 => + array ( + 'id' => 49, + 'name' => 'alt.binaries.games.xbox360', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 4, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains XBOX 360 Games and DLC.', + ), + 49 => + array ( + 'id' => 50, + 'name' => 'alt.binaries.games.xbox', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains original XBOX Games.', + ), + 50 => + array ( + 'id' => 51, + 'name' => 'alt.binaries.ghosts', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains XVid TV and Movies. Mostly Foreign.', + ), + 51 => + array ( + 'id' => 52, + 'name' => 'alt.binaries.hdtv', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains mostly HDTV 1080i rips.', + ), + 52 => + array ( + 'id' => 53, + 'name' => 'alt.binaries.hdtv.german', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains German HDTV.', + ), + 53 => + array ( + 'id' => 54, + 'name' => 'alt.binaries.hdtv.x264', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains X264 Movies and HDTV.', + ), + 54 => + array ( + 'id' => 55, + 'name' => 'alt.binaries.highspeed', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains XVid Movies. Mostly Foreign.', + ), + 55 => + array ( + 'id' => 56, + 'name' => 'alt.binaries.hou', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains a variety of content. Mostly Foreign.', + ), + 56 => + array ( + 'id' => 57, + 'name' => 'alt.binaries.ijsklontje', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains XXX.', + ), + 57 => + array ( + 'id' => 58, + 'name' => 'alt.binaries.inner-sanctum', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 10, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains PC and Music.', + ), + 58 => + array ( + 'id' => 59, + 'name' => 'alt.binaries.illuminaten', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains mostly German.', + ), + 59 => + array ( + 'id' => 60, + 'name' => 'alt.binaries.ipod.videos', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Mobile TV and Movies.', + ), + 60 => + array ( + 'id' => 61, + 'name' => 'alt.binaries.linux.iso', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => 100, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Linux distributions.', + ), + 61 => + array ( + 'id' => 62, + 'name' => 'alt.binaries.lou', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains mostly german TV.', + ), + 62 => + array ( + 'id' => 63, + 'name' => 'alt.binaries.mac', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains MAC/OSX Software.', + ), + 63 => + array ( + 'id' => 64, + 'name' => 'alt.binaries.mac.applications', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains MAC/OSX Software.', + ), + 64 => + array ( + 'id' => 65, + 'name' => 'alt.binaries.milo', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains mostly TV, some german.', + ), + 65 => + array ( + 'id' => 66, + 'name' => 'alt.binaries.misc', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains a variety of items.', + ), + 66 => + array ( + 'id' => 67, + 'name' => 'alt.binaries.mojo', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains mostly TV.', + ), + 67 => + array ( + 'id' => 68, + 'name' => 'alt.binaries.mma', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains MMA/TNA Sport TV.', + ), + 68 => + array ( + 'id' => 69, + 'name' => 'alt.binaries.mom', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains a variety. Mostly Foreign.', + ), + 69 => + array ( + 'id' => 70, + 'name' => 'alt.binaries.moovee', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains XVid and X264 Movies.', + ), + 70 => + array ( + 'id' => 71, + 'name' => 'alt.binaries.movies.divx', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains XVid Movies', + ), + 71 => + array ( + 'id' => 72, + 'name' => 'alt.binaries.movies.erotica', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains XXX', + ), + 72 => + array ( + 'id' => 73, + 'name' => 'alt.binaries.movies.french', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains French Movies.', + ), + 73 => + array ( + 'id' => 74, + 'name' => 'alt.binaries.movies', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 10, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains an assortment of Movies.', + ), + 74 => + array ( + 'id' => 75, + 'name' => 'alt.binaries.movies.xvid', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains XVid Movies.', + ), + 75 => + array ( + 'id' => 76, + 'name' => 'alt.binaries.mp3.audiobooks', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Audio Books.', + ), + 76 => + array ( + 'id' => 77, + 'name' => 'alt.binaries.mp3.bootlegs', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Bootleg Music.', + ), + 77 => + array ( + 'id' => 78, + 'name' => 'alt.binaries.mp3.full_albums', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains a variety of Music.', + ), + 78 => + array ( + 'id' => 79, + 'name' => 'alt.binaries.mp3', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 11, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains a variety of Music.', + ), + 79 => + array ( + 'id' => 80, + 'name' => 'alt.binaries.mpeg.video.music', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains a variety of Music Videos.', + ), + 80 => + array ( + 'id' => 81, + 'name' => 'alt.binaries.multimedia.anime.highspeed', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Anime Television.', + ), + 81 => + array ( + 'id' => 82, + 'name' => 'alt.binaries.multimedia.anime.repost', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Anime Television.', + ), + 82 => + array ( + 'id' => 83, + 'name' => 'alt.binaries.multimedia.anime', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Anime TV and Movies.', + ), + 83 => + array ( + 'id' => 84, + 'name' => 'alt.binaries.multimedia.cartoons', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Cartoon TV and Movies.', + ), + 84 => + array ( + 'id' => 85, + 'name' => 'alt.binaries.multimedia.classic-films', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Classic TV and Movies.', + ), + 85 => + array ( + 'id' => 86, + 'name' => 'alt.binaries.multimedia.comedy.british', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains British Comedy TV and Movies.', + ), + 86 => + array ( + 'id' => 87, + 'name' => 'alt.binaries.multimedia.disney', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Disney TV and Movies.', + ), + 87 => + array ( + 'id' => 88, + 'name' => 'alt.binaries.multimedia.documentaries', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Documentary Movies and TV.', + ), + 88 => + array ( + 'id' => 89, + 'name' => 'alt.binaries.multimedia.erotica', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains XXX.', + ), + 89 => + array ( + 'id' => 90, + 'name' => 'alt.binaries.multimedia.erotica.amateur', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains XXX.', + ), + 90 => + array ( + 'id' => 91, + 'name' => 'alt.binaries.multimedia.scifi', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains science-fiction TV and movies.', + ), + 91 => + array ( + 'id' => 92, + 'name' => 'alt.binaries.multimedia.scifi-and-fantasy', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains science-fiction and fantasy TV and movies.', + ), + 92 => + array ( + 'id' => 93, + 'name' => 'alt.binaries.multimedia.sitcoms', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Sitcom TV.', + ), + 93 => + array ( + 'id' => 94, + 'name' => 'alt.binaries.multimedia.sports', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Sports TV and Movies.', + ), + 94 => + array ( + 'id' => 95, + 'name' => 'alt.binaries.multimedia', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains TV, Movies, and Music.', + ), + 95 => + array ( + 'id' => 96, + 'name' => 'alt.binaries.multimedia.tv', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains XVid and X264 TV.', + ), + 96 => + array ( + 'id' => 97, + 'name' => 'alt.binaries.multimedia.vintage-film', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Vintage Movies pre 1960.', + ), + 97 => + array ( + 'id' => 98, + 'name' => 'alt.binaries.multimedia.vintage-film.post-1960', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Vintage Movies post 1960.', + ), + 98 => + array ( + 'id' => 99, + 'name' => 'alt.binaries.music.flac', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains a variety of lossless Music.', + ), + 99 => + array ( + 'id' => 100, + 'name' => 'alt.binaries.music.opera', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Opera Music.', + ), + 100 => + array ( + 'id' => 101, + 'name' => 'alt.binaries.nintendo.ds', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Nintendo DS Games.', + ), + 101 => + array ( + 'id' => 102, + 'name' => 'alt.binaries.nospam.cheerleaders', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains various.', + ), + 102 => + array ( + 'id' => 103, + 'name' => 'alt.binaries.pictures.comics.complete', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains comics.', + ), + 103 => + array ( + 'id' => 104, + 'name' => 'alt.binaries.pictures.comics.dcp', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Comic Books.', + ), + 104 => + array ( + 'id' => 105, + 'name' => 'alt.binaries.pictures.comics.reposts', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Comic Books.', + ), + 105 => + array ( + 'id' => 106, + 'name' => 'alt.binaries.pictures.comics.repost', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Comic Books.', + ), + 106 => + array ( + 'id' => 107, + 'name' => 'alt.binaries.pro-wrestling', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains WWE Sport TV.', + ), + 107 => + array ( + 'id' => 108, + 'name' => 'alt.binaries.scary.exe.files', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains XVid and X264 Movies.', + ), + 108 => + array ( + 'id' => 109, + 'name' => 'alt.binaries.series.tv.divx.french', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains French DIVX TV shows.', + ), + 109 => + array ( + 'id' => 110, + 'name' => 'alt.binaries.sony.psp', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains PSP Games.', + ), + 110 => + array ( + 'id' => 111, + 'name' => 'alt.binaries.sound.audiobooks', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Audiobooks.', + ), + 111 => + array ( + 'id' => 112, + 'name' => 'alt.binaries.sound.mp3', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains a variety of Music.', + ), + 112 => + array ( + 'id' => 113, + 'name' => 'alt.binaries.sounds.1960s.mp3', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Music from the 1960\'s.', + ), + 113 => + array ( + 'id' => 114, + 'name' => 'alt.binaries.sounds.1970s.mp3', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Music from the 1970\'s.', + ), + 114 => + array ( + 'id' => 115, + 'name' => 'alt.binaries.sounds.audiobooks.repost', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Audiobooks.', + ), + 115 => + array ( + 'id' => 116, + 'name' => 'alt.binaries.sounds.country.mp3', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => '', + ), + 116 => + array ( + 'id' => 117, + 'name' => 'alt.binaries.sounds.flac', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains lossless music.', + ), + 117 => + array ( + 'id' => 118, + 'name' => 'alt.binaries.sounds.flac.jazz', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains lossless Jazz Music.', + ), + 118 => + array ( + 'id' => 119, + 'name' => 'alt.binaries.sounds.jpop', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains mostly Jpop music.', + ), + 119 => + array ( + 'id' => 120, + 'name' => 'alt.binaries.sounds.lossless.1960s', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains lossless 1960\'s Music.', + ), + 120 => + array ( + 'id' => 121, + 'name' => 'alt.binaries.sounds.lossless.classical', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains lossless Classical Music.', + ), + 121 => + array ( + 'id' => 122, + 'name' => 'alt.binaries.sounds.lossless.country', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains lossless Country Music.', + ), + 122 => + array ( + 'id' => 123, + 'name' => 'alt.binaries.sounds.lossless', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains a variety of Lossless Music.', + ), + 123 => + array ( + 'id' => 124, + 'name' => 'alt.binaries.sounds.mp3.1950s', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Music from the 1950\'s.', + ), + 124 => + array ( + 'id' => 125, + 'name' => 'alt.binaries.sounds.mp3.1970s', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Music from the 1970\'s.', + ), + 125 => + array ( + 'id' => 126, + 'name' => 'alt.binaries.sounds.mp3.1980s', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Music from the 1980\'s.', + ), + 126 => + array ( + 'id' => 127, + 'name' => 'alt.binaries.sounds.mp3.1990s', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Music from the 1990\'s.', + ), + 127 => + array ( + 'id' => 128, + 'name' => 'alt.binaries.sounds.mp3.2000s', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Music from the 2000\'s.', + ), + 128 => + array ( + 'id' => 129, + 'name' => 'alt.binaries.sounds.mp3.acoustic', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Accoustic Music.', + ), + 129 => + array ( + 'id' => 130, + 'name' => 'alt.binaries.sounds.mp3.audiobooks', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Audiobooks.', + ), + 130 => + array ( + 'id' => 131, + 'name' => 'alt.binaries.sounds.mp3.bluegrass', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Bluegrass Music.', + ), + 131 => + array ( + 'id' => 132, + 'name' => 'alt.binaries.sounds.mp3.christian', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Christian Music.', + ), + 132 => + array ( + 'id' => 133, + 'name' => 'alt.binaries.sounds.mp3.classical', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Classical Music.', + ), + 133 => + array ( + 'id' => 134, + 'name' => 'alt.binaries.sounds.mp3.comedy', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Comedy Audio.', + ), + 134 => + array ( + 'id' => 135, + 'name' => 'alt.binaries.sounds.mp3.complete_cd', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains a variety of Music.', + ), + 135 => + array ( + 'id' => 136, + 'name' => 'alt.binaries.sounds.mp3.country', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains mostly country music.', + ), + 136 => + array ( + 'id' => 137, + 'name' => 'alt.binaries.sounds.mp3.dance', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Dance Music.', + ), + 137 => + array ( + 'id' => 138, + 'name' => 'alt.binaries.sounds.mp3.disco', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Disco Music.', + ), + 138 => + array ( + 'id' => 139, + 'name' => 'alt.binaries.sounds.mp3.emo', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Emo Music.', + ), + 139 => + array ( + 'id' => 140, + 'name' => 'alt.binaries.sounds.mp3.full_albums', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains a variety of Music.', + ), + 140 => + array ( + 'id' => 141, + 'name' => 'alt.binaries.sounds.mp3.heavy-metal', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Heavy Metal Music.', + ), + 141 => + array ( + 'id' => 142, + 'name' => 'alt.binaries.sounds.mp3.jazz', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Jazz Music.', + ), + 142 => + array ( + 'id' => 143, + 'name' => 'alt.binaries.sounds.mp3.jazz.vocals', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Jazz Vocal Music.', + ), + 143 => + array ( + 'id' => 144, + 'name' => 'alt.binaries.sounds.mp3.musicals', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Musicals Music.', + ), + 144 => + array ( + 'id' => 145, + 'name' => 'alt.binaries.sounds.mp3.nospam', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains a variety of Music.', + ), + 145 => + array ( + 'id' => 146, + 'name' => 'alt.binaries.sounds.mp3.opera', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Opera Music.', + ), + 146 => + array ( + 'id' => 147, + 'name' => 'alt.binaries.sounds.mp3.progressive-country', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Country Music.', + ), + 147 => + array ( + 'id' => 148, + 'name' => 'alt.binaries.sounds.mp3.rap-hiphop.full-albums', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Rap and Hip-Hop Music.', + ), + 148 => + array ( + 'id' => 149, + 'name' => 'alt.binaries.sounds.mp3.rap-hiphop', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Rap and Hip-Hop Music.', + ), + 149 => + array ( + 'id' => 150, + 'name' => 'alt.binaries.sounds.mp3.rock', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Rock Music.', + ), + 150 => + array ( + 'id' => 151, + 'name' => 'alt.binaries.sounds.mp3', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains a variety of Music.', + ), + 151 => + array ( + 'id' => 152, + 'name' => 'alt.binaries.sounds.radio.bbc', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains BBC Radio Music', + ), + 152 => + array ( + 'id' => 153, + 'name' => 'alt.binaries.sounds.radio.british', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains British Radio Music.', + ), + 153 => + array ( + 'id' => 154, + 'name' => 'alt.binaries.sounds.whitburn.pop', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Pop Music.', + ), + 154 => + array ( + 'id' => 155, + 'name' => 'alt.binaries.tatu', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains mostly French TV.', + ), + 155 => + array ( + 'id' => 156, + 'name' => 'alt.binaries.teevee', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 10, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains X264 and XVid TV.', + ), + 156 => + array ( + 'id' => 157, + 'name' => 'alt.binaries.test', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains a variety of content.', + ), + 157 => + array ( + 'id' => 158, + 'name' => 'alt.binaries.town', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains XVid TV and Movies. Mostly Foreign.', + ), + 158 => + array ( + 'id' => 159, + 'name' => 'alt.binaries.triballs', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 2, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains various.', + ), + 159 => + array ( + 'id' => 160, + 'name' => 'alt.binaries.tun', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains various.', + ), + 160 => + array ( + 'id' => 161, + 'name' => 'alt.binaries.tvseries', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains X264 and XVid TV.', + ), + 161 => + array ( + 'id' => 162, + 'name' => 'alt.binaries.tv', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains XVid TV.', + ), + 162 => + array ( + 'id' => 163, + 'name' => 'alt.binaries.u-4all', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains XVid TV and Movies. Mostly Foreign.', + ), + 163 => + array ( + 'id' => 164, + 'name' => 'alt.binaries.u4e', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains a variery, mostly German movies.', + ), + 164 => + array ( + 'id' => 165, + 'name' => 'alt.binaries.ucc', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains mostly TV.', + ), + 165 => + array ( + 'id' => 166, + 'name' => 'alt.binaries.ufg', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains mostly TV.', + ), + 166 => + array ( + 'id' => 167, + 'name' => 'alt.binaries.uzenet', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains XXX. Some Foreign.', + ), + 167 => + array ( + 'id' => 168, + 'name' => 'alt.binaries.warez.ibm-pc.0-day', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains PC-0Day.', + ), + 168 => + array ( + 'id' => 169, + 'name' => 'alt.binaries.warez.quebec-hackers', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains PC-0day. Some Foreign.', + ), + 169 => + array ( + 'id' => 170, + 'name' => 'alt.binaries.warez.smartphone', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Mobile Phone Apps.', + ), + 170 => + array ( + 'id' => 171, + 'name' => 'alt.binaries.warez', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 5, + 'minsizetoformrelease' => 1000000, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains PC 0DAY, PC ISO, and PC PHONE.', + ), + 171 => + array ( + 'id' => 172, + 'name' => 'alt.binaries.warez.uk.mp3', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains a variety of Music.', + ), + 172 => + array ( + 'id' => 173, + 'name' => 'alt.binaries.wii', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains Nintendo WII Games, WII-Ware, and VC.', + ), + 173 => + array ( + 'id' => 174, + 'name' => 'alt.binaries.wmvhd', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => 40000000, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains WMVHD Movies.', + ), + 174 => + array ( + 'id' => 175, + 'name' => 'alt.binaries.worms', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 2, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'I have no idea what this group contains besides a lot of U4ALL which isn\'t really usable.', + ), + 175 => + array ( + 'id' => 176, + 'name' => 'alt.binaries.x264', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains X264 Movies and TV.', + ), + 176 => + array ( + 'id' => 177, + 'name' => 'alt.binaries.x', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains a variety of content. Some Foreign.', + ), + 177 => + array ( + 'id' => 178, + 'name' => 'alt.binaries.multimedia.erotica.anime', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'erotica anime', + ), + 178 => + array ( + 'id' => 179, + 'name' => 'alt.binaries.multimedia.erotica.asian', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'erotica Asian', + ), + 179 => + array ( + 'id' => 180, + 'name' => 'alt.binaries.mp3.audiobooks.scifi-fantasy', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'Audiobooks', + ), + 180 => + array ( + 'id' => 181, + 'name' => 'alt.binaries.sounds.audiobooks.scifi-fantasy', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'Audiobooks', + ), + 181 => + array ( + 'id' => 182, + 'name' => 'alt.binaries.mp3.abooks', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'Audiobooks', + ), + 182 => + array ( + 'id' => 183, + 'name' => 'alt.binaries.town.xxx', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'XXX videos', + ), + 183 => + array ( + 'id' => 184, + 'name' => 'alt.binaries.software', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'Software', + ), + 184 => + array ( + 'id' => 185, + 'name' => 'alt.binaries.nzbpirates', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'Misc, mostly Erotica, and foreign movies ', + ), + 185 => + array ( + 'id' => 186, + 'name' => 'alt.binaries.town.cine', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'Movies', + ), + 186 => + array ( + 'id' => 187, + 'name' => 'alt.binaries.usenet-space-cowboys', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'Misc, mostly German', + ), + 187 => + array ( + 'id' => 188, + 'name' => 'alt.binaries.warez.ibm-pc.games', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'misc, mostly games and applications', + ), + 188 => + array ( + 'id' => 189, + 'name' => 'alt.binaries.warez.games', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'misc, mostly games and applications', + ), + 189 => + array ( + 'id' => 190, + 'name' => 'alt.binaries.e-book.magazines', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'magazines, mostly english', + ), + 190 => + array ( + 'id' => 191, + 'name' => 'alt.binaries.sounds.anime', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'music from Anime', + ), + 191 => + array ( + 'id' => 192, + 'name' => 'alt.binaries.pictures.erotica.anime', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'Anime Manga, Adult', + ), + 192 => + array ( + 'id' => 193, + 'name' => 'alt.binaries.drama.british', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 10, + 'minsizetoformrelease' => 0, + 'active' => 0, + 'backfill' => 0, + 'description' => '', + ), + 193 => + array ( + 'id' => 194, + 'name' => 'alt.binaries.emulators.misc', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 0, + 'minsizetoformrelease' => 0, + 'active' => 0, + 'backfill' => 0, + 'description' => '', + ), + 194 => + array ( + 'id' => 195, + 'name' => 'alt.binaries.erotica.classics', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 10, + 'minsizetoformrelease' => 0, + 'active' => 0, + 'backfill' => 0, + 'description' => '', + ), + 195 => + array ( + 'id' => 196, + 'name' => 'alt.binaries.old.games', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 0, + 'minsizetoformrelease' => 0, + 'active' => 0, + 'backfill' => 0, + 'description' => '', + ), + 196 => + array ( + 'id' => 197, + 'name' => 'alt.binaries.dvd.anime', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 3, + 'minsizetoformrelease' => 0, + 'active' => 0, + 'backfill' => 0, + 'description' => '', + ), + 197 => + array ( + 'id' => 198, + 'name' => 'alt.binaries.dvd.erotica.classics', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => 15, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => '', + ), + 198 => + array ( + 'id' => 199, + 'name' => 'alt.binaries.gamecube', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'Added by import predb script', + ), + 199 => + array ( + 'id' => 200, + 'name' => 'alt.binaries.games.nintendo3ds', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'Added by import predb script', + ), + 200 => + array ( + 'id' => 201, + 'name' => 'alt.binaries.games.wiiu', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'Added by import predb script', + ), + 201 => + array ( + 'id' => 202, + 'name' => 'alt.binaries.sony.psvita', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'Added by import predb script', + ), + 202 => + array ( + 'id' => 203, + 'name' => 'alt.binaries.fz', + 'backfill_target' => 1, + 'first_record' => 0, + 'first_record_postdate' => NULL, + 'last_record' => 0, + 'last_record_postdate' => NULL, + 'last_updated' => NULL, + 'minfilestoformrelease' => NULL, + 'minsizetoformrelease' => NULL, + 'active' => 0, + 'backfill' => 0, + 'description' => 'This group contains german Movies and TV.', + ), + )); + + + } +} \ No newline at end of file diff --git a/database/seeds/MenuTableSeeder.php b/database/seeds/MenuTableSeeder.php new file mode 100644 index 000000000..f70f55d82 --- /dev/null +++ b/database/seeds/MenuTableSeeder.php @@ -0,0 +1,255 @@ +delete(); + + \DB::table('menu')->insert(array ( + 0 => + array ( + 'id' => 1, + 'href' => 'search', + 'title' => 'Advanced Search', + 'newwindow' => 0, + 'tooltip' => 'Search for releases.', + 'role' => 1, + 'ordinal' => 10, + 'menueval' => '""', + ), + 1 => + array ( + 'id' => 2, + 'href' => 'browsegroup', + 'title' => 'Groups List', + 'newwindow' => 0, + 'tooltip' => 'Browse by Group.', + 'role' => 1, + 'ordinal' => 25, + 'menueval' => '""', + ), + 2 => + array ( + 'id' => 3, + 'href' => 'movies', + 'title' => 'Movies', + 'newwindow' => 0, + 'tooltip' => 'Browse Movies.', + 'role' => 1, + 'ordinal' => 40, + 'menueval' => '""', + ), + 3 => + array ( + 'id' => 4, + 'href' => 'upcoming', + 'title' => 'Theatres', + 'newwindow' => 0, + 'tooltip' => 'Movies currently in theatres.', + 'role' => 1, + 'ordinal' => 45, + 'menueval' => '""', + ), + 4 => + array ( + 'id' => 5, + 'href' => 'series', + 'title' => 'TV Series', + 'newwindow' => 0, + 'tooltip' => 'Browse TV Series.', + 'role' => 1, + 'ordinal' => 50, + 'menueval' => '""', + ), + 5 => + array ( + 'id' => 6, + 'href' => 'predb', + 'title' => 'PreDB', + 'newwindow' => 0, + 'tooltip' => 'Browse PreDB.', + 'role' => 1, + 'ordinal' => 51, + 'menueval' => '""', + ), + 6 => + array ( + 'id' => 7, + 'href' => 'anime', + 'title' => 'Anime', + 'newwindow' => 0, + 'tooltip' => 'Browse Anime', + 'role' => 1, + 'ordinal' => 55, + 'menueval' => '""', + ), + 7 => + array ( + 'id' => 8, + 'href' => 'music', + 'title' => 'Music', + 'newwindow' => 0, + 'tooltip' => 'Browse Music.', + 'role' => 1, + 'ordinal' => 60, + 'menueval' => '""', + ), + 8 => + array ( + 'id' => 9, + 'href' => 'console', + 'title' => 'Console', + 'newwindow' => 0, + 'tooltip' => 'Browse Games.', + 'role' => 1, + 'ordinal' => 65, + 'menueval' => '""', + ), + 9 => + array ( + 'id' => 10, + 'href' => 'books', + 'title' => 'Books', + 'newwindow' => 0, + 'tooltip' => 'Browse Books.', + 'role' => 1, + 'ordinal' => 67, + 'menueval' => '""', + ), + 10 => + array ( + 'id' => 11, + 'href' => 'admin', + 'title' => 'Admin', + 'newwindow' => 0, + 'tooltip' => 'Admin', + 'role' => 2, + 'ordinal' => 70, + 'menueval' => '""', + ), + 11 => + array ( + 'id' => 12, + 'href' => 'cart', + 'title' => 'My Cart', + 'newwindow' => 0, + 'tooltip' => 'Your Nzb cart.', + 'role' => 1, + 'ordinal' => 75, + 'menueval' => '""', + ), + 12 => + array ( + 'id' => 13, + 'href' => 'myshows', + 'title' => 'My Shows', + 'newwindow' => 0, + 'tooltip' => 'Your TV shows.', + 'role' => 1, + 'ordinal' => 77, + 'menueval' => '""', + ), + 13 => + array ( + 'id' => 14, + 'href' => 'mymovies', + 'title' => 'My Movies', + 'newwindow' => 0, + 'tooltip' => 'Your Movie Wishlist.', + 'role' => 1, + 'ordinal' => 78, + 'menueval' => '""', + ), + 14 => + array ( + 'id' => 15, + 'href' => 'apihelp', + 'title' => 'API', + 'newwindow' => 0, + 'tooltip' => 'Information on the API.', + 'role' => 1, + 'ordinal' => 79, + 'menueval' => '""', + ), + 15 => + array ( + 'id' => 16, + 'href' => 'rss', + 'title' => 'RSS', + 'newwindow' => 0, + 'tooltip' => 'RSS Feeds.', + 'role' => 1, + 'ordinal' => 80, + 'menueval' => '""', + ), + 16 => + array ( + 'id' => 17, + 'href' => 'queue', + 'title' => 'My Queue', + 'newwindow' => 0, + 'tooltip' => 'View Your Queue.', + 'role' => 1, + 'ordinal' => 0, + 'menueval' => '', + ), + 17 => + array ( + 'id' => 18, + 'href' => 'forum', + 'title' => 'Forum', + 'newwindow' => 0, + 'tooltip' => 'Browse Forum.', + 'role' => 1, + 'ordinal' => 85, + 'menueval' => '""', + ), + 18 => + array ( + 'id' => 19, + 'href' => 'login', + 'title' => 'Login', + 'newwindow' => 0, + 'tooltip' => 'Login.', + 'role' => 0, + 'ordinal' => 100, + 'menueval' => '""', + ), + 19 => + array ( + 'id' => 20, + 'href' => 'register', + 'title' => 'Register', + 'newwindow' => 0, + 'tooltip' => 'Register.', + 'role' => 0, + 'ordinal' => 110, + 'menueval' => '""', + ), + 20 => + array ( + 'id' => 21, + 'href' => 'content', + 'title' => 'Contents page', + 'newwindow' => 0, + 'tooltip' => 'Administrator messages for users.', + 'role' => 1, + 'ordinal' => 14, + 'menueval' => '""', + ), + )); + + + } +} \ No newline at end of file diff --git a/database/seeds/ReleaseNamingRegexesTableSeeder.php b/database/seeds/ReleaseNamingRegexesTableSeeder.php new file mode 100644 index 000000000..7226d46f8 --- /dev/null +++ b/database/seeds/ReleaseNamingRegexesTableSeeder.php @@ -0,0 +1,10441 @@ +delete(); + + \DB::table('release_naming_regexes')->insert(array ( + 0 => + array ( + 'id' => 1, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/\\[\\d+\\]-\\[.+?\\]-\\[.+?\\]-\\[ (?P.+\\.S\\d\\dE\\d\\d\\..+?) \\][- ]\\[\\d+\\/\\d+\\][ -]{0,3}"[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_()\\[\\]\\\'\\`{}-]{8,}?\\b.?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => 'rename these teevee releases as the requestid is for the full season ::: [169018]-[FULL]-[a.b.teevee]-[ House.of.Lies.S01E01.720p.WEB-DL.DD5.1.H.264-BS ]-[04/32] - "House.of.Lies.S01E01.The.Gods.of.Dangerous.Financial.Instruments.720p.WEB-DL.DD5.1.H.264-BS.part03.rar" yEnc', + 'ordinal' => 5, + ), + 1 => + array ( + 'id' => 2, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/\\[\\d+\\]-\\[.+?\\]-\\[.+?\\]-\\[ .+\\.S\\d\\d\\..+? \\][- ]\\[\\d+\\/\\d+\\][ -]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_()[]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => 'Season only in 4th block so take filename ::: [169019]-[FULL]-[a.b.teevee]-[ House.of.Lies.S02.720p.WEB-DL.DD5.1.H.264-BS ]-[24/32] - "House.of.Lies.S02E02.When.Dinosaurs.Ruled.the.Planet.720p.WEB-DL.DD5.1.H.264-BS.vol000+01.par2" yEnc', + 'ordinal' => 10, + ), + 2 => + array ( + 'id' => 3, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\[#+\\]-\\[.+?\\]-\\[.+?\\]-\\[ (?P.+?) \\][- ]\\[\\d+\\/\\d+\\][-_\\s]{0,3}("|#34;).+?("|#34;) yEnc$/ ', + 'status' => 1, + 'description' => '[######]-[FULL]-[#a.b.teevee@EFNet]-[ Misfits.S01.SUBPACK.DVDRip.XviD-P0W4DVD ] [1/5] - "Misfits.S01.SUBPACK.DVDRip.XviD-P0W4DVD.nfo" yEnc', + 'ordinal' => 15, + ), + 3 => + array ( + 'id' => 4, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\[#+\\]-\\[.+?\\]-\\[.+?\\]-\\[(?P.+?)\\][- ]\\[\\d+\\/\\d+\\][-_\\s]{0,3}".+?" yEnc$/', + 'status' => 1, + 'description' => '[34148]-[FULL]-[#a.b.teevee@EFNet]-[Batman.The.Animated.Series.S04E01.DVDRiP.XviD-PyRo]-[00/35] "Batman.The.Animated.Series.S04E01.DVDRiP.XviD-PyRo.nzb" yEnc', + 'ordinal' => 20, + ), + 4 => + array ( + 'id' => 5, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\[#+\\]-\\[.+?\\]-\\[ (?P.+?) \\][- ]\\[\\d+\\/\\d+\\][-_\\s]{0,3}".+?" yEnc$/', + 'status' => 1, + 'description' => '[38722]-[#a.b.foreign@EFNet]-[ Game.Of.Thrones.S01E01.Der.Winter.Naht.GERMAN.DL.WS.1080p.HDTV.x264-MiSFiTS ]-[01/37] - "misfits-gameofthrones1080-s01e01-sample-sample.par2" yEnc', + 'ordinal' => 25, + ), + 5 => + array ( + 'id' => 6, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\[#+\\]-\\[.+?\\]-\\[.+?\\]-\\[ (?P.+?) \\][- ]\\[\\d+\\/\\d+\\][-_\\s]{0,3}("|#34;).+?("|#34;) yEnc$/', + 'status' => 1, + 'description' => '[#a.b.teevee] Parks.and.Recreation.S01E01.720p.WEB-DL.DD5.1.H.264-CtrlHD - [01/24] - "Parks.and.Recreation.S01E01.720p.WEB-DL.DD5.1.H.264-CtrlHD.nfo" yEnc', + 'ordinal' => 30, + ), + 6 => + array ( + 'id' => 7, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/\\[#+\\]-\\[.+?\\]-\\[.+?\\]-\\[ ?(?P.+?) ?\\][- ]\\[\\d+\\/\\d+\\][-_\\s]{0,3}("|#34;).+?("|#34;) \\(\\d+\\/\\d+\\) \\(\\d+\\/\\d+$/', + 'status' => 1, + 'description' => '[17319]-[FULL]-[#a.b.teevee@EFNet]-[ CSI.New.York.S05E22.720p.HDTV.X264-DIMENSION ]-[01/34] "csi.new.york.522.720p-dimension.nfo" (1/1) (1/1', + 'ordinal' => 35, + ), + 7 => + array ( + 'id' => 8, + 'group_regex' => '^alt\\.binaries\\.0day\\.stuffz$', + 'regex' => '/^(?P[a-zA-Z0-9].+?) - \\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//ArcSoft.TotalMedia.Theatre.v5.0.1.87-Lz0 - [08/35] - "ArcSoft.TotalMedia.Theatre.v5.0.1.87-Lz0.vol43+09.par2" yEnc', + 'ordinal' => 5, + ), + 8 => + array ( + 'id' => 9, + 'group_regex' => '^alt\\.binaries\\.0day\\.stuffz$', + 'regex' => '/^(?P[a-zA-Z0-9].+?) \\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//rld-tcavu1 [5/6] - "rld-tcavu1.rar" yEnc', + 'ordinal' => 10, + ), + 9 => + array ( + 'id' => 10, + 'group_regex' => '^alt\\.binaries\\.0day\\.stuffz$', + 'regex' => '/^\\((?P.+?)\\) \\[\\d+(\\/\\d+] - ").+?" yEnc$/', + 'status' => 1, + 'description' => '//(DVD Shrink.ss) [1/1] - "DVD Shrink.ss.rar" yEnc', + 'ordinal' => 15, + ), + 10 => + array ( + 'id' => 11, + 'group_regex' => '^alt\\.binaries\\.0day\\.stuffz$', + 'regex' => '/^(?P[a-zA-Z0-9].+?)\\(\\d+\\/\\d+\\) - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//WinASO.Registry.Optimizer.4.8.0.0(1/4) - "WinASO_RO_v4.8.0.rar" yEnc', + 'ordinal' => 20, + ), + 11 => + array ( + 'id' => 12, + 'group_regex' => '^alt\\.binaries\\.3d$', + 'regex' => '/^\\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(084/113) "The Little Mermaid - 3D HSBS (1989) 1080p BluRay - Multi - P3n6u1n.part082.rar" - 10.56 GB - yEnc', + 'ordinal' => 5, + ), + 12 => + array ( + 'id' => 13, + 'group_regex' => '^alt\\.binaries\\.3d$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//"pandas.3d.back.to.the.wild.h-sbs.fs-3d.r22" - 1.55 GB - yEnc', + 'ordinal' => 10, + ), + 13 => + array ( + 'id' => 14, + 'group_regex' => '^alt\\.binaries\\.amazing$', + 'regex' => '/^\\(\\?+\\) \\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(???) [1/1] - "Asimov, Isaac - [Foundation 01] - De Foundation_v2.rar" yEnc', + 'ordinal' => 5, + ), + 14 => + array ( + 'id' => 15, + 'group_regex' => '^alt\\.binaries\\.amazing$', + 'regex' => '/^\\([\\w!.,&_ \\()\\[\\]\\\'\\`-]{8,}\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(Ass Backwards (2013) WEBrip XviD AC3 (english subs)) [18/35] - "Ass Backwards (2013) WEBrip XviD AC3 (english subs).part17.rar" yEnc', + 'ordinal' => 10, + ), + 15 => + array ( + 'id' => 16, + 'group_regex' => '^alt\\.binaries\\.amazing$', + 'regex' => '/^\\(Angels4Always\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(Angels4Always) [1/1] - "Vermeulen, John - De tweelingparadox.rar" yEnc', + 'ordinal' => 15, + ), + 16 => + array ( + 'id' => 17, + 'group_regex' => '^alt\\.binaries\\.amazing$', + 'regex' => '/^[\\w!.,&_ \\()\\[\\]\\\'\\`-]{8,}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Heaven_en_Fayth Presenteren Diana Gabaldon - Reiziger Cyclus 01 - De Reiziger[0/3] - "Diana Gabaldon - Reiziger Cyclus 01 - De Reiziger.nzb" yEnc', + 'ordinal' => 20, + ), + 17 => + array ( + 'id' => 18, + 'group_regex' => '^alt\\.binaries\\.amazing$', + 'regex' => '/^www\\.wolfsteamers\\.info[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//www.wolfsteamers.info [1/6] - "Wohnen Bauen Leben - Sommer 2014.par2" - 16,46 MB yEnc', + 'ordinal' => 25, + ), + 18 => + array ( + 'id' => 19, + 'group_regex' => '^alt\\.binaries\\.amazing$', + 'regex' => '/^\\w+[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//096XZFUPQ0PxH4441H14fU8V - [34/99] - "096XZFUPQ0PxH4441H14fU8V.part033.rar" yEnc', + 'ordinal' => 30, + ), + 19 => + array ( + 'id' => 20, + 'group_regex' => '^alt\\.binaries\\.amazing$', + 'regex' => '/^\\w+[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")\\d+(\\/\\d+)[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//05VANmA80DckBho "05VANmA80DckBho.part07.rar"08/94 yEnc', + 'ordinal' => 35, + ), + 20 => + array ( + 'id' => 21, + 'group_regex' => '^alt\\.binaries\\.amazing$', + 'regex' => '/^\\(.+the-ultimate-force\\.org\\.ua\\/\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(Slaapkop post voor http://the-ultimate-force.org.ua/) [0/7] - "Wham - I\'m Your Man (1985).nzb" yEnc', + 'ordinal' => 40, + ), + 21 => + array ( + 'id' => 22, + 'group_regex' => '^alt\\.binaries\\.amazing$', + 'regex' => '/^\\(\\d+\\/\\d+\\) - P2H - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}\\w+[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//(001/101) - P2H - "L62WD8P4U539A7.par2" - 4,66 GB - Z9F6KN7SXRCY845 yEnc', + 'ordinal' => 45, + ), + 22 => + array ( + 'id' => 23, + 'group_regex' => '^alt\\.binaries\\.amazing$', + 'regex' => '/^\\(\\d+\\/\\d+\\)([-_ ]{0,4}(Description|FTTEAM\\.INFO))?[-_ ]{0,4}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(001/101) "654258ItB1418pBRDNS264159.par2" - 9,74 GB - yEnc ::: //(001/105) - Description - "oH291TB0bPxf3lqm1P7QQ.par2" - 4,56 GB - yEnc ::: //(03/43) - FTTEAM.INFO - "JDSJ2J4ENASJCKR-FTTEAM.INFO.part02.rar" - 2,04 GB - yEnc', + 'ordinal' => 50, + ), + 23 => + array ( + 'id' => 24, + 'group_regex' => '^alt\\.binaries\\.amazing$', + 'regex' => '/^[-_ .]{0,4}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//- - [001/242] - "C65JuogI92CwfMo2TiX59.par2" yEnc', + 'ordinal' => 55, + ), + 24 => + array ( + 'id' => 25, + 'group_regex' => '^alt\\.binaries\\.amazing$', + 'regex' => '/^[-_ .]{0,4}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//- "5nivJ7V6Q2jqAR34bZ8m.part46.rar" yEnc', + 'ordinal' => 60, + ), + 25 => + array ( + 'id' => 26, + 'group_regex' => '^alt\\.binaries\\.amazing$', + 'regex' => '/^[-_ .]{0,4}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//- "7UAF6LE2PDM38NB.par2" - 8,53 GB - yEnc', + 'ordinal' => 65, + ), + 26 => + array ( + 'id' => 27, + 'group_regex' => '^alt\\.binaries\\.amazing$', + 'regex' => '/^[-_ ]{0,4}\\[\\d+\\/\\d+\\][-_\\s]{0,3}".+" yEnc[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//- [01/10] - "file.xyz" yEnc - [001/107] - "86u1Qr8mm56jGiW7nUPTM.par2" yEnc', + 'ordinal' => 70, + ), + 27 => + array ( + 'id' => 28, + 'group_regex' => '^alt\\.binaries\\.anime$', + 'regex' => '/^\\((?P\\[.+?\\] .+?)\\) \\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//([AST] One Piece Episode 301-350 [720p]) [007/340] - "One Piece episode 301-350.part006.rar" yEnc', + 'ordinal' => 20, + ), + 28 => + array ( + 'id' => 29, + 'group_regex' => '^alt\\.binaries\\.anime$', + 'regex' => '/^\\[.+?\\]\\[ (?P.+?) \\] \\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//[REPOST][ New Doraemon 2013.05.03 Episode 328 (TV Asahi) 1080i HDTV MPEG2 AAC-DoraClub.org ] [35/61] - "doraclub.org-doraemon-20130503-b8de1f8e.r32" yEnc', + 'ordinal' => 25, + ), + 29 => + array ( + 'id' => 30, + 'group_regex' => '^alt\\.binaries\\.anime$', + 'regex' => '/^\\(\\d+\\/\\d+\\) - (?P.+?) - ".+?" - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/', + 'status' => 1, + 'description' => '//(01/27) - Maid.Sama.Jap.dubbed.german.english.subbed - "01 Misaki ist eine Maid!.divx" - 6,44 GB - yEnc', + 'ordinal' => 30, + ), + 30 => + array ( + 'id' => 31, + 'group_regex' => '^alt\\.binaries\\.anime$', + 'regex' => '/^\\[ (?P.+?) \\] \\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//[ New Doraemon 2013.06.14 Episode 334 (TV Asahi) 1080i HDTV MPEG2 AAC-DoraClub.org ] [01/60] - "doraclub.org-doraemon-20130614-fae28cec.nfo" yEnc', + 'ordinal' => 35, + ), + 31 => + array ( + 'id' => 32, + 'group_regex' => '^alt\\.binaries\\.anime$', + 'regex' => '/^(?P.+? \\[Dual [aA]udio, EngSub\\] .+?) - \\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Overman King Gainer [Dual audio, EngSub] Exiled Destiny - [002/149] - "Overman King Gainer.part001.rar" yEnc', + 'ordinal' => 40, + ), + 32 => + array ( + 'id' => 33, + 'group_regex' => '^alt\\.binaries\\.(multimedia\\.|)(anime|cartoons)\\.?(highspeed|repost)?$', + 'regex' => '/^[[(]d+/d+[])] - " ?(?P.+?) ?[. ](7z|avi|md5|mkv|mp4|nzb|par|vol)t?d+.+yEnc$/', + 'status' => 1, + 'description' => '//[01/17] - "[neko-raws] Niji-iro Days 02 [BD][1080p][FLAC][768CC18E]v2.par2" - 590,59 MB yEnc', + 'ordinal' => 5, + ), + 33 => + array ( + 'id' => 34, + 'group_regex' => '^alt\\.binaries\\.(multimedia\\.|)(anime|cartoons)\\.?(highspeed|repost)?$', + 'regex' => '/^.+" ?[ .-]?(?P.+?) ?[ .](7z|avi|md5|mkv|mp4|nzb|par|vol)t?d?+.+yEnc$/', + 'status' => 1, + 'description' => '//[SpaceFish] Galilei Donna - Batch [BD][720p][MP4][AAC] [1/7] - "[SpaceFish] Galilei Donna - 07 [BD][720p][AAC] mp4" yEnc', + 'ordinal' => 10, + ), + 34 => + array ( + 'id' => 35, + 'group_regex' => '^alt\\.binaries\\.(multimedia\\.|)(anime|cartoons)\\.?(highspeed|repost)?$', + 'regex' => '/^.+" ?[ .-]?(?P.+?) ?[ .](7z|avi|md5|mkv|mp4|nfo|nzb|par|vol)t?d?+.+[[(]d+/d+[])]$/', + 'status' => 1, + 'description' => '//My Hero Academia Textless Opening Song \'THE DAY\' (BD AVC 1080p FLAC) [6D660059] - "My Hero Academia Textless Opening Song \'THE DAY\' (BD AVC 1080p FLAC) [6D660059] nfo" yEnc (01/35)', + 'ordinal' => 15, + ), + 35 => + array ( + 'id' => 36, + 'group_regex' => '^alt\\.binaries\\.ath$', + 'regex' => '/^\\[\\d+\\/\\d+ (?P[a-zA-Z0-9]+ .+?)\\..+?" yEnc$/', + 'status' => 1, + 'description' => '//[3/3 Karel Gott - Die Biene Maja Original MP3 Karel Gott - Die Biene Maja Original MP3.mp3.vol0+1.PAR2" yEnc', + 'ordinal' => 5, + ), + 36 => + array ( + 'id' => 37, + 'group_regex' => '^alt\\.binaries\\.ath$', + 'regex' => '/^(?P[a-f0-9]{32}) - \\(\\d+\\/\\d+\\) - "[a-f0-9]{32}\\..+" yEnc$/', + 'status' => 1, + 'description' => '//8b33bf5960714efbe6cfcf13dd0f618f - (01/55) - "8b33bf5960714efbe6cfcf13dd0f618f.par2" yEnc', + 'ordinal' => 10, + ), + 37 => + array ( + 'id' => 38, + 'group_regex' => '^alt\\.binaries\\.ath$', + 'regex' => '/^.+Usejunkies.tk.+ \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//::: Usejunkies.tk ::: - [01/11] - "DJ Shog - DNA - HD 720p.par2" - 47,76 MB yEnc', + 'ordinal' => 15, + ), + 38 => + array ( + 'id' => 39, + 'group_regex' => '^alt\\.binaries\\.ath$', + 'regex' => '/^Uploader\\.Presents-(?P.+)[\\(\\[]\\d+\\/\\d+[\\)\\]]".+" yEnc$/', + 'status' => 1, + 'description' => '//Uploader.Presents-Mutter.und.Sohn.German.2013.DVDRiP.x264-XFi[01/27]"xf-mutterusohn.nfo" yEnc', + 'ordinal' => 20, + ), + 39 => + array ( + 'id' => 40, + 'group_regex' => '^alt\\.binaries\\.ath$', + 'regex' => '/^.+http:\\/\\/you-need-all\\.tk.+\\[\\d+\\/\\d+\\][\\s-_]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//<->http://you-need-all.tk<-> - [28/32] - "Dirty Minded W', + 'ordinal' => 25, + ), + 40 => + array ( + 'id' => 41, + 'group_regex' => '^alt\\.binaries\\.ath$', + 'regex' => '/^\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB] .+? yEnc$/', + 'status' => 1, + 'description' => '//[02/21] - "Staendig Feucht.part01.rar" - 493.38 MB ....::::UR-powered by SecretUsenet.com::::.... yEnc', + 'ordinal' => 30, + ), + 41 => + array ( + 'id' => 42, + 'group_regex' => '^alt\\.binaries\\.ath$', + 'regex' => '/^>+ .+?\\.info [<>+]+ .+?\\.com <+ "(?P.+?)\\s+- .*?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - .+? yEnc$/', + 'status' => 1, + 'description' => '//>>> usenet4ever.info <<<+>>> secretusenet.com <<< "Weltnaturerbe USA Grand Canyon Nationalpark 2012 3D Blu-ray untouched - DarKneSS.part039.rar" - DarKneSS yEnc', + 'ordinal' => 35, + ), + 42 => + array ( + 'id' => 43, + 'group_regex' => '^alt\\.binaries\\.ath$', + 'regex' => '/^(?P[a-z]+) - \\[\\d+\\/\\d+\\] - "[a-z]+\\..+?" yEnc$/', + 'status' => 1, + 'description' => '//nmlsrgnb - [04/37] - "htwlngmrstdsntdnh.part03.rar" yEnc', + 'ordinal' => 40, + ), + 43 => + array ( + 'id' => 44, + 'group_regex' => '^alt\\.binaries\\.ath$', + 'regex' => '/^>+Hell-of-Usenet(\\.org)?>+( -)? \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")( - \\d+[.,]\\d+ [kKmMgG][bB])? yEnc$/', + 'status' => 1, + 'description' => '//>>>>>Hell-of-Usenet>>>>> - [01/33] - "Cassadaga Hier lebt der Teufel 2011 German AC3 DVDRip XViD iNTERNAL-VhV.par2" yEnc', + 'ordinal' => 45, + ), + 44 => + array ( + 'id' => 45, + 'group_regex' => '^alt\\.binaries\\.ath$', + 'regex' => '/^(?P[a-z0-9]{10,}) \\(\\d+\\/\\d+\\) "[a-z0-9]{10,}\\..+?" yEnc$/', + 'status' => 1, + 'description' => '//1dbo1u5ce6182436yb2eo (001/105) "1dbo1u5ce6182436yb2eo.par2" yEnc', + 'ordinal' => 50, + ), + 45 => + array ( + 'id' => 46, + 'group_regex' => '^alt\\.binaries\\.ath$', + 'regex' => '/^<<<>>>kosova-shqip\\.eu<<< (?P.+?) >>>kosova-shqip.eu<<<<<< - \\(\\d+\\/\\d+\\) - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//<<<>>>kosova-shqip.eu<<< Deep SWG - 90s Club Megamix 2011 >>>kosova-shqip.eu<<<<<< - (2/4) - "Deep SWG - 90s Club Megamix 2011.rar" yEnc', + 'ordinal' => 55, + ), + 46 => + array ( + 'id' => 47, + 'group_regex' => '^alt\\.binaries\\.ath$', + 'regex' => '/^ "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](?Pproof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") SpongeBoZZ yEnc$/', + 'status' => 1, + 'description' => '// "Invader.German.2012.PAL.DVDR-MORTAL.nfo" SpongeBoZZ yEnc', + 'ordinal' => 60, + ), + 47 => + array ( + 'id' => 48, + 'group_regex' => '^alt\\.binaries\\.ath$', + 'regex' => '/^([a-zA-Z0-9].+?\\s{2,}|Old Dad uppt\\s+)(?P.+?) \\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Old Dad uppt Taffe Mädels XivD LD HDTV Rip oben Kleine Einblendug German 01/43] - "Taffe Mädels.par2" yEnc', + 'ordinal' => 65, + ), + 48 => + array ( + 'id' => 49, + 'group_regex' => '^alt\\.binaries\\.ath$', + 'regex' => '/^\\(\\?+\\) (?P.+) .+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})" yEnc$/i', + 'status' => 1, + 'description' => '//(????) Rom.S02E09.Deus.Impeditio.Esuritori.Nullus Rom.S02E09.Deus.Impeditio.Esuritori.Nullus.avi.vol007+08.PAR2" yEnc', + 'ordinal' => 70, + ), + 49 => + array ( + 'id' => 50, + 'group_regex' => '^alt\\.binaries\\.ath$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//"27MZ4CXQ3AN86D95KVHB.part06.rar" - 21,61 GB - yEnc', + 'ordinal' => 75, + ), + 50 => + array ( + 'id' => 51, + 'group_regex' => '^alt\\.binaries\\.ath$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//"2EACM94X65NHZ37.par2" yEnc', + 'ordinal' => 80, + ), + 51 => + array ( + 'id' => 52, + 'group_regex' => '^alt\\.binaries\\.ath$', + 'regex' => '/^(?P[^.]{8,})([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[- ]{0,3}yEnc$/u', + 'status' => 1, + 'description' => '//A7Soft ExamXML v4.37.rar yEnc', + 'ordinal' => 85, + ), + 52 => + array ( + 'id' => 53, + 'group_regex' => '^alt\\.binaries\\.audiobooks$', + 'regex' => '/^(Re: )?(?P[\\w\\s]+ - )\\[\\d+\\/\\d+\\] - "(?P.+)[\\.-]([Pp]art|vol|jpg|sfv|mp3|nzb|nfo|rar).*" yEnc$/', + 'status' => 1, + 'description' => '//WEB Griffin - [06/26] - "The Outlaws-Part06.mp3" yEnc ::: //Re: WEB Griffin - [18/26] - "The Outlaws.par2" yEnc', + 'ordinal' => 5, + ), + 53 => + array ( + 'id' => 54, + 'group_regex' => '^alt\\.binaries\\.audiobooks$', + 'regex' => '/^(Re: )?(?P[\\w\\s]+ - )\\[\\d+\\/\\d+\\] - "(?P.+)[\\.-]([Pp]ar2).*" yEnc$/', + 'status' => 1, + 'description' => '//WEB Griffin - [06/26] - "The Outlaws-Part06.mp3" yEnc ::: //Re: WEB Griffin - [18/26] - "The Outlaws.par2" yEnc', + 'ordinal' => 10, + ), + 54 => + array ( + 'id' => 55, + 'group_regex' => '^alt\\.binaries\\.audiobooks$', + 'regex' => '/^\\[\\d+\\/\\d+\\] - "(?P.+)-Part\\d+\\..+" yEnc$/', + 'status' => 1, + 'description' => '//[05/13] - "Into the Fire-Part03.mp3" yEnc', + 'ordinal' => 15, + ), + 55 => + array ( + 'id' => 56, + 'group_regex' => '^alt\\.binaries\\.audiobooks$', + 'regex' => '/^\\[Repost.+\\]\\s+\\[\\d+\\/\\d+\\] - "(?P.+)\\.(part|vol|jpg|sfv|mp3|nzb|nfo|rar).*" yEnc$/', + 'status' => 1, + 'description' => '//[Repost - Original Damaged] [35/86] - "Mark Twain - Personal Recollections of Joan of Arc Vol 1 and Vol 2 - 33 - 32 - Tinsel Trappings of Nobility.mp3" yEnc', + 'ordinal' => 20, + ), + 56 => + array ( + 'id' => 57, + 'group_regex' => '^alt\\.binaries\\.audiobooks$', + 'regex' => '/^\\[Repost.+\\]\\s+\\[\\d+\\/\\d+\\] - "(?P.+)\\.(par2).*" yEnc$/', + 'status' => 1, + 'description' => '//[Repost - Original Damaged] [35/86] - "Mark Twain - Personal Recollections of Joan of Arc Vol 1 and Vol 2 - 33 - 32 - Tinsel Trappings of Nobility.mp3" yEnc', + 'ordinal' => 25, + ), + 57 => + array ( + 'id' => 58, + 'group_regex' => '^alt\\.binaries\\.audiobooks$', + 'regex' => '/^\\(\\?+\\) \\[\\d+\\/\\d+\\] - "(?P.+)\\.(part|vol|jpg|sfv|mp3|nzb|nfo|rar).*" yEnc$/', + 'status' => 1, + 'description' => '//(????) [12/19] - "Notorious Nineteen.part10.rar" yEnc', + 'ordinal' => 30, + ), + 58 => + array ( + 'id' => 59, + 'group_regex' => '^alt\\.binaries\\.audiobooks$', + 'regex' => '/^\\(\\?+\\) \\[\\d+\\/\\d+\\] - "(?P.+)\\.(par2).*" yEnc$/', + 'status' => 1, + 'description' => '//(????) [12/19] - "Notorious Nineteen.part10.rar" yEnc', + 'ordinal' => 35, + ), + 59 => + array ( + 'id' => 60, + 'group_regex' => '^alt\\.binaries\\.audiobooks$', + 'regex' => '/^\\(\\d+\\/\\d+\\) "(?P.+)[\\.-](part|vol|jpg|sfv|mp3|nzb|nfo|rar).*" - \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/', + 'status' => 1, + 'description' => '//(08/10) "The Vampire Diaries - Kampen.vol63+15.par2" - 313,91 MB yEnc', + 'ordinal' => 40, + ), + 60 => + array ( + 'id' => 61, + 'group_regex' => '^alt\\.binaries\\.audiobooks$', + 'regex' => '/^(Re: )?\\(\\d+\\/\\d+\\) "(?P.+)[\\.-](par2).*" - \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/', + 'status' => 1, + 'description' => '//(01/10) "The Vampire Diaries - Raseriet.par2" - 296,93 MB yEnc', + 'ordinal' => 45, + ), + 61 => + array ( + 'id' => 62, + 'group_regex' => '^alt\\.binaries\\.audiobooks$', + 'regex' => '/^(?P.+) \\[Danish.+\\] \\[\\d+\\/\\d+\\] - ".+" yEnc$/', + 'status' => 1, + 'description' => '//Margaret Weis - Dragonlance Kr?niker Bind 1-6 [Danish AudioBook] [02/18] - "DL-CRON.r00" yEnc', + 'ordinal' => 50, + ), + 62 => + array ( + 'id' => 63, + 'group_regex' => '^alt\\.binaries\\.audiobooks$', + 'regex' => '/^(?P[\\w\\s\\d-]+) \\d+ kbps stereo \\[\\d+\\/\\d+\\] - ".+" yEnc$/', + 'status' => 1, + 'description' => '//David Baldacci - The Forgotten 128 kbps stereo [03/24] - "The Forgotten 01.m4b" yEnc', + 'ordinal' => 55, + ), + 63 => + array ( + 'id' => 64, + 'group_regex' => '^alt\\.binaries\\.audiobooks$', + 'regex' => '/(?P\\w{4}\\d{4}) [\\[\\(]\\d+\\/\\d+[\\]\\)][ -]+"\\w{4}\\..+" yEnc$/', + 'status' => 1, + 'description' => '//ASOS0010 [03/40] - "ASOS.r01" yEnc ::: //FFTT0010 (01/22) "FFTT.r10" yEnc', + 'ordinal' => 60, + ), + 64 => + array ( + 'id' => 65, + 'group_regex' => '^alt\\.binaries\\.audiobooks$', + 'regex' => '/^(?P.+) \\[New Post\\] \\[\\d+\\/\\d+\\] ".+" yEnc$/', + 'status' => 1, + 'description' => '//Christopher Moore - Practrcal Demonkeeping (1992) [New Post] [04/15] "Christopher Moore - Practical Demonkeeping 01.mp3" yEnc', + 'ordinal' => 65, + ), + 65 => + array ( + 'id' => 66, + 'group_regex' => '^alt\\.binaries\\.audiobooks$', + 'regex' => '/^(?P.+) NMR \\[\\d+\\/\\d+\\] ".+" yEnc$/', + 'status' => 1, + 'description' => '//Christopher Moore - Coyote Blue (1994) NMR [04/17] "Christopher Moore - Coyote Blue 01.mp3" yEnc', + 'ordinal' => 70, + ), + 66 => + array ( + 'id' => 67, + 'group_regex' => '^alt\\.binaries\\.audiobooks$', + 'regex' => '/^(?P.+\\(\\d{4}\\)) \\[\\d+\\/\\d+\\] ".+" yEnc$/', + 'status' => 1, + 'description' => '//Christopher Moore - Island of the Sequined Love Nun (1997) [09/19] "Christopher Moore - Island of the Sequined Love Nun 06.mp3" yEnc', + 'ordinal' => 75, + ), + 67 => + array ( + 'id' => 68, + 'group_regex' => '^alt\\.binaries\\.audiobooks$', + 'regex' => '/^NR - (?P.+) - \\[\\d+\\/\\d+\\] - ".+" yEnc$/', + 'status' => 1, + 'description' => '//NR - Jonathan Maberry - Extinction Machine - [26/98] - "Extinction Machine - 26-89.mp3" yEnc', + 'ordinal' => 80, + ), + 68 => + array ( + 'id' => 69, + 'group_regex' => '^alt\\.binaries\\.audiobooks$', + 'regex' => '/^\\[(?P.+)\\] - \\[\\d+\\/\\d+\\] - ".+" yEnc$/', + 'status' => 1, + 'description' => '//[Seizing the Enigma - David Kahn (Unabridged)(NMR)] - [06/29] - "DKSTE.part03.rar" yEnc', + 'ordinal' => 85, + ), + 69 => + array ( + 'id' => 70, + 'group_regex' => '^alt\\.binaries\\.audiobooks$', + 'regex' => '/\\[\\d+\\/\\d+\\] - "(?P.+) - \\d+ -.+-.+" yEnc$/', + 'status' => 1, + 'description' => '//[116/194] - "David Baldacci - SK 03 Simple Genius - 21 - SK 03 Simple Genius - 021.mp3" yEnc', + 'ordinal' => 90, + ), + 70 => + array ( + 'id' => 71, + 'group_regex' => '^alt\\.binaries\\.audiobooks$', + 'regex' => '/^(?P[\\s\\w\\d-]+) \\[\\d+\\/\\d+\\][ -]+".+" yEnc$/', + 'status' => 1, + 'description' => '//Michael Moss - Salt Sugar Fat - How the Food Giants Hooked Us [03/20] "Salt Sugar Fat - How the Food Giants Hooked Us 01.mp3" yEnc', + 'ordinal' => 95, + ), + 71 => + array ( + 'id' => 72, + 'group_regex' => '^alt\\.binaries\\.audiobooks$', + 'regex' => '/^\\((?PTTC Audio - .+)\\) \\[\\d+\\/\\d+\\] - ".+" yEnc$/', + 'status' => 1, + 'description' => '//(TTC Audio - Impossible - Physics Beyond the Edge) [01/34] - "TTC Audio - Impossible - Physics Beyond the Edge.sfv" yEnc', + 'ordinal' => 100, + ), + 72 => + array ( + 'id' => 73, + 'group_regex' => '^alt\\.binaries\\.audiobooks$', + 'regex' => '/^(?PTTC Audio - .+)\\)\\s\\(.+\\[\\d+\\/\\d+\\] - ".+" yEnc$/', + 'status' => 1, + 'description' => '//TTC Audio - Impossible - Physics Beyond the Edge) (proper pars) [0/8] - "(proper par2s) TTC Audio - Impossible - Physics Beyond the Edge.nzb" yEnc', + 'ordinal' => 105, + ), + 73 => + array ( + 'id' => 74, + 'group_regex' => '^alt\\.binaries\\.audio\\.warez$', + 'regex' => '/^(Re: )?\\[.+?\\]-\\[\\d+\\]-\\[(?P.+?)\\]-\\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//[#nzbx.audio/EFnet]-[1681]-[MagicScore.Note.v7.084-UNION]-[02/12] - "u-msn7.r00" yEnc', + 'ordinal' => 5, + ), + 74 => + array ( + 'id' => 75, + 'group_regex' => '^alt\\.binaries\\.audio\\.warez$', + 'regex' => '/^(?P[\\w.-]+) ?\\[\\d+( of |\\/)\\d+\\] ".+?" yEnc$/', + 'status' => 1, + 'description' => '//MacProVideo.com.Pro.Tools8.101.Core.Pro.Tools8.TUTORiAL-DYNAMiCS [2 of 50] "dyn-mpvprtls101.sfv" yEnc ::: //Native.Instruments.Komplete.7.VSTi.RTAS.AU.DVDR.D02-DYNAMiCS[01/13] - "dyn.par2" yEnc ::: //Native.Instruments.Komplete.7.VSTi.RTAS.AU.DVDR.DYNAMiCS.NZB.ONLY [02/13] - "dyn.vol0000+001.PAR2" yEnc', + 'ordinal' => 10, + ), + 75 => + array ( + 'id' => 76, + 'group_regex' => '^alt\\.binaries\\.audio\\.warez$', + 'regex' => '/^REQ : .+? ~ (?P.+?) \\[\\d+ of \\d+\\] ".+?" yEnc$/', + 'status' => 1, + 'description' => '//REQ : VSL Stuff ~ Here\'s PreSonus Studio One 1.5.2 for OS X [16 of 22] "a-p152x.rar" yEnc', + 'ordinal' => 15, + ), + 76 => + array ( + 'id' => 77, + 'group_regex' => '^alt\\.binaries\\.audio\\.warez$', + 'regex' => '/^(?P[a-zA-Z0-9].+?) - \\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Eminem - Recovery (2010) - [1/1] - "Eminem - Recovery (2010).rar" yEnc', + 'ordinal' => 20, + ), + 77 => + array ( + 'id' => 78, + 'group_regex' => '^alt\\.binaries\\.audio\\.warez$', + 'regex' => '/^\\(\\?{4}\\) \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(????) [1/1] - "Dust in the Wind - the Violin Solo.rar" yEnc', + 'ordinal' => 25, + ), + 78 => + array ( + 'id' => 79, + 'group_regex' => '^alt\\.binaries\\.audio\\.warez$', + 'regex' => '/^(?P.+?) \\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Native Instruments Battery 3 incl Library ( VST DX RTA )( windows ) Libraries [1/1] - "Native Instruments Battery 2 + 3 SERIAL KEY KEYGEN.nfo" yEnc', + 'ordinal' => 30, + ), + 79 => + array ( + 'id' => 80, + 'group_regex' => '^alt\\.binaries\\.b4e$', + 'regex' => '/^"(?PB4E-vip\\d+)\\..+?" yEnc$/', + 'status' => 1, + 'description' => '//"B4E-vip2851.r83" yEnc', + 'ordinal' => 5, + ), + 80 => + array ( + 'id' => 81, + 'group_regex' => '^alt\\.binaries\\.b4e$', + 'regex' => '/^\\[\\d+\\/\\d+\\] - "(?P.+?) \\(.+?" yEnc$/', + 'status' => 1, + 'description' => '//[02/12] - "The.Call.GERMAN.2013.DL.AC3.Dubbed.720p.BluRay.x264 (Avi-RiP ).rar" yEnc', + 'ordinal' => 10, + ), + 81 => + array ( + 'id' => 82, + 'group_regex' => '^alt\\.binaries\\.b4e$', + 'regex' => '/^- "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//- "as-jew3.vol03+3.PAR2" - yEnc', + 'ordinal' => 15, + ), + 82 => + array ( + 'id' => 83, + 'group_regex' => '^alt\\.binaries\\.barbarella$', + 'regex' => '/^(?P[a-zA-Z0-9].+?) - \\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//ACDSee.Video.Converter.Pro.v3.5.41.Incl.Keymaker-CORE - [1/7] - "ACDSee.Video.Converter.Pro.v3.5.41.Incl.Keymaker-CORE.par2" yEnc', + 'ordinal' => 5, + ), + 83 => + array ( + 'id' => 84, + 'group_regex' => '^alt\\.binaries\\.barbarella$', + 'regex' => '/^(?P[\\w.-]+)\\s+-\\s+".+?" yEnc$/', + 'status' => 1, + 'description' => '//Die.Nacht.Der.Creeps.THEATRICAL.GERMAN.1986.720p.BluRay.x264-GH - "gh-notcreepskf720.nfo" yEnc ::: //The.Fast.and.the.Furious.Tokyo.Dr', + 'ordinal' => 10, + ), + 84 => + array ( + 'id' => 85, + 'group_regex' => '^alt\\.binaries\\.barbarella$', + 'regex' => '/^(\\[[A-Za-z]+\\]\\.|reup\\.)?(?P[a-zA-Z0-9].+?)([\\^<> ]+give-me-all\\.org[\\^<> ]+|[\\^<> ]+)DRM[\\^<> ]+.+? - \\(\\d+\\/\\d+\\) ".+?" - .+? yEnc$/', + 'status' => 1, + 'description' => '//CorelDRAW Technical Suite X6-16.3.0.1114 x32-x64<><>DRM<><> - (10/48) "CorelDRAW Technical Suite X6-16.3.0.1114 x32-x64.part09.rar" - 2,01 GB - yEnc ::: //AnyDVD_7.1.9.3_-_HD-BR - Beta<>give-me-all.org<>DRM<><> - (1/3) "AnyDVD_7.1.9.3_-_HD-BR - Beta.par2" - 14,53 MB - yEnc ::: //Android Softarchive.net Collection Pack 27^^give-me-all.org^^^^DRM^^^^ - (01/26) "Android Softarchive.net Collection Pack 27.par2" - 1,01 GB - yEnc ::: //WIN7_ULT_SP1_x86_x64_IE10_19_05_13_TRIBAL <> give-me-all.org <> DRM <> <> PW <> - (154/155) "WIN7_ULT_SP1_x86_x64_IE10_19_05_13_TRIBAL.vol57+11.par2" - 7,03 GB - yEnc ::: //[Android].Ultimate.iOS7.Apex.Nova.Theme.v1.45 <> DRM <> - (1/3) "[Android].Ultimate.iOS7.Apex.Nova.Theme.v1.45.par2" - 21,14 MB - yEnc', + 'ordinal' => 15, + ), + 85 => + array ( + 'id' => 86, + 'group_regex' => '^alt\\.binaries\\.barbarella$', + 'regex' => '/^\\(\\d+\\/\\d+\\) - .+? - "(?P.+?)( \\(\\d+\\))?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/', + 'status' => 1, + 'description' => '//(004/114) - Description - "Pluralsight.net XAML Patterns (10).rar" - 532,92 MB - yEnc', + 'ordinal' => 20, + ), + 86 => + array ( + 'id' => 87, + 'group_regex' => '^alt\\.binaries\\.barbarella$', + 'regex' => '/^\\(\\d+\\/\\d+\\)( -)? ".+?" - \\d+[,.]\\d+ [mMkKgG][bB] - (?P.+?) yEnc$/', + 'status' => 1, + 'description' => '//(01/12) - "TransX - Living on a Video 1993.part01.rar" - 561,55 MB - TransX - Living on a Video 1993.[Lossless] Highh Quality yEnc ::: //(59/81) "1973 .Lee.Jun.Fan.DVD9.untouched.z46" - 7,29 GB - Lee.Jun.Fan.sein.Film.DVD9.untouched yEnc', + 'ordinal' => 25, + ), + 87 => + array ( + 'id' => 88, + 'group_regex' => '^alt\\.binaries\\.barbarella$', + 'regex' => '/^>>> www\\.lords-of-usenet\\.org <<<.+? "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") .+? \\[\\d+\\/\\d+\\] - .+? yEnc$/', + 'status' => 1, + 'description' => '//>>> www.lords-of-usenet.org <<< "Der Schuh Des Manitu.par2" DVD5 [001/158] - 4,29 GB yEnc', + 'ordinal' => 30, + ), + 88 => + array ( + 'id' => 89, + 'group_regex' => '^alt\\.binaries\\.barbarella$', + 'regex' => '/^.+? (-|\\(PW\\))\\s+\\[.+? -\\] \\[\\d+[,.]\\d+ [mMkKgG][bB]\\] \\[\\d+\\/\\d+\\] "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//NEUES 4y - [@ usenet-4all.info - powered by ssl.news -] [5,58 GB] [002/120] "DovakinPack.part002.rar" yEnc ::: //NEUES 4y (PW) [@ usenet-4all.info - powered by ssl.news -] [7,05 GB] [014/152] "EngelsGleich.part014.rar" yEnc', + 'ordinal' => 35, + ), + 89 => + array ( + 'id' => 90, + 'group_regex' => '^alt\\.binaries\\.barbarella$', + 'regex' => '/^([a-zA-Z0-9].+?\\s{2,}|Old Dad uppt\\s+)(?P.+?) \\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Old Dad uppt Die Schatzinsel Teil 1+Teil2 AC3 DVD Rip German XviD Wp 01/33] - "upp11.par2" yEnc ::: //Old Dad uppt Scary Movie5 WEB RiP Line XviD German 01/24] - "Scary Movie 5.par2" yEnc', + 'ordinal' => 40, + ), + 90 => + array ( + 'id' => 91, + 'group_regex' => '^alt\\.binaries\\.barbarella$', + 'regex' => '/^.+?\\s{2,}\\d+[,.]\\d+ [mMkKgG][bB]\\s{2,}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")\\s{2,}(\\d+ B|\\d+[,.]\\d+ [mMkKgG][bB]) yEnc$/', + 'status' => 1, + 'description' => '//>>> 20,36 MB "Winamp.Pro.v5.70.3392.Incl.Keygen-FFF.par2" 552 B yEnc ::: //..:[DoAsYouLike]:.. 9,64 MB "Snooper 1.39.5.par2" 468 B yEnc', + 'ordinal' => 45, + ), + 91 => + array ( + 'id' => 92, + 'group_regex' => '^alt\\.binaries\\.barbarella$', + 'regex' => '/^\\(.+?\\) - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(MKV - DVD - Rip - German - English - Italiano) - "CALIGULA (1982) UNCUT.sfv" yEnc', + 'ordinal' => 50, + ), + 92 => + array ( + 'id' => 93, + 'group_regex' => '^alt\\.binaries\\.barbarella$', + 'regex' => '/^"(?P[a-z0-9]+)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//"sre56565ztrtzuzi8inzufft.par2" yEnc', + 'ordinal' => 55, + ), + 93 => + array ( + 'id' => 94, + 'group_regex' => '^alt\\.binaries\\.big$', + 'regex' => '/^(?P[\\w.-]+) - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Girls.against.Boys.2012.German.720p.BluRay.x264-ENCOUNTERS - "encounters-giagbo_720p.nfo" yEnc', + 'ordinal' => 5, + ), + 94 => + array ( + 'id' => 95, + 'group_regex' => '^alt\\.binaries\\.big$', + 'regex' => '/^(?P[a-z]{3,}) - \\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//wtvrwschdhfthj - [001/246] - "dtstchhtmrrnvn.par2" yEnc ::: //oijhuiurfjvbklk - [01/18] - "tb5-3ioewr90f.par2" yEnc', + 'ordinal' => 10, + ), + 95 => + array ( + 'id' => 96, + 'group_regex' => '^alt\\.binaries\\.big$', + 'regex' => '/^\\(\\d+\\/\\d+\\) - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(08/22) - "538D7B021B362A4300D1C0D84DD17E6D.r06" yEnc', + 'ordinal' => 15, + ), + 96 => + array ( + 'id' => 97, + 'group_regex' => '^alt\\.binaries\\.big$', + 'regex' => '/^\\(\\?{4}\\) \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(????) [02/71] - "Lasting Weep (1969-1971).part.par2" yEnc', + 'ordinal' => 20, + ), + 97 => + array ( + 'id' => 98, + 'group_regex' => '^alt\\.binaries\\.big$', + 'regex' => '/^\\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB] -(re)? yEnc$/', + 'status' => 1, + 'description' => '//(01/59) "ThienSuChungQuy_II_E16.avi.001" - 1,49 GB - yEnc ::: //(058/183) "LS_HoangChui_2xdvd5.part057.rar" - 8,36 GB -re yEnc', + 'ordinal' => 25, + ), + 98 => + array ( + 'id' => 99, + 'group_regex' => '^alt\\.binaries\\.big$', + 'regex' => '/^(?P\\[[a-zA-Z]+\\] .+?) - \\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//[AoU] Upload#00287 - [04/43] - "Upload-ZGT1-20130525.part03.rar" yEnc', + 'ordinal' => 30, + ), + 99 => + array ( + 'id' => 100, + 'group_regex' => '^alt\\.binaries\\.big$', + 'regex' => '/^\\([a-z]+\\) \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(nate) [01/27] - "nate_light_13.05.23.par2" yEnc', + 'ordinal' => 35, + ), + 100 => + array ( + 'id' => 101, + 'group_regex' => '^alt\\.binaries\\.big$', + 'regex' => '/^""(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")" yEnc$/', + 'status' => 1, + 'description' => '//""Absolute Database Component for BCBuilder 4-6 MultiUser Edit 4.85.rar"" yEnc', + 'ordinal' => 40, + ), + 101 => + array ( + 'id' => 102, + 'group_regex' => '^alt\\.binaries\\.big$', + 'regex' => '/^(?P[a-f0-9]{32}) - \\(\\d+\\/\\d+\\) - "[a-f0-9]{32}.+?" yEnc$/', + 'status' => 1, + 'description' => '//781e1d8dccc641e8df6530edb7679a0e - (26/30) - "781e1d8dccc641e8df6530edb7679a0e.rar" yEnc', + 'ordinal' => 45, + ), + 102 => + array ( + 'id' => 103, + 'group_regex' => '^alt\\.binaries\\.bloaf$', + 'regex' => '/^(?P[a-f0-9]{32}) - \\(\\d+\\/\\d+\\) - "[a-f0-9]{32}.+?" yEnc$/', + 'status' => 1, + 'description' => '//36c1d5d4eaf558126c67f00be46f77b6 - (01/22) - "36c1d5d4eaf558126c67f00be46f77b6.par2" yEnc', + 'ordinal' => 5, + ), + 103 => + array ( + 'id' => 104, + 'group_regex' => '^alt\\.binaries\\.bloaf$', + 'regex' => '/^\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB] .+? usenet-space.+?yEnc$/', + 'status' => 1, + 'description' => '//[10/17] - "EGk13kQ1c8.part09.rar" - 372.48 MB <-> usenet-space-cowboys.info <-> powered by secretusenet.com <-> yEnc', + 'ordinal' => 10, + ), + 104 => + array ( + 'id' => 105, + 'group_regex' => '^alt\\.binaries\\.bloaf$', + 'regex' => '/^\\((?P.+?)\\) - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//(Neu bei Bitfighter vom 23-07-2013) - "01 - Sido - Bilder Im Kopf.mp3" yEnc', + 'ordinal' => 15, + ), + 105 => + array ( + 'id' => 106, + 'group_regex' => '^alt\\.binaries\\.bloaf$', + 'regex' => '/^\\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/', + 'status' => 1, + 'description' => '//(2/8) "Mike.und.Molly.S01E22.Maennergespraeche.GERMAN.DL.DUBBED.720p.BluRay.x264-TVP.part1.rar" - 1023,92 MB - yEnc', + 'ordinal' => 20, + ), + 106 => + array ( + 'id' => 107, + 'group_regex' => '^alt\\.binaries\\.bloaf$', + 'regex' => '/^.+? (?P-|\\(PW\\))\\s+\\[.+? -\\] \\[\\d+[,.]\\d+ [mMkKgG][bB]\\] \\[\\d+\\/\\d+\\] "([\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//4y (PW) [@ usenet-4all.info - powered by ssl.news -] [27,35 GB] [001/118] "1f8867bb6f89491793d3.part001.rar" yEnc', + 'ordinal' => 25, + ), + 107 => + array ( + 'id' => 108, + 'group_regex' => '^alt\\.binaries\\.bloaf$', + 'regex' => '/^(\\[[A-Za-z]+\\]\\.)?(?P[a-zA-Z0-9].+?)([\\^<> ]+give-me-all\\.org[\\^<> ]+|[\\^<> ]+)DRM[\\^<> ]+.+? - \\(\\d+\\/\\d+\\)\\s+".+?" - .+? yEnc$/', + 'status' => 1, + 'description' => '//Bennos Special Tools DVD - Die Letzte <> DRM <><> PW <> - (002/183) "Bennos Special Tools DVD - Die Letzte.nfo" - 8,28 GB - yEnc', + 'ordinal' => 30, + ), + 108 => + array ( + 'id' => 109, + 'group_regex' => '^alt\\.binaries\\.bloaf$', + 'regex' => '/^\\(\\d+\\/\\d+\\) - (?P.+?) ?- ".+?" - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/', + 'status' => 1, + 'description' => '//(1/9) - CyberLink.PhotoDirector.4.Ultra.4.0.3306.Multilingual - "CyberLink.PhotoDirector.4.Ultra.4.0.3306.Multilingual.par2" - 154,07 MB - yEnc ::: //(1/5) - Mac.DVDRipper.Pro.4.0.8.Mac.OS.X- "Mac.DVDRipper.Pro.4.0.8.Mac.OS.X.rar" - 24,12 MB - yEnc', + 'ordinal' => 35, + ), + 109 => + array ( + 'id' => 110, + 'group_regex' => '^alt\\.binaries\\.bloaf$', + 'regex' => '/^\\[\\d+\\/\\d+ (?P.+?)\\..+?" yEnc$/', + 'status' => 1, + 'description' => '//[3/3 Helene Fischer - Die Biene Maja 2013 MP3 Helene Fischer - Die Biene Maja 2013 MP3.mp3.vol0+1.PAR2" yEnc', + 'ordinal' => 40, + ), + 110 => + array ( + 'id' => 111, + 'group_regex' => '^alt\\.binaries\\.bloaf$', + 'regex' => '/^Uploader\\.Presents-(?P.+)[\\(\\[]\\d+\\/\\d+[\\)\\]]".+" yEnc$/', + 'status' => 1, + 'description' => '//Uploader.Presents-Mutter.und.Sohn.German.2013.DVDRiP.x264-XFi[01/27]"xf-mutterusohn.nfo" yEnc', + 'ordinal' => 45, + ), + 111 => + array ( + 'id' => 112, + 'group_regex' => '^alt\\.binaries\\.blu-ray$', + 'regex' => '/^"(?P\\d+\\.MK\\.[A-Z])\\..+?" yEnc$/', + 'status' => 1, + 'description' => '//"786936833607.MK.A.part086.rar" yEnc', + 'ordinal' => 5, + ), + 112 => + array ( + 'id' => 113, + 'group_regex' => '^alt\\.binaries\\.blu-ray$', + 'regex' => '/^\\(\\?{4}\\) \\[\\d+\\/\\d+\\] - "(?P[a-z0-9]+)\\..+?" yEnc$/', + 'status' => 1, + 'description' => '//(????) [001/107] - "260713thbldnstnsclw.par2" yEnc', + 'ordinal' => 10, + ), + 113 => + array ( + 'id' => 114, + 'group_regex' => '^alt\\.binaries\\.blu-ray$', + 'regex' => '/^\\[www\\..+?\\]-\\[(?P.+?)\\]-\\[\\d+\\/\\d+\\] ".+?" - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/', + 'status' => 1, + 'description' => '//[www.allyourbasearebelongtous.pw]-[The Place Beyond the Pines 2012 1080p US Blu-ray AVC DTS-HD MA 5.1-HDWinG]-[03/97] "tt1817273-us-hdwing-bd.r00" - 46.51 GB - yEnc', + 'ordinal' => 15, + ), + 114 => + array ( + 'id' => 115, + 'group_regex' => '^alt\\.binaries\\.blu-ray$', + 'regex' => '/^\\(\\d+\\/\\d+\\)(\\s+ -)? "(?P[a-zA-Z0-9]+?)\\d*\\..+?" - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/', + 'status' => 1, + 'description' => '//(01/71) - "EwRQCtU4BnaeXmT48hbg7bCn.par2" - 54,15 GB - yEnc ::: //(63/63) "dfbgfdgtghtghthgGPGEIBPBrwg34t05.rev" - 10.67 GB - yEnc', + 'ordinal' => 20, + ), + 115 => + array ( + 'id' => 116, + 'group_regex' => '^alt\\.binaries\\.blu-ray$', + 'regex' => '/^\\[\\d+\\/\\d+\\] - "(?P[a-zA-Z0-9]+)\\..+?" yEnc$/', + 'status' => 1, + 'description' => '//[01/67] - "O3tk4u681gd767Y.par2" yEnc', + 'ordinal' => 25, + ), + 116 => + array ( + 'id' => 117, + 'group_regex' => '^alt\\.binaries\\.blu-ray$', + 'regex' => '/^(?P[a-z0-9]+) \\[.+?\\] \\[.+?\\] \\[\\d+[,.]\\d+ [mMkKgG][bB]\\] \\[\\d+\\/\\d+\\] ".+?" yEnc$/', + 'status' => 1, + 'description' => '//209a212675ba31ca24a8 [usenet-4all.info] [powered by ssl-news] [21,59 GB] [002/223] "209a212675ba31ca24a8.part001.rar" yEnc', + 'ordinal' => 30, + ), + 117 => + array ( + 'id' => 118, + 'group_regex' => '^alt\\.binaries\\.blu-ray$', + 'regex' => '/^(?P[A-Z0-9]+) - "[a-z0-9]+\\..+?" yEnc$/', + 'status' => 1, + 'description' => '//TIS97CC - "tis97cc.par2" yEnc', + 'ordinal' => 35, + ), + 118 => + array ( + 'id' => 119, + 'group_regex' => '^alt\\.binaries\\.blu-ray$', + 'regex' => '/^AsianDVDClub\\.org - (?P.+) \\[\\d+\\/\\d+\\] - ".+" yEnc$/', + 'status' => 1, + 'description' => '//AsianDVDClub.org - Sengoku Basara: Season 2 (2010) AVC 1080p BD50+BD25 - Disc 1 of 2 [001/112] - "adc-71029a.nfo" yEnc', + 'ordinal' => 40, + ), + 119 => + array ( + 'id' => 120, + 'group_regex' => '^alt\\.binaries\\.blu-ray$', + 'regex' => '/^AsianDVDClub\\.org - (?P.+) ".+" yEnc$/', + 'status' => 1, + 'description' => '//AsianDVDClub.org - Laputa: Castle in the Sky (1986) AVC 1080p BD50 - File 001 of 113: "adc-laputa.nfo" yEnc', + 'ordinal' => 45, + ), + 120 => + array ( + 'id' => 121, + 'group_regex' => '^alt\\.binaries\\.blu-ray$', + 'regex' => '/^[\\w-\\. ]+[ _-]{0,3}[\\(\\[]\\d+\\/\\d+[\\)\\]][ _-]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//THE_PAC', + 'ordinal' => 50, + ), + 121 => + array ( + 'id' => 122, + 'group_regex' => '^alt\\.binaries\\.blu-ray$', + 'regex' => '/^[\\w-\\. ]+[ _-]{0,3}[\\(\\[]\\d+\\/\\d+[\\)\\]][ _-]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//LOST SEASON1 DISC4 REENCODED BD25 DJMASTURBEAT (151/154) "LOST SEASON1 DISC4 BD25 DJMASTURBEAT.vol3312+131.par2" - 26.91 GB - yEnc', + 'ordinal' => 55, + ), + 122 => + array ( + 'id' => 123, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^(?P[a-zA-Z0-9]+)\\[\\d+\\/\\d+\\] - "[a-zA-Z0-9]+\\..+?" yEnc$/', + 'status' => 1, + 'description' => '//4Etmo7uBeuTW[047/106] - "006dEbPcea29U6K.part046.rar" yEnc', + 'ordinal' => 5, + ), + 123 => + array ( + 'id' => 124, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^\\(PC-ISO\\)[-_\\s]{0,3}\\( (?P[\\w.,& \\()\\[\\]\\\'\\`-]{8,}?\\b) \\) \\[\\d+\\/\\d+\\][-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(PC-ISO) ( Trials.Fusion.Riders.of.the.Rustlands-SKIDROW ) [10/40] - "sr-tfrotr.part01.rar" yEnc', + 'ordinal' => 10, + ), + 124 => + array ( + 'id' => 125, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^\\( (?P[\\w. -]{8,}) \\)[-_\\s]{0,3}\\[\\d+\\/(\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//( Overlord II RELOADED ) - [013/112] - "rld-olii.part001.rar" yEnc', + 'ordinal' => 15, + ), + 125 => + array ( + 'id' => 126, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^\\(\\d+\\/\\d+\\)\\s+(- )?"(?P[a-zA-Z0-9]+)\\..+?" - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/', + 'status' => 1, + 'description' => '//(68/89) "dz1R2wT8hH1iQEA28gRvm.part67.rar" - 7,91 GB - yEnc ::: //(01/14) - "JrjCY4pUjQ9qUqQ7jx6k2VLF.par2" - 4,39 GB - yEnc', + 'ordinal' => 20, + ), + 126 => + array ( + 'id' => 127, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^\\((?P\\d+)\\) \\[\\d+\\/\\d+\\] - "\\d+\\..+?" yEnc$/', + 'status' => 1, + 'description' => '//(110320152518519) [22/78] - "110320152518519.part21.rar" yEnc', + 'ordinal' => 25, + ), + 127 => + array ( + 'id' => 128, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^(?P[a-zA-Z0-9]+) - \\[\\d+\\/\\d+\\] - "[a-zA-Z0-9]+\\..+?" yEnc$/', + 'status' => 1, + 'description' => '//1VSXrAZPD - [123/177] - "1VSXrAZPD.part122.rar" yEnc', + 'ordinal' => 30, + ), + 128 => + array ( + 'id' => 129, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^\\( (?P.+?) \\)\\s+\\( .+?\\) \\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//( Peter Gabriel Albums 24x +17 Singles = 71x cd By Dready Niek ) ( ** By Dready Niek ** ) [113/178] - "Peter Gabriel Albums 24x +17 Singles = 71CDs By Dready Niek (1977-2010).part112.rar" yEnc', + 'ordinal' => 35, + ), + 129 => + array ( + 'id' => 130, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^(?P[A-Za-z0-9].+? \\((19|20)\\d\\d\\)) "\\d{2}\\. .+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Tarja - Colours In The Dark (2013) "00. Tarja-Colours In The Dark.m3u" yEnc', + 'ordinal' => 40, + ), + 130 => + array ( + 'id' => 131, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^"(?P[a-zA-Z0-9]+)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\(\\d+\\/\\d+\\) - yEnc$/', + 'status' => 1, + 'description' => '//"BB636.part14.rar" - (15/39) - yEnc', + 'ordinal' => 45, + ), + 131 => + array ( + 'id' => 132, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^(?P[-a-zA-Z0-9 ]+) \\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Lutheria - FC Twente TV Special - Ze wilde op voetbal [16/49] - "Lutheria - FC Twente TV Special - Ze wilde op voetbal.part16.rar" yEnc', + 'ordinal' => 50, + ), + 132 => + array ( + 'id' => 133, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^(?P[-a-zA-Z0-9 ]+) - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Pee Mak Prakanong - 2013 - Thailand - ENG Subs - "Pee Mak Prakanong.2013.part22.rar" yEnc', + 'ordinal' => 55, + ), + 133 => + array ( + 'id' => 134, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^\\((\\?{4}|[a-zA-Z]+)\\) \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(????) [011/161] - "flynns-image-redux.part010.rar" yEnc ::: //(Dgpc) [000/110] - "Teen Wolf - Seizoen.3 - Dvd.2 (NLsub).nzb" yEnc', + 'ordinal' => 60, + ), + 134 => + array ( + 'id' => 135, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^\\("(?P[a-z0-9A-Z]+).+?" - \\d+[,.]\\d+ [mMkKgG][bB] -\\) ".+?" - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/', + 'status' => 1, + 'description' => '//("Massaladvd5Kilusadisc4S1.par2" - 4,55 GB -) "Massaladvd5Kilusadisc4S1.par2" - 4,55 GB - yEnc', + 'ordinal' => 65, + ), + 135 => + array ( + 'id' => 136, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//"par.4kW9beE.1.vol122+21.par2" yEnc', + 'ordinal' => 70, + ), + 136 => + array ( + 'id' => 137, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^.+?\\.(info|org)>+ - \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//brothers-of-usenet.info/.net <<>> - [01/19] - "Age.of.Dinosaurs.German.AC3.HDRip.x264-FuN.par2" yEnc ::: //>>>>>Hell-of-Usenet.org>>>>> - [01/35] - "Female.Agents.German.2008.AC3.DVDRip.XviD.iNTERNAL-VideoStar.par2" yEnc', + 'ordinal' => 75, + ), + 137 => + array ( + 'id' => 138, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[010/101] - "Bf56a8aR-20743f8D-Vf7a11fD-d7c6c0.part09.rar" yEnc ::: //[1/9] - "fdbvgdfbdfb.part.par2" yEnc', + 'ordinal' => 80, + ), + 138 => + array ( + 'id' => 139, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^\\[[A-Z]+\\] - \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[LB] - [063/112] - "RVL-GISSFBD.part063.rar" yEnc', + 'ordinal' => 85, + ), + 139 => + array ( + 'id' => 140, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^!!www\\.usenet4all\\.eu!![ _-]{0,3}(?P.+)\\[\\d+\\/\\d+\\][ _-]{0,3}("|#34;).+("|#34;) yEnc$/i', + 'status' => 1, + 'description' => '//!!www.usenet4all.eu!! - Acceptance.2009.COMPLETE.NTSC.DVDR-D0PE[001/100] - #34;d0pe-a.nfo#34; yEnc', + 'ordinal' => 90, + ), + 140 => + array ( + 'id' => 141, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^(?P[A-Za-z0-9][a-zA-Z0-9.-]{6,})\\s+- ".+" yEnc$/', + 'status' => 1, + 'description' => '//NCIS.S11E03.HDTV.x264-LOL - "NCIS.S11E03.HDTV.x264-LOL.part.par2" yEnc', + 'ordinal' => 95, + ), + 141 => + array ( + 'id' => 142, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^place2home\\.net - (?P.*?) - (\\[\\d+\\/\\d+\\] - )?".+?" yEnc$/i', + 'status' => 1, + 'description' => '//place2home.net - Call.of.Duty.Ghosts.XBOX360-iMARS - [095/101] - "imars-codghosts-360b.vol049+33.par2" yEnc ::: //Place2home.net - Diablo_III_USA_RF_XBOX360-PROTOCOL - "d3-ptc.r34" yEnc', + 'ordinal' => 100, + ), + 142 => + array ( + 'id' => 143, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^(REPOST: )?\\[scnzbefnet\\]\\[(\\d+)\\] (?P.+?) \\[\\d+\\/(\\d+\\]) - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//[scnzbefnet][500934] Super.Fun.Night.S01E09.720p.HDTV.X264-DIMENSION [1/19] - "bieber.109.720p-dimension.sfv" yEnc ::: //REPOST: [scnzbefnet][500025] Major.Crimes.S02E13.720p.HDTV.x264-IMMERSE [16/33] - "major.crimes.s02e13.720p.hdtv.x264-immerse.r24" yEnc', + 'ordinal' => 105, + ), + 143 => + array ( + 'id' => 144, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^\\[scnzbefnet\\] (?P.+?) \\[\\d+\\/(\\d+\\]) - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//[scnzbefnet] Murdoch.Mysteries.S07E09.HDTV.x264-KILLERS [1/20] - "murdoch.mysteries.s07e09.hdtv.x264-killers.r13" yEnc', + 'ordinal' => 110, + ), + 144 => + array ( + 'id' => 145, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^(\\((?P.+?)\\) \\[)\\d+(\\/\\d+] - ").+?" yEnc$/', + 'status' => 1, + 'description' => '//(Ancient.Aliens.S03E05.Aliens.and.Mysterious.Rituals.720p.HDTV.x264.AC3.2Ch.REPOST) [41/42] - "Ancient.Aliens.S03E05.Aliens.and.Mysterious.Rituals.720p.HDTV.x264.AC3.2Ch.REPOST.vol071+66.PAR2" yEnc', + 'ordinal' => 115, + ), + 145 => + array ( + 'id' => 146, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^\\(\\d+\\/\\d+\\) - \\[Lords-of-Usenet\\] <> presents (?P.+) -".+" - .+ yEnc$/i', + 'status' => 1, + 'description' => '//(01/48) - [Lords-of-Usenet] <> presents Sons.of.Anarchy.S02E03.Unten.am.Fluss.GERMAN.DUBBED.720p.BLURAY.x264-ZZGtv -"zzgtv-soa-s02e03.par2" - 1,84 GB', + 'ordinal' => 120, + ), + 146 => + array ( + 'id' => 147, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^Doobz (?P[a-zA-z-_]+) \\[\\d+\\/(\\d+\\]) - ".+([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Doobz Europa_Universalis_IV_Conquest_of_Paradise-FLT [10/54] - "flt-eucp.001" yEnc', + 'ordinal' => 125, + ), + 147 => + array ( + 'id' => 148, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^\\(aangemeld bij usenet collector\\) \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(aangemeld bij usenet collector) [001/125] - "Northern_Exposure_Season_1_dvd_1.par2" yEnc', + 'ordinal' => 130, + ), + 148 => + array ( + 'id' => 149, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB] .+usenet-space-cowboys\\.info.+ yEnc$/', + 'status' => 1, + 'description' => '//[15/16] - "Person.of.Interest.S03E09.480p.HDTV.x264-mSD.vol0+1.par2" - 177,28 MB <-> usenet-space-cowboys.info <-> powered by secretusenet.com <-> yEnc', + 'ordinal' => 135, + ), + 149 => + array ( + 'id' => 150, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^brothers-of-usenet\\.info.+ - \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//brothers-of-usenet.info&net-empfehlen-ssl-news.info Black Mirror s01e01 - Der wille des volkes - [09/15] - "Black Mirror - S01E01 - Der Wille des Volkes.vol00+01.par2" yEnc', + 'ordinal' => 140, + ), + 150 => + array ( + 'id' => 151, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/^\\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB] .+yEnc$/', + 'status' => 1, + 'description' => '//(024/264) "Enf.S04E02.G.D.H.X-M.vol51+46.PAR2" - 8,27 GB -Enf.S04.G.D.H.X yEnc', + 'ordinal' => 145, + ), + 151 => + array ( + 'id' => 152, + 'group_regex' => '^alt\\.binaries\\.boneless$', + 'regex' => '/.*"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//- "Auction Hunters S04E04.HDTV.x264-StarryNights1.nzb" yEnc', + 'ordinal' => 150, + ), + 152 => + array ( + 'id' => 153, + 'group_regex' => '^alt\\.binaries\\.british\\.drama$', + 'regex' => '/^(?P[a-zA-Z0-9].+? \\[XviD\\]) \\[\\d\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Coronation Street 03.05.2012 [XviD] [01/23] - "coronation.street.03.05.12.[ws.pdtv].par2" yEnc ::: //Coronation Street 04.05.2012 - Part 1 [XviD] [01/23] - "coronation.street.04.05.12.part.1.[ws.pdtv].par2" yEnc', + 'ordinal' => 5, + ), + 153 => + array ( + 'id' => 154, + 'group_regex' => '^alt\\.binaries\\.british\\.drama$', + 'regex' => '/^(?P[a-zA-Z0-9]+ .+? (S\\d+)?E\\d+-\\d\\d) \\[\\d+\\/\\d+\\] - "\\d(\\d |\\.).+?" yEnc$/', + 'status' => 1, + 'description' => '//The Prisoner E06-09 [001/152] - "06 The General.mkv.001" yEnc ::: //Danger Man S2E05-08 [075/149] - "7.The colonel\'s daughter.avi.001" yEnc', + 'ordinal' => 10, + ), + 154 => + array ( + 'id' => 155, + 'group_regex' => '^alt\\.binaries\\.british\\.drama$', + 'regex' => '/^.+?[-_\\s]{0,3}\\d+[xX]\\d+[-_\\s]{0,3}.+?\\[\\d+\\/\\d+\\][-_\\s]{0,3}.+?"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Wizards Vs Aliens - 1x06 - Rebel Magic, Part Two [XviD][00/27] - "wizards.vs.aliens.106.rebel.magic.part.two.[ws.pdtv].nzb" yEnc', + 'ordinal' => 15, + ), + 155 => + array ( + 'id' => 156, + 'group_regex' => '^alt\\.binaries\\.british\\.drama$', + 'regex' => '/^[a-zA-Z0-9-\\.]+ - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Vera.3x03.Young.Gods.720p.HDTV.x264-FoV - "vera.3x03.young_gods.720p_hdtv_x264-fov.r00" yEnc', + 'ordinal' => 20, + ), + 156 => + array ( + 'id' => 157, + 'group_regex' => '^alt\\.binaries\\.british\\.drama$', + 'regex' => '/^(?P.+ \\d+x\\d+.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) yEnc$/', + 'status' => 1, + 'description' => '//Heartbeat 9x23 Wise Guys.avi.015 yEnc', + 'ordinal' => 25, + ), + 157 => + array ( + 'id' => 158, + 'group_regex' => '^alt\\.binaries\\.british\\.drama$', + 'regex' => '/^(?P.+ S\\d+E\\d+)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"([\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Minder S10E10 [00/52] - "S10E10.nzb" yEnc', + 'ordinal' => 30, + ), + 158 => + array ( + 'id' => 159, + 'group_regex' => '^alt\\.binaries\\.british\\.drama$', + 'regex' => '/^.+File \\d+ of \\d+ - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Rosemary & Thyme.106..The Tree of Death....Read txt file for more info about this posting - File 03 of 51 - "Rosemary & Thyme.106.The Tree of Death.part01.rar" yEnc', + 'ordinal' => 35, + ), + 159 => + array ( + 'id' => 160, + 'group_regex' => '^alt\\.binaries\\.british\\.drama$', + 'regex' => '/^.+\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//The.Tudors.S01E04.2007.720p[33/57] - "The.Tudors.S01E04.2007.720p.part31.rar" yEnc', + 'ordinal' => 40, + ), + 160 => + array ( + 'id' => 161, + 'group_regex' => '^alt\\.binaries\\.british\\.drama$', + 'regex' => '/^(?P[\\w. &\\()-]{8,}?\\b)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) yEnc$/', + 'status' => 1, + 'description' => '//Happy_Halloween_The Ice House (1978).par2 yEnc', + 'ordinal' => 45, + ), + 161 => + array ( + 'id' => 162, + 'group_regex' => '^alt\\.binaries\\.british\\.drama$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//"Rosemary & Thyme - 2x02 Orpheus In The Undergrowth.par2" yEnc', + 'ordinal' => 50, + ), + 162 => + array ( + 'id' => 163, + 'group_regex' => '^alt\\.binaries\\.british\\.drama$', + 'regex' => '/^\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[01/45] - "Minder S01E08.sfv" yEnc', + 'ordinal' => 55, + ), + 163 => + array ( + 'id' => 164, + 'group_regex' => '^alt\\.binaries\\.bungabunga$', + 'regex' => '/^[\\[(?P]\\d+\\/\\d+[\\])] - "([A-Z0-9].{2,}?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB]( -)? yEnc$/', + 'status' => 1, + 'description' => '//[01/29] - "Bellflower.2011.German.AC3.BDRip.XviD-EPHEMERiD.par2" - 1,01 GB yEnc ::: //(3/9) - "Microsoft Frontpage 2003 - 4 Town-Up from Kraenk.rar.par2" - 181,98 MB - yEnc', + 'ordinal' => 5, + ), + 164 => + array ( + 'id' => 165, + 'group_regex' => '^alt\\.binaries\\.cavebox$', + 'regex' => '/^\\(www\\.Thunder-News\\.org\\) ?\\)(?P.+)\\( \\(Sponsored.+\\)[ _-]{0,3}\\(\\d+\\/\\d+\\)[ _-]{0,3}("|#34;).+("|#34;) yEnc$/i', + 'status' => 1, + 'description' => '//(www.Thunder-News.org) )Panamericana.E02.Von.Alaska.nach.Feuerland.GERMAN.DOKU.WS.dTV.XViD-SiTiN( (Sponsored by AstiNews) - (05/34) - #34;sitin-panamericanae02-xvid.r00#34; yEnc', + 'ordinal' => 5, + ), + 165 => + array ( + 'id' => 166, + 'group_regex' => '^alt\\.binaries\\.cats$', + 'regex' => '/^(?P[a-zA-Z0-9]{5,}) ?\\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Pb7cvL3YiiOu06dsYPzEfpSvvTul[02/37] - "Fkq33mlTVyHHJLm0gJNU.par2" yEnc ::: //DLJorQ37rMDvc [01/16] - "DLJorQ37rMDvc.part1.rar" yEnc', + 'ordinal' => 5, + ), + 166 => + array ( + 'id' => 167, + 'group_regex' => '^alt\\.binaries\\.cbt$', + 'regex' => '/^\\((?P[a-zA-Z0-9-\\.\\&_ ]+)\\) \\[\\d+\\/(\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(WinEdt.v8.0.Build.20130513.Cracked-EAT) [01/10] - "eatwedt8.nfo" yEnc', + 'ordinal' => 5, + ), + 167 => + array ( + 'id' => 168, + 'group_regex' => '^alt\\.binaries\\.cbt$', + 'regex' => '/^\\[ (?P[a-zA-Z0-9-\\.\\&\\\\(\\)\\,_ ]+) \\] [a-zA-Z0-9]{3,4}\\.[a-zA-Z0-9]{3,4} \\(\\d+\\/(\\d+\\)) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[ ABCAsiaPac', + 'ordinal' => 10, + ), + 168 => + array ( + 'id' => 169, + 'group_regex' => '^alt\\.binaries\\.cbt$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") {1,2}yEnc$/', + 'status' => 1, + 'description' => '//"MythBusters S10E02 720p HDTV x264-DHD.rar" yEnc', + 'ordinal' => 15, + ), + 169 => + array ( + 'id' => 170, + 'group_regex' => '^alt\\.binaries\\.cbt$', + 'regex' => '/^(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) {1,2}yEnc$/', + 'status' => 1, + 'description' => '//2nd Annual American CountryMusicAwards 2011 HDTV XviD 2HD.rar yEnc', + 'ordinal' => 20, + ), + 170 => + array ( + 'id' => 171, + 'group_regex' => '^alt\\.binaries\\.cbt$', + 'regex' => '/^\\(\\?+\\) \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") Sayco yEnc$/', + 'status' => 1, + 'description' => '//(????) [005/358] - "WLAN - professionell absichern.rar" Sayco yEnc', + 'ordinal' => 25, + ), + 171 => + array ( + 'id' => 172, + 'group_regex' => '^alt\\.binaries\\.cbts$', + 'regex' => '/"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//"softWoRx.Suite.2.0.0.25.x32-TFT.rar" yEnc', + 'ordinal' => 5, + ), + 172 => + array ( + 'id' => 173, + 'group_regex' => '^alt\\.binaries\\.cd\\.image$', + 'regex' => '/^\\[www\\..+?\\]-\\[(?P.+?)\\]-\\[\\d+\\/\\d+\\] ".+?" - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/', + 'status' => 1, + 'description' => '//[www.drlecter.tk]-[The_Night_of_the_Rabbit-FLT]-[01/67] "Dr.Lecter.nfo" - 5.61 GB - yEnc', + 'ordinal' => 5, + ), + 173 => + array ( + 'id' => 174, + 'group_regex' => '^alt\\.binaries\\.cd\\.image$', + 'regex' => '/^(?P[a-zA-Z0-9.-]{10,}) -( PC GAME -| [A-Z0-9\\[\\]]+ -)? \\[\\d+\\/\\d+\\] - ".+?" - (.+? - (\\d+[,.]\\d+ [mMkKgG][bB] - )?)?yEnc$/', + 'status' => 1, + 'description' => '//Slender.The.Arrival-WaLMaRT.PC - [01/26] - "wmt-stal.nfo" - yEnc ::: //The.Night.of.the.Rabbit-FLT - [03/66] - "flt-notr.r00" - FAiRLIGHT - 5,10 GB - yEnc ::: //Resident.Evil.Revelations-FLT - PC GAME - [03/97] - "Resident.Evil.Revelations-FLT.r00" - FAiRLIGHT - yEnc ::: //Afterfall.Insanity.Dirty.Arena.Edition-WaLMaRT - [MULTI6][PCDVD] - [02/45] - "wmt-adae.r00" - PC GAME - yEnc', + 'ordinal' => 10, + ), + 174 => + array ( + 'id' => 175, + 'group_regex' => '^alt\\.binaries\\.cd\\.image$', + 'regex' => '/^(PC Game - )?\\[\\d+\\/\\d+\\] - (?P.+?) - ".+?" -( .+? -)? yEnc$/', + 'status' => 1, + 'description' => '//[01/46] - Crashtime 5 Undercover RELOADED - "rld-ct5u.nfo" - PC - yEnc ::: //[01/76] - Of.Orcs.And.Men-SKIDROW - "sr-oforcsandmen.nfo" - yEnc ::: //PC Game - [01/71] - MotoGP 13-RELOADED Including NoDVD Fix - "MotoGP 13-RELOADED Including NoDVD Fix nfo" - yEnc', + 'ordinal' => 15, + ), + 175 => + array ( + 'id' => 176, + 'group_regex' => '^alt\\.binaries\\.cd\\.image$', + 'regex' => '/^(?P[A-Za-z0-9][a-zA-Z0-9: ]{8,}(-[a-zA-Z]+)?)( \\(.+?\\)| - [\\[A-Z0-9\\]]+)? - \\[\\d+\\/\\d+\\] - ".+?" - .+? - yEnc$/', + 'status' => 1, + 'description' => '//Magrunner Dark Pulse FLT (FAiRLIGHT) - [02/70] - "flt-madp par2" - PC - yEnc ::: //MotoGP 13 RELOADED - [01/71] - "rld-motogp13 nfo" - PC - yEnc ::: //Dracula 4: Shadow of the Dragon FAiRLIGHT - [01/36] - "flt-drc4 nfo" - PC - yEnc', + 'ordinal' => 20, + ), + 176 => + array ( + 'id' => 177, + 'group_regex' => '^alt\\.binaries\\.cd\\.image$', + 'regex' => '/^(\\[[A-Z ]+\\] - )?(?P[a-zA-Z0-9.-]{10,}) - ".+?" - \\[\\d+\\/\\d+\\] - yEnc$/', + 'status' => 1, + 'description' => '//[NEW PC GAME] - Lumber.island-WaLMaRT - "wmt-lisd.nfo" - [01/18] - yEnc ::: //Trine.2.Complete.Story-SKIDROW - "sr-trine2completestory.nfo" - [01/78] - yEnc', + 'ordinal' => 25, + ), + 177 => + array ( + 'id' => 178, + 'group_regex' => '^alt\\.binaries\\.cd\\.image$', + 'regex' => '/^Uploader\\.Presents-(?P.+)[\\(\\[]\\d+\\/\\d+\\]".+" yEnc$/', + 'status' => 1, + 'description' => '//Uploader.Presents-Metal.Gear.Rising.Revengeance-RELOADED(51/65]"rld-megerire.r48" yEnc', + 'ordinal' => 30, + ), + 178 => + array ( + 'id' => 179, + 'group_regex' => '^alt\\.binaries\\.cd\\.lossless$', + 'regex' => '/^Flac Flood( -)? (?P.+?) - ".+?" \\(\\d+\\/\\d+\\) .+? yEnc$/', + 'status' => 1, + 'description' => '//Flac Flood - Modern Talking - China In Her Eyes (CDM) - "1 - Modern Talking - China In Her Eyes (feat. Eric Singleton) (Video Version).flac" (01/14) (23,64 MB) 136,66 MB yEnc ::: ////Flac Flood Modern Talking - America - "1 - Modern Talking - Win The Race.flac" (01/18) (29,12 MB) 549,35 MB yEnc', + 'ordinal' => 5, + ), + 179 => + array ( + 'id' => 180, + 'group_regex' => '^alt\\.binaries\\.cd\\.lossless$', + 'regex' => '/^(?P[a-zA-Z0-9].+?) \\[\\d+\\/\\d+\\]( -)? "\\d{2,} - .+?" yEnc$/', + 'status' => 1, + 'description' => '//Cannonball Adderley - Nippon Soul [01/17] "00 - Cannonball Adderley - Nippon Soul.nfo" yEnc ::: //Black Tie White Noise [01/24] - "00 - David Bowie - Black Tie White Noise.nfo" yEnc', + 'ordinal' => 10, + ), + 180 => + array ( + 'id' => 181, + 'group_regex' => '^alt\\.binaries\\.cd\\.lossless$', + 'regex' => '/^(?P(\\[\\d{4}\\] )?[a-zA-Z0-9].+?) - File \\d+ of \\d+: .+? yEnc$/', + 'status' => 1, + 'description' => '//The Allman Brothers Band - Statesboro Blues [Swingin\' Pig - Bootleg] [1970 April 4] - File 09 of 19: Statesboro Blues.cue yEnc ::: //[1977] Joan Armatrading - Show Some Emotion - File 15 of 20: 06 Joan Armatrading - Opportunity.flac yEnc', + 'ordinal' => 15, + ), + 181 => + array ( + 'id' => 182, + 'group_regex' => '^alt\\.binaries\\.cd\\.lossless$', + 'regex' => '/^(?P[A-Z0-9].+? - [A-Z0-9].+? \\[\\d{4}\\]) - \\d{2,} .+? yEnc$/', + 'status' => 1, + 'description' => '//The Allman Brothers Band - The Fillmore Concerts [1971] - 06 The Allman Brothers Band - Done Somebody Wrong.flac yEnc', + 'ordinal' => 20, + ), + 182 => + array ( + 'id' => 183, + 'group_regex' => '^alt\\.binaries\\.cd\\.lossless$', + 'regex' => '/^(?P[A-Z0-9].+? - [A-Z0-9].+? Disc \\d+ of \\d+) - [A-Z0-9].+?\\..+? yEnc$/', + 'status' => 1, + 'description' => '//The Velvet Underground - Peel Slow And See (Box Set) Disc 5 of 5 - 13 The Velvet Underground - Oh Gin.flac yEnc', + 'ordinal' => 25, + ), + 183 => + array ( + 'id' => 184, + 'group_regex' => '^alt\\.binaries\\.cd\\.lossless$', + 'regex' => '/^\\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/', + 'status' => 1, + 'description' => '//(28/55) "Ivan Neville -', + 'ordinal' => 30, + ), + 184 => + array ( + 'id' => 185, + 'group_regex' => '^alt\\.binaries\\.chello$', + 'regex' => '/^(?P[A-Za-z0-9]{5,}) ?\\[\\d+\\/\\d+\\] - "[A-Za-z0-9]{3,}.+?" yEnc$/', + 'status' => 1, + 'description' => '//0F623Uv71RHKt0jzA7inbGZLk00[2/5] - "l2iOkRvy80bgLrZm1xxw.par2" yEnc ::: //GMC2G8KixJKy [01/15] - "GMC2G8KixJKy.part1.rar" yEnc', + 'ordinal' => 5, + ), + 185 => + array ( + 'id' => 186, + 'group_regex' => '^alt\\.binaries\\.chello$', + 'regex' => '/^(?P[a-zA-Z0-9][a-zA-Z0-9.-]+) \\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Imactools.Cefipx.v3.20.MacOSX.Incl.Keyfilemaker-NOY [03/10] - "parfile.vol000+01.par2" yEnc', + 'ordinal' => 10, + ), + 186 => + array ( + 'id' => 187, + 'group_regex' => '^alt\\.binaries\\.chello$', + 'regex' => '/^(?P[A-Za-z0-9-]+ .+?)[. ]\\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Siberian Mouses LS, BD models and special... [150/152] - "Xlola - Luba, Sasha & Vika.avi.jpg" yEnc', + 'ordinal' => 15, + ), + 187 => + array ( + 'id' => 188, + 'group_regex' => '^alt\\.binaries\\.classic\\.tv\\.shows$', + 'regex' => '/^Re: REQ: (?P.+? - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Re: REQ: All In The Family - "Archie Bunkers Place 1x01 Archies New Partner part 1.nzb" yEnc', + 'ordinal' => 5, + ), + 188 => + array ( + 'id' => 189, + 'group_regex' => '^alt\\.binaries\\.classic\\.tv\\.shows$', + 'regex' => '/^Per REQ - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") .+? \\[\\d+\\/\\d+\\] yEnc$/', + 'status' => 1, + 'description' => '//Per REQ - "The.Wild.Wild.West.S03E11.The.Night.of.the.Cut-Throats.DVDRip.XVID-tz.par2" 512x384 [01/40] yEnc', + 'ordinal' => 10, + ), + 189 => + array ( + 'id' => 190, + 'group_regex' => '^alt\\.binaries\\.classic\\.tv\\.shows$', + 'regex' => '/^By req: "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//By req: "Dennis The Menace - 4x25 - Dennis and the Homing Pigeons.part05.rar" yEnc', + 'ordinal' => 15, + ), + 190 => + array ( + 'id' => 191, + 'group_regex' => '^alt\\.binaries\\.classic\\.tv\\.shows$', + 'regex' => '/^[a-zA-Z ]+HQ DVDRips "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") \\[\\d+\\/\\d+\\] yEnc$/', + 'status' => 1, + 'description' => '//I Spy HQ DVDRips "I Spy - 3x26 Pinwheel.part10.rar" [13/22] yEnc', + 'ordinal' => 20, + ), + 191 => + array ( + 'id' => 192, + 'group_regex' => '^alt\\.binaries\\.classic\\.tv\\.shows$', + 'regex' => '/^(?P[a-zA-Z0-9].+? (S\\d+D\\d+|- Season \\d+))( -)? \\[\\d+\\/\\d+\\] - ".+?"? yEnc$/', + 'status' => 1, + 'description' => '//Sledge Hammer! S2D2 [016/138] - "SH! S2 D2.ISO.016" yEnc ::: //Sledge Hammer! S2D2 [113/138] - "SH! S2 D2.ISO.1132 yEnc ::: //Lost In Space - Season 1 - [13/40] - "S1E02 - The Derelict.avi" yEnc', + 'ordinal' => 25, + ), + 192 => + array ( + 'id' => 193, + 'group_regex' => '^alt\\.binaries\\.classic\\.tv\\.shows$', + 'regex' => '/^(?P[a-zA-Z0-9].+? \\d{4}-\\d\\d-\\d\\d)( \\[.+?\\])? \\(\\d+\\/\\d+\\) - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Night Flight TV Show rec 1991-01-12 (02/54) - "night flight rec 1991-01-12.nfo" yEnc ::: //Night Flight TV Show rec 1991-05-05 [NEW PAR SET] (1/9) - "night flight rec 1991-05-05.par2" yEnc', + 'ordinal' => 30, + ), + 193 => + array ( + 'id' => 194, + 'group_regex' => '^alt\\.binaries\\.classic\\.tv\\.shows$', + 'regex' => '/^[a-zA-Z0-9][a-zA-Z0-9.-]+S\\d+E\\d+([a-zA-Z0-9.]+)? \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//The.Love.Boat.S05E08 [01/31] - "The.Love.Boat.S05E08.Chefs.Special.Kleinschmidt.New.Beginnings.par2" yEnc ::: //Barney.Miller.S08E05.Stress.Analyzer [01/18] - "Barney.Miller.S08E05.Stress.Analyzer.VHSTVRip.DivX.par2" yEnc', + 'ordinal' => 35, + ), + 194 => + array ( + 'id' => 195, + 'group_regex' => '^alt\\.binaries\\.classic\\.tv\\.shows$', + 'regex' => '/^(Re: )?"(?P.+?)(\\.avi|\\.mkv)?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")( HQ DVDRip\\[\\d+\\/\\d+\\])? yEnc$/', + 'status' => 1, + 'description' => '//"Batman - S1E13-The Thirteenth Hat.par2" yEnc ::: //"The Munsters - 1x01 Munster Masquerade.part.par" HQ DVDRip[02/16] yEnc', + 'ordinal' => 40, + ), + 195 => + array ( + 'id' => 196, + 'group_regex' => '^alt\\.binaries\\.classic\\.tv\\.shows$', + 'regex' => '/^(Re: )?[a-zA-Z0-9]+.+? (series|Season) \\d+ (- )?\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Re: Outside Edge series 1 - [01/20] - "Outside Edge S01.nfo" yEnc ::: //Green Acres Season 1 [01/87] - "Green Acres Season 1.par2" yEnc ::: //MASH Season 1 - [01/54] - "MASH - Season 01.par2" yEnc', + 'ordinal' => 45, + ), + 196 => + array ( + 'id' => 197, + 'group_regex' => '^alt\\.binaries\\.classic\\.tv\\.shows$', + 'regex' => '/^(REQ - )?[A-Z0-9a-z][A-Z0-9a-z.]+ - \\d+x\\d+ (- [A-Z0-9a-z.]+ )?- \\[\\d+\\/\\d+\\] - "(?P.+?)(\\.avi|\\.mkv)?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Rich.Little.Show - 1x12 - Season.and.Series.Finale - [02/33] - "Rich Little Show - 1x12 - Bill Bixby.avi.002" yEnc ::: //Rich.Little.Show - 1x11 - [01/33] - "Rich Little Show - 1x11 - Jessica Walter.avi.001" yEnc ::: //REQ - Banacek - 2x07 - [02/61] - "Banacek - 2x07 - Fly Me -', + 'ordinal' => 50, + ), + 197 => + array ( + 'id' => 198, + 'group_regex' => '^alt\\.binaries\\.classic\\.tv\\.shows$', + 'regex' => '/^Handyman Shows-(?P.+) - File \\d+ of \\d+ - yEnc$/', + 'status' => 1, + 'description' => '//Handyman Shows-TOH-S32E10 - File 01 of 32 - yEnc', + 'ordinal' => 55, + ), + 198 => + array ( + 'id' => 199, + 'group_regex' => '^alt\\.binaries\\.classic\\.tv\\.shows$', + 'regex' => '/^(?P[a-zA-Z0-9 -_\\.:]+) - \\d+( of \\d+)[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") (\\(\\d+\\/\\d+\\) )?(yEnc)?$/', + 'status' => 1, + 'description' => '//\'Mission: Impossible\' - 1x09 - NTSC - DivX - 28 of 48 - "MI-S01E09.r23" yEnc ::: //\'Mission: Impossible\' - 1x09 - NTSC - DivX - 01 of 48 - "MI-S01E09.nfo" (1/1)', + 'ordinal' => 60, + ), + 199 => + array ( + 'id' => 200, + 'group_regex' => '^alt\\.binaries\\.classic\\.tv\\.shows$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")(yEnc)?( )?$/', + 'status' => 1, + 'description' => '//"Batman - S2E58-Ice Spy.par2"yEnc ::: //"Black Sheep Squadron 1x03 Best Three Out of Five.par2"', + 'ordinal' => 65, + ), + 200 => + array ( + 'id' => 201, + 'group_regex' => '^alt\\.binaries\\.classic\\.tv\\.shows$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") \\(Not My Rip\\).+ \\d+ (- \\d+) .+ yEnc$/', + 'status' => 1, + 'description' => '//"Guns of Will Sonnett - 1x04.mp4" (Not My Rip)Guns Of Will Sonnett Season 1 1 - 26 Mp4 With Pars yEnc', + 'ordinal' => 70, + ), + 201 => + array ( + 'id' => 202, + 'group_regex' => '^alt\\.binaries\\.classic\\.tv\\.shows$', + 'regex' => '/^\\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB] - yEnc$/', + 'status' => 1, + 'description' => '//(01/10) "Watch_With_Mother-Bill_And_Ben-1953_02_12-Scarecrow-VHSRip-XviD.avi" - 162.20 MB - yEnc', + 'ordinal' => 75, + ), + 202 => + array ( + 'id' => 203, + 'group_regex' => '^alt\\.binaries\\.classic\\.tv\\.shows$', + 'regex' => '/^\\(.+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") \\[\\d+\\/(\\d+\\]) (Last One I Have! )?yEnc$/', + 'status' => 1, + 'description' => '//(Our Gang - Little Rascals DVDRips) "Our Gang - The Lucky Corner (1936).part0.sfv" [01/19] yEnc ::: //(Our Gang - Little Rascals DVDRips) "Our Gang - Wild Poses (1933).part.par" [02/20] Last One I Have! yEnc', + 'ordinal' => 80, + ), + 203 => + array ( + 'id' => 204, + 'group_regex' => '^alt\\.binaries\\.classic\\.tv\\.shows$', + 'regex' => '/^.+ Usenet Past .+\\[\\d+\\/(\\d+\\]) - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[EnJoY] =>A Blast from Usenet Past (1/3)<= [00/14] - "Mcdonalds Training Film - 1972 (Vhs-Mpg).part.nzb" yEnc', + 'ordinal' => 85, + ), + 204 => + array ( + 'id' => 205, + 'group_regex' => '^alt\\.binaries\\.classic\\.tv\\.shows$', + 'regex' => '/^ \\[\\d+\\/(\\d+\\]) - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '// [01/12] - "Yancy Derringer - 03 - Geheime Fracht.par2" yEnc', + 'ordinal' => 90, + ), + 205 => + array ( + 'id' => 206, + 'group_regex' => '^alt\\.binaries\\.classic\\.tv\\.shows$', + 'regex' => '/^.+ [\\[\\(]\\d+( of |\\/)(\\d+[\\]\\)])[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//77 Sunset Strip 409 [1 of 23] "77 Sunset Strip 409 The Missing Daddy Caper.avi.vol63+34.par2" yEnc ::: //Barney.Miller.NZBs [001/170] - "Barney.Miller.S01E01.Ramon.nzb" yEnc', + 'ordinal' => 95, + ), + 206 => + array ( + 'id' => 207, + 'group_regex' => '^alt\\.binaries\\.classic\\.tv\\.shows$', + 'regex' => '/^.+[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") [\\[\\(]\\d+\\/(\\d+[\\]\\)]) yEnc$/', + 'status' => 1, + 'description' => '//All in the Family - missing eps - DVDRips "All in the Family - 6x23 Gloria & Mike\'s House Guests.part5.rar" [08/16] yEnc ::: //Amos \'n\' Andy - more shows---read info.txt "Amos \'n\' Andy S01E00 Introduction of the Cast.mkv.001" (002/773) yEnc', + 'ordinal' => 100, + ), + 207 => + array ( + 'id' => 208, + 'group_regex' => '^alt\\.binaries\\.classic\\.tv\\.shows$', + 'regex' => '/^(?P.+\\d+x\\d+.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})( yEnc)?( (Series|Season) Finale)?$/', + 'status' => 1, + 'description' => '//Andy Gr', + 'ordinal' => 105, + ), + 208 => + array ( + 'id' => 209, + 'group_regex' => '^alt\\.binaries\\.comics$', + 'regex' => '/^\\((?P.+)\\)[ -]+\\[\\d+\\/\\d+\\][ -]+".+"[ -]+yEnc$/', + 'status' => 1, + 'description' => '//(The Walking Dead Comics Volume 1) [10/18] - "walking dead 002.cbr" yEnc', + 'ordinal' => 5, + ), + 209 => + array ( + 'id' => 210, + 'group_regex' => '^alt\\.binaries\\.comics$', + 'regex' => '/^(?P.+)[ -]+\\[COMIC\\][ -]+\\[\\d+\\/\\d+\\][ -]+".+"[ -]+yEnc$/i', + 'status' => 1, + 'description' => '//The Strain -1-9 [Comic] [1/2] - "TSC.nfo" yEnc', + 'ordinal' => 10, + ), + 210 => + array ( + 'id' => 211, + 'group_regex' => '^alt\\.binaries\\.comics$', + 'regex' => '/.*"(?P.{7,}?)(\\.part\\d*|\\.rar)?(\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '// Return anything between the quotes.', + 'ordinal' => 15, + ), + 211 => + array ( + 'id' => 212, + 'group_regex' => '^alt\\.binaries\\.comics\\.dcp$', + 'regex' => '/\\d{4}\\.(\\d{2}\\.){2} - "(?P.+?)\\.cb[rz]" yEnc$/i', + 'status' => 1, + 'description' => '//New Releases 2014.3.20 - "The Silver Surfer 012 (1970-01) (digital) (milton19-Empire).cbr" yEnc', + 'ordinal' => 5, + ), + 212 => + array ( + 'id' => 213, + 'group_regex' => '^alt\\.binaries\\.comics\\.dcp$', + 'regex' => '/(Req?: )+(?P.+?) - File \\d+ of \\d+ - yEnc$/i', + 'status' => 1, + 'description' => '//Re: Req: Dark Tower - The Battle of Jericho Hill 05 (of 05) TIA - File 1 of 1 - yEnc', + 'ordinal' => 10, + ), + 213 => + array ( + 'id' => 214, + 'group_regex' => '^alt\\.binaries\\.comics\\.dcp$', + 'regex' => '/\\|\\| \\d{4} \\|\\| - "(?P.+?)\\.cb[rz]" \\[\\d+\\/\\d+\\] yEnc$/i', + 'status' => 1, + 'description' => '//Amazing Spider-man 306 || FB-DCP scan || 1988 || - "Amazing Spider-man 306 (1988)(FB-DCP)(C2C).CBR" [3/7] yEnc', + 'ordinal' => 15, + ), + 214 => + array ( + 'id' => 215, + 'group_regex' => '^alt\\.binaries\\.comics\\.dcp$', + 'regex' => '/\\s+\\[\\d+\\/\\d+\\]\\s+(-\\s+)?(?P[A-Z0-9].+?)(\\[.*?(starv|RexTyler).*?\\])?\\.cb[rz](\\.par2)?\\s+yEnc$/i', + 'status' => 1, + 'description' => '//All-Star Squadron Preview 00 (1981) [HQ rescan] [1/5] - All-Star Squadron Preview 00 (Aug 1981) [HQ rescan] [RexTyler].cbr yEnc ::: //Mad Color Classics (1st time as true CBR) - [1/1] Mad Color Classics 04 {FIXED} (c2c) [True CBR by RexTyler].cbr yEnc ::: //Comico Christmas Special (1988) - [1/5] Comico Christmas Special (1988) [starv].cbr.par2 yEnc', + 'ordinal' => 20, + ), + 215 => + array ( + 'id' => 216, + 'group_regex' => '^alt\\.binaries\\.comics\\.dcp$', + 'regex' => '/\\s+-\\s+File \\d+ of \\d+\\s+-\\s+(?P[A-Z0-9].+?)\\.(cb[rz]|rar)\\s+yEnc$/i', + 'status' => 1, + 'description' => '//0-Day 2013.8.28 - "Ultimate Comics Spider-Man 026 (2013) complete/unbroken - File 1 of 1 - Ultimate Comics Spider-Man 026 (2013) (Digital) (Zone-Empire).cbr yEnc ::: //Ultimate Comics Spider-Man 026 - File 1 of 1 - Ultimate Comics Spider-Man 026 (2013) (Digital) (Zone-Empire).rar yEnc', + 'ordinal' => 25, + ), + 216 => + array ( + 'id' => 217, + 'group_regex' => '^alt\\.binaries\\.comics\\.dcp$', + 'regex' => '/^(?P[a-z0-9].+?)\\s+-\\s+File \\d+ of \\d+\\s+-\\s+yEnc$/i', + 'status' => 1, + 'description' => '//Grimm Fairy Tales Myths & Legends 12 - File 1 of 1 - yEnc', + 'ordinal' => 30, + ), + 217 => + array ( + 'id' => 218, + 'group_regex' => '^alt\\.binaries\\.comics\\.dcp$', + 'regex' => '/.*"(?P.{7,}?)(\\.part\\d*|\\.rar)?(\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '// Return anything between the quotes.', + 'ordinal' => 35, + ), + 218 => + array ( + 'id' => 219, + 'group_regex' => '^alt\\.binaries\\.comp$', + 'regex' => '/^\\(\\d+\\/\\d+\\) .+? post (?P.+?) ".+?" yEnc$/', + 'status' => 1, + 'description' => '//(45/74) NikJosuf post Magento tutorials "43 - Theming Magento 19 - Adding a Responsive Slideshow.mp4" yEnc', + 'ordinal' => 5, + ), + 219 => + array ( + 'id' => 220, + 'group_regex' => '^alt\\.binaries\\.comp$', + 'regex' => '/^(?P.{5,}?) \\(\\d+\\/\\d+\\) ".+?" - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/', + 'status' => 1, + 'description' => '//Photo Mechanic 5.0 build 13915 (1/6) "Photo Mechanic 5.0 build 13915 (1).par2" - 32,97 MB - yEnc', + 'ordinal' => 10, + ), + 220 => + array ( + 'id' => 221, + 'group_regex' => '^alt\\.binaries\\.comp$', + 'regex' => '/^\\((?P[a-zA-Z0-9. ]{10,}?)\\) \\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//(Advanced SystemCare Pro 6.3.0.269 Final ML Incl Serial) [01/10] - "Advanced SystemCare Pro 6.3.0.269 Final ML Incl Serial.nfo" yEnc', + 'ordinal' => 15, + ), + 221 => + array ( + 'id' => 222, + 'group_regex' => '^alt\\.binaries\\.comp$', + 'regex' => '/^\\[\\d+\\/\\d+ (?P.+?)(\\.(part\\d*|rar|avi|iso|mp4|mkv|mpg))?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/', + 'status' => 1, + 'description' => '//[01/21 Geroellheimer - S01E03 - Swimming Pool Geroellheimer - S01E03 - Swimming Pool.mp4.001" yEnc', + 'ordinal' => 20, + ), + 222 => + array ( + 'id' => 223, + 'group_regex' => '^alt\\.binaries\\.console\\.ps3$', + 'regex' => '/^(?P[\\w.]+?-?PS3-[a-zA-Z0-9]+) \\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Railfan_JPN_JB_PS3-Caravan [02/88] - "cvn-railfjb.par2" yEnc ::: //Madagascar.Kartz.German.JB.PS3-ATAX [01/40] - "atax-mkgjp.nfo" ::: //Saints_Row_The_Third_The_Full_Package_EUR-PS3-SPLiT [61/87] - "split-sr3fullpps3.r58" yEnc', + 'ordinal' => 5, + ), + 223 => + array ( + 'id' => 224, + 'group_regex' => '^alt\\.binaries\\.console\\.ps3$', + 'regex' => '/^\\(\\d+\\) \\[\\d+\\/\\d+\\] - "(?P[\\w.]{10,}?PS3-[A-Za-z0-9]+?)\\..+?" yEnc$/', + 'status' => 1, + 'description' => '//(4168) [00/24] - "Legend.Of.The.Guardians.Owls.GaHoole.USA.JB.PS3-PSFR33.nzb" yEnc', + 'ordinal' => 10, + ), + 224 => + array ( + 'id' => 225, + 'group_regex' => '^alt\\.binaries\\.console\\.ps3$', + 'regex' => '/^\\[\\d+\\]-\\[.+?\\]-\\[ (?P.+?) \\] \\(\\d+\\/\\d+\\) ".+?" yEnc$/', + 'status' => 1, + 'description' => '//[4230]-[ABGX.net]-[ Air_Conflicts_Pac', + 'ordinal' => 15, + ), + 225 => + array ( + 'id' => 226, + 'group_regex' => '^alt\\.binaries\\.console\\.ps3$', + 'regex' => '/\\.: (?P.+):. - .:www\\.thunder-news\\.org:. - .:sponsored by secretusenet\\.com:\\. - ("|#34;).+("|#34;).+yEnc$/', + 'status' => 1, + 'description' => '//.: Birds_of_Steel_PS3-ABSTRAKT :. - .:www.thunder-news.org:. - .:sponsored by secretusenet.com:. - "as-bos.r39" yEnc', + 'ordinal' => 20, + ), + 226 => + array ( + 'id' => 227, + 'group_regex' => '^alt\\.binaries\\.console\\.ps3$', + 'regex' => '/^"(?P.+)__www.realmom.info__.+" \\(\\d+\\/(\\d+\\)) \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/', + 'status' => 1, + 'description' => '//"Armored_Core_V_PS3-ANTiDOTE__www.realmom.info__.r00" (03/78) 3,32 GB yEnc', + 'ordinal' => 25, + ), + 227 => + array ( + 'id' => 228, + 'group_regex' => '^alt\\.binaries\\.console\\.ps3$', + 'regex' => '/^"(?P.+)__www.realmom.info__.+" (\\d+[.,]\\d+ [kKmMgG][bB]) yEnc$/', + 'status' => 1, + 'description' => '//"Ace.Combat.Assault.Horizon.PS3-DUPLEX__www.realmom.info__.nfo" 7,14 GB yEnc', + 'ordinal' => 30, + ), + 228 => + array ( + 'id' => 229, + 'group_regex' => '^alt\\.binaries\\.console\\.ps3$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//"Angry Birds USA PSN PSP-NRP.exe" yEnc', + 'ordinal' => 35, + ), + 229 => + array ( + 'id' => 230, + 'group_regex' => '^alt\\.binaries\\.cores$', + 'regex' => '/^Film - (\\[\\d+\\/\\d+\\] - )?"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Film - [13/59] - "Jerry Maguire (1996) 1080p DTS multisub HUN HighCode-PHD.part13.rar" yEnc ::: //Film - "Phone.booth.2003.RERIP.Bluray.1080p.DTS-HD.x264-Grym.part001.rar" yEnc', + 'ordinal' => 5, + ), + 230 => + array ( + 'id' => 231, + 'group_regex' => '^alt\\.binaries\\.cores$', + 'regex' => '/^\\[Art-Of-Use\\.Net\\] :: \\[.+?\\] :: - \\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[Art-Of-Use.Net] :: [AUTO] :: - [34/36] - "ImmoralLive.13.11.10.Immoral.Orgies.Rikki.Six.Carmen.Callaway.And.Amanda.Tate.XXX.1080p.MP4-KTR.vol15+16.par2" yEnc', + 'ordinal' => 10, + ), + 231 => + array ( + 'id' => 232, + 'group_regex' => '^alt\\.binaries\\.cores$', + 'regex' => '/^brothers-of-usenet\\.info\\.net.+SSL-News\\.info-----(?P.+) - "([\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//brothers-of-usenet.info.net Partner von---- SSL-News.info----- brothers-of-usenet.info.net Partner von---- SSL-News.info-----AVG.Internet.Security.2014.Build.4335.x86.x64 - "AVG.Internet.Security.2014.Build.4335.vol00+01.PAR2" - 315,68 MB - yEnc', + 'ordinal' => 15, + ), + 232 => + array ( + 'id' => 233, + 'group_regex' => '^alt\\.binaries\\.cores$', + 'regex' => '/^>+GOU<+ (?P.+?) >+www\\..+?<+ - \\(\\d+\\/\\d+\\) - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//>GOU<< ZDF.History.Das.Geiseldrama.von.Gladbeck.GERMAN.DOKU.720p.HDTV.x264-TVP >>www.SSL-News.info< - (02/35) - "tvp-gladbeck-720p.nfo" yEnc', + 'ordinal' => 20, + ), + 233 => + array ( + 'id' => 234, + 'group_regex' => '^alt\\.binaries\\.cores$', + 'regex' => '/^<<>> \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//<<>> USC <<>> [22/26] - "Zombie.Tycoon.2.Brainhovs.Revenge-SKIDROW.vol00+1.par2" - 1,85 GB yEnc', + 'ordinal' => 25, + ), + 234 => + array ( + 'id' => 235, + 'group_regex' => '^alt\\.binaries\\.cores$', + 'regex' => '/^.+Usejunkies.tk.+ \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//::: Usejunkies.tk ::: - [01/11] - "DJ Shog - DNA - HD 720p.par2" - 47,76 MB yEnc', + 'ordinal' => 30, + ), + 235 => + array ( + 'id' => 236, + 'group_regex' => '^alt\\.binaries\\.cores$', + 'regex' => '/^\\(\\d+\\/\\d+\\).+Usejunkies.tk.+"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(5/9) :...Usejunkies.tk...:----"Leawo.Blu-ray.Ripper.v4.4.0.rar.vol003+04.par2" - 30.94 MB - yEnc', + 'ordinal' => 35, + ), + 236 => + array ( + 'id' => 237, + 'group_regex' => '^alt\\.binaries\\.cores$', + 'regex' => '/^\\(.+s\\d+e\\d+\\) \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/', + 'status' => 1, + 'description' => '//(Grimms03e10) [6/9] - "Grimm_S03E10_Eyes_of_the_Beholder.avi.vol007+08.PAR2"Grimm S03E10 yEnc', + 'ordinal' => 40, + ), + 237 => + array ( + 'id' => 238, + 'group_regex' => '^alt\\.binaries\\.cores$', + 'regex' => '/^[a-zA-Z0-9]+ post voor u op www\\..+? - \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Jipejans post voor u op www.Dreamplace.biz - [010/568] - "Alien-Antology-DC-Special-Edition-1979-1997-1080p-GER-HUN-HighCode.part009.rar" yEnc ::: //Egbert47 post voor u op www.nzbworld.me - [01/21] - "100 Hits - Lady Sings The Blues 2006 (5cd\'s).par2" yEnc', + 'ordinal' => 45, + ), + 238 => + array ( + 'id' => 239, + 'group_regex' => '^alt\\.binaries\\.cores$', + 'regex' => '/^>+ .+?\\.info [<>+]+ .+?\\.com <+ "(?P.+?)\\s+- .*?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - .+? yEnc$/', + 'status' => 1, + 'description' => '//>>> usenet4ever.info <<<+>>> secretusenet.com <<< "Weltnaturerbe USA Grand Canyon Nationalpark 2012 3D Blu-ray untouched - DarKneSS.part039.rar" - DarKneSS yEnc', + 'ordinal' => 50, + ), + 239 => + array ( + 'id' => 240, + 'group_regex' => '^alt\\.binaries\\.cores$', + 'regex' => '/^Old\\s+Dad\\s+uppt?\\s*?(?P.+?)( mp4| )?\\[?\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Old Dad uppt Der gro?e Gatsby BD Rip AC3 Line XvidD German 01/57] - "Der gro?e Gatsby.par2" yEnc', + 'ordinal' => 55, + ), + 240 => + array ( + 'id' => 241, + 'group_regex' => '^alt\\.binaries\\.cores$', + 'regex' => '/^[A-Za-z]+ - \\[\\d+\\/\\d+\\] - "\\d+-(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//panter - [46/60] - "68645-Busty Beauties Car Wash XXX 3D BD26.part45.rar" yEnc ::: //Wildrose - [01/57] - "49567-Kleine Rode Tractor Buitenpret.par2" yEnc', + 'ordinal' => 60, + ), + 241 => + array ( + 'id' => 242, + 'group_regex' => '^alt\\.binaries\\.cores$', + 'regex' => '/^[ _-]{0,3}\\w+(-\\w+)?[ _-]{0,3}\\d+[ _-]{0,3}(?P.+) - \\[\\d+\\/\\d+\\][ _-]{0,3}("|#34;).+?("|#34;) yEnc$/i', + 'status' => 1, + 'description' => '// - FLAC - 1330543524 - Keziah_Jones-Femiliarise-PROMO_CDS-FLAC-2003-oNePiEcE - [01/11] - "00-keziah_jones-femiliarise-promo_cds-flac-2003-1.jpg" yEnc', + 'ordinal' => 65, + ), + 242 => + array ( + 'id' => 243, + 'group_regex' => '^alt\\.binaries\\.cores$', + 'regex' => '/^Doobz (?P[a-zA-z-_]+) \\[\\d+\\/(\\d+\\]) - ".+([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Doobz Europa_Universalis_IV_Conquest_of_Paradise-FLT [10/54] - "flt-eucp.001" yEnc', + 'ordinal' => 70, + ), + 243 => + array ( + 'id' => 244, + 'group_regex' => '^alt\\.binaries\\.cores$', + 'regex' => '/^\\(aangemeld bij usenet collector\\) \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(aangemeld bij usenet collector) [001/125] - "Northern_Exposure_Season_1_dvd_1.par2" yEnc', + 'ordinal' => 75, + ), + 244 => + array ( + 'id' => 245, + 'group_regex' => '^alt\\.binaries\\.cores$', + 'regex' => '/^\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB] .+usenet-space-cowboys\\.info.+ yEnc$/', + 'status' => 1, + 'description' => '//[15/16] - "Person.of.Interest.S03E09.480p.HDTV.x264-mSD.vol0+1.par2" - 177,28 MB <-> usenet-space-cowboys.info <-> powered by secretusenet.com <-> yEnc', + 'ordinal' => 80, + ), + 245 => + array ( + 'id' => 246, + 'group_regex' => '^alt\\.binaries\\.cores$', + 'regex' => '/^brothers-of-usenet\\.info.+ - \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//brothers-of-usenet.info&net-empfehlen-ssl-news.info Black Mirror s01e01 - Der wille des volkes - [09/15] - "Black Mirror - S01E01 - Der Wille des Volkes.vol00+01.par2" yEnc', + 'ordinal' => 85, + ), + 246 => + array ( + 'id' => 247, + 'group_regex' => '^alt\\.binaries\\.cores$', + 'regex' => '/^\\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB] .+yEnc$/', + 'status' => 1, + 'description' => '//(024/264) "Enf.S04E02.G.D.H.X-M.vol51+46.PAR2" - 8,27 GB -Enf.S04.G.D.H.X yEnc', + 'ordinal' => 90, + ), + 247 => + array ( + 'id' => 248, + 'group_regex' => '^alt\\.binaries\\.cores$', + 'regex' => '/^\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/i', + 'status' => 1, + 'description' => '//[01/10] - "Wondershare.Video.Converter.Ultimate.v6.7.1.0.Multilanguage.par2" - 45,44 MB yEnc', + 'ordinal' => 95, + ), + 248 => + array ( + 'id' => 249, + 'group_regex' => '^alt\\.binaries\\.cores$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/', + 'status' => 1, + 'description' => '//"8 Wenn ich einmal gross bin .mp3" Koelschefetz postet.Die Filue -Immer Wigger yEnc', + 'ordinal' => 100, + ), + 249 => + array ( + 'id' => 250, + 'group_regex' => '^alt\\.binaries\\.cores$', + 'regex' => '/^(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) {0,3}yEnc$/', + 'status' => 1, + 'description' => '//Adobe Photoshop Lightroom v5.2 - FiNaL - Multilingual [WIN].vol037+32.PAR2 yEnc', + 'ordinal' => 105, + ), + 250 => + array ( + 'id' => 251, + 'group_regex' => '^alt\\.binaries\\.dc$', + 'regex' => '/^brothers-of-usenet.+? \\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB] yEnc$/', + 'status' => 1, + 'description' => '//brothers-of-usenet.info&net-empfehlen-ssl-news.info (02/51) "Paul.Panzer.-.Hart.Backbord.2012.German.PAL.DVDR-icq4711.part01.rar" - 4,33 GB yEnc', + 'ordinal' => 5, + ), + 251 => + array ( + 'id' => 252, + 'group_regex' => '^alt\\.binaries\\.dc$', + 'regex' => '/^"(?P[\\w.]{10,}-[a-zA-Z0-9]+)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//"The.Crow.1994.German.DL.PAL.HD2DVD.DVDR-Braunbaer.par2" yEnc', + 'ordinal' => 10, + ), + 252 => + array ( + 'id' => 253, + 'group_regex' => '^alt\\.binaries\\.dc$', + 'regex' => '/^[A-Z0-9].+? postet\\s+.+?\\s+\\[\\d+\\/\\d+\\] - "(?P[\\w.-]{10,}?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Eragon postet The Secret of Crickley Hall S01E02 german Sub hardcodet [02/28] - "the_secret_of_crickley_hall.1x02.hdtv_x264-fov_arc.par2" yEnc', + 'ordinal' => 15, + ), + 253 => + array ( + 'id' => 254, + 'group_regex' => '^alt\\.binaries\\.dc$', + 'regex' => '/^[A-Z0-9].+? postet\\s+(?P.+?)\\.?\\s+\\[\\d+\\/\\d+\\] - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Eragon postet Hart of Dixie S02E13 german Sub hardcodet. [02/21] - "hart of dixie S02E13.par2" yEnc', + 'ordinal' => 20, + ), + 254 => + array ( + 'id' => 255, + 'group_regex' => '^alt\\.binaries\\.dc$', + 'regex' => '/^>GOU<< - "(?P.+?)\\.rar" yEnc$/', + 'status' => 1, + 'description' => '//>GOU<< - "Internet Download Manager 6.15 Build 1.rar" yEnc', + 'ordinal' => 25, + ), + 255 => + array ( + 'id' => 256, + 'group_regex' => '^alt\\.binaries\\.dc$', + 'regex' => '/^(?P[\\w.]{8,}-[a-zA-Z0-9]+) - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Die.wahren.Faelle.des.NCIS.S01E06.Mord.ohne.Skrupel.GERMAN.DOKU.WS.BDRip.XviD-MiSFiTS - "misfits-therealnciss01e06-xvid.par2" yEnc', + 'ordinal' => 30, + ), + 256 => + array ( + 'id' => 257, + 'group_regex' => '^alt\\.binaries\\.dc$', + 'regex' => '/^(?P[\\w.]{10,})".+?" yEnc$/', + 'status' => 1, + 'description' => '//Double.Team.1997.German.FSK18.AC3.DVDRiP.XViD"team-xvid.oppo.par2" yEnc', + 'ordinal' => 35, + ), + 257 => + array ( + 'id' => 258, + 'group_regex' => '^alt\\.binaries\\.divx\\.french$', + 'regex' => '/^\\.oO "(?P.+)__www.realmom.info__.+" Oo. \\[\\d+\\/\\d+\\] \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/', + 'status' => 1, + 'description' => '//.oO "20.Years.After.German.2008.AC3.BDRip.XviD.INTERNAL-ARC__www.realmom.info__.nfo" Oo. [02/39] 1,43 GB yEnc', + 'ordinal' => 5, + ), + 258 => + array ( + 'id' => 259, + 'group_regex' => '^alt\\.binaries\\.documentaries$', + 'regex' => '/^#sterntuary - (?P.+? - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//#sterntuary - Alex Jones Radio Show - "05-03-2009_INFO_BAK_ALJ.nfo" yEnc', + 'ordinal' => 5, + ), + 259 => + array ( + 'id' => 260, + 'group_regex' => '^alt\\.binaries\\.documentaries$', + 'regex' => '/^\\(\\d+\\/(\\d+\\)) "((BBC|ITV) )?(?P.+?)(\\.part\\d+)?(\\.(par2|(vol.+?))"|\\.[a-z0-9]{3}"|") - \\d.+? - (\\d.+? -)? yEnc$/', + 'status' => 1, + 'description' => '//(08/25) "Wild Russia 5 of 6 The Secret Forest 2009.part06.rar" - 47.68 MB - 771.18 MB - yEnc ::: //(01/24) "ITV Wild Britain With Ray Mears 1 of 6 Deciduous Forest 2011.nfo" - 4.34 kB - 770.97 MB - yEnc ::: //(24/24) "BBC Great British Garden Revival 03 of 10 Cottage Gardens And House Plants 2013.vol27+22.PAR2" - 48.39 MB - 808.88 MB - yEnc', + 'ordinal' => 10, + ), + 260 => + array ( + 'id' => 261, + 'group_regex' => '^alt\\.binaries\\.documentaries$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") \\(\\d+\\/\\d+\\).+yEnc$/', + 'status' => 1, + 'description' => '//"Fat Head 2009 Tom Naughton (why we get fat documentary) XVID.par2" (01/66) Paleo Low Carb Gluten-Free Diet yEnc', + 'ordinal' => 15, + ), + 261 => + array ( + 'id' => 262, + 'group_regex' => '^alt\\.binaries\\.documentaries$', + 'regex' => '/^\\[(?P.+?MVGroup)\\]-\\[\\d+\\/\\d+\\] - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[David.Attenboroughs.Natural.Curiosities.2013.5of5.Seeing.the.Pattern.720p.HDTV.x264.AAC-MVGroup]-[03/21] - "danc-e05.r00" yEnc', + 'ordinal' => 20, + ), + 262 => + array ( + 'id' => 263, + 'group_regex' => '^alt\\.binaries\\.documentaries$', + 'regex' => '/^Battlefield S\\d S\\d+E\\d+ "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Battlefield S1 S01E04 "Battlefield.104.The.Battle.of.Stalingrad.nfo" yEnc', + 'ordinal' => 25, + ), + 263 => + array ( + 'id' => 264, + 'group_regex' => '^alt\\.binaries\\.documentaries$', + 'regex' => '/^(?P.+?) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//BBC The Space Race 1to4of4 (2005) - "BBC.SR01.par2" yEnc', + 'ordinal' => 30, + ), + 264 => + array ( + 'id' => 265, + 'group_regex' => '^alt\\.binaries\\.documentaries$', + 'regex' => '/^\\[ (?P.+?) \\] \\[\\d+\\/\\d+\\] - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[ BBC.Time.Machine.Part.1.of.3.2004.DVDRip.x264.AAC.Cht-Eng-Sub.D5799E84-GFC ] [01/17] - "gfc-tm1.sfv" yEnc ::: //[ Discovery.Channel.Discovery.Atlantis.1996.DVDRip.X264.AC3-xslidian ] [01/12] - "d-da.sfv" yEnc ::: //[ Mount.Fuji.2008.blu-ray.x264.720p.AC3-CHD ] [01/48] - "chd-mfj.sfv" yEnc', + 'ordinal' => 35, + ), + 265 => + array ( + 'id' => 266, + 'group_regex' => '^alt\\.binaries\\.documentaries$', + 'regex' => '/.*[\\(\\[]\\d+-(\\d+[\\)\\]])[-_\\s]{0,3}("|#34;)(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4}("|#34;)).+?yEnc$/', + 'status' => 1, + 'description' => '//Rough Cut - Woodworking with Tommy Mac - Pilgrim Blanket Chest (1600s) DVDrip DivX - (02-17) "Rough.Cut-Woodworking.with.Tommy.Mac-Pilgrim.Blanket.Chest.1600s-DVDrip.DivX.2010.par2" - yEnc yEnc', + 'ordinal' => 40, + ), + 266 => + array ( + 'id' => 267, + 'group_regex' => '^alt\\.binaries\\.documentaries$', + 'regex' => '/(?PAsia.+) - [\\(\\[]\\d+(\\|\\d+[\\)\\]])[-_\\s]{0,3}("|#34;).+?(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4}("|#34;)).+?yEnc$/', + 'status' => 1, + 'description' => '//Asia This Week (NHK World, 19 & 20 July 2013) - \'Malala\'s movement for girls\' education + Japan seeks imports from Southeast Asia - soccer players\' - (02|14) - "ATW-2013-07-20.par2" yEnc ::: //Asia Biz Forecast (NHK World, 6 & 7 July 2013) - \'China: limits of growth + Japan: remote access\' - (05|14) - "ABF-2013-07-07.part3.rar" yEnc', + 'ordinal' => 45, + ), + 267 => + array ( + 'id' => 268, + 'group_regex' => '^alt\\.binaries\\.documentaries$', + 'regex' => '/(?PAsia.+) - File \\d+ of (\\d+)[-_\\s]{0,3}.+?(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4}).+?yEnc$/', + 'status' => 1, + 'description' => '//Asia Biz Forecast (NHK World, 16-17 June 2012) - "Japan seeks energy options" - File 01 of 14 - ABF-2012-06-16.nfo (yEnc', + 'ordinal' => 50, + ), + 268 => + array ( + 'id' => 269, + 'group_regex' => '^alt\\.binaries\\.documentaries$', + 'regex' => '/^.+? S\\d+E\\d+ - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") (\\d+[,.]\\d+ [kKmMgG][bB]ytes) yEnc$/', + 'status' => 1, + 'description' => '//Dark MatterDark Energy S02E06 - "Dark Matter_Dark Energy S02E06 - The Universe - History Channel.part1.rar" 51.0 MBytes yEnc', + 'ordinal' => 55, + ), + 269 => + array ( + 'id' => 270, + 'group_regex' => '^alt\\.binaries\\.documentaries$', + 'regex' => '/^.+Doc2011.+ \\d+\\/\\d+ - (?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) yEnc$/', + 'status' => 1, + 'description' => '//-\'- Doc2011 -\'- 01/16 - Glorious.Accidents.2011.par2 yEnc', + 'ordinal' => 60, + ), + 270 => + array ( + 'id' => 271, + 'group_regex' => '^alt\\.binaries\\.documentaries$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") {1,2}yEnc$/', + 'status' => 1, + 'description' => '//"BBC.The.Treasures.of.Ancient.Rome.1of3.Warts.n.All.720p.HDTV.x264.AAC.MVGroup.org.mkv.025" yEnc', + 'ordinal' => 65, + ), + 271 => + array ( + 'id' => 272, + 'group_regex' => '^alt\\.binaries\\.documentaries$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\[\\d+ of \\d+ - \\d+([,.]\\d+)? [kKmMgG][bB]\\] yEnc$/', + 'status' => 1, + 'description' => '//"Time Team - 2012 - 05 - Beadnell, Northumbria.par2" - [01 of 84 - 64 kb] yEnc', + 'ordinal' => 70, + ), + 272 => + array ( + 'id' => 273, + 'group_regex' => '^alt\\.binaries\\.documentaries$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//"Lang Lang - Mendelssohn.m4v" [2/9] yEnc', + 'ordinal' => 75, + ), + 273 => + array ( + 'id' => 274, + 'group_regex' => '^alt\\.binaries\\.documentaries$', + 'regex' => '/^\\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB] .+yEnc$/', + 'status' => 1, + 'description' => '//(06/24) "BBC Upgrade Me 2009.part04.rar" - 47.68 MB - 807.79 MB - yEnc', + 'ordinal' => 80, + ), + 274 => + array ( + 'id' => 275, + 'group_regex' => '^alt\\.binaries\\.documentaries$', + 'regex' => '/\\(\\d+\\/(\\d+\\) - .+) - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB] - yEnc$/', + 'status' => 1, + 'description' => '//(35/45) - Keating Pt4 - "Keating Pt4.part34.rar" - 1.77 GB - yEnc', + 'ordinal' => 85, + ), + 275 => + array ( + 'id' => 276, + 'group_regex' => '^alt\\.binaries\\.documentaries$', + 'regex' => '/^\\(.+?\\)\\[\\d+\\/(\\d+\\][-_\\s]{0,3}.+?)[-_\\s]{0,3}("|#34;)(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}("|#34;))[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//(World Air Routes - WESTJET - B737-700) [028/109] - "World Air Routes - WESTJET - B737-700.part027.rar" yEnc', + 'ordinal' => 90, + ), + 276 => + array ( + 'id' => 277, + 'group_regex' => '^alt\\.binaries\\.documentaries$', + 'regex' => '/(?P.+?) - [\\(\\[]\\d+\\/(\\d+[\\)\\]])[-_\\s]{0,3}("|#34;).+?(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4})("|#34;)(.+?)yEnc$/', + 'status' => 1, + 'description' => '//Beyond Vanilla (2010) Documentary DVDrip XviD-Uncut - (02/22) "Beyond.Vanilla.2010.Documentary.DVDrip.XviD-Uncut.par2" - yenc yEnc', + 'ordinal' => 95, + ), + 277 => + array ( + 'id' => 278, + 'group_regex' => '^alt\\.binaries\\.documentaries$', + 'regex' => '/^(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) - \\[\\d+\\/\\d+\\] yEnc$/', + 'status' => 1, + 'description' => '//Michael Woods, The Story Of India - Beginnings 1of6.avi.013 - [14/62] yEnc', + 'ordinal' => 100, + ), + 278 => + array ( + 'id' => 279, + 'group_regex' => '^alt\\.binaries\\.documentaries$', + 'regex' => '/^PBS.+\\(\\d+\\/\\d+\\) - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//PBS Nature The Private L', + 'ordinal' => 105, + ), + 279 => + array ( + 'id' => 280, + 'group_regex' => '^alt\\.binaries\\.documentaries$', + 'regex' => '/^PBS.+\\[\\d+ of \\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//PBS - Inside Nature\'s Giants - Big Cats [100 of 101] "PBS - Inside Nature\'s Giants - Big Cats.m4v.vol970+143.par2" yEnc', + 'ordinal' => 110, + ), + 280 => + array ( + 'id' => 281, + 'group_regex' => '^alt\\.binaries\\.documentaries$', + 'regex' => '/^\\d+\\/\\d+ "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//59/63 "Gates Of Heaven.vol023+19.PAR2" yEnc', + 'ordinal' => 115, + ), + 281 => + array ( + 'id' => 282, + 'group_regex' => '^alt\\.binaries\\.documentaries$', + 'regex' => '/^(?P.+?) \\(\\d+\\|\\d+\\) - "([\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Asia Biz Forecast (NHK World, 9 & 10 November 2013) - \'Mizuho: Shadow banking\' (01|14) - "ABF-2013-11-09.nfo" yEnc', + 'ordinal' => 120, + ), + 282 => + array ( + 'id' => 283, + 'group_regex' => '^alt\\.binaries\\.documentaries$', + 'regex' => '/^[\\w ]+"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")(.+[\\(\\[]\\d+\\/\\d+[\\)\\]])?[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//TG1 "Top.gear.the.perfect.road.trip.2013.vol0000+128.PAR2" :: [01/10] yEnc', + 'ordinal' => 125, + ), + 283 => + array ( + 'id' => 284, + 'group_regex' => '^alt\\.binaries\\.documentaries$', + 'regex' => '/^\\[(?P[\\w- ]+)\\]-\\[\\d+\\/\\d+\\] - "([\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[Walmart - The High Cost of Low Prices]-[28/59] - "wthcolp.part26.rar" yEnc', + 'ordinal' => 130, + ), + 284 => + array ( + 'id' => 285, + 'group_regex' => '^alt\\.binaries\\.documentaries$', + 'regex' => '/^\\[[\\w- ]+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[SR09-0013] - "America Revealed E02 Nation On The Move (2012) x264 720p AC3 5.1.nfo" yEnc', + 'ordinal' => 135, + ), + 285 => + array ( + 'id' => 286, + 'group_regex' => '^alt\\.binaries\\.documentaries$', + 'regex' => '/^(?P[\\w- ]+.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Panzer III - Medium Tank The German War Files - Panzer III - Germany\'s WWII Medium Tank.part05.rar" yEnc', + 'ordinal' => 140, + ), + 286 => + array ( + 'id' => 287, + 'group_regex' => '^alt\\.binaries\\.documentaries$', + 'regex' => '/^\\(World Air Routes.+\\) \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(World Air Routes - Turkish Airlines B777-300ER) [001/114] - "World Air Routes - Turkish Airlines B777-300ER.par2" yEnc', + 'ordinal' => 145, + ), + 287 => + array ( + 'id' => 288, + 'group_regex' => '^alt\\.binaries\\.documentaries$', + 'regex' => '/\\(\\?+\\) \\[\\d+\\/\\d+\\] - "(?P.+)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(????) [001/137] - "BBC.Attenborough.Zoo.Quest.Assorted.WebRips.par2" yEnc', + 'ordinal' => 150, + ), + 288 => + array ( + 'id' => 289, + 'group_regex' => '^alt\\.binaries\\.documentaries$', + 'regex' => '/^dokus4alle presents \\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//dokus4alle presents (01/52) "BBC.Tweed.1of3.Trouble.Looms.H264.AAC.nfo" - 603.24 MB - yEnc', + 'ordinal' => 155, + ), + 289 => + array ( + 'id' => 290, + 'group_regex' => '^alt\\.binaries\\.documentaries$', + 'regex' => '/^\\[U4A\\]-\\[(?P.+)\\]-\\[\\d+\\/\\d+\\] - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[U4A]-[After Porn Ends DOCU WEBRip X264 AAC]-[01/65] - "after.porn.ends.par2" yEnc', + 'ordinal' => 160, + ), + 290 => + array ( + 'id' => 291, + 'group_regex' => '^alt\\.binaries\\.dvd$', + 'regex' => '/^thnx to original poster \\[\\d+(?P\\/\\d+\\] - ".+?)(\\.part\\d*|\\.rar)?(\\.vol.+?|\\.[A-Za-z0-9]{2,4})("| `).+? yEnc$/', + 'status' => 1, + 'description' => '//thnx to original poster [00/98] - "2669DFKKFD2008.nzb ` 2669DFKKFD2008 " yEnc', + 'ordinal' => 5, + ), + 291 => + array ( + 'id' => 292, + 'group_regex' => '^alt\\.binaries\\.dvd\\.movies$', + 'regex' => '/^Skata - (?P.+) \\(\\d+ \\/ \\d+\\) - ".+" yEnc$/', + 'status' => 1, + 'description' => '//Skata - Clouzot - Messa Da Requiem (49 / 79) - "Skata - Clouzot - MDR.part47.rar" yEnc', + 'ordinal' => 5, + ), + 292 => + array ( + 'id' => 293, + 'group_regex' => '^alt\\.binaries\\.dvd\\.movies$', + 'regex' => '/\\(\\?+\\) \\[\\d+\\/\\d+\\] - "(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//(????) [02361/43619] - "18j Amy-superlange Beine.exe" yEnc', + 'ordinal' => 10, + ), + 293 => + array ( + 'id' => 294, + 'group_regex' => '^alt\\.binaries\\.dvd\\.movies$', + 'regex' => '/.*"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//Mutant.Chronicles.German.2008.AC3.DVDRip.XviD.(01/40) "Mutant.Chronicles.German.2008.AC3.DVDRip.XviD.nfo" yEnc', + 'ordinal' => 15, + ), + 294 => + array ( + 'id' => 295, + 'group_regex' => '^alt\\.binaries\\.dvdr$', + 'regex' => '/^(?P[a-zA-Z].+) \\[\\d+\\/\\d+\\] - ("|#34;).+("|#34;) yEnc$/', + 'status' => 1, + 'description' => '//Golem.The.Petr', + 'ordinal' => 5, + ), + 295 => + array ( + 'id' => 296, + 'group_regex' => '^alt\\.binaries\\.dvd-german$', + 'regex' => '/^\\.oO "(?P.+)__www.realmom.info__.+" Oo. \\[\\d+\\/\\d+\\] \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/', + 'status' => 1, + 'description' => '//.oO "20.Years.After.German.2008.AC3.BDRip.XviD.INTERNAL-ARC__www.realmom.info__.nfo" Oo. [02/39] 1,43 GB yEnc', + 'ordinal' => 5, + ), + 296 => + array ( + 'id' => 297, + 'group_regex' => '^alt\\.binaries\\.dvd-r$', + 'regex' => '/^katanxya "(?Pkatanxya\\d+)/', + 'status' => 1, + 'description' => '//katanxya "katanxya7221.par2" yEnc', + 'ordinal' => 5, + ), + 297 => + array ( + 'id' => 298, + 'group_regex' => '^alt\\.binaries\\.dvd-r$', + 'regex' => '/^\\[\\d+\\/\\d+\\] - "(?P[A-Z0-9](19|20)\\d\\d[01]\\d[123]\\d_\\d+\\.).+?" - \\d+[,.]\\d+ [mMkKgG][bB] yEnc$/', + 'status' => 1, + 'description' => '//[01/52] - "H1F3E_20130715_005.par2" - 4.59 GB yEnc', + 'ordinal' => 10, + ), + 298 => + array ( + 'id' => 299, + 'group_regex' => '^alt\\.binaries\\.ebook$', + 'regex' => '/^New eBooks.+[ _-]{0,3}("|#34;)(?P[\\w., &\\\'\\()-]{8,}?\\b)\\.(par|vol|rar|nfo).*?("|#34;)/i', + 'status' => 1, + 'description' => '//New eBooks 8 June 2013 - "Melody Carlson - [Carter House Girls 08] - Last Dance (mobi).rar"', + 'ordinal' => 5, + ), + 299 => + array ( + 'id' => 300, + 'group_regex' => '^alt\\.binaries\\.ebook$', + 'regex' => '/www.nzbworld.me - \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") yEnc/', + 'status' => 1, + 'description' => '//Rowwendees post voor u op www.nzbworld.me - [0/6] - "Animaniacs - Lights, Camera, Action!.nzb" yEnc (1/1)', + 'ordinal' => 10, + ), + 300 => + array ( + 'id' => 301, + 'group_regex' => '^alt\\.binaries\\.ebook$', + 'regex' => '/^Re:(Req:)? [\\w:\\()\\?\\\' -]+ - (?P[\\w ,.\\()\\[\\]-]{8,}?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//Re: Tune In: The Beatles: All These Years (Mark Lewisohn) - Lewisohn, Mark - Tune In- the Beatles- All These Years, Volume 01 - [epub].rar yEnc ::: //Re: REQ: Robert Edsel The Monuments Men - Edsel, Robert M - The Monuments Men- Allied Heroes, Nazi Thieves, and the Greatest Treasure Hunt in History (Retail) [epub].rar yEnc', + 'ordinal' => 15, + ), + 301 => + array ( + 'id' => 302, + 'group_regex' => '^alt\\.binaries\\.ebook$', + 'regex' => '/\\((.+works)\\) \\[\\d+\\/(\\d+\\]) - (?P[\\w., &\\\'\\()-]{8,}?\\b)\\.(mobi|pdf|epub|html|azw)" yEnc$/', + 'status' => 1, + 'description' => '//(Zelazny works) [36/39] - "Roger Zelazny - The Furies.mobi" yEnc', + 'ordinal' => 20, + ), + 302 => + array ( + 'id' => 303, + 'group_regex' => '^alt\\.binaries\\.ebook$', + 'regex' => '/^\\([a-zA-Z ]+ sampler\\) \\[\\d+(\\/\\d+\\]) - "(?P[\\w., &\\\'\\()-]{8,}?\\b)\\.(txt|pdf|mobi|epub|azw)" yEnc$/', + 'status' => 1, + 'description' => '//(Joan D Vinge sampler) [17/17] - "Joan D Vinge - World\'s End.txt" yEnc', + 'ordinal' => 25, + ), + 303 => + array ( + 'id' => 304, + 'group_regex' => '^alt\\.binaries\\.ebook$', + 'regex' => '/^New - Retail -( Juvenile Fiction -)? "(?P[\\w., &\\\'\\()-]{8,}?\\b)\\.(txt|pdf|mobi|epub|azw)" yEnc$/', + 'status' => 1, + 'description' => '//New - Retail - Juvenile Fiction - "Magic Tree House #47_ Abe Lincoln at Last! - Mary Pope Osborne & Sal Murdocca.epub" yEnc ::: //New - Retail - "Linda Howard - Cover of Night.epub" yEnc ::: //New - Retail - "Kylie Logan_Button Box Mystery 01 - Button Holed.epub" yEnc', + 'ordinal' => 30, + ), + 304 => + array ( + 'id' => 305, + 'group_regex' => '^alt\\.binaries\\.ebook$', + 'regex' => '/^\\(No\\. 1 Ladies Detective Agency\\) \\[\\d+(\\/\\d+\\]) - "(?P[\\w., &\\\'\\()-]{8,}?\\b)\\.(txt|pdf|mobi|epub|azw)" yEnc$/', + 'status' => 1, + 'description' => '//(No. 1 Ladies Detective Agency) [04/13] - "Alexander McCall Smith - No 1-12 - The Saturday Big Tent Wedding Party.mobi" yEnc', + 'ordinal' => 35, + ), + 305 => + array ( + 'id' => 306, + 'group_regex' => '^alt\\.binaries\\.ebook$', + 'regex' => '/^\\[\\d+\\/(\\d+\\]) (?P[\\w., &\\\'\\()-]{8,}?\\b)\\.(txt|pdf|mobi|epub|azw)/', + 'status' => 1, + 'description' => '//[25/33] Philip Jose Farmer - Toward the Beloved City [ss].mobi ::: //[2/4] Graham Masterton - Descendant.mobi', + 'ordinal' => 40, + ), + 306 => + array ( + 'id' => 307, + 'group_regex' => '^alt\\.binaries\\.ebook$', + 'regex' => '/(.+)[-_\\s]{0,3}[\\(\\[]\\d+\\/\\d+[\\)\\]][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")([-_\\s]{0,3}yEnc){1,2}$/i', + 'status' => 1, + 'description' => '//(NordicAlbino) [01/10] - "SWHQ_NA_675qe0033102suSmzSE.sfv" yEnc ::: //365 Sex Positions A New Way Every Day for a Steamy Erotic Year [eBook] - (1/5) "365.Sex.Positions.A.New.Way.Every.Day.for.a.Steamy.Erotic.Year.eBook.nfo" - yenc yEnc', + 'ordinal' => 45, + ), + 307 => + array ( + 'id' => 308, + 'group_regex' => '^alt\\.binaries\\.ebook$', + 'regex' => '/^\\[\\d+\\/\\d+\\] .+? - "(?P[\\w., &\\\'\\()-]{8,}?\\b)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}") yEnc$/', + 'status' => 1, + 'description' => '//[001/125] (NL Epub Wierook Set 49) - "Abulhawa, Susan - Litteken van David_Ochtend in Jenin.epub" yEnc', + 'ordinal' => 50, + ), + 308 => + array ( + 'id' => 309, + 'group_regex' => '^alt\\.binaries\\.ebook$', + 'regex' => '/^\\(\\d+\\/\\d+\\) "(?P[\\w., &\\\'\\()-]{8,}?\\b)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//(1/1) "Radiological Imaging of the Kidney - E. Quaia (Springer, 2011) WW.pdf" - 162,82 MB - (Radiological Imaging of the Kidney - E. Quaia (Springer, 2011) WW) yEnc', + 'ordinal' => 55, + ), + 309 => + array ( + 'id' => 310, + 'group_regex' => '^alt\\.binaries\\.ebook$', + 'regex' => '/^\\(\\d+\\/\\d+\\) ".+(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")([-_\\s]{0,3}\\d+[.,]\\d+ [kKmMgG][bB])?[-_\\s]{0,3}"(?P[\\w., &\\\'\\()-]{8,}?\\b)" yEnc$/', + 'status' => 1, + 'description' => '//(1/7) "0865779767.epub" - 88,93 MB - "Anatomic Basis of Neurologic Diagnosis - epub" yEnc', + 'ordinal' => 60, + ), + 310 => + array ( + 'id' => 311, + 'group_regex' => '^alt\\.binaries\\.ebook$', + 'regex' => '/^(Attn:|Re: REQ:|New Scan).+?[-_\\s]{0,3}"(?P[\\w., &\\\'\\()-]{8,}?\\b)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")[-_\\s]{0,3}(\\d+[.,]\\d+ [kKmMgG][bB](ytes)?)? yEnc$/i', + 'status' => 1, + 'description' => '//Re: REQ: Jay Lake\'s Mainspring series/trilogy (see titles inside) - "Lake, Jay - Clockwork Earth 03 - Pinion [epub].rar" 405.6 kBytes yEnc ::: //Attn: Brownian - "del Rey, Maria - Paradise Bay (FBS).rar" yEnc ::: //New Scan "Herbert, James - Sepulchre (html).rar" yEnc', + 'ordinal' => 65, + ), + 311 => + array ( + 'id' => 312, + 'group_regex' => '^alt\\.binaries\\.ebook$', + 'regex' => '/.*"(?P[\\w., &\\\'\\()-]{8,}?\\b)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//"Gabaldon, Diana - Outlander [5] The Fiery Cross.epub" yEnc ::: //Kiny Friedman "Friedman, Kinky - Prisoner of Vandam Street_ A Novel, The.epub" yEnc', + 'ordinal' => 70, + ), + 312 => + array ( + 'id' => 313, + 'group_regex' => '^alt\\.binaries\\.ebook$', + 'regex' => '/(.+?)[-_ ]{0,4}\\d+\\/\\d+[-_\\s]{0,3}(?P[\\w. &\\\'\\()\\[\\]-]{8,}?\\b.?)\\.(txt|pdf|mobi|epub|azw)"( \\(\\d+\\/\\d+\\))?( )?$/', + 'status' => 1, + 'description' => '//Patterson flood - Mobi - 15/45 "James Patterson - AC 13 - Double Cross.mobi"', + 'ordinal' => 75, + ), + 313 => + array ( + 'id' => 314, + 'group_regex' => '^alt\\.binaries\\.ebook$', + 'regex' => '/^--- (?P[\\w., &\\\'\\()-]{8,}?\\b)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//--- Michael Dobbs - House of Cards.mobi yEnc', + 'ordinal' => 80, + ), + 314 => + array ( + 'id' => 315, + 'group_regex' => '^alt\\.binaries\\.ebook$', + 'regex' => '/^\\\'(?P[\\w. &\\\'\\()\\[\\]-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})\\\'[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//\'Steel\'s Edge - Ilona Andrews.epub\' yEnc', + 'ordinal' => 85, + ), + 315 => + array ( + 'id' => 316, + 'group_regex' => '^alt\\.binaries\\.ebook$', + 'regex' => '/^\\[\\d+ of \\d+\\][-_\\s]{0,3}(?P[\\w. &\\\'\\()\\[\\]-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//[1 of 1] - Howard Gordon - Gideon\'s War & Hard Target.epub yEnc', + 'ordinal' => 90, + ), + 316 => + array ( + 'id' => 317, + 'group_regex' => '^alt\\.binaries\\.ebook$', + 'regex' => '/^(?P[\\w. &\\\'\\[\\]-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//1 Playboy-Ausgabe vom Jnner 1953 [RARITT].rar yEnc', + 'ordinal' => 95, + ), + 317 => + array ( + 'id' => 318, + 'group_regex' => '^alt\\.binaries\\.ebook$', + 'regex' => '/^.+ - (?P[^.]{8,})\\.[A-Za-z0-9]{2,4}[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//Re: Req: Please, does anyone have Scott Berg\'s Wilson biography? MTIA... - A. Scott Berg - Wilson.epub yEnc', + 'ordinal' => 100, + ), + 318 => + array ( + 'id' => 319, + 'group_regex' => '^alt\\.binaries\\.ebook$', + 'regex' => '/.*"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)\\.[A-Za-z0-9]{2,4}"[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//REQ: "Keep it Pithy" by Bill O\'Reilly "Keep It Pithy - Bill O\'Reilly.epub"yEnc', + 'ordinal' => 105, + ), + 319 => + array ( + 'id' => 320, + 'group_regex' => '^alt\\.binaries\\.ebook$', + 'regex' => '/^(?P[^.]{8,})\\.[A-Za-z0-9]{2,4}.+[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//For Your Eyes Only - Ian Fleming.epub - answering my own request yEnc', + 'ordinal' => 110, + ), + 320 => + array ( + 'id' => 321, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/^New eBooks.+[ _-]{0,3}("|#34;)(?P.+?.+)\\.(par|vol|rar|nfo).*?("|#34;)/i', + 'status' => 1, + 'description' => '//New eBooks 8 June 2013 - "Melody Carlson - [Carter House Girls 08] - Last Dance (mobi).rar"', + 'ordinal' => 5, + ), + 321 => + array ( + 'id' => 322, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/^Doctor Who - Target Books \\[\\d+\\/(\\d+\\]) - "DW[0-9]{0,3}[-_\\s]{0,3}(?P.+?)\\.(txt|pdf|mobi|epub|azw)" yEnc$/', + 'status' => 1, + 'description' => '//Doctor Who - Target Books [128/175] - "DW125_ Terror of the Vervoids - Pip Baker.mobi" yEnc', + 'ordinal' => 10, + ), + 322 => + array ( + 'id' => 323, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/^\\((?P[a-zA-Z0-9 -]+)\\) \\[\\d+\\/(\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(American Curves - Summer 2012) [01/10] - "AMECURSUM12.par2" yEnc', + 'ordinal' => 15, + ), + 323 => + array ( + 'id' => 324, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/(.+)[-_\\s]{0,3}[\\(\\[]\\d+\\/\\d+[\\)\\]][-_\\s]{0,3}"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//(NordicAlbino) [01/10] - "SWHQ_NA_675qe0033102suSmzSE.sfv" yEnc ::: //365 Sex Positions A New Way Every Day for a Steamy Erotic Year [eBook] - (1/5) "365.Sex.Positions.A.New.Way.Every.Day.for.a.Steamy.Erotic.Year.eBook.nfo" - yenc yEnc', + 'ordinal' => 20, + ), + 324 => + array ( + 'id' => 325, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/^[\\(\\[]\\d+\\/\\d+[\\)\\]][-_\\s]{0,3}"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4}")([-_\\s]{0,3}\\d+[.,]\\d+ [kKmMgG][bB])?[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//[1/8] - "Robin Lane Fox - Travelling heroes.epub" yEnc ::: //(1/1) "Unintended Consequences - John Ross.nzb" - 8.67 kB - yEnc', + 'ordinal' => 25, + ), + 325 => + array ( + 'id' => 326, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/^[\\(\\[] .+? [\\)\\][-_\\s]{0,3}"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")[-_\\s]{0,3}[\\(\\[]\\d+\\/(\\d+[\\)\\]])[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//[ Mega Dating and Sex Advice Ebooks - Tips and Tricks for Men PDF ] - "Vatsyayana - The Kama Sutra.pdf.rar" - (54/58) yEnc', + 'ordinal' => 30, + ), + 326 => + array ( + 'id' => 327, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/^(WWII in Photos)[-_\\s]{0,3}"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//WWII in Photos - "WWII in Photos_05_Conflict Spreads Around the Globe - The Atlantic.epub" yEnc', + 'ordinal' => 35, + ), + 327 => + array ( + 'id' => 328, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/^.+?"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")[-_\\s]{0,3}\\[\\d+ of (\\d+\\])[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//Various ebooks on History pdf format "Chelsea House Publishing Discovering U.S. History Vol. 8, World War I and the Roaring Twenties - 1914-1928 (2010).pdf" [1 of 1] yEnc', + 'ordinal' => 40, + ), + 328 => + array ( + 'id' => 329, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/.+[\\(\\[]\\d+ of \\d+[\\)\\]] "(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//A few things - [4 of 13] "Man From U.N.C.L.E. 08 - The Monster Wheel Affair - David McDaniel.epub" yEnc', + 'ordinal' => 45, + ), + 329 => + array ( + 'id' => 330, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/.+[\\(\\[]\\d+\\/\\d+[\\)\\]] - "(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}") toby\\d+$/', + 'status' => 1, + 'description' => '//DDR Kochbuch 1968-wir kochen gut [1/1] - "DDR Kochbuch 1968-wir kochen gut.pdf" toby042002', + 'ordinal' => 50, + ), + 330 => + array ( + 'id' => 331, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/^.+?[-_\\s]{0,3}"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}") [\\(\\[]\\d+\\/\\d+[\\)\\]] ([-_\\s]{0,3}\\d+[.,]\\d+ [kKmMgG][bB])?[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//Pottermore UK retail - "Harry Potter and the Goblet of Fire - J.K. Rowling.epub" (05/14) - 907.57 kB - yEnc', + 'ordinal' => 55, + ), + 331 => + array ( + 'id' => 332, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/^\\[\\d+\\/\\d+\\] .+? - "(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}") yEnc$/', + 'status' => 1, + 'description' => '//[001/125] (NL Epub Wierook Set 49) - "Abulhawa, Susan - Litteken van David_Ochtend in Jenin.epub" yEnc', + 'ordinal' => 60, + ), + 332 => + array ( + 'id' => 333, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/^\\(\\d+\\/\\d+\\) "(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//(1/1) "Radiological Imaging of the Kidney - E. Quaia (Springer, 2011) WW.pdf" - 162,82 MB - (Radiological Imaging of the Kidney - E. Quaia (Springer, 2011) WW) yEnc', + 'ordinal' => 65, + ), + 333 => + array ( + 'id' => 334, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/^\\(\\d+\\/\\d+\\) ".+(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")([-_\\s]{0,3}\\d+[.,]\\d+ [kKmMgG][bB])?[-_\\s]{0,3}"(?P.+?)" yEnc$/', + 'status' => 1, + 'description' => '//(1/7) "0865779767.epub" - 88,93 MB - "Anatomic Basis of Neurologic Diagnosis - epub" yEnc', + 'ordinal' => 70, + ), + 334 => + array ( + 'id' => 335, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/^(Attn:|Re: REQ:|New Scan).+?[-_\\s]{0,3}"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")[-_\\s]{0,3}(\\d+[.,]\\d+ [kKmMgG][bB](ytes)?)? yEnc$/i', + 'status' => 1, + 'description' => '//Re: REQ: Jay Lake\'s Mainspring series/trilogy (see titles inside) - "Lake, Jay - Clockwork Earth 03 - Pinion [epub].rar" 405.6 kBytes yEnc ::: //Attn: Brownian - "del Rey, Maria - Paradise Bay (FBS).rar" yEnc ::: //New Scan "Herbert, James - Sepulchre (html).rar" yEnc', + 'ordinal' => 75, + ), + 335 => + array ( + 'id' => 336, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/.*"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//"Gabaldon, Diana - Outlander [5] The Fiery Cross.epub" yEnc ::: //Kiny Friedman "Friedman, Kinky - Prisoner of Vandam Street_ A Novel, The.epub" yEnc', + 'ordinal' => 80, + ), + 336 => + array ( + 'id' => 337, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/(.+?)[-_\\s]{0,3}\\d+\\/(?P\\d+[-_\\s]{0,3}".+?)\\.(txt|pdf|mobi|epub|azw)"( \\(\\d+\\/\\d+\\))?( )?$/', + 'status' => 1, + 'description' => '//Patterson flood - Mobi - 15/45 "James Patterson - AC 13 - Double Cross.mobi"', + 'ordinal' => 85, + ), + 337 => + array ( + 'id' => 338, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/\\d+\\/\\d+[-_\\s]{0,3}(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//04/63 Brave New World Revisited - Aldous Huxley.mobi yEnc', + 'ordinal' => 90, + ), + 338 => + array ( + 'id' => 339, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/^- (?P.+?)\\.(par|vol|rar|nfo)[-_\\s]{0,3}(.+)/', + 'status' => 1, + 'description' => '//- Campbell, F.E. - Susan - HIT 125.rar BDSM Themed Adult Erotica - M/F F/F - Rtf & Pdf', + 'ordinal' => 95, + ), + 339 => + array ( + 'id' => 340, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/^"(?P.+?)\\.(txt|pdf|mobi|epub|azw)" \\(\\d+\\/(\\d+\\))/', + 'status' => 1, + 'description' => '//"D. F. Jones - 03 - Colossus and The Crab.epub" (1/3)', + 'ordinal' => 100, + ), + 340 => + array ( + 'id' => 341, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/^"(?P.+?)\\.(txt|pdf|mobi|epub|azw|lit|rar|nfo|par)" $/', + 'status' => 1, + 'description' => '//"D. F. Jones - 01 - Colossus.epub" (note the space on the end)', + 'ordinal' => 105, + ), + 341 => + array ( + 'id' => 342, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/^\\[\\d*+\\/(\\d+\\]) - "(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4} "|") yEnc$/', + 'status' => 1, + 'description' => '//[01/19] - "13_X_Panzer_Tracts_EBook.nfo " yEnc', + 'ordinal' => 110, + ), + 342 => + array ( + 'id' => 343, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/^\\[\\d+\\/(\\d+\\]) (?P.+?)\\.(txt|pdf|mobi|epub|azw|lit|rar|nfo|par).+?(yEnc)?$/', + 'status' => 1, + 'description' => '//[09/14] Sven Hassel - Legion of the Damned 09, Reign of Hell.mobi sven hassel as requested (1/7) yEnc ::: //[1/1] Alex Berenson - John Wells 05, The Secret Soldier.mobi (space at end)', + 'ordinal' => 115, + ), + 343 => + array ( + 'id' => 344, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/^\\[\\d+\\/(\\d+\\]) - "(?P.+?)\\.(txt|pdf|mobi|epub|azw|lit|rar|nfo|par)"( \\d+K)?( )?$/', + 'status' => 1, + 'description' => '//[1/1] - "Die Kunst der Fotografie Lehrbuch und Bildband f r ambitionierte Fotografen.rar" ::: //[1/1] - "Demonic_ How the Liberal Mob Is Endanger - Coulter, Ann.mobi" (note space at end) ::: //[1/1] - "Paris in Love_ A Memoir - Eloisa James.mobi" 1861K', + 'ordinal' => 120, + ), + 344 => + array ( + 'id' => 345, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/^\\d+\\/(\\d+)[-_\\s]{0,3}(?P.+?)\\.(txt|pdf|mobi|epub|azw|lit|rar|nfo|par)$/', + 'status' => 1, + 'description' => '//002/240 Swordships.of.Scorpio.(Dray.Prescot).-.Alan.Burt.Akers.epub', + 'ordinal' => 125, + ), + 345 => + array ( + 'id' => 346, + 'group_regex' => '^alt\\.binaries\\.e-book$', + 'regex' => '/^(?P[a-zA-Z0-9. ].+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|) yEnc$/', + 'status' => 1, + 'description' => '//Akers Alan Burt - Dray Prescot Saga 14 - Krozair von Kregen.rar yEnc', + 'ordinal' => 130, + ), + 346 => + array ( + 'id' => 347, + 'group_regex' => '^alt\\.binaries\\.e-book\\.flood$', + 'regex' => '/^New eBooks.+[ _-]{0,3}("|#34;)(?P.+?.+)\\.(par|vol|rar|nfo).*?("|#34;)/i', + 'status' => 1, + 'description' => '//New eBooks 8 June 2013 - "Melody Carlson - [Carter House Girls 08] - Last Dance (mobi).rar"', + 'ordinal' => 5, + ), + 347 => + array ( + 'id' => 348, + 'group_regex' => '^alt\\.binaries\\.e-book\\.flood$', + 'regex' => '/^[A-Za-z ]+[-_\\s]{0,3}"(?P.+?)\\.(txt|pdf|mobi|epub|azw)"[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//World War II History - "Spies of the Balkans - Alan Furst.mobi" yEnc ::: //True Crime "T. J. English - Havana Nocturne (v5.0).mobi" yEnc ::: //E C Tubb Flood - "E C Tubb - Dumarest 31 The Temple of Truth.epub" - yEnc', + 'ordinal' => 10, + ), + 348 => + array ( + 'id' => 349, + 'group_regex' => '^alt\\.binaries\\.e-book\\.flood$', + 'regex' => '/^SFF Dump - "(?P.+?)\\.(txt|pdf|mobi|epub|azw)" \\(\\d+\\/\\d+\\) - \\d+[.,]\\d+ [kKmMgG][bB] - yEnc$/', + 'status' => 1, + 'description' => '//SFF Dump - "Thomas M. Disch - Camp Concentration.epub" (1033/1217) - 226.47 kB - yEnc', + 'ordinal' => 15, + ), + 349 => + array ( + 'id' => 350, + 'group_regex' => '^alt\\.binaries\\.e-book\\.flood$', + 'regex' => '/^\\((?P[a-zA-Z0-9 -]+)\\) \\[\\d+\\/(\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(American Curves - Summer 2012) [01/10] - "AMECURSUM12.par2" yEnc', + 'ordinal' => 20, + ), + 350 => + array ( + 'id' => 351, + 'group_regex' => '^alt\\.binaries\\.e-book\\.flood$', + 'regex' => '/(.+?)[-_\\s]{0,3}\\d+\\/(?P\\d+[-_\\s]{0,3}".+?)\\.(txt|pdf|mobi|epub|azw)"( \\(\\d+\\/\\d+\\))?( )?$/', + 'status' => 1, + 'description' => '//Patterson flood - Mobi - 15/45 "James Patterson - AC 13 - Double Cross.mobi"', + 'ordinal' => 25, + ), + 351 => + array ( + 'id' => 352, + 'group_regex' => '^alt\\.binaries\\.e-book\\.flood$', + 'regex' => '/^(Attn:|Re: REQ:|New Scan).+?[-_\\s]{0,3}"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")[-_\\s]{0,3}(\\d+[.,]\\d+ [kKmMgG][bB](ytes)?)? yEnc$/i', + 'status' => 1, + 'description' => '//Re: REQ: Jay Lake\'s Mainspring series/trilogy (see titles inside) - "Lake, Jay - Clockwork Earth 03 - Pinion [epub].rar" 405.6 kBytes yEnc ::: //Attn: Brownian - "del Rey, Maria - Paradise Bay (FBS).rar" yEnc ::: //New Scan "Herbert, James - Sepulchre (html).rar" yEnc', + 'ordinal' => 30, + ), + 352 => + array ( + 'id' => 353, + 'group_regex' => '^alt\\.binaries\\.e-book\\.flood$', + 'regex' => '/.*"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//"Gabaldon, Diana - Outlander [5] The Fiery Cross.epub" yEnc ::: //Kiny Friedman "Friedman, Kinky - Prisoner of Vandam Street_ A Novel, The.epub" yEnc', + 'ordinal' => 35, + ), + 353 => + array ( + 'id' => 354, + 'group_regex' => '^alt\\.binaries\\.e-book\\.flood$', + 'regex' => '/^\\[\\d+\\/\\d+\\] .+? - "(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}") yEnc$/', + 'status' => 1, + 'description' => '//[001/125] (NL Epub Wierook Set 49) - "Abulhawa, Susan - Litteken van David_Ochtend in Jenin.epub" yEnc', + 'ordinal' => 40, + ), + 354 => + array ( + 'id' => 355, + 'group_regex' => '^alt\\.binaries\\.e-book\\.flood$', + 'regex' => '/^\\(\\d+\\/\\d+\\) "(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//(1/1) "Radiological Imaging of the Kidney - E. Quaia (Springer, 2011) WW.pdf" - 162,82 MB - (Radiological Imaging of the Kidney - E. Quaia (Springer, 2011) WW) yEnc', + 'ordinal' => 45, + ), + 355 => + array ( + 'id' => 356, + 'group_regex' => '^alt\\.binaries\\.e-book\\.flood$', + 'regex' => '/^\\(\\d+\\/\\d+\\) ".+(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")([-_\\s]{0,3}\\d+[.,]\\d+ [kKmMgG][bB])?[-_\\s]{0,3}"(?P.+?)" yEnc$/', + 'status' => 1, + 'description' => '//(1/7) "0865779767.epub" - 88,93 MB - "Anatomic Basis of Neurologic Diagnosis - epub" yEnc', + 'ordinal' => 50, + ), + 356 => + array ( + 'id' => 357, + 'group_regex' => '^alt\\.binaries\\.e-book\\.flood$', + 'regex' => '/^(Attn:|Re: REQ:|New Scan).+?[-_\\s]{0,3}"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")[-_\\s]{0,3}(\\d+[.,]\\d+ [kKmMgG][bB](ytes)?)? yEnc$/i', + 'status' => 1, + 'description' => '//Re: REQ: Jay Lake\'s Mainspring series/trilogy (see titles inside) - "Lake, Jay - Clockwork Earth 03 - Pinion [epub].rar" 405.6 kBytes yEnc ::: //Attn: Brownian - "del Rey, Maria - Paradise Bay (FBS).rar" yEnc ::: //New Scan "Herbert, James - Sepulchre (html).rar" yEnc', + 'ordinal' => 55, + ), + 357 => + array ( + 'id' => 358, + 'group_regex' => '^alt\\.binaries\\.e-book\\.flood$', + 'regex' => '/^\\*(FULL )?REPOST\\* New eBooks.+[-_\\s]{0,3}"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4}")$/', + 'status' => 1, + 'description' => '//*FULL REPOST* New eBooks 26 Nov 2012 & 20% PAR2 Set - "Elisabeth Kyle - The Captain\'s House (siPDF).rar" ::: //*REPOST* New eBooks 23 Nov 2012 - "Charles Culver - [The 11th Floor 02] - Awakening (mobi).rar"', + 'ordinal' => 60, + ), + 358 => + array ( + 'id' => 359, + 'group_regex' => '^alt\\.binaries\\.e-book\\.flood$', + 'regex' => '/^.+?Search (for|4) (number|Numeric String) at end of (title|Subject)[-_\\s]{0,3}(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4})[-\\=_ ]{0,3}\\d+[-_\\s]{0,3}.+?yEnc$/i', + 'status' => 1, + 'description' => '//1 - 5 July 2013 - Search for number at end of title - Bevin Alexander - How Hitler Could Have Won World War II- The Fatal Errors That Lead to Nazi Defeat (epub).rar - 14418-25255-6053.rar.txt yEnc ::: //10 July 2013 - Search 4 Numeric String at End of Subject - Andew Hodges - Alan Turing- The Enigma (Centenary Edition) (kf8 mobi).rar = 21317-25234-21710.rar.txt yEnc', + 'ordinal' => 65, + ), + 359 => + array ( + 'id' => 360, + 'group_regex' => '^alt\\.binaries\\.e-book\\.flood$', + 'regex' => '/^"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4}")[-_\\s]{0,3}\\d+[kKmMgG]$/', + 'status' => 1, + 'description' => '//"Back to Pakistan_ A F', + 'ordinal' => 70, + ), + 360 => + array ( + 'id' => 361, + 'group_regex' => '^alt\\.binaries\\.e-book\\.flood$', + 'regex' => '/^\\[\\d+\\/\\d+\\][-_\\s]{0,3}(?P.+)\\.(txt|pdf|mobi|epub|azw)[-_\\s]{0,3}.+flood( )?$/', + 'status' => 1, + 'description' => '//[002/182] A. E. Van Vogt - The Anarchistic Colossus.mobi mobi flood ::: //[002/115] Alan Dean Foster - Alien.mobi sf single author flood', + 'ordinal' => 75, + ), + 361 => + array ( + 'id' => 362, + 'group_regex' => '^alt\\.binaries\\.e-book\\.flood$', + 'regex' => '/^\\[\\d+\\/(\\d+\\]) (?P.+?)\\.(txt|pdf|mobi|epub|azw)/', + 'status' => 1, + 'description' => '//[2/4] Graham Masterton - Descendant.mobi', + 'ordinal' => 80, + ), + 362 => + array ( + 'id' => 363, + 'group_regex' => '^alt\\.binaries\\.e-book\\.flood$', + 'regex' => '/^\\d+\\. {0,1}(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})As Req.+yEnc$/i', + 'status' => 1, + 'description' => '//14. Alexander Kent - [Bolitho 12] - Signal Close Action (v2.0) (epub).epubAs Req Alexander Kent yEnc ::: //22.The Darkening Sea - Alexander Kent.epubAs Req Alexander Kent yEnc', + 'ordinal' => 85, + ), + 363 => + array ( + 'id' => 364, + 'group_regex' => '^alt\\.binaries\\.e-book\\.flood$', + 'regex' => '/^reposting \\d+-\\d+-\\d+ new ebooks.+ pars[-_\\s]{0,3}(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) yEnc$/i', + 'status' => 1, + 'description' => '//reposting 2012-10-31 new ebooks with 35.74 pars - AD&D - [Tomes] - The Rod of Seven Parts - Douglas Niles (mobi).rar yEnc', + 'ordinal' => 90, + ), + 364 => + array ( + 'id' => 365, + 'group_regex' => '^alt\\.binaries\\.e-book\\.flood$', + 'regex' => '/^\\d+ - (?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) yEnc$/i', + 'status' => 1, + 'description' => '//15 - Men at Arms.pdf yEnc', + 'ordinal' => 95, + ), + 365 => + array ( + 'id' => 366, + 'group_regex' => '^alt\\.binaries\\.e-book\\.flood$', + 'regex' => '/^Filling Req(uest)?( for \\w+)?[-_\\s]{0,3}(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) \\[\\d+\\/\\d+\\] - yEnc$/i', + 'status' => 1, + 'description' => '//Filling Req for Delderfield- To Serve Them All My Days - R F Delderfield.mobi [6/6] - yEnc ::: //Filling Request - Armistead Maupin - 1 - Tales of the City.mobi [1/8] - yEnc', + 'ordinal' => 100, + ), + 366 => + array ( + 'id' => 367, + 'group_regex' => '^alt\\.binaries\\.e-book\\.flood$', + 'regex' => '/^ATTN:Fozz E Bear (?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) yEnc$/i', + 'status' => 1, + 'description' => '//ATTN:Fozz E Bear Rogue - Danielle Steel.epub yEnc', + 'ordinal' => 105, + ), + 367 => + array ( + 'id' => 368, + 'group_regex' => '^alt\\.binaries\\.e-book\\.flood$', + 'regex' => '/^As Requested - (?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) \\[\\d+\\/\\d+\\] - yEnc$/i', + 'status' => 1, + 'description' => '//As Requested - Silent Spring - Rachel Carson.epub [1/2] - yEnc', + 'ordinal' => 110, + ), + 368 => + array ( + 'id' => 369, + 'group_regex' => '^alt\\.binaries\\.e-book\\.flood$', + 'regex' => '/^Attn: fastpiety - your requests[-_\\s]{0,3}(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) \\[\\d+\\/\\d+\\] - yEnc$/i', + 'status' => 1, + 'description' => '//Attn: fastpiety - your requests - Countess of Carnarvon - Lady Almina and the Real Downton Abbey- The Lost Legacy of Highclere Castle (epub).epub [1/1] - yEnc', + 'ordinal' => 115, + ), + 369 => + array ( + 'id' => 370, + 'group_regex' => '^alt\\.binaries\\.e-book\\.flood$', + 'regex' => '/^(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) yEnc$/i', + 'status' => 1, + 'description' => '//Amanda Ashley - [Night 02] - Night\'s Touch (v5.0) (epub).epub yEnc', + 'ordinal' => 120, + ), + 370 => + array ( + 'id' => 371, + 'group_regex' => '^alt\\.binaries\\.e-book\\.flood$', + 'regex' => '/^(?P[^.]{8,})\\.[A-Za-z0-9]{2,4}_as found[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//A Game of Thrones 01- George R. R. Martin.mobi_as found yEnc', + 'ordinal' => 125, + ), + 371 => + array ( + 'id' => 372, + 'group_regex' => '^alt\\.binaries\\.e-book\\.flood$', + 'regex' => '/^(?P[^.]{8,})\\.[A-Za-z0-9]{2,4}[-_\\s]{0,3}File \\d+ of \\d+[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//Ben Carson - America the Beaut', + 'ordinal' => 130, + ), + 372 => + array ( + 'id' => 373, + 'group_regex' => '^alt\\.binaries\\.e-book\\.flood$', + 'regex' => '/^Re: Attn Reg143- (?P[^.]{8,})\\.[A-Za-z0-9]{2,4}[-_\\s]{0,3}\\[\\d+\\/\\d+\\][- ]{0,4}yEnc$/', + 'status' => 1, + 'description' => '//Re: Attn Reg143- (Morse 7) The Secret of Annexe 3 - Colin Dexter.mobi [11/14] - yEnc', + 'ordinal' => 135, + ), + 373 => + array ( + 'id' => 374, + 'group_regex' => '^alt\\.binaries\\.e-book\\.flood$', + 'regex' => '/^(?P[\\w.,& \\()\\[\\]\\\'\\`-]{8,}?)[-_\\s]{0,3}File \\d+ of \\d+[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//New eBooks 20 Aug 2012 - File 001 of 409 - yEnc', + 'ordinal' => 140, + ), + 374 => + array ( + 'id' => 375, + 'group_regex' => '^alt\\.binaries\\.e-book\\.flood$', + 'regex' => '/^Re: Request[- ]{0,4}\\d+[-_\\s]{0,3}(?P[^.]{8,})([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}\\[\\d+\\/\\d+\\][- ]{0,4}yEnc$/', + 'status' => 1, + 'description' => '//Re: Request - 05 L. E. Modesitt - Princeps.mobi [5/7] - yEnc', + 'ordinal' => 145, + ), + 375 => + array ( + 'id' => 376, + 'group_regex' => '^alt\\.binaries\\.e-book\\.flood$', + 'regex' => '/^\\(.+\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(Bighathi) [4/4] - "Letters to Penthouse XXiLetters to Penthouse XXI - The Editors of Penthouse Magazine.epub" yEnc', + 'ordinal' => 150, + ), + 376 => + array ( + 'id' => 377, + 'group_regex' => '^alt\\.binaries\\.e-book\\.flood$', + 'regex' => '/^\\(.+\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+REPOST.+[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(HUMAN BIO & MED 207) [02/39] - "Organic Chemistry 6th ed - L. Wade {SOLUTIONS MANUAL - J. Simek] (Pearson, 2006) WW.pdf" *REPOST* yEnc', + 'ordinal' => 155, + ), + 377 => + array ( + 'id' => 378, + 'group_regex' => '^alt\\.binaries\\.e-book\\.flood$', + 'regex' => '/^\\d+[-_\\s]{0,3}(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//01 - The Colour of Magic.pdf yEnc', + 'ordinal' => 160, + ), + 378 => + array ( + 'id' => 379, + 'group_regex' => '^alt\\.binaries\\.e-book\\.flood$', + 'regex' => '/^\\(.+\\)[-_\\s]{0,3}(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(Esperanto novel) - H.A. Luyken - Pro ICtar.epub yEnc', + 'ordinal' => 165, + ), + 379 => + array ( + 'id' => 380, + 'group_regex' => '^alt\\.binaries\\.e-book\\.flood$', + 'regex' => '/^All I have - not checked[-_\\s]{0,3}(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//All I have - not checked John D MacDonald - April Evil.epub yEnc', + 'ordinal' => 170, + ), + 380 => + array ( + 'id' => 381, + 'group_regex' => '^alt\\.binaries\\.e-book\\.flood$', + 'regex' => '/^As req[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc.+$/ui', + 'status' => 1, + 'description' => '//As req "Aftermath - Peter Robinson.mobi" yEnc Peter Robinson - Inspector Banks 12', + 'ordinal' => 175, + ), + 381 => + array ( + 'id' => 382, + 'group_regex' => '^alt\\.binaries\\.e-book\\.flood$', + 'regex' => '/^Attn.+\\[\\d+-\\d+\\][-_\\s]{0,3}(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//As req "Aftermath - Peter Robinson.mobi" yEnc Peter Robinson - Inspector Banks 12', + 'ordinal' => 180, + ), + 382 => + array ( + 'id' => 383, + 'group_regex' => '^alt\\.binaries\\.e-book\\.flood$', + 'regex' => '/^Attn:[-_\\s]{0,3}(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//ATTN: Robert A. Ely - Wilde, Lori - Zero Control [html].rar yEnc', + 'ordinal' => 185, + ), + 383 => + array ( + 'id' => 384, + 'group_regex' => '^alt\\.binaries\\.e-book\\.flood$', + 'regex' => '/^Attn:.+\\.com[-_\\s]{0,3}(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//ATTN: Drake@Darkest air.com - Kurtz, Katherine - Heirs of Saint Camber 03 - The Bastard Prince [txt].zip yEnc', + 'ordinal' => 190, + ), + 384 => + array ( + 'id' => 385, + 'group_regex' => '^alt\\.binaries\\.e-book\\.flood$', + 'regex' => '/^reposting.+pars[-_\\s]{0,3}(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//reposting 2012-10-27 new ebooks with 35.74 pars - M William Phelps - Sleep In Heavenly Peace (mobi).rar yEnc', + 'ordinal' => 195, + ), + 385 => + array ( + 'id' => 386, + 'group_regex' => '^alt\\.binaries\\.e-book\\.flood$', + 'regex' => '/^(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//A Tradition of Victory - Alexander Kent.epub yEnc', + 'ordinal' => 200, + ), + 386 => + array ( + 'id' => 387, + 'group_regex' => '^alt\\.binaries\\.e-book\\.flood$', + 'regex' => '/.*"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//"Gabaldon, Diana - Outlander [5] The Fiery Cross.epub" yEnc ::: //Kiny Friedman "Friedman, Kinky - Prisoner of Vandam Street_ A Novel, The.epub" yEnc', + 'ordinal' => 205, + ), + 387 => + array ( + 'id' => 388, + 'group_regex' => '^alt\\.binaries\\.e-book\\.german$', + 'regex' => '/^.+\\(eBook\\).+?\\[\\d+\\/\\d+\\] - "(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//.::::(eBook)::::. [01/10] - "Althaus modernisieren Magazin 08 09 2013.par2" - 65,71 MB yEnc', + 'ordinal' => 5, + ), + 388 => + array ( + 'id' => 389, + 'group_regex' => '^alt\\.binaries\\.e-book\\.german$', + 'regex' => '/^.+?\\[\\d+\\/(\\d+\\]) - "(?P.+?)\\.(txt|pdf|mobi|epub|azw)" yEnc$/', + 'status' => 1, + 'description' => '//ATTN: fals', + 'ordinal' => 10, + ), + 389 => + array ( + 'id' => 390, + 'group_regex' => '^alt\\.binaries\\.e-book\\.german$', + 'regex' => '/^"(?P.+?)\\.(txt|pdf|mobi|epub|azw)" yEnc$/', + 'status' => 1, + 'description' => '//"Abe, Shana - Der träumende Diamant 2 - Erdmagie.epub" yEnc', + 'ordinal' => 15, + ), + 390 => + array ( + 'id' => 391, + 'group_regex' => '^alt\\.binaries\\.e-book\\.german$', + 'regex' => '/^\\(\\d+\\/\\d+\\) "(?P.+?)\\.(txt|pdf|mobi|epub|azw)"[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(1/1) "B rse Online - No 30 2013.pdf" - 4,03 MB - yEnc', + 'ordinal' => 20, + ), + 391 => + array ( + 'id' => 392, + 'group_regex' => '^alt\\.binaries\\.e-book\\.rpg$', + 'regex' => '/^.+?\\[\\d+\\/(\\d+\\]) - "(?P.+?)\\.(txt|pdf|mobi|epub|azw)" yEnc$/', + 'status' => 1, + 'description' => '//ATTN: fals', + 'ordinal' => 5, + ), + 392 => + array ( + 'id' => 393, + 'group_regex' => '^alt\\.binaries\\.e-book\\.magazines$', + 'regex' => '/^\\[(?P.+?)\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '// [Top.Gear.South.Africa-February.2014] - "Top.Gear.South.Africa-February.2014.pdf.vol00+1.par2" yEnc - 809.32 KB', + 'ordinal' => 5, + ), + 393 => + array ( + 'id' => 394, + 'group_regex' => '^alt\\.binaries\\.e-book\\.technical$', + 'regex' => '/ASST (NEW|OLD) MTLS.*"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//ASST NEW MTLS 13 MAR 2012 A - [106/116] - "The Elements of Style, Illus. - W. Strunk Jr., E. White, M. Kalman (Penguin, 2005) WW.pdf" yEnc', + 'ordinal' => 5, + ), + 394 => + array ( + 'id' => 395, + 'group_regex' => '^alt\\.binaries\\.e-book\\.technical$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//"ASTG TRANSMISSON REBUILD MANUALS FOR BMW.rar.par2" [07/73] yEnc', + 'ordinal' => 10, + ), + 395 => + array ( + 'id' => 396, + 'group_regex' => '^alt\\.binaries\\.e-book\\.technical$', + 'regex' => '/^\\(\\?+\\) \\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(???) [1/1] - "Asimov, Isaac - [Foundation 01] - De Foundation_v2.rar" yEnc', + 'ordinal' => 15, + ), + 396 => + array ( + 'id' => 397, + 'group_regex' => '^alt\\.binaries\\.e-book\\.technical$', + 'regex' => '/^\\(\\d+\\/\\d+\\)[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(07/14) "NS120107 07Jan12.pdf" - 238.80 MB - yEnc', + 'ordinal' => 20, + ), + 397 => + array ( + 'id' => 398, + 'group_regex' => '^alt\\.binaries\\.e-book\\.technical$', + 'regex' => '/^\\(.+\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(103 eBooks On Music Production) [071/111] - "Pro Enginner School Vol. 1 + 2 By Record-Producer.com PDF.rar" yEnc', + 'ordinal' => 25, + ), + 398 => + array ( + 'id' => 399, + 'group_regex' => '^alt\\.binaries\\.e-book\\.technical$', + 'regex' => '/^\\(.+\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+REPOST.+[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//((BIO & MED 008) [29/64] - "Acupuncture Therapy for Neurological Diseases - Y. Xia, et al., (Springer, 2010) WW.pdf" *REPOST* yEnc', + 'ordinal' => 30, + ), + 399 => + array ( + 'id' => 400, + 'group_regex' => '^alt\\.binaries\\.e-book\\.technical$', + 'regex' => '/^\\(.+\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(Bighathi) [4/4] - "Letters to Penthouse XXiLetters to Penthouse XXI - The Editors of Penthouse Magazine.epub" yEnc', + 'ordinal' => 35, + ), + 400 => + array ( + 'id' => 401, + 'group_regex' => '^alt\\.binaries\\.e-book\\.technical$', + 'regex' => '/^\\(.+\\)[-_\\s]{0,3}[\\w]+[-_\\s]{0,3}\\(.+\\)[-_\\s]{0,3}\\[\\d+ of \\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(Repost) Computing (Recent) [32 of 44] "Professional XMPP Programming (Wrox, 2010).pdf" yEnc', + 'ordinal' => 40, + ), + 401 => + array ( + 'id' => 402, + 'group_regex' => '^alt\\.binaries\\.e-book\\.technical$', + 'regex' => '/^\\d+.+E-books[-_\\s]{0,3}.+[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//48 Unsorted E-books (03-12-2010) [49/52] - "Zend Framework 1.8 Web Application Development.pdf" yEnc', + 'ordinal' => 45, + ), + 402 => + array ( + 'id' => 403, + 'group_regex' => '^alt\\.binaries\\.e-book\\.technical$', + 'regex' => '/^A large collection of programming ebooks [-_\\s]{0,3}\\[\\d+ of \\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//A large collection of programming ebooks [128 of 527] "Eckel - Thinking in C++ - Volume II - 2e (Prentice, 2000).pdf" yEnc', + 'ordinal' => 50, + ), + 403 => + array ( + 'id' => 404, + 'group_regex' => '^alt\\.binaries\\.e-book\\.technical$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//"Make Magazine - Volume 03.pdf" yEnc', + 'ordinal' => 55, + ), + 404 => + array ( + 'id' => 405, + 'group_regex' => '^alt\\.binaries\\.e-book\\.technical$', + 'regex' => '/"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//ADVANCES in CHEMICAL ENGINEERING 22aug11 [8 of 30] "Advances in Chemical Engineering Vol 20 Kwauk (AP 1994).pdf" yEnc', + 'ordinal' => 60, + ), + 405 => + array ( + 'id' => 406, + 'group_regex' => '^alt\\.binaries\\.e-book\\.technical$', + 'regex' => '/"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Arduino Books by Request [9/9] - "iOS Sensor Apps with Arduino - A. Allan (O\'Reilly, 2011) WW.pdf" (1/114) yEnc', + 'ordinal' => 65, + ), + 406 => + array ( + 'id' => 407, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/\\[#+\\]-\\[.+?\\]-\\[.+?\\]-\\[ (?P.+?) \\][- ]\\[\\d+\\/\\d+\\] - "([\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[######]-[FULL]-[#a.b.teevee@EFNet]-[ Misfits.S01.SUBPACK.DVDRip.XviD-P0W4DVD ] [1/5] - "Misfits.S01.SUBPACK.DVDRip.XviD-P0W4DVD.nfo" yEnc', + 'ordinal' => 5, + ), + 407 => + array ( + 'id' => 408, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/^NihilCumsteR \\[\\d+\\/\\d+\\] - "(?P.+?)NihilCumsteR\\./', + 'status' => 1, + 'description' => '//NihilCumsteR [1/8] - "Conysgirls.cumpilation.xxx.NihilCumsteR.par2" yEnc', + 'ordinal' => 10, + ), + 408 => + array ( + 'id' => 409, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/^\\[\\s?\\d+\\/\\d+\\s?\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[01/13] - "Mahina.Zaltana.14.01.17.720p.x264-DFury.7z.001" yEnc', + 'ordinal' => 15, + ), + 409 => + array ( + 'id' => 410, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/^[><]+Hell-of-Usenet\\.org[<>]+ - \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//>>>>>Hell-of-Usenet.org>>>>> - [01/23] - "Cum Hunters 3 XXX.par2" yEnc', + 'ordinal' => 20, + ), + 410 => + array ( + 'id' => 411, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/^[A-Z0-9][a-zA-Z0-9 -]{8,}? - \\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - yenc yEnc$/', + 'status' => 1, + 'description' => '//Lesbian Crush Diaries 5 XXX DVDRip x264-Pr0nStarS - (01/26) "Lesbian.Crush.Diaries.5.XXX.DVDRip.x264-Pr0nStarS.nfo" - yenc', + 'ordinal' => 25, + ), + 411 => + array ( + 'id' => 412, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/^(?P[A-Z0-9][a-zA-Z0-9 ]{8,}?) - File \\d+ of \\d+ - "([\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Megan Coxxx Takes Out Her Favourite Strap On Dildos And Plays With Her Girlfriend Re - File 01 of 67 - "Toy_Stories.r00.par2" yEnc', + 'ordinal' => 30, + ), + 412 => + array ( + 'id' => 413, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/^\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB] .+? yEnc$/', + 'status' => 1, + 'description' => '//[02/21] - "Staendig Feucht.part01.rar" - 493.38 MB ....::::UR-powered by SecretUsenet.com::::.... yEnc', + 'ordinal' => 35, + ), + 413 => + array ( + 'id' => 414, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/^[A-Z0-9].{8,}? - \\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - yenc yEnc$/', + 'status' => 1, + 'description' => '//Big Tits in Sport 12 (2013) XXX DVDRip x264-CHiKANi - (03/39) "Big.Tits.in.Sport.12.XXX.DVDRip.x264-CHiKANi.part01.rar" - yenc yEnc', + 'ordinal' => 40, + ), + 414 => + array ( + 'id' => 415, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜߤƒ„¶!.,&;_\\()\\[\\]\\\'\\`-]{8,})([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")_SpotBots yEnc$/', + 'status' => 1, + 'description' => '//"Babysitters_a_Slut_4_Scene_4.part01.rar"_SpotBots yEnc', + 'ordinal' => 45, + ), + 415 => + array ( + 'id' => 416, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/^.+?usenet-space.+?Powered by.+? "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+? \\d+\\/(\\d+.+?)$/', + 'status' => 1, + 'description' => '//<<<>>CowboyUp2012 XXX><<>>usenet-space-cowboys.info<<< "Is.Not.Force.It.My.Younger.SOE-806.Jav.Censored.DVDRip.XviD-MotTto.part01.rar" >< 01/15 (1,39', + 'ordinal' => 50, + ), + 416 => + array ( + 'id' => 417, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/^(?PFake Taxi E\\d+.+?)\\[\\d+\\/\\d+\\] - "([\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Fake Taxi E58 - Taylor[01/23] - "faket.e58.taylor.part01.rar" yEnc', + 'ordinal' => 55, + ), + 417 => + array ( + 'id' => 418, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/^Flapdrol mp4 - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Flapdrol mp4 - "HotKinkyJo - 2013-12-28 - Pink Leopard toys sex movie.part5.rar" yEnc', + 'ordinal' => 60, + ), + 418 => + array ( + 'id' => 419, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/^\\[U4A\\]\\[.+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[U4A][-always take the post from the first and original poster!-] - "VIDEOOT-10VSN01.vol27+23.PAR2" yEnc', + 'ordinal' => 65, + ), + 419 => + array ( + 'id' => 420, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/^VolSpuitenMetBud - - \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//VolSpuitenMetBud - - [14/26] - "SexuallyBroken - 2013-12-30 - Stunning Cherie DeVille turned into blowjob device, hardcore deepthroating, relentless pounding! Cherie DeVille & Matt Williams.part13.rar" yEnc', + 'ordinal' => 70, + ), + 420 => + array ( + 'id' => 421, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/^.+[Kk]leverig\\.eu.+\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//..::kleverig.eu::.. [01/18] - "CQVNAj4WLDW_7Bm8Ax6J.par2" - 686,38 MB yEnc', + 'ordinal' => 75, + ), + 421 => + array ( + 'id' => 422, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/^(?P[\\w\\säöüÄÖÜߤƒ„¶!.,&;_\\()\\[\\]\\\'\\`-]{8,})[-_\\s]{0,3}[\\(\\[]\\d+ of (\\d+[\\)\\]])[-_\\s]{0,3}"([\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Brazilian.Transsexuals.SR.UD.12.28.13.HD.720p.HDL [19 of 24] "JhoanyWilkerXmasLD_1_hdmp4.mp4.vol00+1.par2" yEnc', + 'ordinal' => 80, + ), + 422 => + array ( + 'id' => 423, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/^\\(\\?+\\) \\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/', + 'status' => 1, + 'description' => '//(????) [01/18] - "Blonde Cutie Seduces Her Step Dad Black Market.rar" yEnc', + 'ordinal' => 85, + ), + 423 => + array ( + 'id' => 424, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/^[-_\\s]{0,4}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//- - [001/202] - "epAgY717nUChOeWswZR4.par2" yEnc', + 'ordinal' => 90, + ), + 424 => + array ( + 'id' => 425, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/^[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//- "ADJG3HG2H1U9YHDGHD5GA8H.par2" yEnc', + 'ordinal' => 95, + ), + 425 => + array ( + 'id' => 426, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/^[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/u', + 'status' => 1, + 'description' => '//- "dvd_10-96CEA81F.part1.rar" - [3/9] - 1,21 GB - yEnc', + 'ordinal' => 100, + ), + 426 => + array ( + 'id' => 427, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/^[-_\\s]{0,3}\\(\\d+\\/\\d+\\)[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//- (01/74) - "50.Shades.Of.Dylan.Ryan.DVDRip.AVC.par2" yEnc', + 'ordinal' => 105, + ), + 427 => + array ( + 'id' => 428, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")_SpotBots[-_\\s]{0,3}yEnc$/u', + 'status' => 1, + 'description' => '//"HD_1110.part01.rar"_SpotBots yEnc', + 'ordinal' => 110, + ), + 428 => + array ( + 'id' => 429, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/^\\(\\s*.+\\s*\\)\\s*.+By Dready Niek.+\\s*\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"Dreadys(?P[^.]{8,})([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//( DreadysCEMPenetrationshumides(1977) ) ** By Dready Niek** ) [11/25] - "DreadysCEMPenetrationshumides(1977).part10.rar" yEnc', + 'ordinal' => 115, + ), + 429 => + array ( + 'id' => 430, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/^\\(\\s*\\[\\s*[Mm]agma classic[-_\\s]{0,3}(?P[\\w\\säöüÄÖÜߤƒ„¶!.,&;_\\()\\[\\]\\\'\\`-]{8,})\\s*\\]\\s*\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//( [ Magma classic - Tyra Misoux-Schwere Jungs Und Leichte Madchen ] ) [01/16] - ".par2" yEnc', + 'ordinal' => 120, + ), + 430 => + array ( + 'id' => 431, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/^\\(\\d+\\/\\d+\\)[-_\\s]{0,3}New\\.Nippi.+[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(01/21) - New.Nippi.Video.The.Artist - "Next.Door.Nikki.Sims.2013-05-03_the_artist.jpeg" - 574.84 MB - yEnc', + 'ordinal' => 125, + ), + 431 => + array ( + 'id' => 432, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/^VolSpuitenMetBud[-_\\s]{0,5}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//VolSpuitenMetBud - - [42/59] - "SexuallyBroken - 2012-11-19 - Apartment 345; A Feature Presentation of Real l', + 'ordinal' => 130, + ), + 432 => + array ( + 'id' => 433, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/^[\\w]+\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//PNG170514XW042SOE9[01/35] - "PNG170514XW042SOE9.jpg" yEnc', + 'ordinal' => 135, + ), + 433 => + array ( + 'id' => 434, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/^\\(\\d+\\/\\d+\\)[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}.+yEnc$/i', + 'status' => 1, + 'description' => '//(31/31) "Sex And Submission 2009 - 08.vol134+128.PAR2" - 2,05 GB -==UR-powered by SecretUsenet.com==- yEnc', + 'ordinal' => 140, + ), + 434 => + array ( + 'id' => 435, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/^\\[http:\\/\\/www\\.hillysex\\.nl\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[http://www.hillysex.nl] - "H9DR3647K8V2Z5CG.par2" yEnc', + 'ordinal' => 145, + ), + 435 => + array ( + 'id' => 436, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/\\w+\\(\\?+\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//klokhuis(????) [01/28] - "Klokhuis-Hello-Titty-06.par2" yEnc', + 'ordinal' => 150, + ), + 436 => + array ( + 'id' => 437, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/\\(\\d+\\/\\d+\\)[-_\\s]{0,3}v(2v)?[-_\\s]{0,4}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(011/107) - v2v - "0203114movie-eng-a.part10.rar" - 1,26 GB - yEnc', + 'ordinal' => 155, + ), + 437 => + array ( + 'id' => 438, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/\\(\\?+\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(????) [01/15] - "MRGVGoVNJ3_hc.par2" yEnc', + 'ordinal' => 160, + ), + 438 => + array ( + 'id' => 439, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/\\((?P[\\w\\s-]{8,})\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(Czech Amateurs 01) [30/43] - "CZEAMA01.part29.rar" yEnc', + 'ordinal' => 165, + ), + 439 => + array ( + 'id' => 440, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/\\(\\?+\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc $/iu', + 'status' => 1, + 'description' => '//(????) [01/15] - "PMRJDNN.par2" yEnc ::: // *Note space after yEnc', + 'ordinal' => 170, + ), + 440 => + array ( + 'id' => 441, + 'group_regex' => '^alt\\.binaries\\.erotica$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//"Cuties 6.part.vol551+106.par2" yEnc', + 'ordinal' => 175, + ), + 441 => + array ( + 'id' => 442, + 'group_regex' => '^alt\\.binaries\\.erotica\\.divx$', + 'regex' => '/^\\w+\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '// BBC190215XPLPU31SW[02/28] - "BBC190215XPLPU31SW.par2" yEnc', + 'ordinal' => 5, + ), + 442 => + array ( + 'id' => 443, + 'group_regex' => '^alt\\.binaries\\.etc$', + 'regex' => '/^\\[scnzbefnet\\] (?P.+?) \\[\\d+\\/(\\d+\\]) - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//[scnzbefnet] Were.the.Millers.2013.EXTENDED.720p.BluRay.x264-SPARKS [01/61] - "were.the.millers.2013.extended.720p.bluray.x264-sparks.nfo" yEnc', + 'ordinal' => 5, + ), + 443 => + array ( + 'id' => 444, + 'group_regex' => '^alt\\.binaries\\.etc$', + 'regex' => '/^.+\\[DoAsYouLike\\].+\\d+[.,]\\d+ [kKmMgG][bB].+"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") (\\d+[.,])?\\d+ ([kKmMgG])?[bB][-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//..:[DoAsYouLike]:.. 116,12 MB "Graphite v8.9.17 SP4R4.nfo" 3,00 kB yEnc', + 'ordinal' => 10, + ), + 444 => + array ( + 'id' => 445, + 'group_regex' => '^alt\\.binaries\\.etc$', + 'regex' => '/^[\\(\\[]\\d+\\/\\d+[\\)\\]][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/', + 'status' => 1, + 'description' => '//(047/550) "Enf.S02E02.G.D.D.W.7.H.x2-e.vol105+99.PAR2" - 36,13 GB -Enf.S02.G.D.D.W.7.H.x2-e yEnc ::: //[3/3] - "Mayle Peter - Der Coup von Marseille.epub.vol0+1.par2" - 956,83 kB {UR} yEnc', + 'ordinal' => 15, + ), + 445 => + array ( + 'id' => 446, + 'group_regex' => '^alt\\.binaries\\.etc$', + 'regex' => '/^.+Old but Sold.+>< "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") >< \\d+\\/\\d+ \\(\\d+[.,]\\d+ [kKmMgG][bB]\\).+ yEnc$/', + 'status' => 1, + 'description' => '//<<>> <<< >< >< "German Top 50 ODC - 12.08.2013.nfo" >< 02/33 (541,61 MB) >< 10,93 kB > yEnc', + 'ordinal' => 20, + ), + 446 => + array ( + 'id' => 447, + 'group_regex' => '^alt\\.binaries\\.etc$', + 'regex' => '/^.+Usenet-Space-Cowboys.+> - (?P[A-Z0-9][a-zA-Z0-9\\. ]{6,})([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}).+ yEnc$/', + 'status' => 1, + 'description' => '//<<>> - 1Password V1.0.9.236 Setup Key.PAR2 yEnc', + 'ordinal' => 25, + ), + 447 => + array ( + 'id' => 448, + 'group_regex' => '^alt\\.binaries\\.etc$', + 'regex' => '/^\\d+[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//704900999555666777123978 - [398/415] - "Jormungand Complete [720p] mHD.part31.rar" yEnc', + 'ordinal' => 30, + ), + 448 => + array ( + 'id' => 449, + 'group_regex' => '^alt\\.binaries\\.etc$', + 'regex' => '/^[\\w. -]+[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w.\\()-]{8,}?\\b)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Man.Of.Steel.2013.BRRip.x264.AC3-UNiQUE - [02/38] - "Man.Of.Steel.2013.BRRip.x264.AC3-UNiQUE.part01.rar" yEnc', + 'ordinal' => 35, + ), + 449 => + array ( + 'id' => 450, + 'group_regex' => '^alt\\.binaries\\.etc$', + 'regex' => '/^.+old but sold.+(?P[\\w. \\()-]{8,}?\\b)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")>\\[\\d+\\/\\d+\\][-_\\s]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//<<<< old but sold >>>> < USC> <"K11 - Kommissare im Einsatz (DE) NDS.part3.rar">[04/11] 74,54 MB yEnc', + 'ordinal' => 40, + ), + 450 => + array ( + 'id' => 451, + 'group_regex' => '^alt\\.binaries\\.etc$', + 'regex' => '/^Uploader\\.Presents-(?P[\\w. \\()-]{8,}?\\b)[\\(\\[]\\d+\\/\\d+\\]".+?" yEnc$/', + 'status' => 1, + 'description' => '//Uploader.Presents-ACDC.Let.There.Be.Rock.1980.720p.BluRay.DD5.1.x264-DON(00/47]"rock.ac3.720p.nzb" yEnc', + 'ordinal' => 45, + ), + 451 => + array ( + 'id' => 452, + 'group_regex' => '^alt\\.binaries\\.etc$', + 'regex' => '/^(?P[\\w.\\()-]{8,})[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Bitsum.Technologies.Process.Lasso.Pro.v6.5.00.Cracked-EAT - [3/4] - "eat.vol0+1.par2" yEnc', + 'ordinal' => 50, + ), + 452 => + array ( + 'id' => 453, + 'group_regex' => '^alt\\.binaries\\.etc$', + 'regex' => '/^.+?usenet-space.+?Powered by.+? "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+? \\d+\\/(\\d+.+?)$/', + 'status' => 1, + 'description' => '//<<>> USC <<< "Medieval Wii Pal.vol108+29.par2" >< 60/60 (4,82 GB) >< 95,77 MB > yEnc', + 'ordinal' => 55, + ), + 453 => + array ( + 'id' => 454, + 'group_regex' => '^alt\\.binaries\\.etc$', + 'regex' => '/^Uploader\\.Presents-(?P[\\w. \\()-]{8,}?\\b)[\\(\\[]\\d+\\/\\d+\\]".+?" yEnc$/', + 'status' => 1, + 'description' => '//Uploader.Presents-ACDC.Let.There.Be.Rock.1980.720p.BluRay.DD5.1.x264-DON(00/47]"rock.ac3.720p.nzb" yEnc', + 'ordinal' => 60, + ), + 454 => + array ( + 'id' => 455, + 'group_regex' => '^alt\\.binaries\\.etc$', + 'regex' => '/^(?P[\\w.\\()-]{8,})[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Bitsum.Technologies.Process.Lasso.Pro.v6.5.00.Cracked-EAT - [3/4] - "eat.vol0+1.par2" yEnc', + 'ordinal' => 65, + ), + 455 => + array ( + 'id' => 456, + 'group_regex' => '^alt\\.binaries\\.etc$', + 'regex' => '/^.+?usenet-space.+?Powered by.+? (?P[\\w. \\()-]{8,}?\\b)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+? \\d+\\/(\\d+.+?)$/', + 'status' => 1, + 'description' => '//<<>> USC <<< "Medieval Wii Pal.vol108+29.par2" >< 60/60 (4,82 GB) >< 95,77 MB > yEnc', + 'ordinal' => 70, + ), + 456 => + array ( + 'id' => 457, + 'group_regex' => '^alt\\.binaries\\.etc$', + 'regex' => '/^[\\w. -]+[-_\\s]{0,3}"(?P[\\w.\\()-]{8,}?\\b)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//W33d5.S01.720p.BluRay.x264 - "W33d5.S01.720p.BluRay.x264.part63.rar" yEnc', + 'ordinal' => 75, + ), + 457 => + array ( + 'id' => 458, + 'group_regex' => '^alt\\.binaries\\.etc$', + 'regex' => '/^[\\w. -]+[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w.\\()-]{8,}?\\b)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Man.Of.Steel.2013.BRRip.x264.AC3-UNiQUE - [02/38] - "Man.Of.Steel.2013.BRRip.x264.AC3-UNiQUE.part01.rar" yEnc', + 'ordinal' => 80, + ), + 458 => + array ( + 'id' => 459, + 'group_regex' => '^alt\\.binaries\\.etc$', + 'regex' => '/^>GOU<< (?P[\\w.\\[\\]\\() -]{8,}?\\b)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rarr|\\.7z)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}).+www\\.SSL-News\\.info<[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//>GOU<< XUS Clock Plus v1.5.0 with Key [TorDigger].PAR2 >>www.SSL-News.info< yEnc', + 'ordinal' => 85, + ), + 459 => + array ( + 'id' => 460, + 'group_regex' => '^alt\\.binaries\\.etc$', + 'regex' => '/^[\\w. -]+[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w.\\()-]{8,}?\\b)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Man.Of.Steel.2013.BRRip.x264.AC3-UNiQUE - [02/38] - "Man.Of.Steel.2013.BRRip.x264.AC3-UNiQUE.part01.rar" yEnc', + 'ordinal' => 90, + ), + 460 => + array ( + 'id' => 461, + 'group_regex' => '^alt\\.binaries\\.etc$', + 'regex' => '/^>GOU<< (?P[\\w.\\[\\]\\() -]{8,}?\\b)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rarr|\\.7z)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}).+www\\.SSL-News\\.info<[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//>GOU<< XUS Clock Plus v1.5.0 with Key [TorDigger].PAR2 >>www.SSL-News.info< yEnc', + 'ordinal' => 95, + ), + 461 => + array ( + 'id' => 462, + 'group_regex' => '^alt\\.binaries\\.etc$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//"Drains_READNFO-VACE.nfo" yEnc', + 'ordinal' => 100, + ), + 462 => + array ( + 'id' => 463, + 'group_regex' => '^alt\\.binaries\\.frogs$', + 'regex' => '/\\[\\.in\\][-_\\s]{0,3}.*[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[.in] X-Art.13.03.08.Angelica.Spilled.Milk.XXX.540p-WMV [02/23] - "X-Art.13.03.08.Angelica.Spilled.Milk.XXX.540p-WMV.r00" yEnc', + 'ordinal' => 5, + ), + 463 => + array ( + 'id' => 464, + 'group_regex' => '^alt\\.binaries\\.frogs$', + 'regex' => '/\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Beachbody.ShaunT.Focus.T25 [01/39] - "Beachbody.ShaunT.Focus.T25.DVD3.Ab.Intervals.par2" yEnc', + 'ordinal' => 10, + ), + 464 => + array ( + 'id' => 465, + 'group_regex' => '^alt\\.binaries\\.ftn$', + 'regex' => '/^(Usenet collector)?\\(aangemeld.+\\) \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(aangemeld bij usenet collector) [181/190] - "Ally_McBeal_Season_3_Dvd_4.vol0176+176.par2" yEnc ::: //Usenet collector(aangemeld bij usenet collector) [001/124] - "Northern_Exposure_Season_4_dvd_2.par2" yEnc', + 'ordinal' => 5, + ), + 465 => + array ( + 'id' => 466, + 'group_regex' => '^alt\\.binaries\\.ftn$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//"Family Games-OUTLAWS.nfo" yEnc', + 'ordinal' => 10, + ), + 466 => + array ( + 'id' => 467, + 'group_regex' => '^alt\\.binaries\\.ftn$', + 'regex' => '/^(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) {0,3}yEnc$/', + 'status' => 1, + 'description' => '//Adobe Photoshop Lightroom v5.2 - FiNaL - Multilingual [WIN].vol037+32.PAR2 yEnc', + 'ordinal' => 15, + ), + 467 => + array ( + 'id' => 468, + 'group_regex' => '^alt\\.binaries\\.ftn$', + 'regex' => '/^\\((?P[\\w+ .\\()-]{8,})\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(Wondershare AllMyTube 3.8.0.4 + Patch) [01/12] - "Wondershare AllMyTube 3.8.0.4 + Patch.nfo" yEnc', + 'ordinal' => 20, + ), + 468 => + array ( + 'id' => 469, + 'group_regex' => '^alt\\.binaries\\.ftn$', + 'regex' => '/^\\(\\?+\\) \\[\\d+\\/\\d+\\] - ".+?(?P[-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(????) [10/26] - "The.Young.Riders.S01E02.480pWEB-DL.AAC2.0.H.264-AJP69.part09.rar" yEnc', + 'ordinal' => 25, + ), + 469 => + array ( + 'id' => 470, + 'group_regex' => '^alt\\.binaries\\.fz$', + 'regex' => '/^>ghost-of-usenet\\.org>(?P.+?)<.+?> ".+?" yEnc$/', + 'status' => 1, + 'description' => '//>ghost-of-usenet.org>Monte.Cristo.GERMAN.2002.AC3.DVDRiP.XviD.iNTERNAL-HACO "haco-montecristo-xvid-a.par2" yEnc', + 'ordinal' => 5, + ), + 470 => + array ( + 'id' => 471, + 'group_regex' => '^alt\\.binaries\\.game$', + 'regex' => '/(\\[[\\d#]+\\]-\\[.+?\\]-\\[.+?\\]-)\\[ (?P.+?) \\][- ]\\[\\d+\\/\\d+\\] - "(.+?)" yEnc$/', + 'status' => 1, + 'description' => '//[192474]-[MP3]-[a.b.inner-sanctumEFNET]-[ Newbie_Nerdz_-_I_Cant_Forget_that_Girl_EP-(IM005)-WEB-2012-YOU ] [17/17] - "newbie_nerdz_-_i_cant_forget_that_girl_ep-(im005)-web-2012-you.nfo" yEnc', + 'ordinal' => 5, + ), + 471 => + array ( + 'id' => 472, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^>ghost-of-usenet\\.org>(?P.+?)<.+?> ".+?" yEnc$/', + 'status' => 1, + 'description' => '//>ghost-of-usenet.org>Monte.Cristo.GERMAN.2002.AC3.DVDRiP.XviD.iNTERNAL-HACO "haco-montecristo-xvid-a.par2" yEnc', + 'ordinal' => 5, + ), + 472 => + array ( + 'id' => 473, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^(?P.+?) \\[\\d+\\/\\d+\\] - ".+?" .+? yEnc$/', + 'status' => 1, + 'description' => '//XCOM.Enemy.Unknown.Deutsch.Patch.TokZic [0/9] - "XCOM Deutsch.nzb" ein CrazyUpp yEnc', + 'ordinal' => 10, + ), + 473 => + array ( + 'id' => 474, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^\\[ (?P[-.a-zA-Z0-9]+) \\] - \\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//[ Dawn.of.Fantasy.Kingdom.Wars-PROPHET ] - [12/52] - "ppt-dfkw.part04.rar" yEnc', + 'ordinal' => 15, + ), + 474 => + array ( + 'id' => 475, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/\\.net <<>> - \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//brothers-of-usenet.info/.net <<>> - [11/17] - "Reload.Outdoor.Action.Target.Down.GERMAN-0x0007.vol003+004.PAR2" yEnc', + 'ordinal' => 20, + ), + 475 => + array ( + 'id' => 476, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/\\[[\\d#]+\\]-\\[.+?\\]-\\[.+?\\]-\\[ (?P.+?) \\][- ]\\[\\d+\\/(\\d+\\])[-_\\s]{0,3}("|#34;).+?/', + 'status' => 1, + 'description' => '//[162198]-[FULL]-[a.b.teevee]-[ MasterChef.Junior.S01E07.720p.HDTV.X264-DIMENSION ]-[09/54] - "masterchef.junior.107.720p-dimension.nfo" yEnc', + 'ordinal' => 25, + ), + 476 => + array ( + 'id' => 477, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^"(?P.+)__www.realmom.info__.+" \\(\\d+\\/\\d+\\) \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/', + 'status' => 1, + 'description' => '//"A.Stroke.of.Fate.Operation.Valkyrie-SKIDROW__www.realmom.info__.nfo" (02/38) 1,34 GB yEnc', + 'ordinal' => 30, + ), + 477 => + array ( + 'id' => 478, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//"Mad.Men.S06E11.HDTV.x264-2HD.par2" yEnc', + 'ordinal' => 35, + ), + 478 => + array ( + 'id' => 479, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\[\\d+\\/(\\d+\\])[ _-]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//"Marvels.Agents.of.S.H.I.E.L.D.S01E07.HDTV.XviD-FUM.avi.nfo" [09/16] yEnc', + 'ordinal' => 40, + ), + 479 => + array ( + 'id' => 480, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^\\(\\?+\\) \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(????) [03/20] - "Weblinger - The.Haunted.House.Mysteries.v1.0-ZEKE.part01.rar" yEnc', + 'ordinal' => 45, + ), + 480 => + array ( + 'id' => 481, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^\\(\\d+\\/\\d+\\)( - Description)?[-_ ]{0,5}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")( - \\d+([.,]\\d+ [kKmMgG])?[bB])? - \\d+([.,]\\d+ [kKmMgG])?[bB][-_\\s]{0,3}(\\[REPOST\\] )?yEnc$/', + 'status' => 1, + 'description' => '//(001/132) "Harry.Potter.And.The.Goblet.Of.Fire.2005.810p.BluRay.x264.DTS.PRoDJi.nfo" - 8,71 GB - yEnc ::: //(01/11) - Description - "ba588f108dbd068dc93e4b0182de652d.par2" - 696,63 MB - yEnc ::: //(01/11) "Microsoft Games for Windows 8 v1.2.par2" - 189,87 MB - [REPOST] yEnc ::: //(01/24) "ExBrULlNjyRPMdxqSlJKEtAYSncStZs3.nfo" - 3.96 kB - 404.55 MB - yEnc ::: //(01/44) - - "Wii_2688_R_Knorloading.par2" - 1,81 GB - yEnc', + 'ordinal' => 50, + ), + 481 => + array ( + 'id' => 482, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^\\(\\d+\\/\\d+\\) - \\[Lords-of-Usenet\\] presents (?P.+?)[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - yEnc$/', + 'status' => 1, + 'description' => '//(01/59) - [Lords-of-Usenet] presents Sins.of.a.Solar.Empire.Rebellion.Forbidden.Worlds-RELOADED - "rld-soaserfw.nfo" - yEnc', + 'ordinal' => 55, + ), + 482 => + array ( + 'id' => 483, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^\\(\\d+\\/(\\d+\\))[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+([.,]\\d+ [kKmMgG])?[bB] -(?P[a-zA-Z0-9-_\\.]+) yEnc$/', + 'status' => 1, + 'description' => '//(19/28) "sr-joedanger.rar" - 816,05 MB -Joe.Danger-SKIDROW yEnc ::: //(39/40) "flt-ts31554.vol061+57.PAR2" - 1,43 GB -The_Sims_3_v1.55.4-FLTDOX yEnc', + 'ordinal' => 60, + ), + 483 => + array ( + 'id' => 484, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^[\\(\\[]\\d+\\/\\d+[\\)\\]][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[02/17] - "Castle.Of.Illusion.Starring.Mickey.Mouse.PSN.PS3-DUPLEX.nfo" yEnc', + 'ordinal' => 65, + ), + 484 => + array ( + 'id' => 485, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^\\[PROPER\\] (?P[a-zA-Z0-9-_\\.]+) [\\(\\[]\\d+\\/\\d+[\\)\\]][-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[PROPER] F', + 'ordinal' => 70, + ), + 485 => + array ( + 'id' => 486, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^<<<< (?P[a-zA-Z0-9-_ ]+) >>>> < USC> <".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")>\\[\\d+\\/(\\d+\\]) \\d+([.,]\\d+ [kKmMgG])?[bB] yEnc$/', + 'status' => 1, + 'description' => '//<<<< Alien Zombie Death v2 EUR PSN PSP-PLAYASiA >>>> < USC> <"Alien Zombie Death v2 EUR PSN PSP-PLAYASiA.part4.rar">[06/16] 153,78 MB yEnc', + 'ordinal' => 75, + ), + 486 => + array ( + 'id' => 487, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^<<<.+\\.info>>> fuzzy <<<(?P[a-zA-Z0-9-_ ]+)>< ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") >< \\d+\\/(\\d+) \\(\\d+([.,]\\d+ [kKmMgG])?[bB]\\) >< \\d+([.,]\\d+ [kKmMgG])?[bB] > yEnc$/', + 'status' => 1, + 'description' => '//<<>> fuzzy <<< "Adventures To Go EUR PSP-ZER0.nfo" >< 2/6 (195,70 MB) >< 10,70 kB > yEnc', + 'ordinal' => 80, + ), + 487 => + array ( + 'id' => 488, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^FTDWORLD\\.NET\\| (?P[a-zA-Z0-9 -_\\.]+) \\[\\d+\\/(\\d+\\])- ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//FTDWORLD.NET| Grand.Theft.Auto.V.XBOX360-QUACK [020/195]- "gtavdisc1.r17" yEnc', + 'ordinal' => 85, + ), + 488 => + array ( + 'id' => 489, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^\\((?P[a-zA-Z0-9 -_\\.]+)\\) \\[\\d+\\/(\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(F', + 'ordinal' => 90, + ), + 489 => + array ( + 'id' => 490, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^\\[\\d+\\/(\\d+\\]) \\((?P[a-zA-Z0-9 -_\\.]+)\\) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[16/62] (CastleStorm.XBLA.XBOX360-MoNGoLS) - "mgl-cast.part15.rar" yEnc', + 'ordinal' => 95, + ), + 490 => + array ( + 'id' => 491, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^GOGDump (?P.+) \\[\\d+\\/(\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//GOGDump Wing Commander - Privateer (1993) [GOG] [03/14] - "Wing Commander - Privateer (1993) [GOG].part2.rar" yEnc', + 'ordinal' => 100, + ), + 491 => + array ( + 'id' => 492, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^Uploader\\.Presents-(?P.+)[\\(\\[]\\d+\\/\\d+\\]".+" yEnc$/', + 'status' => 1, + 'description' => '//Uploader.Presents-Metal.Gear.Rising.Revengeance-RELOADED(51/65]"rld-megerire.r48" yEnc', + 'ordinal' => 105, + ), + 492 => + array ( + 'id' => 493, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^Uploader\\.Presents-(?P.+?) \\(\\?+\\) \\[\\d+\\/\\d+\\] - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Uploader.Presents-LEGO.The.Hobbit-RELOADED (????) [01/90] - "rld-legoho.nfo" yEnc', + 'ordinal' => 110, + ), + 493 => + array ( + 'id' => 494, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^\\( (?P[\\w. -]{8,}) \\)[-_\\s]{0,3}\\[\\d+\\/(\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//( Overlord II RELOADED ) - [013/112] - "rld-olii.part001.rar" yEnc', + 'ordinal' => 115, + ), + 494 => + array ( + 'id' => 495, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^(?P[a-zA-Z0-9 -\\._]+) - \\[\\d+\\/(\\d+\\])[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Baku.No.JAP.Working.PSP-PaL - [1/7] - "Baku.No.JAP.Working.PSP-PaL.rar" yEnc', + 'ordinal' => 120, + ), + 495 => + array ( + 'id' => 496, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^.+old but sold.+"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") >< \\d+\\/\\d+[-_\\s]{0,3}\\(\\d+[.,]\\d+ [kKmMgG][bB]\\) >< \\d+[.,]\\d+ [kKmMgG][bB] >[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '// <<>> USC <<< "Flatout WII Format WBFS.part20.rar" >< 21/35 (1,39 GB) >< 47,68 MB > yEnc', + 'ordinal' => 125, + ), + 496 => + array ( + 'id' => 497, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}-]{8,}?)[-_\\s]{4,10}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Tiny Toon Adventures Buster & The Beanstalk PSX2PSP - "EBOOT.nzb" yEnc', + 'ordinal' => 130, + ), + 497 => + array ( + 'id' => 498, + 'group_regex' => '^alt\\.binaries\\.games$', + 'regex' => '/^>>> www\\.lords-of-usenet\\.org <<< "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")(?P \\(PS2 Game\\)) \\[\\d+\\/\\d+\\] - \\[\\d+([.,]\\d+ [kKmMgG])?[bB]\\] yEnc$/ui', + 'status' => 1, + 'description' => '//>>> www.lords-of-usenet.org <<< "SpongeBob & Freunde - Schlacht um die Vulkaninsel.part21.rar" (PS2 Game) [22/33] - [1,15 GB] yEnc', + 'ordinal' => 135, + ), + 498 => + array ( + 'id' => 499, + 'group_regex' => '^alt\\.binaries\\.games\\.dox$', + 'regex' => '/(\\[[\\d#]+\\]-\\[.+?\\]-\\[.+?\\]-)\\[ (?P.+?) \\][- ]\\[\\d+\\/\\d+\\] - "(.+?)" yEnc$/', + 'status' => 1, + 'description' => '//[142961]-[MP3]-[a.b.inner-sanctumEFNET]-[ Pascal_and_Pearce-Passport-CDJUST477-2CD-2011-1REAL ] [28/36] - "Pascal_and_Pearce-Passport-CDJUST477-2CD-2011-1REAL.par2" yEnc', + 'ordinal' => 5, + ), + 499 => + array ( + 'id' => 500, + 'group_regex' => '^alt\\.binaries\\.games\\.dox$', + 'regex' => '/^\\[NEW DOX\\][ _-]{0,3}(?P.+?)[ _-]{0,3}\\[\\d+\\/\\d+\\][ _-]{0,3}"([\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[NEW DOX] The.King.of.Fighters.XIII.Update.v1.1c-RELOADED [1/6] - "The.King.of.Fighters.XIII.Update.v1.1c-RELOADED.par2" yEnc ::: //[NEW DOX] Crysis.3.Crackfix.3.INTERNAL-RELOADED [00/12] ".nzb" yEnc', + 'ordinal' => 10, + ), + )); + \DB::table('release_naming_regexes')->insert(array ( + 0 => + array ( + 'id' => 501, + 'group_regex' => '^alt\\.binaries\\.games\\.dox$', + 'regex' => '/^\\[NEW DOX\\][ _-]{0,3}(?P.+?)[ _-]{0,3}"([\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[NEW DOX] Minecraft.1.6.2.Installer.Updated.Server.List - "Minecraft 1 6 2 Cracked Installer Updater Serverlist.nfo" - yEnc', + 'ordinal' => 15, + ), + 1 => + array ( + 'id' => 502, + 'group_regex' => '^alt\\.binaries\\.games\\.dox$', + 'regex' => '/^\\[ (?P[a-zA-Z0-9-\\._ ]+) \\d+\\/(\\d+ \\]) ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[ Assassins.Creed.3.UPDATE 1.01.CRACK.READNFO-P2P 00/17 ] "Assassins.Creed.3.UPDATE 1.01.nzb" yEnc', + 'ordinal' => 20, + ), + 2 => + array ( + 'id' => 503, + 'group_regex' => '^alt\\.binaries\\.games\\.dox$', + 'regex' => '/^\\[\\d+\\/(\\d+\\]) - (?P[a-zA-Z0-9-\\.\\&_ ]+) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")( - PC)? - yEnc$/', + 'status' => 1, + 'description' => '//[01/16] - GRID.2.Update.v1.0.83.1050.Incl.DLC-RELOADED - "reloaded.nfo" - yEnc ::: //[12/17] - Call.of.Juarez.Gunslinger.Update.v1.03-FTS - "fts-cojgsu103.vol00+01.PAR2" - PC - yEnc', + 'ordinal' => 25, + ), + 3 => + array ( + 'id' => 504, + 'group_regex' => '^alt\\.binaries\\.games\\.dox$', + 'regex' => '/^\\[\\d+\\/(\\d+\\]) (?P[a-zA-Z0-9-\\._ ]+) ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[36/48] NASCAR.The.Game.2013.Update.2-SKIDROW - "sr-nascarthegame2013u2.r33" yEnc', + 'ordinal' => 30, + ), + 4 => + array ( + 'id' => 505, + 'group_regex' => '^alt\\.binaries\\.games\\.dox$', + 'regex' => '/^\\[(?P[a-zA-Z0-9-\\._ ]+)\\]- ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[Grand_Theft_Auto_Vice_City_1.1_Blood_NoCD_Patch-gimpsRus]- "grugtavc11bcd.nfo" yEnc', + 'ordinal' => 35, + ), + 5 => + array ( + 'id' => 506, + 'group_regex' => '^alt\\.binaries\\.games\\.dox$', + 'regex' => '/^\\[OLD DOX\\][ _-]{0,3}\\(\\d+\\/\\d+\\)[ _-]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+[,.]\\d+ [mMkKgG][bB][-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//[OLD DOX] (0001/2018) - "18.Wheels.of.Steel.American.Long.Haul.CHEAT.CODES-RETARDS.7z" - 1,44 GB - yEnc', + 'ordinal' => 40, + ), + 6 => + array ( + 'id' => 507, + 'group_regex' => '^alt\\.binaries\\.games\\.dox$', + 'regex' => '/^(?P[a-zA-Z0-9-\\._ ]+) - \\[\\d+\\/(\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|"){0,3}yEnc$/', + 'status' => 1, + 'description' => '//Endless.Space.Disharmony.v1.1.1.Update-SKIDROW - [1/6] - "Endless.Space.Disharmony.v1.1.1.Update-SKIDROW.nfo" - yEnc', + 'ordinal' => 45, + ), + 7 => + array ( + 'id' => 508, + 'group_regex' => '^alt\\.binaries\\.games\\.dox$', + 'regex' => '/^\\((?P[a-zA-Z0-9-\\._ ]+)\\) \\[\\d+\\/(\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|"){0,3}yEnc$/', + 'status' => 1, + 'description' => '//(F.E.A.R.3.Update.1-SKIDROW) [01/12] - "F.E.A.R.3.Update.1-SKIDROW.par2" yEnc', + 'ordinal' => 50, + ), + 8 => + array ( + 'id' => 509, + 'group_regex' => '^alt\\.binaries\\.games\\.dox$', + 'regex' => '/^\\((?P[a-zA-Z0-9-\\._ ]+)\\) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(Company.of.Heroes.2.Update.v3.0.0.9704.Incl.DLC.GERMAN-0x0007) - "0x0007.nfo" yEnc', + 'ordinal' => 55, + ), + 9 => + array ( + 'id' => 510, + 'group_regex' => '^alt\\.binaries\\.games\\.wii$', + 'regex' => '/^"(?P.+)__www.realmom.info__.+" \\(\\d+\\/\\d+\\) \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/', + 'status' => 1, + 'description' => '//"National.Geographic.Challenge.USA.WII-dumpTruck__www.realmom.info__.jpg" (003/111) 4,81 GB yEnc', + 'ordinal' => 5, + ), + 10 => + array ( + 'id' => 511, + 'group_regex' => '^alt\\.binaries\\.games\\.wii$', + 'regex' => '/^\\[(?P.+)\\]-\\[#a.b.g.w@efnet\\]-\\[www.abgx.net\\]-\\[\\d+\\/\\d+\\] - ("|#34;).+("|#34;) yEnc$/', + 'status' => 1, + 'description' => '//[Cabelas_North_American_Adventure_USA_WII-ZRY-Scrubbed-xeroxmalf]-[#a.b.g.w@efnet]-[www.abgx.net]-[01/27] - "Cabelas_North_American_Adventure_USA_WII-ZRY-Scrubbed-xeroxmalf.par2" yEnc', + 'ordinal' => 10, + ), + 11 => + array ( + 'id' => 512, + 'group_regex' => '^alt\\.binaries\\.games\\.wii$', + 'regex' => '/^\\d+ (\\d+\\.)?(?P.+-OneUp).+ \\[\\d+\\/\\d+\\] - ("|#34;).+("|#34;) yEnc$/', + 'status' => 1, + 'description' => '//4300 World.Sports.Competition.USA.VC.Wii-OneUp....... AmigaOS4.1 RULEZ [0/9] - "4300.nzb" yEnc ::: //4300 1695.World.Sports.Competition.USA.VC.Wii-OneUp....... AmigaOS4.1 RULEZ [0/9] - "4300.nzb" yEnc', + 'ordinal' => 15, + ), + 12 => + array ( + 'id' => 513, + 'group_regex' => '^alt\\.binaries\\.games\\.wii$', + 'regex' => '/^\\d+ - (?P.+-OneUp).+ \\d+\\/\\d+ - ("|#34;).+("|#34;) yEnc$/', + 'status' => 1, + 'description' => '//6717 - Baseball.Stars.2.PAL.VC.NG.Wii-OneUp - 01/11 - "1u-baseball-stars-2-pal.nfo" yEnc', + 'ordinal' => 20, + ), + 13 => + array ( + 'id' => 514, + 'group_regex' => '^alt\\.binaries\\.games\\.wii$', + 'regex' => '/^\\[\\d+\\]-\\[abgx.net\\] (?P.+) \\[\\d+\\/\\d+\\] - ("|#34;).+("|#34;) yEnc$/', + 'status' => 1, + 'description' => '//[2103]-[abgx.net] Harvey_Birdman_Attorney_At_Law-USA-WII [000/104] - "Harvey_Birdman_Attorney_At_Law-USA-WII.nzb" yEnc', + 'ordinal' => 25, + ), + 14 => + array ( + 'id' => 515, + 'group_regex' => '^alt\\.binaries\\.games\\.wii$', + 'regex' => '/^\\(\\d+\\)-\\[abgx.net\\]-(?P.+)-\\[\\d+\\/\\d+\\] - ("|#34;).+("|#34;) yEnc$/', + 'status' => 1, + 'description' => '//(3790)-[abgx.net]-[Samurai_Warriors_Katana_USA-WII]-[000/105] - "3790.nzb" yEnc', + 'ordinal' => 30, + ), + 15 => + array ( + 'id' => 516, + 'group_regex' => '^alt\\.binaries\\.games\\.wii$', + 'regex' => '/^\\[REQ# \\d+\\] Full \\d+ (?P.+) PAL ("|#34;).+("|#34;) \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/', + 'status' => 1, + 'description' => '//[REQ# 7134] Full 105 Cocoto_Magic_Circus_PAL_Wii-OE PAL "oe-magic.r00" 4.57 GB yEnc', + 'ordinal' => 35, + ), + 16 => + array ( + 'id' => 517, + 'group_regex' => '^alt\\.binaries\\.games\\.wii$', + 'regex' => '/\\[[\\d#]+\\]-\\[.+?\\]-\\[ (?P.+?) \\][- ]\\[\\d+\\/\\d+\\][-_\\s]{0,3}".+?" yEnc$/', + 'status' => 1, + 'description' => '//[11614]-[#a.b.g.wii@efnet]-[ EA.Sports.Active.NFL.Training.Camp.USA.WII-ProCiSiON ]-[01/95] - "xxx-nflt.nfo" yEnc', + 'ordinal' => 40, + ), + 17 => + array ( + 'id' => 518, + 'group_regex' => '^alt\\.binaries\\.games\\.wii$', + 'regex' => '/\\[[\\d#]+\\]-\\[.+?\\]-\\[.+?\\]-\\[(?P.+?)\\][- ]\\[\\d+\\/\\d+\\][-_\\s]{0,3}".+?" yEnc$/', + 'status' => 1, + 'description' => '//[8524]-[#a.b.g.wii@EFNet]-[FULL]-[Fantastic_Four_Rise_Of_The_Silver_Surfer_NTSC_Wii-VORTEX]-[001/104] - "vortex-ffrotss.wii.nfo" yEnc', + 'ordinal' => 45, + ), + 18 => + array ( + 'id' => 519, + 'group_regex' => '^alt\\.binaries\\.games\\.wii$', + 'regex' => '/^\\[\\d+]-\\[abgx\\]-\\[FULL\\]-\\[(?P.+)-PLAYME\\]-po0p.+-\\[\\d+\\/\\d+\\] - ("|#34;).+("|#34;) yEnc$/', + 'status' => 1, + 'description' => '//[13118]-[abgx]-[FULL]-[Doods_Big_Adventure_PAL_WII-PLAYME]-po0p?!-[000/103] - "13118.nzb" yEnc', + 'ordinal' => 50, + ), + 19 => + array ( + 'id' => 520, + 'group_regex' => '^alt\\.binaries\\.games\\.wii$', + 'regex' => '/^\\[\\d+]-\\[#ab@EFNet\\]-\\[FULL\\]-\\[(?P.+)-WiiERD\\]-po0p.+-\\[\\d+\\/\\d+\\] - ("|#34;).+("|#34;) yEnc$/', + 'status' => 1, + 'description' => '//[13208]-[#ab@EFNet]-[FULL]-[Calvin_Tuckers_Farm_Animal_Racing_PAL_Wii-WiiERD]-po0p!-[072/112] - "w-ctfar.r68" yEnc', + 'ordinal' => 55, + ), + 20 => + array ( + 'id' => 521, + 'group_regex' => '^alt\\.binaries\\.games\\.wii$', + 'regex' => '/^\\(www\\.Thunder-News\\.org\\) ?>(?P.+)< ?[ _-]{0,3}(\\(\\d+\\/\\d+\\)|\\[\\d+\\/\\d+\\])?[ _-]{0,5}("|#34;).+("|#34;) yEnc$/i', + 'status' => 1, + 'description' => '//(www.Thunder-News.org) >Winter.Stars.USA.WII-dumpTruck< - (001/112) - "dumptruck-winterstars.par2" yEnc', + 'ordinal' => 60, + ), + 21 => + array ( + 'id' => 522, + 'group_regex' => '^alt\\.binaries\\.games\\.wii$', + 'regex' => '/^\\[\\d+]-\\[#a\\.b\\.g\\.wii@efnet\\]-\\[ ?(?P.+) ?\\]-\\[\\d+\\/\\d+\\] - ("|#34;).+("|#34;) yEnc$/', + 'status' => 1, + 'description' => '//[9987]-[#a.b.g.wii@efnet]-[ Tales.of.Elastic.Boy.Mission.1.USA.WiiWare.Wii-OneUp ]-[01/12] - #34;1u-tales-of-elastic-boy-mission-1.nfo#34; yEnc', + 'ordinal' => 65, + ), + 22 => + array ( + 'id' => 523, + 'group_regex' => '^alt\\.binaries\\.games\\.wii$', + 'regex' => '/^\\[\\d+\\] (?P.+) NTSC-J DVD5 \\[\\d+\\/\\d+\\] - ("|#34;).+("|#34;) yEnc$/', + 'status' => 1, + 'description' => '//[2207] Swing_Golf_Pangya_JPN_Wii-Caravan NTSC-J DVD5 [001/102] - "cvn-sgp.nfo" yEnc', + 'ordinal' => 70, + ), + 23 => + array ( + 'id' => 524, + 'group_regex' => '^alt\\.binaries\\.games\\.wii$', + 'regex' => '/^\\[\\d+\\] (?P.+) <>\\d+\\/\\d+<> ("|#34;).+("|#34;) yEnc$/', + 'status' => 1, + 'description' => '//[3867] FaceBreaker.K.O.Party.PAL.Wii-RANT <>000/110<> "3867.nzb" yEnc', + 'ordinal' => 75, + ), + 24 => + array ( + 'id' => 525, + 'group_regex' => '^alt\\.binaries\\.games\\.wii$', + 'regex' => '/^\\[COMPRESSED\\] (?P.+) \\[\\d+\\/\\d+\\] - ("|#34;).+("|#34;) yEnc$/', + 'status' => 1, + 'description' => '//[COMPRESSED] Family_Feud_2010_Edition_USA_Wii-Qwi', + 'ordinal' => 80, + ), + 25 => + array ( + 'id' => 526, + 'group_regex' => '^alt\\.binaries\\.games\\.wii$', + 'regex' => '/^\\[COMPRESSED\\] (?P.+) - .+ \\[\\d+\\/\\d+\\] .+ yEnc$/', + 'status' => 1, + 'description' => '//[COMPRESSED] Rooms.The.Main.Building.USA.WII-SUSHi - su-rousa.par2 [01/18] (1/1) (1/1) yEnc', + 'ordinal' => 85, + ), + 26 => + array ( + 'id' => 527, + 'group_regex' => '^alt\\.binaries\\.games\\.wii$', + 'regex' => '/^WII4U - (?P.+) - \\[\\d+\\/\\d+\\] - ("|#34;).+("|#34;) yEnc$/', + 'status' => 1, + 'description' => '//WII4U - thinkSMART.Family.USA.WII-dumpTruck - [01/15] - "dumptruck-tf.par2" yEnc', + 'ordinal' => 90, + ), + 27 => + array ( + 'id' => 528, + 'group_regex' => '^alt\\.binaries\\.games\\.wii$', + 'regex' => '/^<<>> <<< >< >< ("|#34;)(?P.+)("|#34;) >< \\d+\\/\\d+ \\(\\) >< > yEnc$/', + 'status' => 1, + 'description' => '//<<>> <<< >< >< "Rogue Trooper The Quartz Zone Massacre (2009)PAL Wii" >< 037/131 () >< > yEnc', + 'ordinal' => 95, + ), + 28 => + array ( + 'id' => 529, + 'group_regex' => '^alt\\.binaries\\.games\\.wii$', + 'regex' => '/^\\[\\d+\\]-\\[abgx@Efnet\\]-\\[(?P.+)\\] - \\(\\d+\\/\\d+\\) ".+".+yEnc$/', + 'status' => 1, + 'description' => '//[6840]-[abgx@Efnet]-[My.Fitness.Coach.NTSC-WII-ProCiSiON] - (001/110) "xxx-mfc.par2" - 4.76 GB yEnc', + 'ordinal' => 100, + ), + 29 => + array ( + 'id' => 530, + 'group_regex' => '^alt\\.binaries\\.games\\.wii$', + 'regex' => '/^\\[\\d+\\]-\\[abgx@Efnet\\]-\\[Full\\]-\\[(?P.+)\\][ -]+\\[\\d+\\/\\d+\\] .+ yEnc$/', + 'status' => 1, + 'description' => '//[6820]-[abgx@Efnet]-[Full]-[Cotton_Fantastic_Night_Dreams_NTSC_RF_TG16-CD.iNJECT_iNTERNAL_VC_Wii-0RANGECHiCKEN]- [01/16] - 0c-cotton-rf.nfo (1/1) (1/1) yEnc', + 'ordinal' => 105, + ), + 30 => + array ( + 'id' => 531, + 'group_regex' => '^alt\\.binaries\\.games\\.wii$', + 'regex' => '/^\\[\\d+\\] \\[#alt\\.binaries\\.games\\.wii@efnet\\] \\[(?P.+)\\] \\[\\d+\\/\\d+\\].+yEnc$/', + 'status' => 1, + 'description' => '//[3488] [#alt.binaries.games.wii@efnet] [Blades.Of.Steel.USA.VC.Wii-DiPLODOCUS] [0/8] 3488.nzb (1/1) (1/1) yEnc', + 'ordinal' => 110, + ), + 31 => + array ( + 'id' => 532, + 'group_regex' => '^alt\\.binaries\\.games\\.wii$', + 'regex' => '/^<(?P.+)> \\[\\d+\\/\\d+\\] - ".+" yEnc$/', + 'status' => 1, + 'description' => '// [001/110] - "Little.League.World.Series.Double.Play.USA.WII-dumpTruck.par2" yEnc', + 'ordinal' => 115, + ), + 32 => + array ( + 'id' => 533, + 'group_regex' => '^alt\\.binaries\\.games\\.xbox360$', + 'regex' => '/^Uploader.Presents-(?P.+?)[\\(\\[]\\d+\\/\\d+\\]".+?" yEnc$/', + 'status' => 1, + 'description' => '//Uploader.Presents-Injustice.Gods.Among.Us.Ultimate.Edition.XBOX360-COMPLEX(02/92]"complex-injustice.ultimate.nfo" yEnc ::: //Uploader.Presents-Need.For.Speed.Rivals.XBOX360-PROTOCOL[10/94]"nfs.r-ptc.r07" yEnc', + 'ordinal' => 5, + ), + 33 => + array ( + 'id' => 534, + 'group_regex' => '^alt\\.binaries\\.games\\.xbox360$', + 'regex' => '/^place2home\\.net - (?P.*?) - (\\[\\d+\\/\\d+\\] - )?".+?" yEnc$/i', + 'status' => 1, + 'description' => '//place2home.net - Call.of.Duty.Ghosts.XBOX360-iMARS - [095/101] - "imars-codghosts-360b.vol049+33.par2" yEnc ::: //Place2home.net - Diablo_III_USA_RF_XBOX360-PROTOCOL - "d3-ptc.r34" yEnc', + 'ordinal' => 10, + ), + 34 => + array ( + 'id' => 535, + 'group_regex' => '^alt\\.binaries\\.games\\.xbox360$', + 'regex' => '/^"(?P.+)(__www\\.realmom\\.info__)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}") [\\[\\(]\\d+\\/(\\d+[\\]\\)]) \\d+[,.]\\d+ [mMkKgG][bB] yEnc$/', + 'status' => 1, + 'description' => '//"Arcana_Heart_3_PAL_XBOX360-ZER0__www.realmom.info__.nfo" (02/89) 7,58 GB yEnc', + 'ordinal' => 15, + ), + 35 => + array ( + 'id' => 536, + 'group_regex' => '^alt\\.binaries\\.games\\.xbox360$', + 'regex' => '/^[\\[\\(]\\d+\\/(\\d+[\\)\\]])[-_\\s]{0,3}"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//(01/15) "Mass.Effect.3.Collectors.Edition.DLC.JTAG-XPG.par2" - 747.42 MB - yEnc', + 'ordinal' => 20, + ), + 36 => + array ( + 'id' => 537, + 'group_regex' => '^alt\\.binaries\\.games\\.xbox360$', + 'regex' => '/^\\(.+\\)[-_\\s]{0,3}[\\(\\[]\\d+\\/(\\d+[\\)\\]])[-_\\s]{0,3}"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//(????) [00/28] - "Farming.Simulator.XBOX360.JTAG.RGH.nzb" yEnc', + 'ordinal' => 25, + ), + 37 => + array ( + 'id' => 538, + 'group_regex' => '^alt\\.binaries\\.games\\.xbox360$', + 'regex' => '/^\\(\\d+\\)[-_\\s]{0,3}(.+)[-_\\s]{0,3}[\\(\\[]\\d+\\/(?P\\d+[\\)\\]])[-_\\s]{0,3}"(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//(14227) BloodRayne_Betrayal_XBLA_XBOX360-XBLAplus [01/25] - "xp-blobe.nfo" yEnc', + 'ordinal' => 30, + ), + 38 => + array ( + 'id' => 539, + 'group_regex' => '^alt\\.binaries\\.games\\.xbox360$', + 'regex' => '/^(\\(\\d+\\))[-_\\s]{0,3}\\[.+EFNet\\][-_\\s]{0,3}\\[(?P.+)\\][-_\\s]{0,3}\\[\\][-_\\s]{0,3}"(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//(14811) [#alt.binaries.games.xbox360@EFNet]-[AMY_XBLA_XBOX360-XBLAplus]-[]- "xp-amyxb.nfo" yEnc', + 'ordinal' => 35, + ), + 39 => + array ( + 'id' => 540, + 'group_regex' => '^alt\\.binaries\\.games\\.xbox360$', + 'regex' => '/^(\\(\\d+\\))[-_\\s]{0,3}\\[.+EFNet\\][-_\\s]{0,3}\\[(?P.+)\\][-_\\s]{0,3}"(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//(14872) [#alt.binaries.games.xbox360@EFNet]-[BlazBlue_CS_System_Version_Data_Pack_1.03-DLC_XBOX360]- "xp-bbcssvdp103.nfo" yEnc', + 'ordinal' => 40, + ), + 40 => + array ( + 'id' => 541, + 'group_regex' => '^alt\\.binaries\\.games\\.xbox360$', + 'regex' => '/^\\(\\d+\\/(\\d+\\))[-_\\s]{0,3}(?P.+?)[-_\\s]{0,3}"(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//(44/82) - Fuzion_Frenzy_2_REPACK-USA-XBOX360-DAGGER - "ff2r-dgr.041" - 6.84 GB - yEnc', + 'ordinal' => 45, + ), + 41 => + array ( + 'id' => 542, + 'group_regex' => '^alt\\.binaries\\.games\\.xbox360$', + 'regex' => '/^\\[[-_\\s]{0,3}(\\d+)[-_\\s]{0,3}\\][-_\\s]{0,3}\\[ ABGX.+\\][-_\\s]{0,3}\\[[-_\\s]{0,3}(?P.+)[-_ ]{0,4}\\][-_ ]{0,4}\\(\\d+\\/\\d+\\)[-_\\s]{0,3}"(.+?)(\\.part\\d*|\\.rar)?(\\.vol.+\\(\\d+\\\\d+\\)"|\\.[A-Za-z0-9]{2,4}")[-_\\s]{0,3}\\d+[,.]\\d+ [mMkKgG][bB][-_\\s]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//[ 14047 ] - [ ABGX@EFNET ] - [ Rock.Band.Pearl.Jam.Ten.DLC.XBOX360-FYK ALL DLC ] - (01/46) "rbpjtdlc-fyk.nfo" - 526,92 MB - yEnc ::: //[ 14046 ] - [ ABGX@EFNET ] - [ Rock_Band-2011-07-19-DLC_XBOX360-XBLAplus ALL ] - (01/12) "xp-rb-2011-07-19.nfo" - 198,70 MB - yEnc ::: //[ 14102 ] -[ ABGX.NET ] - [ F1.2010.XBOX360-COMPLEX NTSC DVD9 ] - (01/79) "cpx-f12010.nfo" - 6,57 GB - yEnc', + 'ordinal' => 50, + ), + 42 => + array ( + 'id' => 543, + 'group_regex' => '^alt\\.binaries\\.games\\.xbox360$', + 'regex' => '/^\\[[-_\\s]{0,3}(\\d+)[-_\\s]{0,3}\\][-_\\s]{0,3}\\[FULL\\][-_\\s]{0,3}\\[ (abgx360EFNet|#abgx360@EFNet) \\][-_\\s]{0,3}\\[[-_\\s]{0,3}(?P.+)[-_\\s]{0,3}\\][-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(.+?)(\\.part\\d*|\\.rar)?(\\.vol.+\\(\\d+\\\\d+\\)"|\\.[A-Za-z0-9]{2,4}")[-_\\s]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//[ 17956]-[FULL]-[ abgx360EFNet ]-[ F1_2012_JPN_XBOX360-Caravan ]-[78/99] - "cvn-f12012j.r75" yEnc ::: //[ 17827]-[FULL]-[ #abgx360@EFNet ]-[ Capcom_Arcade_Cabinet_XBLA_XBOX360-XBLAplus ]-[01/34] - "xp-capac.nfo" yEnc', + 'ordinal' => 55, + ), + 43 => + array ( + 'id' => 544, + 'group_regex' => '^alt\\.binaries\\.games\\.xbox360$', + 'regex' => '/^\\[[-_\\s]{0,3}GAMERZZ[-_\\s]{0,3}\\][-_\\s]{0,3}\\[[-_\\s]{0,3}(?P.+)[-_\\s]{0,3}\\][-_\\s]{0,3}\\[\\d+\\/(\\d+\\])[-_\\s]{0,3}"(.+?)(\\.part\\d*|\\.rar)?(\\.vol.+\\(\\d+\\\\d+\\)"|\\.[A-Za-z0-9]{2,4}")[-_\\s]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//[ GAMERZZ ] - [ Grand.Theft.Auto.V.XBOX360-COMPLEX ] [159/170] - "complex-gta5.vol000+18.par2" yEnc', + 'ordinal' => 60, + ), + 44 => + array ( + 'id' => 545, + 'group_regex' => '^alt\\.binaries\\.games\\.xbox360$', + 'regex' => '/.*"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//"Mass.Effect.3.From.Ashes.DLC.XBOX360-MoNGoLS.nfo" yEnc', + 'ordinal' => 65, + ), + 45 => + array ( + 'id' => 546, + 'group_regex' => '^alt\\.binaries\\.german\\.movies$', + 'regex' => '/^>ghost-of-usenet\\.org>(?P.+?)<.+?> ".+?" yEnc$/', + 'status' => 1, + 'description' => '//>ghost-of-usenet.org>Monte.Cristo.GERMAN.2002.AC3.DVDRiP.XviD.iNTERNAL-HACO "haco-montecristo-xvid-a.par2" yEnc', + 'ordinal' => 5, + ), + 46 => + array ( + 'id' => 547, + 'group_regex' => '^alt\\.binaries\\.german\\.movies$', + 'regex' => '/^(?P.+?) \\[\\d+\\/\\d+\\] - ".+?" .+? yEnc$/', + 'status' => 1, + 'description' => '//XCOM.Enemy.Unknown.Deutsch.Patch.TokZic [0/9] - "XCOM Deutsch.nzb" ein CrazyUpp yEnc', + 'ordinal' => 10, + ), + 47 => + array ( + 'id' => 548, + 'group_regex' => '^alt\\.binaries\\.ghosts$', + 'regex' => '/^(?P.+?) \\[\\d+\\/\\d+\\] - ".+?" .+? yEnc$/', + 'status' => 1, + 'description' => '//XCOM.Enemy.Unknown.Deutsch.Patch.TokZic [0/9] - "XCOM Deutsch.nzb" ein CrazyUpp yEnc', + 'ordinal' => 5, + ), + 48 => + array ( + 'id' => 549, + 'group_regex' => '^alt\\.binaries\\.ghosts$', + 'regex' => '/^\\(\\d+\\/(\\d+\\)) ("|#34;)(?P.+)(\\.[vol|part].+)?\\.(par2|nfo|rar|nzb)("|#34;) - \\d+[.,]\\d+ [kKmMgG][bB] - yEnc$/i', + 'status' => 1, + 'description' => '//(116/175) "Embrace.of.the.Vampire.1995.1080p.BluRay.x264.Y', + 'ordinal' => 10, + ), + 49 => + array ( + 'id' => 550, + 'group_regex' => '^alt\\.binaries\\.hdtv$', + 'regex' => '/^(\\[ TrollHD \\] - )?[\\[\\(][-_\\s]{0,3}\\d+\\/(\\d+[-_\\s]{0,3}[\\)\\]]) - "(?P.+?) MPEG2-(DON|TrollHD)\\..+?" yEnc$/', + 'status' => 1, + 'description' => '//[ TrollHD ] - [ 0270/2688 ] - "Tour De France 2013 1080i HDTV MPA 2.0 MPEG2-TrollHD.part0269.rar" yEnc ::: //[17/48] - "Oprah\'s Next Chapter S02E37 Lindsay Lohan 1080i HDTV DD5.1 MPEG2-TrollHD.part16.rar" yEnc ::: //[02/29] - "Fox Sports 1 on 1 - Tom Brady 720p HDTV DD5.1 MPEG2-DON.part01.rar" yEnc', + 'ordinal' => 5, + ), + 50 => + array ( + 'id' => 551, + 'group_regex' => '^alt\\.binaries\\.hdtv$', + 'regex' => '/^\\.oO "(?P.+)__www.realmom.info__.+" Oo. \\[\\d+\\/\\d+\\] \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/', + 'status' => 1, + 'description' => '//.oO "20.Years.After.German.2008.AC3.BDRip.XviD.INTERNAL-ARC__www.realmom.info__.nfo" Oo. [02/39] 1,43 GB yEnc', + 'ordinal' => 10, + ), + 51 => + array ( + 'id' => 552, + 'group_regex' => '^alt\\.binaries\\.hdtv$', + 'regex' => '/^\\[ \\d+ \\] - \\[ TrollHD \\] - \\[ \\d+\\/\\d+ ] - "(?P.+)\\..+" yEnc$/', + 'status' => 1, + 'description' => '//[ 09821 ] - [ TrollHD ] - [ 00/54 ] - "Chopped CQ0808H My Way 1080i HDTV DD5.1 MPEG2-TrollHD.nzb" yEnc', + 'ordinal' => 15, + ), + 52 => + array ( + 'id' => 553, + 'group_regex' => '^alt\\.binaries\\.hdtv$', + 'regex' => '/^\\[ TrollHD \\] - \\[ \\d+\\/\\d+ \\] - "(?P.+)\\.par.+" yEnc$/', + 'status' => 1, + 'description' => '//[ TrollHD ] - [ 01/19 ] - "America\'s Test Kitchen From Cook\'s Illustrated - Ultimate Grilled Turkey Burgers 480i PDTV DD2.0 MPEG2-TrollSD.par2" yEnc', + 'ordinal' => 20, + ), + 53 => + array ( + 'id' => 554, + 'group_regex' => '^alt\\.binaries\\.hdtv$', + 'regex' => '/^NBC.+\\[\\d+\\/\\d+\\] - "(?P.+)\\.vol.+" yEnc$/', + 'status' => 1, + 'description' => '//NBC Nightly News - Flash Video - 11-20-2013 [13/15] - "NBC Nightly News 11-20-2013.flv.vol03+04.par2" yEnc', + 'ordinal' => 25, + ), + 54 => + array ( + 'id' => 555, + 'group_regex' => '^alt\\.binaries\\.hdtv$', + 'regex' => '/\\(Newseros\\.com\\) .+? \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(Newseros.com) Cueva 1080p [02/42] - "idonhom-mirc.part01.rar" yEnc', + 'ordinal' => 30, + ), + 55 => + array ( + 'id' => 556, + 'group_regex' => '^alt\\.binaries\\.hdtv$', + 'regex' => '/^.+S\\d+E\\d+.+\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//It\'s.Always.Sunny.in.Philadelphia.S07E09.The.Gang.Gets.Trapped.BluRay.1080p.Remux.AVC.DTSHD-MA.5.1-PtZ-BeyondHD.me [047/123] - "It\'s.Always.Sunny.in.Philadelphia.S07E09.The.Gang.Gets.Trapped.BluRay.1080p.Remux.AVC.DTSHD-MA.5.1-PtZ-BeyondHD.me.r44" yEnc', + 'ordinal' => 35, + ), + 56 => + array ( + 'id' => 557, + 'group_regex' => '^alt\\.binaries\\.hdtv$', + 'regex' => '/^\\(.+\\) \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(Alpha.House.S01E08.WEBRip.1080p.x264.DD5.1-Absinth) [14/24] - "Alpha.House.S01E08.WEBRip.1080p.x264.DD5.1-Absinth.part13.rar" yEnc', + 'ordinal' => 40, + ), + 57 => + array ( + 'id' => 558, + 'group_regex' => '^alt\\.binaries\\.hdtv$', + 'regex' => '/^\\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB] .+yEnc$/', + 'status' => 1, + 'description' => '//(024/264) "Enf.S04E02.G.D.H.X-M.vol51+46.PAR2" - 8,27 GB -Enf.S04.G.D.H.X yEnc', + 'ordinal' => 45, + ), + 58 => + array ( + 'id' => 559, + 'group_regex' => '^alt\\.binaries\\.hdtv$', + 'regex' => '/^\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/i', + 'status' => 1, + 'description' => '//[01/10] - "Wondershare.Video.Converter.Ultimate.v6.7.1.0.Multilanguage.par2" - 45,44 MB yEnc', + 'ordinal' => 50, + ), + 59 => + array ( + 'id' => 560, + 'group_regex' => '^alt\\.binaries\\.hdtv$', + 'regex' => '/^[\\(\\[]\\d+\\/\\d+[\\)\\]] "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(01/60) "Micro Monsters With David Attenborough 2013 3D HSBS DTS5.1 EP5 - Family-3D4U.par2" yEnc', + 'ordinal' => 55, + ), + 60 => + array ( + 'id' => 561, + 'group_regex' => '^alt\\.binaries\\.hdtv$', + 'regex' => '/^\\[ TrollHD \\] - [\\(\\[] \\d+\\/\\d+ [\\)\\]] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[ TrollHD ] - [ 01/32 ] - "Demi Lovato - 2vLive Concert 2013-10-28 PROPER [see NFO] 720p WEB-CAP AAC2.0 H.264-TrollHD.nfo" yEnc', + 'ordinal' => 60, + ), + 61 => + array ( + 'id' => 562, + 'group_regex' => '^alt\\.binaries\\.hdtv$', + 'regex' => '/\\[\\d+\\][-_\\s]{0,3}\\[ PPKORE \\][-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[00245] [ PPKORE ] [44/57] - "The L Word S04E08 1080p WEB-DL DD5 1 H 264-PPKORE.vol014+14.par2" yEnc', + 'ordinal' => 65, + ), + 62 => + array ( + 'id' => 563, + 'group_regex' => '^alt\\.binaries\\.hdtv$', + 'regex' => '/^(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) {0,3}yEnc$/', + 'status' => 1, + 'description' => '//Adobe Photoshop Lightroom v5.2 - FiNaL - Multilingual [WIN].vol037+32.PAR2 yEnc', + 'ordinal' => 70, + ), + 63 => + array ( + 'id' => 564, + 'group_regex' => '^alt\\.binaries\\.hdtv$', + 'regex' => '/^[\\w-\\.]+ "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Bad.Penny.2013.720p.HDTV.x264-GBL "bad.penny.2013.720p.hdtv.x264-gbl.par2" yEnc', + 'ordinal' => 75, + ), + 64 => + array ( + 'id' => 565, + 'group_regex' => '^alt\\.binaries\\.hdtv$', + 'regex' => '/^[\\w-\\. ]+\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//The.Colbert.Report.2013.07.29.The.Lumineers.WEBRip.AAC2.0.H.264-DCK [01/11] - "The.Colbert.Report.2013.07.29.The.Lumineers.WEBRip.AAC2.0.H.264-DCK.mp4" yEnc', + 'ordinal' => 80, + ), + 65 => + array ( + 'id' => 566, + 'group_regex' => '^alt\\.binaries\\.hdtv$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/', + 'status' => 1, + 'description' => '//"8 Wenn ich einmal gross bin .mp3" Koelschefetz postet.Die Filue -Immer Wigger yEnc', + 'ordinal' => 85, + ), + 66 => + array ( + 'id' => 567, + 'group_regex' => '^alt\\.binaries\\.hdtv$', + 'regex' => '/^(?P.+?)[-_\\s]{0,3}\\(?[Pp]ostet +by +\\(?Edition50\\)?[- ]{0,4}\\[\\d+\\/\\d+\\][-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/', + 'status' => 1, + 'description' => '//Elysium (AVCHD) 2013 (720p) Untouched (Postet by Edition50) [01/169] - "file.xyz" yEnc ::: //Frozen Ground (AVCHD) 2013 (720p) postet by Edition50 - [01/158] - "file.xyz" yEnc - [000/158] - "FROZEN GROUND (AVCHD) 2013 (720p) Untouched.nzb" yEnc ::: //Cabin in the Woods (AVCHD) 2013 (720p) Postet by (Edition50) [01/159] - "file.xyz" yEnc', + 'ordinal' => 90, + ), + 67 => + array ( + 'id' => 568, + 'group_regex' => '^alt\\.binaries\\.hdtv$', + 'regex' => '/^(?P.+?)[-_\\s]{0,3}[\\(\\[]\\d+\\/\\d+[\\)\\]][-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Dark Zero Thirty (2013) AVCHD (720p) Untouched [01/151] - "ZERO DARK THIRTY (2013) AVCHD 720p) Untouched.par2" yEnc', + 'ordinal' => 95, + ), + 68 => + array ( + 'id' => 569, + 'group_regex' => '^alt\\.binaries\\.hdtv\\.x264$', + 'regex' => '/^(AMEa)?\\(\\d+\\/\\d+\\)( - AME-)? "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/', + 'status' => 1, + 'description' => '//(23/36) "Love.Is.In.The.Meadow.S08E08.HDTV.720p.x264.ac3.part22.rar" - 2,80 GB - yEnc ::: //AMEa(01/49) - AME- "Arbitrage 2013 DTS HD MSTR 5.1 MKV h264 1080p German by AME.nfo" - 7,87 GB - yEnc', + 'ordinal' => 5, + ), + 69 => + array ( + 'id' => 570, + 'group_regex' => '^alt\\.binaries\\.hdtv\\.x264$', + 'regex' => '/^(?P[A-Z0-9a-z][A-Za-z0-9.-]+) -? \\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Hard.Target.1993.1080p.Bluray.X264-BARC0DE - [36/68] - "BARC0DE1080pHTAR.r22" yEnc ::: //Goddess.2013.720p.BDRip.x264.AC3-noOne [086/100] - "Goddess.2013.720p.BDRip.x264.AC3-noOne.part84.rar" yEnc', + 'ordinal' => 10, + ), + 70 => + array ( + 'id' => 571, + 'group_regex' => '^alt\\.binaries\\.hdtv\\.x264$', + 'regex' => '/(?P.+?)\\s+(Avi )?by Waldorf\\s+-\\s+\\[\\d+\\/\\d+\\]\\s+-\\s+".+?"\\s+yEnc$/', + 'status' => 1, + 'description' => '//I Love Democracy - Norwegen - Doku - 2012 - (German) - AC3 HD720p Avi by Waldorf - [02/71] - "Waldorf.jpg" yEnc', + 'ordinal' => 15, + ), + 71 => + array ( + 'id' => 572, + 'group_regex' => '^alt\\.binaries\\.hdtv\\.x264$', + 'regex' => '/^[A-Z][a-zA-Z0-9 ]+ [- ] "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Season of the Witch 2011 - "Season.of.the.Witch.2011.1080p.BluRay.DTS.x264-CyTSuNee.part005.rar" yEnc ::: //Film - "Alien Antology DC Special Edition 1979-1997 1080p GER HUN HighCode.part001.rar" yEnc ::: //Austex Memorandum "Austex Memorandum 700877270640835.z17" yEnc', + 'ordinal' => 20, + ), + 72 => + array ( + 'id' => 573, + 'group_regex' => '^alt\\.binaries\\.hdtv\\.x264$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") \\(\\d+\\/\\d+\\) yEnc$/', + 'status' => 1, + 'description' => '//"Ninja-Revenge Will Rise UC-Pittis AVCHD-ADD.English.dtsHR.nfo.txt" (01/55) yEnc', + 'ordinal' => 25, + ), + 73 => + array ( + 'id' => 574, + 'group_regex' => '^alt\\.binaries\\.hdtv\\.x264$', + 'regex' => '/^\\[ (?P[A-Za-z0-9.-]{7,}) \\] - \\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//[ The.Looney.Tunes.Show.S02E20.480p.WEB-DL.AAC2.0.H.264-YFN ] - [01/19] - "The.Looney.Tunes.Show.S02E20.The.Shell.Game.480p.WEB-DL.AAC2.0.H.264-YFN.nfo" yEnc', + 'ordinal' => 30, + ), + 74 => + array ( + 'id' => 575, + 'group_regex' => '^alt\\.binaries\\.hdtv\\.x264$', + 'regex' => '/^\\.oO "(?P.+)__www.realmom.info__.+" Oo. \\[\\d+\\/\\d+\\] \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/', + 'status' => 1, + 'description' => '//.oO "20.Years.After.German.2008.AC3.BDRip.XviD.INTERNAL-ARC__www.realmom.info__.nfo" Oo. [02/39] 1,43 GB yEnc', + 'ordinal' => 35, + ), + 75 => + array ( + 'id' => 576, + 'group_regex' => '^alt\\.binaries\\.hdtv\\.x264$', + 'regex' => '/^\\[\\d+\\][ -]\\[#.+\\][ -]\\[(?P.+)\\][ -]\\[\\d+\\/\\d+\\][-_\\s]{0,3}("|#34;).+("|#34;) yEnc$/', + 'status' => 1, + 'description' => '//[8370]-[#alt.binaries.hdtv.x264@EFNet]-[Mr.Brooks.2007.720p.BluRay.DTS.x264-ESiR]-[00/86] "Mr.Brooks.2007.720p.BluRay.DTS.x264-ESiR.nzb" yEnc', + 'ordinal' => 40, + ), + 76 => + array ( + 'id' => 577, + 'group_regex' => '^alt\\.binaries\\.hdtv\\.x264$', + 'regex' => '/^\\((?P.+)\\) \\[\\d+\\/\\d+\\] - ".+" yEnc$/', + 'status' => 1, + 'description' => '//(The.Ghost.Writer.2010.hd.for.ipad.NLSUB) [01/21] - "The.Ghost.Writer.2010.hd.for.ipad.NLSUB.part01.rar" yEnc', + 'ordinal' => 45, + ), + 77 => + array ( + 'id' => 578, + 'group_regex' => '^alt\\.binaries\\.hdtv\\.x264$', + 'regex' => '/^\\[ (?P[\\w\\s\\.-]+) \\] - \\[\\d+\\/\\d+\\][ -]*".+"\\s*yEnc$/', + 'status' => 1, + 'description' => '//[ The Amazing Race S23 720p WEB-DL AAC2.0 H.264 ] - [01/40] - "The.Amazing.Race.S23E08.720p.WEB-DL.AAC2.0.H.264-KiNGS.nfo" yEnc', + 'ordinal' => 50, + ), + 78 => + array ( + 'id' => 579, + 'group_regex' => '^alt\\.binaries\\.hdtv\\.x264$', + 'regex' => '/^Uploader\\.Presents-(?P.+)[\\(\\[]\\d+\\/\\d+[\\)\\]]".+" yEnc$/', + 'status' => 1, + 'description' => '//Uploader.Presents-Phantom.2013.German.AC3D.BluRay.1080p.x264-IND[01/62]"phantom.1080p.par2" yEnc', + 'ordinal' => 55, + ), + 79 => + array ( + 'id' => 580, + 'group_regex' => '^alt\\.binaries\\.hdtv\\.x264$', + 'regex' => '/^\\[\\d+\\/\\d+\\] - "(?P.+WEB-DL.+)\\.sfv" yEnc$/', + 'status' => 1, + 'description' => '//[01/18] - "ROH.2013.11.16.#113.WEB-DL.h264-COiL.sfv" yEnc', + 'ordinal' => 60, + ), + 80 => + array ( + 'id' => 581, + 'group_regex' => '^alt\\.binaries\\.hdtv\\.x264$', + 'regex' => '/^-{NR\\.C}- - \\[\\d+\\/(\\d+\\]) - ("|#34;)(?P.+)(\\.[vol|part].+)?\\.(par2|nfo|rar|nzb)("|#34;) yEnc$/', + 'status' => 1, + 'description' => '//-{NR.C}- - [00/96] - "Being.Liverpool.S01.720p.HDTV.x264-DHD.nzb" yEnc', + 'ordinal' => 65, + ), + 81 => + array ( + 'id' => 582, + 'group_regex' => '^alt\\.binaries\\.hdtv\\.x264$', + 'regex' => '/^- \\[\\d+\\/(\\d+\\]) - "(?P.+?)(\\.part\\d*|\\.rar|\\.pdf)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/', + 'status' => 1, + 'description' => '//- [34/69] - "Zero.Charisma.2013.WEB-DL.DD5.1.H.264-HaB.part33.rar" yEnc', + 'ordinal' => 70, + ), + 82 => + array ( + 'id' => 583, + 'group_regex' => '^alt\\.binaries\\.hdtv\\.x264$', + 'regex' => '/.+www\\.hotrodpage\\.info.+\\[\\d+\\/(\\d+\\]) - "(?P.+?)(\\.part\\d*|\\.rar|\\.pdf)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/', + 'status' => 1, + 'description' => '//-=www.hotrodpage.info=- Makaveli -=HoTCreWTeam=- Post: - [000/192] - "Hop (2011) 1080p AVCHD.nzb" yEnc', + 'ordinal' => 75, + ), + 83 => + array ( + 'id' => 584, + 'group_regex' => '^alt\\.binaries\\.hdtv\\.x264$', + 'regex' => '/^.+?\\[(\\d+[.,]\\d+ [kKmMgG][bB])\\] \\[\\d+\\/(\\d+\\][-_\\s]{0,3}.+?)[-_\\s]{0,3}"(?P.+?)(\\.part\\d*|\\.rar|\\.pdf)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/', + 'status' => 1, + 'description' => '//-4y (PW) [ usenet-4all.info - powered by ssl.news -] [12,40 GB] [49/57] "43842168c542ed3.vol000+01.par2" yEnc', + 'ordinal' => 80, + ), + 84 => + array ( + 'id' => 585, + 'group_regex' => '^alt\\.binaries\\.hdtv\\.x264$', + 'regex' => '/.*[\\(\\[]\\d+\\/(\\d+[\\)\\]])[-_\\s]{0,3}("|#34;)(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4})("|#34;)(.+?)yEnc$/', + 'status' => 1, + 'description' => '//!MR [01/49] - "Persuasion 2007.par2" EN MKV yEnc', + 'ordinal' => 85, + ), + 85 => + array ( + 'id' => 586, + 'group_regex' => '^alt\\.binaries\\.hdtv\\.x264$', + 'regex' => '/^.+ ?\\[\\d+( of |\\/)\\d+\\] ("|#34;)(?P.+?)(\\.part\\d*|\\.rar)?(\\.[A-Za-z0-9]{2,4})?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4})("|#34;)(.+?)yEnc$/', + 'status' => 1, + 'description' => '//Wonders.of.the.Universe.S02E03.1080p.HDTV.x264.AC3.mp4 [1 of 54] "Wonders.of.the.Universe.S02E03.The.Known.and.the.Unknown.1080p.HDTV.x264.AC3-tNe.mp4.001" yEnc ::: //Wilfred Season 2 - US - 720p WEB-DL [28 of 43] "Wilfred.US.S02E01.Progress.720p.WEB-DL.DD5.1.H264-NTb.mkv.001" yEnc', + 'ordinal' => 90, + ), + 86 => + array ( + 'id' => 587, + 'group_regex' => '^alt\\.binaries\\.hdtv\\.x264$', + 'regex' => '/^.+ ?\\d+( of |\\/)\\d+ - ("|#34;)(?P.+?)(\\.part\\d*|\\.rar)?(\\.[A-Za-z0-9]{2,4})?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4})("|#34;)(.+?)yEnc$/', + 'status' => 1, + 'description' => '//The.Walking.Dead.S02E13.720p.WEB-DL.AAC2.0.H.264-CtrlHD -Kopimi- - 01/37 - "The.Walking.Dead.S02E13.Beside.the.Dying.Fire.720p.WEB-DL.AAC2.0.H.264-CtrlHD.nfo" yEnc', + 'ordinal' => 95, + ), + 87 => + array ( + 'id' => 588, + 'group_regex' => '^alt\\.binaries\\.hdtv\\.x264$', + 'regex' => '/.*"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//The.Guild.S05E12.Grande.Finale.1080p.WEB-DL.x264.AC3.PSIV - "The.Guild.S05E12.Grande.Finale.1080p.WEB-DL.x264.AC3.PSIV.nfo" yEnc', + 'ordinal' => 100, + ), + 88 => + array ( + 'id' => 589, + 'group_regex' => '^alt\\.binaries\\.highspeed$', + 'regex' => '/^Old\\s+Dad\\s+uppt? ?(?P.+?)( mp4| )?\\[?\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Old Dad uppt 18 und immer (noch) Jungfrau DvD Rip AC3 XviD German 02/34] - "18 und immer (noch) Jungfrau.part01.rar" yEnc ::: //Old Dad uppt In ihrem Haus DVD Ripp AC3 German Xvid [01/31] - "In ihrem Haus.par2" yEnc ::: //Old Dad uppt Eine offene Rechnung XviD German DVd Rip[02/41] - "Eine offene Rechnung.part01.rar" yEnc ::: //Old Dad uppMiss Marple: Der Wachsblumenstrauß , Wunschpost Xvid German10/29] - "Miss Marple Der Wachsblumenstrauß.part09.rar" yEnc', + 'ordinal' => 5, + ), + 89 => + array ( + 'id' => 590, + 'group_regex' => '^alt\\.binaries\\.highspeed$', + 'regex' => '/^\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB]( -)? yEnc$/', + 'status' => 1, + 'description' => '//[03/61] - "www.realmom.info - xvid - xf-fatalmovecd1.r00" - 773,34 MB - yEnc ::: //[40/54] - "Mankind.Die.Geschichte.der.Menschheit.S01E12.Das.Ende.der.Reise.GERMAN.DUBBED.DL.DOKU.1080p.BluRay.x264-TVP.part39.rar" - 4,79 GB yEnc', + 'ordinal' => 10, + ), + 90 => + array ( + 'id' => 591, + 'group_regex' => '^alt\\.binaries\\.highspeed$', + 'regex' => '/^\\[\\d+\\/\\d+\\] - "(?P.+?) upp.by.+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[02/10] - "Fast.And.Furious.6 (2013).German.720p.CAM.MD-MW upp.by soV1-soko.rar" yEnc', + 'ordinal' => 15, + ), + 91 => + array ( + 'id' => 592, + 'group_regex' => '^alt\\.binaries\\.highspeed$', + 'regex' => '/^>ghost-of-usenet\\.org>(?P.+?)\\(.+?\\).+? \\(\\d+\\/\\d+\\) ".+?" yEnc$/', + 'status' => 1, + 'description' => '//>ghost-of-usenet.org>The A-Team S01-S05(Folgen einzelnd ladbar) 20, + ), + 92 => + array ( + 'id' => 593, + 'group_regex' => '^alt\\.binaries\\.highspeed$', + 'regex' => '/^www\\..+? \\[Sponsored.+?\\] \\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//www.usenet-town.com [Sponsored by Astinews] (103/103) "Intimate.Enemies.German.2007.AC3.[passwort protect].vol60+21.PAR2" yEnc', + 'ordinal' => 25, + ), + 93 => + array ( + 'id' => 594, + 'group_regex' => '^alt\\.binaries\\.highspeed$', + 'regex' => '/^(?P[A-Za-z0-9][a-zA-Z0-9.-]{6,})\\s+- ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Das.Schwergewicht.German.DL.720p.BluRay.x264-ETM - "etm-schwergewicht-720p.part20.rar" yEnc', + 'ordinal' => 30, + ), + 94 => + array ( + 'id' => 595, + 'group_regex' => '^alt\\.binaries\\.highspeed$', + 'regex' => '/^\\[ .+? \\] \\[ www\\..+? \\]( \\[.+?\\])? \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[ TiMnZb ] [ www.binnfo.in ] [REPOST] [01/46] - "Columbo - S07 E05 - Des sourires et des armes.nfo" yEnc', + 'ordinal' => 35, + ), + 95 => + array ( + 'id' => 596, + 'group_regex' => '^alt\\.binaries\\.highspeed$', + 'regex' => '/^< "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") >< \\d+\\/\\d+ \\(.+?\\) >< .+? > yEnc$/', + 'status' => 1, + 'description' => '//< "Burn.Notice.S04E17.Out.of.the.Fire.GERMAN.DUBBED.DL.720p.WebHD.x264-TVP.par2" >< 01/17 (1.54 GB) >< 11.62 kB > yEnc', + 'ordinal' => 40, + ), + 96 => + array ( + 'id' => 597, + 'group_regex' => '^alt\\.binaries\\.highspeed$', + 'regex' => '/^[A-Za-z0-9]+ postet (?P.+?) \\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Batman postet 30 Nights of Paranormal Activity with the Devil Inside AC3 XviD German [01/24] - "30 Nights of Paranormal Activity with the Devil Inside.par2" yEnc', + 'ordinal' => 45, + ), + 97 => + array ( + 'id' => 598, + 'group_regex' => '^alt\\.binaries\\.highspeed$', + 'regex' => '/^\\[\\d+\\/\\d+ (?P.+?)(\\.(part\\d*|rar|avi|iso|mp4|mkv|mpg))?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/', + 'status' => 1, + 'description' => '//[04/20 Geroellheimer - S03E19 - Freudige ?berraschung Geroellheimer - S03E19 - Freudige ?berraschung.mp4.004" yEnc', + 'ordinal' => 50, + ), + 98 => + array ( + 'id' => 599, + 'group_regex' => '^alt\\.binaries\\.highspeed$', + 'regex' => '/^"(?P.{7,}?)(\\.(part\\d*|rar|avi|mp4|mkv|mpg))?(\\d{1,3}\\.rev"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/', + 'status' => 1, + 'description' => '//"Homeland.S01.Complete.German.WS.DVDRiP.XViD-ETM.part001.rar" yEnc', + 'ordinal' => 55, + ), + 99 => + array ( + 'id' => 600, + 'group_regex' => '^alt\\.binaries\\.inner-sanctum$', + 'regex' => '/^\\[ nEwZ\\[NZB\\]\\.iNFO( \\])?[-_\\s]{0,3}\\[ (\\d+[-_])?(?P.+?) \\][-_\\s]{0,3}(File )?[\\(\\[]\\d+\\/(\\d+[\\)\\]]): "(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?(yEnc)?$/', + 'status' => 1, + 'description' => '//[ nEwZ[NZB].iNFO - [ Zed--The_Invitation-WEB-2010-WUS ] - File [12/13]: "08-zed--the_river.mp3" yEnc', + 'ordinal' => 5, + ), + 100 => + array ( + 'id' => 601, + 'group_regex' => '^alt\\.binaries\\.inner-sanctum$', + 'regex' => '/^nEwZ\\[NZB\\]\\.iNFO[-_\\s]{0,3} (?P.+?) [-_\\s]{0,3}(File )?[\\(\\[]\\d+\\/(\\d+[\\)\\]]): "(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")$/', + 'status' => 1, + 'description' => '//nEwZ[NZB].iNFO - VA-Universal_Music_Sampler_07_February-PROMO-CDR-FLAC-2013-WRE - File [6/9]: "01-alesso-years_(hard_rock_sofa_remix).flac"', + 'ordinal' => 10, + ), + 101 => + array ( + 'id' => 602, + 'group_regex' => '^alt\\.binaries\\.inner-sanctum$', + 'regex' => '/.+[DoAsYouLike\\].?[ _-]{0,3}\\d+[,.]\\d+ [mMkKgG][bB][-_\\s]{0,3}"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")[ _-]{0,3}\\d+([,.]\\d+ [mMkKgG])? [bB][-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//..:[DoAsYouLike]:.. 1,11 GB "KGMmDSSHBWnxV4g7Vbq5.part01.rar" 47,68 MB yEnc', + 'ordinal' => 15, + ), + 102 => + array ( + 'id' => 603, + 'group_regex' => '^alt\\.binaries\\.inner-sanctum$', + 'regex' => '/^\\(\\d+\\/\\d+\\)( - Description -)? "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")( - \\d+[,.]\\d+ [mMkKgG][bB])? - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/', + 'status' => 1, + 'description' => '//(01/10) "LeeDrOiD HD V3.3.2-Port-R4-A2SD.par2" - 357.92 MB - yEnc', + 'ordinal' => 20, + ), + 103 => + array ( + 'id' => 604, + 'group_regex' => '^alt\\.binaries\\.inner-sanctum$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//"Ashlar-Vellum Graphite v8 2 2 WinAll Incl Keygen-CRD.par2" yEnc', + 'ordinal' => 25, + ), + 104 => + array ( + 'id' => 605, + 'group_regex' => '^alt\\.binaries\\.inner-sanctum$', + 'regex' => '/^\\((?P[a-zA-Z0-9._-]+)\\) \\[\\d+\\/(\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/', + 'status' => 1, + 'description' => '//(VA-I_Love_Yaiza_Vol.1-WEB-2012-ServerLab) [01/11] - ".sfv" yEnc', + 'ordinal' => 30, + ), + 105 => + array ( + 'id' => 606, + 'group_regex' => '^alt\\.binaries\\.inner-sanctum$', + 'regex' => '/^[\\[\\(]\\d+( of |\\/)(\\d+[\\]\\)])[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(17/41) - "3-8139g0m530.017" yEnc', + 'ordinal' => 35, + ), + 106 => + array ( + 'id' => 607, + 'group_regex' => '^alt\\.binaries\\.inner-sanctum$', + 'regex' => '/^nEwZNZB\\.wz\\.cz - (?P.+?) - File \\[\\d+\\/\\d+]: ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//nEwZNZB.wz.cz - The.Block.AU.Sky.High.S07E12.WS.PDTV.XviD.BF1 - File [01/22]: "The.Block.AU.Sky.High.S07E12.WS.PDTV.XviD.BF1.part01.rar" yEnc', + 'ordinal' => 40, + ), + 107 => + array ( + 'id' => 608, + 'group_regex' => '^alt\\.binaries\\.inner-sanctum$', + 'regex' => '/^nEwZ\\[NZB\\]_wz_cz - (?P.+?) - File \\[\\d+\\/\\d+]: ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//nEwZ[NZB]_wz_cz - u.s.drug.wars.s02e06.hdtv.x264-mtg - File [02/28]: "eII34BvTxvDMSJZ2ulvh.r00" yEnc', + 'ordinal' => 45, + ), + 108 => + array ( + 'id' => 609, + 'group_regex' => '^alt\\.binaries\\.inner-sanctum$', + 'regex' => '/^nEwZNZB\\.wz\\.cz - (?P.+?) - File \\d+ of \\d+: ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//nEwZNZB.wz.cz - Club_FG-SAT-05-22 - File 4 of 4: "01-jean_jerome-club_fg-05-22-2013-tdmlive.mp3" yEnc', + 'ordinal' => 50, + ), + 109 => + array ( + 'id' => 610, + 'group_regex' => '^alt\\.binaries\\.inner-sanctum$', + 'regex' => '/^[a-zA-Z0-9._-]+ \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Big.Brother.IL.S05E01.WS.PDTV.XviD-Silver007 [1/1] - "Big.Brother.IL.S05E01.WS.PDTV.XviD-Silver007.avi" yEnc', + 'ordinal' => 55, + ), + 110 => + array ( + 'id' => 611, + 'group_regex' => '^alt\\.binaries\\.inner-sanctum$', + 'regex' => '/^\\[ [a-f0-9]{32} \\] \\[\\d+\\/\\d+\\] - "\\d+[-_](?P.+?)\\.[a-z0-9]{3,4}" yEnc$/i', + 'status' => 1, + 'description' => '//[ f680631754c469e49d3447bf0beadb8e ] [1/8] - "00-chris_carreiro-dirty-web-2014.m3u" yEnc ::: //', + 'ordinal' => 60, + ), + 111 => + array ( + 'id' => 612, + 'group_regex' => '^alt\\.binaries\\.inner-sanctum$', + 'regex' => '/\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//', + 'ordinal' => 0, + ), + 112 => + array ( + 'id' => 613, + 'group_regex' => '^alt\\.binaries\\.inner-sanctum$', + 'regex' => '/^(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '// 8rg5f9v7yba9ll2ny4z8vvh5exddygh2.par2" yEnc', + 'ordinal' => 70, + ), + 113 => + array ( + 'id' => 614, + 'group_regex' => '^alt\\.binaries\\.mojo$', + 'regex' => '/^\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/', + 'status' => 1, + 'description' => '//[17/61] - "www.realmom.info - xvid - xf-devilstomb.r14" - 773,11 MB - yEnc', + 'ordinal' => 5, + ), + 114 => + array ( + 'id' => 615, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^\\[usenet4ever\\.info\\] und \\[SecretUsenet\\.com\\] - (?P.+?)-u4e - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//[usenet4ever.info] und [SecretUsenet.com] - 96e323468c5a8a7b948c06ec84511839-u4e - "96e323468c5a8a7b948c06ec84511839-u4e.par2" yEnc', + 'ordinal' => 5, + ), + 115 => + array ( + 'id' => 616, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^\\[Art-of-Usenet\\] ([a-fA-F0-9]+) \\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//brothers-of-usenet.info/.net <<>> - [01/26] - "Be.Cool.German.AC3.HDRip.x264-FuN.par2" yEnc', + 'ordinal' => 10, + ), + 116 => + array ( + 'id' => 617, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^\\(\\?+\\) \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+?[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(????) [03/20] - "Weblinger - The.Haunted.House.Mysteries.v1.0-ZEKE.part01.rar" yEnc', + 'ordinal' => 15, + ), + 117 => + array ( + 'id' => 618, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/[\\w.-]{8,}[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//ShesGonnaSquirt.12.12.13.Sindy.Lange.My.Knight.In.Squirting.Armor.XXX.1080p.x264 - [1/1] - "ShesGonnaSquirt.12.12.13.Sindy.Lange.My.Knight.In.Squirting.Armor.XXX.1080p.x264.rar" yEnc', + 'ordinal' => 20, + ), + 118 => + array ( + 'id' => 619, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^\\[Art-of-Usenet\\] .+? \\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[Art-of-Usenet] dea75eb65e65c56197d749d57919806d [01/19] - "dea75eb65e65c56197d749d57919806d.par2" yEnc', + 'ordinal' => 25, + ), + 119 => + array ( + 'id' => 620, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^(?P.+?) \\[\\d+\\/\\d+\\] - ".+?" .+? yEnc$/', + 'status' => 1, + 'description' => '//XCOM.Enemy.Unknown.Deutsch.Patch.TokZic [0/9] - "XCOM Deutsch.nzb" ein CrazyUpp yEnc', + 'ordinal' => 30, + ), + 120 => + array ( + 'id' => 621, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^\\.oO "(?P.+)__www.realmom.info__.+" Oo. \\[\\d+\\/\\d+\\] \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/', + 'status' => 1, + 'description' => '//.oO "20.Years.After.German.2008.AC3.BDRip.XviD.INTERNAL-ARC__www.realmom.info__.nfo" Oo. [02/39] 1,43 GB yEnc', + 'ordinal' => 35, + ), + 121 => + array ( + 'id' => 622, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^[ _-]{0,3}\\w+(-\\w+)?[ _-]{0,3}\\d+[ _-]{0,3}(?P.+) - \\[\\d+\\/\\d+\\][ _-]{0,3}("|#34;).+?("|#34;) yEnc$/i', + 'status' => 1, + 'description' => '// - 0DAY - 1331086126 - Robokill.Rescue.Titan.Prime.v1.1.MacOSX.Cracked-CORE - [1/9] - "Robokill.Rescue.Titan.Prime.v1.1.MacOSX.Cracked-CORE.par2" yEnc', + 'ordinal' => 40, + ), + 122 => + array ( + 'id' => 623, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^\\[(?P.+?)\\][ _-]{0,3}\\[www\\.usenet4ever\\.info by Secretusenet][ _-]{0,3} ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[A_New_Found_Glory-Its_All_About_The_Girls-Reissue-CDEP-FLAC-2003-JLM] [www.usenet4ever.info by Secretusenet] - "00-a_new_found_glory-its_all_about_the_girls-reissue-cdep-flac-2003.jpg" yEnc', + 'ordinal' => 45, + ), + 123 => + array ( + 'id' => 624, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^(Mom\\d+[ _-]{0,3})?"(?P.+?)__www\\.realmom\\.info__([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}[\\(\\[]\\d+\\/(\\d+[\\)\\]]) \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/i', + 'status' => 1, + 'description' => '//MoM100060 - "Florian_Arndt-Trix-(BBM36)-WEB-2012-UKHx__www.realmom.info__.nfo" [2/7] 29,04 MB yEnc ::: //"Alan.Wake.v1.02.16.4261.Update-SKIDROW__www.realmom.info__.nfo" (02/17) 138,07 MB yEnc', + 'ordinal' => 50, + ), + 124 => + array ( + 'id' => 625, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^"(?P.+?)"\\(\\d+\\/(\\d+\\))[ _-]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB] yEnc$/i', + 'status' => 1, + 'description' => '//"The.Draughtsmans.Contract.1982.576p.BluRay.DD2.0.x264-EA"(15/56) "The.Draughtsmans.Contract.1982.576p.BluRay.DD2.0.x264-EA.part13.rar" - 2.37 GB yEnc', + 'ordinal' => 55, + ), + 125 => + array ( + 'id' => 626, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^\\(\\d+\\/(\\d+\\))[ _-]{0,3}Description[ _-]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//(01/29) - Description - "Revolution.2012.S01E06.HDTV.x264-LOL.nfo" - 317.24 MB - yEnc', + 'ordinal' => 60, + ), + 126 => + array ( + 'id' => 627, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^\\(\\d+\\/(\\d+\\))[ _-]{0,3}\\[Lords-of-Usenet\\][ _-]{0,3}<>[ _-]{0,3}(?P.+?)[ _-]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//(02/17) - [Lords-of-Usenet] <> i8dewFjzft94BW71EI0s -"19913.r00" - 928,75 MB - yEnc', + 'ordinal' => 65, + ), + 127 => + array ( + 'id' => 628, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^\\[\\d+\\/\\d+\\][ _-]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[002/161] - "Rayman_Legends_USA_PS3-CLANDESTiNE.nfo" yEnc', + 'ordinal' => 70, + ), + 128 => + array ( + 'id' => 629, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^(?P[a-z0-9].+?\\.XXX.*?\\.[a-z0-9]{3,4}-[a-z0-9]+) - \\[\\d+\\/\\d+\\] - ".+?" yEnc$/i', + 'status' => 1, + 'description' => '//NetVideoGirls.13.08.05.Julia.XXX.MP4-KTR - [1/1] - "NetVideoGirls.13.08.05.Julia.XXX.MP4-KTR.rar" yEnc ::: //FemaleAgent.E136.Rollie.XXX.1080p.MOV-KTR - [1/1] - "FemaleAgent.E136.Rollie.XXX.1080p.MOV-KTR.rar" yEnc ::: //Penthouse.13.07.13.Natalia.Starr.Pet.Of.Month.July.2013.XXX.3D.WMV-TBP - [1/1] - "Penthouse.13.07.13.Natalia.Starr.Pet.Of.Month.July.2013.XXX.3D.WMV-TBP.rar" yEnc', + 'ordinal' => 75, + ), + 129 => + array ( + 'id' => 630, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/brothers-of-usenet\\.info&net-empfehlen-ssl-news.+\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//happy birthday brothers - brothers-of-usenet.info&net-empfehlen-ssl-news - 2brokegirls-s03e12-Die.franzoesische.Versuchung.48 - [01/12] - "2brokegirls-s03e12-Die.franzoesische.Versuchung.480p.par2" yEnc', + 'ordinal' => 80, + ), + 130 => + array ( + 'id' => 631, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^Eragon postet.+\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Eragon postet Pfeil S01E18 german [01/19] - "Pfeil S01E18.par2" yEnc', + 'ordinal' => 85, + ), + 131 => + array ( + 'id' => 632, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//"[Fansub-Resistance] Naruto Shippuuden 345 xvid (848x480).vol25+15.PAR2" yEnc', + 'ordinal' => 90, + ), + 132 => + array ( + 'id' => 633, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/', + 'status' => 1, + 'description' => '//"Die.Sopranos.S05E02.German.AVC-TVS.vol063+60.par2" (repack180414) yEnc', + 'ordinal' => 95, + ), + 133 => + array ( + 'id' => 634, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^(?P[\\w.-]{8,})[-_\\s]{0,3}\\[\\d+\\/(\\d+\\])[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//LOL.3E05.720p.WEB.DL.nHD.x264-NhaNc3 [64/71] - "LOL.3E05.720p.WEB.DL.nHD.x264-NhaNc3.sfv" yEnc', + 'ordinal' => 100, + ), + 134 => + array ( + 'id' => 635, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^Uploader\\.Presents-(?P.+)[\\[\\(]\\d+\\/\\d+[\\]\\)]".+" yEnc$/', + 'status' => 1, + 'description' => '//Uploader.Presents-LaLa.2014.Englisch.R6.HDCAM.x264.AC3-SmY(06/56]"SmY-I,F.2014.part05.rar" yEnc', + 'ordinal' => 105, + ), + 135 => + array ( + 'id' => 636, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^\\(\\d+\\/\\d+\\)[-_\\s]{0,3}Description (?P[\\w.,& \\()\\[\\]\\\'\\`-]{8,}?)[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(21/27) - Description Lava.Land.2013.3D.1080p.Bluray.HOU.X264.DL-zman - "Lava.Land.2013.3D.1080.HOU.DL-zman.part20.rar" - 8,85 GB - yEnc', + 'ordinal' => 110, + ), + 136 => + array ( + 'id' => 637, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^- (Description - )?"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//- "z7QxDdQ5Qs63v8B8.01" - 374,56 MB - yEnc ::: //- Description - "le gars et son arc 2x21.vol06+05.PAR2" - 273,04 MB - yEnc', + 'ordinal' => 115, + ), + 137 => + array ( + 'id' => 638, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^.+Usejunkies\\.tk.+\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//::: Usejunkies.tk ::: - [11/15] - "Saitenfeuer - Kein Zurueck 2013.vol00+1.par2" - 116,42 MB yEnc', + 'ordinal' => 120, + ), + 138 => + array ( + 'id' => 639, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^.+Usejunkies\\.tk.+\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//:.Usejunkies.tk.:---- - [4/8] - "MKTO - MKTO.vol00+5.par2" yEnc', + 'ordinal' => 125, + ), + 139 => + array ( + 'id' => 640, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^"(?P.{8,}?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//"8ÅdTbOMaÃ¥RuieuD4gÃ¥jÅwOÃ¥bmS72ADÅM1b2æefz9q4yW4O7exV.vol037+6.par2" yEnc', + 'ordinal' => 130, + ), + 140 => + array ( + 'id' => 641, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^\\(\\d+\\/\\d+\\) \\[ArtofUsenet\\].+www\\.art-of-use\\.net.+"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(08/12) [ArtofUsenet] >>> www.art-of-use.net <<< "Alles Atze - S01E05 - Die Anatolische Fliege.vol01+02.par2" - 245,19 MB - yEnc', + 'ordinal' => 135, + ), + 141 => + array ( + 'id' => 642, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^\\(\\d+\\/\\d+\\) - \\[Lords-of-Usenet\\].+ presents (?P.+?)[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(01/10) - [Lords-of-Usenet] <> presents AoA.Audio.Extractor.Platinum.v2.0.Portable.WiNALL.APPZ-NOTRADE -"notrade-aoaextractorplati_portable.par2" - 8,14 MB - yEnc', + 'ordinal' => 140, + ), + 142 => + array ( + 'id' => 643, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^\\(\\d+\\/\\d+\\) - \\[Lords-of-Usenet\\].+ presents (?P.+?)[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(02/66) - [Lords-of-Usenet] <> presents The_Swapper-FANiSO - "fan-swap.rar" - yEnc', + 'ordinal' => 145, + ), + 143 => + array ( + 'id' => 644, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^\\(\\d+\\/\\d+\\) - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s].+yEnc$/ui', + 'status' => 1, + 'description' => '//(1/3) - "Readers Digest Magazin Deutschland Oktober 10-2014.rar" - 10,92 MB - >>brothers-of-usenet.info/net<< empfehlen SSL-News.info yEnc', + 'ordinal' => 150, + ), + 144 => + array ( + 'id' => 645, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^\\(\\d+\\/\\d+\\)[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(1/3) "Die drei Fragezeichen - Folge 162 - Der schreiende Nebel.rar" - 121,56 MB - yEnc', + 'ordinal' => 155, + ), + 145 => + array ( + 'id' => 646, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^brothers-of-usenet.+SSL-News\\.info.+[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖܖ¤ß¶!.,&_\\()\\[\\]\\\'\\`-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//brothers-of-usenet.ino/.net<<>> - [05/33] - "oiu78_67O77OuiI_ztRe014.part04.rar" yEnc', + 'ordinal' => 160, + ), + 146 => + array ( + 'id' => 647, + 'group_regex' => '^alt\\.binaries\\.mom$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//"Fabulous MP3.v1.10.rar" yEnc', + 'ordinal' => 165, + ), + 147 => + array ( + 'id' => 648, + 'group_regex' => '^alt\\.binaries\\.moovee$', + 'regex' => '/\\[ENJOY\\]-\\[FULL\\]-\\[.+\\]-\\[ (?P.+) \\]-\\[\\d+\\/\\d+\\]-".+" yEnc$/', + 'status' => 1, + 'description' => '//[ENJOY]-[FULL]-[.+]-[ (.+) ]-[d+/d+]-".+" yEnc$/', + 'ordinal' => 5, + ), + 148 => + array ( + 'id' => 649, + 'group_regex' => '^alt\\.binaries\\.moovee$', + 'regex' => '/^(?P.+DVD.*) \\[\\d+\\/\\d+\\] - ".+" yEnc$/', + 'status' => 1, + 'description' => '///PROUT Movie (2010) NTSC DVD [157/15768] - "PROUTmovie_NTSC.part155.rar" yEnc', + 'ordinal' => 10, + ), + 149 => + array ( + 'id' => 650, + 'group_regex' => '^alt\\.binaries\\.moovee$', + 'regex' => '/^(\\[\\d+\\]-)?\\[ ?(?P[a-zA-Z0-9.-]{6,}) ?\\](-\\[REAL\\])? ?- ?\\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//[ Hammer.of.the.Gods.2013.720p.WEB-DL.DD5.1.H.264-ELiTE ]-[01/44] - "Hammer.of.the.Gods.2013.720p.WEB-DL.DD5.1.H.264-ELiTE.par2" yEnc ::: //[134863]-[ Rihanna.No.Regrets.2013.720p.WEB-DL.DD5.1.H.264-PZK ]-[52/52] - "Rihanna.No.Regrets.2013.720p.WEB-DL.DD5.1.H.264-PZK.vol127+76.par2" yEnc ::: //[Hard.Target.1993.UNRATED.720p.BluRay.x264-88keyz] - [001/101] - "Hard.Target.1993.UNRATED.720p.BluRay.x264-88keyz.nfo" ::: //[ Fast.And.Furious.6.2013.720p.WEB-DL.AAC2.0.H.264-HDCLUB ]-[REAL]-[01/54] - "Fast.And.Furious.6.2013.720p.WEB-DL.AAC2.0.H.264-HDCLUB.nfo" yEnc', + 'ordinal' => 15, + ), + 150 => + array ( + 'id' => 651, + 'group_regex' => '^alt\\.binaries\\.moovee$', + 'regex' => '/^"(?P.+(DVD|BluRay|BRRip).+)"\\(\\d+\\/\\d+\\) ".+".+[GMK]B yEnc$/i', + 'status' => 1, + 'description' => '//"Nights.of.Cabiria.1957.NTSC.DVD.x264-Tree"(23/57) "Nights.of.Cabiria.1957.NTSC.DVD.x264-Tree.part22.rar" - 2.40 GB yEnc', + 'ordinal' => 20, + ), + 151 => + array ( + 'id' => 652, + 'group_regex' => '^alt\\.binaries\\.moovee$', + 'regex' => '/^\\(\\?{4}\\) \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(????) [0/1] - "A.Good.Day.to.Die.Hard.2013.nzb" yEnc', + 'ordinal' => 25, + ), + 152 => + array ( + 'id' => 653, + 'group_regex' => '^alt\\.binaries\\.moovee$', + 'regex' => '/^\\[x+\\]-\\[.+?\\]-\\[ x+ \\]-\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[xxxxx]-[#a.b.moovee@EFNet]-[ xxxxx ]-[02/66] - "tulob88.part01.rar" yEnc', + 'ordinal' => 30, + ), + 153 => + array ( + 'id' => 654, + 'group_regex' => '^alt\\.binaries\\.moovee$', + 'regex' => '/^(?P[a-zA-Z0-9._-]+) - ?\\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Groove.2000.iNTERNAL.DVDRip.XviD-UBiK - [001/111] - "ubik-groove-cd1.par2" yEnc ::: //Antony.and.Cleopatra.1972.720p.WEB-DL.H264-brento -[35/57] - "Antony.and.Cleopatra.1972.720p.WEB-DL.AAC2.0.H.264-brento.part34.rar" yEnc', + 'ordinal' => 35, + ), + 154 => + array ( + 'id' => 655, + 'group_regex' => '^alt\\.binaries\\.moovee$', + 'regex' => '/^\\((?P[a-zA-Z0-9.-]+)\\) \\(\\d+\\/\\d+\\) - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//(Iron.Man.3.2013.R5.DVDRip.XviD-AsA) (01/26) - "Iron.Man.3.2013.R5.DVDRip.XviD-AsA.part01.part.sfv" yEnc', + 'ordinal' => 40, + ), + 155 => + array ( + 'id' => 656, + 'group_regex' => '^alt\\.binaries\\.moovee$', + 'regex' => '/^\\([a-zA-Z0-9].+?\\) (?P[a-zA-Z0-9.-]+) \\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//(Classic Surf) Morning.Of.The.Earth.1971 [03/29] - "Morning.Of.The.Earth.1971.part02.rar" yEnc', + 'ordinal' => 45, + ), + 156 => + array ( + 'id' => 657, + 'group_regex' => '^alt\\.binaries\\.moovee$', + 'regex' => '/^\\[\\d+\\/\\d+\\] (?P.+) - ".+" yEnc$/', + 'status' => 1, + 'description' => '//[51/62] Morrissey.25.Live.Concert.2013.BDRip.x264-N0TSC3N3 - "n0tsc3n3-morrissey.25.live.2013.bdrip.x264.rar" yEnc', + 'ordinal' => 50, + ), + 157 => + array ( + 'id' => 658, + 'group_regex' => '^alt\\.binaries\\.moovee$', + 'regex' => '/^\\[\\w+-\\w+\\]-\\[\\w+\\]-\\[\\d+\\] (?P.+) \\[\\d+\\/\\d+\\] - ".+" yEnc$/', + 'status' => 1, + 'description' => '//[AD120512-00006]-[UnOFFSc3n4iT]-[0131105] Chloe.Tra.Seduzione.E.Inganno.2009.iTALiAN.DVDRip.XviD-TRL [19/41] - "trl-chltsdzn.part18.rar" yEnc', + 'ordinal' => 55, + ), + 158 => + array ( + 'id' => 659, + 'group_regex' => '^alt\\.binaries\\.moovee$', + 'regex' => '/^(?P.+x264.+) \\[\\d+\\/\\d+\\] - ".+" yEnc$/', + 'status' => 1, + 'description' => '//Breathe.In.2013.BRRip.x264-4UN [01/39] - "Breathe.In.2013.BRRip.x264-4UN.nfo" yEnc', + 'ordinal' => 60, + ), + 159 => + array ( + 'id' => 660, + 'group_regex' => '^alt\\.binaries\\.moovee$', + 'regex' => '/^(?P.+) \\[REPACK\\] \\[\\d+\\/\\d+\\] - ".+" yEnc$/', + 'status' => 1, + 'description' => '//The.CyB3rMaFiA.PimPs.YouR.RiDE.WiTH [REPACK] [40/42] - "d2p5uypp7yn3drpk1080417.vol255+064.par2" yEnc', + 'ordinal' => 65, + ), + 160 => + array ( + 'id' => 661, + 'group_regex' => '^alt\\.binaries\\.moovee$', + 'regex' => '/\\[ (?P.+WEB-DL.+) \\]-\\[\\d+\\/\\d+\\] - "(.+)\\.(mp4|mkv|ts|rar|par.+)" yEnc$/', + 'status' => 1, + 'description' => '//[ Oklahoma!.1955.720p.WEB-DL.AAC2.0.H.264-CtrlHD ]-[32/55] - "Oklahoma.1955.720p.WEB-DL.AAC2.0.H.264-CtrlHD.part31.rar" yEnc', + 'ordinal' => 70, + ), + 161 => + array ( + 'id' => 662, + 'group_regex' => '^alt\\.binaries\\.moovee$', + 'regex' => '/^REQ:.+".+".+\\(\\d+\\/\\d+\\) ".+" - \\d+[,.]\\d+ [MGK]B - (?P.+) yEnc$/', + 'status' => 1, + 'description' => '//REQ: working copy of "That Darn Cat 1997 Xvid-Any grp" Plz Ty (47/60) "geckos-ghr2011-xvid.r44" - 744,19 MB - Gun.Hill.Road.2011.LIMITED.DVDRip.XviD-GECKOS yEnc', + 'ordinal' => 75, + ), + 162 => + array ( + 'id' => 663, + 'group_regex' => '^alt\\.binaries\\.moovee$', + 'regex' => '/^\\(T\\.U\\.F The real thing (?P.+?) T\\.U\\.F\\)/', + 'status' => 1, + 'description' => '//(T.U.F The real thing I Frankenstein 2014 NL Subs T.U.F) [01/52] - "I Frankenstein 2014 NL Subs.par2" yEnc', + 'ordinal' => 80, + ), + 163 => + array ( + 'id' => 664, + 'group_regex' => '^alt\\.binaries\\.moovee$', + 'regex' => '/^\\((?P[\\w.-]+)\\)\\[\\d+\\/(\\d+\\])[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(Ringside.The.Best.of.Mike.Tyson.DVDRip.x264.AC3-FCZ)[01/68] - "Ringside.The.Best.of.Mike.Tyson.DVDRip.1.of.2.x264.AC3-FCZ.nfo" yEnc', + 'ordinal' => 85, + ), + 164 => + array ( + 'id' => 665, + 'group_regex' => '^alt\\.binaries\\.movies$', + 'regex' => '/^(?P[a-z].+) - \\[\\d+\\/\\d+\\][ _-]{0,3}("|#34;).+("|#34;) yEnc$/i', + 'status' => 1, + 'description' => '//Underworld.Evolution.2006.480p.BDRip.XviD.AC3-AsA - [000/143] - "asa.nzb" yEnc', + 'ordinal' => 5, + ), + 165 => + array ( + 'id' => 666, + 'group_regex' => '^alt\\.binaries\\.movies$', + 'regex' => '/^Have Fun - ("|#34;)(?P.+)\\.nfo("|#34;) Ph4let0ast3r yEnc$/i', + 'status' => 1, + 'description' => '///^Have Fun - ("|#34;)(.+).nfo("|#34;) Ph4let0ast3r yEnc$/i', + 'ordinal' => 10, + ), + 166 => + array ( + 'id' => 667, + 'group_regex' => '^alt\\.binaries\\.movies$', + 'regex' => '/^\\(\\d+\\/\\d+\\) ("|#34;)(?P.+)\\.(par2|nfo|rar|nzb)("|#34;) - \\d+[.,]\\d+ [kKmMgG][bB] - yEnc$/i', + 'status' => 1, + 'description' => '//(01/34) "Sniper.Reloaded.2011.BluRay.810p.DTS.x264-PRoDJi.Turkish.Audio.par2" - 139,30 MB - yEnc', + 'ordinal' => 15, + ), + 167 => + array ( + 'id' => 668, + 'group_regex' => '^alt\\.binaries\\.movies$', + 'regex' => '/^("|#34;)(?P.+)\\.rar("|#34;)$/i', + 'status' => 1, + 'description' => '//"Discovery.Channel.Tsunami.Facing.The.Wave.720p.HDTV.x264-PiX.rar"', + 'ordinal' => 20, + ), + 168 => + array ( + 'id' => 669, + 'group_regex' => '^alt\\.binaries\\.movies$', + 'regex' => '/^(?P[a-z].+) .+\\.(par2|nfo|rar|nzb)$/i', + 'status' => 1, + 'description' => '//Saw.VII.2010.720p.Bluray.x264.DTS-HDChina Saw.VII.2010.720p.Bluray.x264.DTS-HDChina.nzb', + 'ordinal' => 25, + ), + 169 => + array ( + 'id' => 670, + 'group_regex' => '^alt\\.binaries\\.movies$', + 'regex' => '/^\\(\\?+\\) \\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(????) [1/1] - "The Secret L', + 'ordinal' => 30, + ), + 170 => + array ( + 'id' => 671, + 'group_regex' => '^alt\\.binaries\\.movies$', + 'regex' => '/^\\(\\d+\\/\\d+\\)[-_\\s]{0,3}Description[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(001/114) - Description - "The.Chronicles.of.Riddick.2004.DC.BluRay.1080p.DTS.par2" - 10,50 GB - yEnc', + 'ordinal' => 35, + ), + 171 => + array ( + 'id' => 672, + 'group_regex' => '^alt\\.binaries\\.movies$', + 'regex' => '/^\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[00/56] - "The.Last.Days.On.Mars.720p.BluRay.x264-DR.nzb" yEnc', + 'ordinal' => 40, + ), + 172 => + array ( + 'id' => 673, + 'group_regex' => '^alt\\.binaries\\.movies$', + 'regex' => '/^\\[REUP\\]( )?(?P.+?) - \\[\\d+\\/\\d+\\] - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[REUP] 6.Degress.of.Hell.2012.1080p.BluRay.DTS-HD.x264-BARC0DE - [03/50] - "BARC0DE.vol00+1.PAR2" yEnc ::: //[REUP]Home.Of.The.Brave.2006.1080p.BluRay.DTS-HD.x264-BARC0DE - [03/38] - "BARC0DE.vol00+1.PAR2" yEnc', + 'ordinal' => 45, + ), + 173 => + array ( + 'id' => 674, + 'group_regex' => '^alt\\.binaries\\.movies$', + 'regex' => '/^- Description - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")([-_\\s]{0,3}\\d+[.,]\\d+ [kKmMgG][bB])[- ]{0,4}yEnc$/', + 'status' => 1, + 'description' => '//- Description - "The.Legend.of.Hercules.2014.720p.BluRay.x264.Y', + 'ordinal' => 50, + ), + 174 => + array ( + 'id' => 675, + 'group_regex' => '^alt\\.binaries\\.movies$', + 'regex' => '/^(?P[\\w.\\()-]{8,}?)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Star.Trek.Into.Darkness.2013.3D.HOU.BDRip.1080p-FAGGOTS [431/432] - "stid3d.vol124+128.par2" yEnc', + 'ordinal' => 55, + ), + 175 => + array ( + 'id' => 676, + 'group_regex' => '^alt\\.binaries\\.movies$', + 'regex' => '/^\\(\\d+\\/\\d+\\)[-_\\s]{0,3}(?P[\\w.\\() -]{8,}?\\b)[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(130/138) - Captain America The Winter Soldier 2014 NEW (FIXED) 720p CAM x264 Pimp4003 - "wXZ6LxFt.zip.130" - 2.02 GB - yEnc', + 'ordinal' => 60, + ), + 176 => + array ( + 'id' => 677, + 'group_regex' => '^alt\\.binaries\\.movies$', + 'regex' => '/^.+\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//22.Jump.Street.2014.720p.BluRay.x264-tpU.vol000+01.PAR2 [73/84] - "22.Jump.Street.2014.720p.BluRay.x264-tpU.vol000+01.PAR2" yEnc', + 'ordinal' => 65, + ), + 177 => + array ( + 'id' => 678, + 'group_regex' => '^alt\\.binaries\\.movies\\.divx$', + 'regex' => '/^\\(www\\.Thunder-News\\.org\\) .+? - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(www.Thunder-News.org) >CD2< - "exvid-emma-cd2.par2" yEnc', + 'ordinal' => 5, + ), + 178 => + array ( + 'id' => 679, + 'group_regex' => '^alt\\.binaries\\.movies\\.divx$', + 'regex' => '/^[a-zA-Z ]+Post Voor FTN - \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Movieland Post Voor FTN - [01/43] - "movieland0560.par2" yEnc', + 'ordinal' => 10, + ), + 179 => + array ( + 'id' => 680, + 'group_regex' => '^alt\\.binaries\\.movies\\.divx$', + 'regex' => '/.+?by mayhem masta"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Disney short films collection by mayhem masta"1923 - Alice\'s Wonderland.vol15+7.par2" yEnc', + 'ordinal' => 15, + ), + 180 => + array ( + 'id' => 681, + 'group_regex' => '^alt\\.binaries\\.movies\\.divx$', + 'regex' => '/^\\(.+usenet\\.info\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//(http://dream-of-usenet.info) - [01/43] - "Nicht.auflegen.2002.German.DL.AC3.BDRip.XviD-iNCEPTiON.nfo" yEnc', + 'ordinal' => 20, + ), + 181 => + array ( + 'id' => 682, + 'group_regex' => '^alt\\.binaries\\.movies\\.divx$', + 'regex' => '/\\[#]+\\]-\\[.+\\]-\\[.+\\]-\\[(?P.+)\\][- ]\\[\\d+\\/\\d+\\][-_\\s]{0,3}".+" yEnc$/', + 'status' => 1, + 'description' => '//[######]-[FULL]-[#hdtv@LinkNet]-[Sesame.Street.S41E03.1080i.HDTV.DD5.1.MPEG2-TrollHD]-[00/51] - "Sesame Street S41E03 Chicken When It Comes to Thunderstorms 1080i HDTV DD5.1 MPEG2-TrollHD.nzb" yEnc', + 'ordinal' => 25, + ), + 182 => + array ( + 'id' => 683, + 'group_regex' => '^alt\\.binaries\\.movies\\.divx$', + 'regex' => '/^\\[ (?P[a-zA-Z0-9.-]{6,}) \\]-\\[\\d+\\/\\d+\\] - ".+" yEnc$/', + 'status' => 1, + 'description' => '//[ Rules.of.Engagement.S06E12.720p.WEB-DL.DD5.1.H.264-CtrlHD ]-[01/24] - "Rules.of.Engagement.S06E12.720p.WEB-DL.DD5.1.H.264-CtrlHD.nfo" yEnc', + 'ordinal' => 30, + ), + 183 => + array ( + 'id' => 684, + 'group_regex' => '^alt\\.binaries\\.movies\\.x264$', + 'regex' => '/^http:\\/\\/nzbroyalty\\.com - (?P.+?) - \\[\\d+\\/(\\d+\\]) - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//http://nzbroyalty.com - House.of.The.Rising.sun.2011.BluRay.720p.DTS.x264-CHD - [00/48] - "House.of.The.Rising.sun.2011.BluRay.720p.DTS.x264-CHD.nzb" yEnc', + 'ordinal' => 5, + ), + 184 => + array ( + 'id' => 685, + 'group_regex' => '^alt\\.binaries\\.movies\\.x264$', + 'regex' => '/^([a-zA-Z0-9._-]+ - ?\\[)\\d+\\/(\\d+\\]) - "(?P.+?)\\.(nzb|rar|par2)" yEnc$/', + 'status' => 1, + 'description' => '//Scream.4.2011.WS.720p.BluRay.X264-AMIABLE - [000/106] - "Scream.4.2011.WS.720p.BluRay.X264-AMIABLE.nzb" yEnc', + 'ordinal' => 10, + ), + 185 => + array ( + 'id' => 686, + 'group_regex' => '^alt\\.binaries\\.movies\\.x264$', + 'regex' => '/^(?P[a-zA-Z0-9].+?)( - )\\[\\d+(\\/\\d+\\] - ").+?" yEnc$/', + 'status' => 1, + 'description' => '//The Beaver 2011 720p BluRay DD5.1 x264-CtrlHD - [00/65] - "The Beaver 2011 720p BluRay DD5.1 x264-CtrlHD.nzb" yEnc', + 'ordinal' => 15, + ), + 186 => + array ( + 'id' => 687, + 'group_regex' => '^alt\\.binaries\\.movies\\.x264$', + 'regex' => '/("|#34;)(?P.+)("|#34;)[-_\\s]{0,3}[\\(\\[]\\d+\\/(\\d+[\\)\\]])[-_\\s]{0,3}("|#34;).+?(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4})("|#34;)[-_\\s]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//"The.Hudsucker.Proxy.1994.1080p.Blu-ray.Remux.AVC.DTS.HD.MA.2.0-KRaLiMaRKo"(127/132) "The.Hudsucker.Proxy.1994.1080p.Blu-ray.Remux.AVC.DTS.HD.MA.2.0-KRaLiMaRKo.vol379+20.par2" - 24.61 GB - yEnc', + 'ordinal' => 20, + ), + 187 => + array ( + 'id' => 688, + 'group_regex' => '^alt\\.binaries\\.movies\\.x264$', + 'regex' => '/^\\([\\w.-]+\\)[\\(\\[]\\d+\\/\\d+[\\]\\)] "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(Amour.2012.1080p.BluRay.x264-EbP)(002/337) "Amour.2012.1080p.BluRay.x264-EbP.part001.rar" - 16.58 GB - yEnc', + 'ordinal' => 25, + ), + 188 => + array ( + 'id' => 689, + 'group_regex' => '^alt\\.binaries\\.movies\\.x264$', + 'regex' => '/^\\([\\w .\\()-]+\\) [\\(\\[]\\d+\\/\\d+[\\]\\)] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(La.pianiste.(aka.The.Piano.Teacher).(2001).720p.BluRay.AC3.x264-MandR) [085/101] - "La.pianiste.(aka.The.Piano.Teacher).(2001).720p.BluRay.AC3.x264-MandR.part084.rar" yEnc', + 'ordinal' => 30, + ), + 189 => + array ( + 'id' => 690, + 'group_regex' => '^alt\\.binaries\\.movies\\.x264$', + 'regex' => '/^\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[00/56] - "The.Last.Days.On.Mars.720p.BluRay.x264-DR.nzb" yEnc', + 'ordinal' => 35, + ), + 190 => + array ( + 'id' => 691, + 'group_regex' => '^alt\\.binaries\\.movies\\.x264$', + 'regex' => '/^< [\\w.\\() -]+ > - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") \\(\\d+\\/\\d+\\) yEnc$/', + 'status' => 1, + 'description' => '//< Michael.Jackson.Bad.25.2012.720p.BluRay.x264-PHD > - "Michael.Jackson.Bad.25.2012.720p.BluRay.x264-PHD.par2" (01/64) yEnc', + 'ordinal' => 40, + ), + 191 => + array ( + 'id' => 692, + 'group_regex' => '^alt\\.binaries\\.movies\\.x264$', + 'regex' => '/^:(?P[\\w.-]+)[-_\\s]{0,3}[\\w.-]+[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//:Waga.Haha.no.Ki.2012.BluRay.720p.DTS.x264 - Chronicle.Of.My.Mother.2012 - [55/56] - "waha.720p.vol063+64.par2" yEnc', + 'ordinal' => 45, + ), + 192 => + array ( + 'id' => 693, + 'group_regex' => '^alt\\.binaries\\.movies\\.x264$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") \\d+ of \\d+[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//"Cat Ballou (1965) Multi-Dub AVC 480p.MKV.001" 01 of 11 yEnc', + 'ordinal' => 50, + ), + 193 => + array ( + 'id' => 694, + 'group_regex' => '^alt\\.binaries\\.movies\\.x264$', + 'regex' => '/^(?P[\\w.-]+)[-_\\s]{0,3}\\[\\d+\\/(\\d+\\])[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Fly.With.The.Gold.2012.720p.BluRay.x264-WiKi [03/73] - "wiki-fwtg.par2" yEnc', + 'ordinal' => 55, + ), + 194 => + array ( + 'id' => 695, + 'group_regex' => '^alt\\.binaries\\.movies\\.x264$', + 'regex' => '/^(?P[\\w.-]+)[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Parker.2013.MULTi.720p.BluRay.x264-GAIA - "Parker.2013.MULTi.720p.BluRay.x264-GAIA.nfo" yEnc', + 'ordinal' => 60, + ), + 195 => + array ( + 'id' => 696, + 'group_regex' => '^alt\\.binaries\\.mp3$', + 'regex' => '/"(?P[\\w. -]{8,})"[-_\\s]{0,3}[\\(\\[]\\d+\\/(\\d+[\\)\\]])[-_\\s]{0,3}".+([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//"The Absence - Riders Of The Plague" [00/14] - "the_absence-riders_of_the_plague.nzb" yEnc', + 'ordinal' => 5, + ), + 196 => + array ( + 'id' => 697, + 'group_regex' => '^alt\\.binaries\\.mp3$', + 'regex' => '/\\( (?P[\\w. -]{8,}) \\)[-_\\s]{0,3}( |\\().+\\)[-_\\s]{0,3}[\\(\\[]\\d+\\/(\\d+[\\)\\]])[-_\\s]{0,3}".+(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//( Albert Cummings Albums 6x By Dready Niek (1999-2012) ) ( ** By Dready Niek ** ) [11/20] - "Albert Cummings Albums 6x By Dready Niek (1999-2012).part10.rar" yEnc ::: //( Fat Freddy\'s Drop - Blackbird (2013) -- By Dready Niek ) -- By Dready Niek ) [01/15] - "Fat Freddy\'s Drop - Blackbird (2013) -- By Dready Niek.par2" yEnc', + 'ordinal' => 10, + ), + 197 => + array ( + 'id' => 698, + 'group_regex' => '^alt\\.binaries\\.mp3$', + 'regex' => '/^.+Old but Sold.+>< "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") >< \\d+\\/\\d+ \\(\\d+[.,]\\d+ [kKmMgG][bB]\\).+ yEnc$/', + 'status' => 1, + 'description' => '//<<>> <<< >< >< "German Top 50 ODC - 12.08.2013.nfo" >< 02/33 (541,61 MB) >< 10,93 kB > yEnc', + 'ordinal' => 15, + ), + 198 => + array ( + 'id' => 699, + 'group_regex' => '^alt\\.binaries\\.mp3$', + 'regex' => '/^Musikjunkie-(?P[\\w. -]{8,})[-_\\s]{0,3}\\[\\d+\\/\\d+\\]".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Musikjunkie-The.Voice.Of.Germany.2013.The.Best.of.Liveshows.4.CD.Box.Set.VBR [15/28]"voice.part13.rar" yEnc', + 'ordinal' => 20, + ), + 199 => + array ( + 'id' => 700, + 'group_regex' => '^alt\\.binaries\\.mp3$', + 'regex' => '/^(?P[\\w. -]{8,})[-_\\s]{0,3}("|#34;)(.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Metallica - Ride The Lightning "01 - Fight Fire With Fire.mp3" yEnc', + 'ordinal' => 25, + ), + 200 => + array ( + 'id' => 701, + 'group_regex' => '^alt\\.binaries\\.mp3$', + 'regex' => '/^.+Usejunkies\\.tk.+[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//::: Usejunkies.tk ::: - [08/11] - "DJ Shog - DNA - HD 720p.vol00+1.par2" - 47,76 MB yEnc', + 'ordinal' => 30, + ), + 201 => + array ( + 'id' => 702, + 'group_regex' => '^alt\\.binaries\\.mp3$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}poc[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//"AnyDVD 7.0.0.0.rar" poc yEnc', + 'ordinal' => 35, + ), + 202 => + array ( + 'id' => 703, + 'group_regex' => '^alt\\.binaries\\.mp3$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//"A Produce & Loren Nerell - Intangible.nzb" yEnc', + 'ordinal' => 40, + ), + 203 => + array ( + 'id' => 704, + 'group_regex' => '^alt\\.binaries\\.mp3$', + 'regex' => '/^\\(\\d+\\/\\d+\\)[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(01/12) "Sunfly Hits April (2013) SF326 [Skytwohigh].par2" - 109.59 MB - yEnc', + 'ordinal' => 45, + ), + 204 => + array ( + 'id' => 705, + 'group_regex' => '^alt\\.binaries\\.mp3$', + 'regex' => '/^\\(\\d+\\/\\d+\\)[-_\\s]{0,3}Description[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(01/15) - Description - "Goldene Schlager - Erinnerungen Folge 3.par2" - 126,08 MB - yEnc', + 'ordinal' => 50, + ), + 205 => + array ( + 'id' => 706, + 'group_regex' => '^alt\\.binaries\\.mp3$', + 'regex' => '/^\\((?P[^.]{8,})\\) \\[\\d+\\/\\d+\\][-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(Musica - House&Dance - mix 1 - april 2014 1) [00/45] - "Musica - House&Dance mix 1 april.nzb" yEnc', + 'ordinal' => 55, + ), + 206 => + array ( + 'id' => 707, + 'group_regex' => '^alt\\.binaries\\.mp3$', + 'regex' => '/^\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[04/17] - "Schlager.am.laufenden.Band.-.Vol.13.part02.rar" - 622,46 MB yEnc', + 'ordinal' => 60, + ), + 207 => + array ( + 'id' => 708, + 'group_regex' => '^alt\\.binaries\\.mp3$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) [\\w.,& \\()\\[\\]\\\'\\`-]{8,}?\\b.?( by )?PsyDealer yEnc$/', + 'status' => 1, + 'description' => '//"Karate Andi - Pilsator Platin 2014.nfo.nfo Karate Andi - Pilsator Platin 2014 by PsyDealer yEnc', + 'ordinal' => 65, + ), + 208 => + array ( + 'id' => 709, + 'group_regex' => '^alt\\.binaries\\.mp3$', + 'regex' => '/^\\(\\?+\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"[\\w.,& \\()\\[\\]\\\'\\`-]{8,}?\\b.?\\.[A-Za-z0-9]{2,4} (?PTop \\d+ Single Charts \\d+\\.\\d+\\.\\d+)"[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//(????) [089/100] - "090-florence_and_the_machine_-_spectrum_(say_my_name)_(calvin_harris_edit).mp3 Top 100 Single Charts 13.05.2013" yEnc', + 'ordinal' => 70, + ), + 209 => + array ( + 'id' => 710, + 'group_regex' => '^alt\\.binaries\\.mp3$', + 'regex' => '/^\\(\\?+\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(????) [02/26] - "8Cursed.rar" yEnc', + 'ordinal' => 75, + ), + 210 => + array ( + 'id' => 711, + 'group_regex' => '^alt\\.binaries\\.mp3$', + 'regex' => '/^\\(\\?+\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")\\w+[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//(????) [00/34] - "The Official UK Top 40 Singles Chart 15-06-2014.nzb"otfINWnjfg7856fghj yEnc', + 'ordinal' => 80, + ), + 211 => + array ( + 'id' => 712, + 'group_regex' => '^alt\\.binaries\\.mp3$', + 'regex' => '/^\\(\\d+\\/\\d+\\) (?P[\\w.,& \\()\\[\\]\\\'\\`-]{8,}?)[-_\\s]{0,3}"[\\w.,& \\()\\[\\]\\\'\\`-]{8,}?\\b.?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(01/24) VA - Now Thats What I Call Disco 2013 - "VA - Now Thats What I Call Disco 2013.7z.001" - 487.23 MB - yEnc', + 'ordinal' => 85, + ), + 212 => + array ( + 'id' => 713, + 'group_regex' => '^alt\\.binaries\\.mp3$', + 'regex' => '/^\\(102400\\) \\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(102400) [06/13] - "Time L', + 'ordinal' => 90, + ), + 213 => + array ( + 'id' => 714, + 'group_regex' => '^alt\\.binaries\\.mp3$', + 'regex' => '/^\\([\\w.,& \\()\\[\\]\\\'\\`-]{8,} \\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(18 Gouden Piraten Hits Deel 2 [03/11] - "18 Gouden Piraten Hits Deel 2.part2.rar" yEnc', + 'ordinal' => 95, + ), + 214 => + array ( + 'id' => 715, + 'group_regex' => '^alt\\.binaries\\.mp3$', + 'regex' => '/^\\([\\w.,& \\()\\[\\]\\\'\\`-]{8,}\\)\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(Amigos - Ihre Lieblingshits - Folge 2 - 2013 - by Taekwondo145)[00/62] - "Amigos - Ihre Lieblingshits - Folge 2 - 2013.nzb" yEnc', + 'ordinal' => 100, + ), + 215 => + array ( + 'id' => 716, + 'group_regex' => '^alt\\.binaries\\.mp3$', + 'regex' => '/^\\([\\w.,& \\()\\[\\]\\\'\\`-]{8,} - by Taekwondo(\\d+\\()?\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(German TOP100 Single Jahrescharts-2013 - by Taekwondo456([67/70] - "German TOP100 Single Jahrescharts-2013.vol041+41.PAR2" yEnc', + 'ordinal' => 105, + ), + 216 => + array ( + 'id' => 717, + 'group_regex' => '^alt\\.binaries\\.mp3$', + 'regex' => '/^\\( ?(?P[\\w.,& \\()\\[\\]\\\'\\`-]{8,}) ?\\)[-_\\s]{0,3}\\(.+Dready Niek.+\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"[\\w.,& \\()\\[\\]\\\'\\`-]{8,}?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(Liedjes uit de film De Grote Patriottische Oorlog..o.a. Rod McK ) ( ** By Dready Niek ** ) [02/11] - "Liedjes uit de film De Grote Patriottische Oorlog..o.a. Rod McKuen - By Dready Niek.part1.rar" yEnc', + 'ordinal' => 110, + ), + 217 => + array ( + 'id' => 718, + 'group_regex' => '^alt\\.binaries\\.mp3$', + 'regex' => '/^\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+[.,]\\d+ [kKmMgG][bB] <-> Partner of secretusenet\\.com <->[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//[21/23] - "JNEQ3_20130413_028.vol0+1.par2" - 282,65 MB <-> Partner of secretusenet.com <-> yEnc', + 'ordinal' => 115, + ), + 218 => + array ( + 'id' => 719, + 'group_regex' => '^alt\\.binaries\\.mp3$', + 'regex' => '/^[\\w.,& \\()\\[\\]\\\'\\`-]{8,}?[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Yogi_and_Husky--Nu_Sound_EP-(RSR021)-WEB-2012-dh - "Yogi_and_Husky--Nu_Sound_EP-(RSR021)-WEB-2012-dh.r00" yEnc', + 'ordinal' => 120, + ), + 219 => + array ( + 'id' => 720, + 'group_regex' => '^alt\\.binaries\\.mp3$', + 'regex' => '/^(?P[\\w.,& \\()\\[\\]\\\'\\`-]{8,}?)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Zido.Alben.All.in.One.Read.NFO-Ren & Stimpy - [35/43] - "Zydo.part33.rar" yEnc', + 'ordinal' => 125, + ), + 220 => + array ( + 'id' => 721, + 'group_regex' => '^alt\\.binaries\\.mp3$', + 'regex' => '/(h311b0y|Hellboy).+\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//! ! !! - h311b0y101022014 - !! ! ! [01/14] - "h311b0y101022014.par2" yEnc', + 'ordinal' => 130, + ), + 221 => + array ( + 'id' => 722, + 'group_regex' => '^alt\\.binaries\\.mp3\\.complete_cd$', + 'regex' => '/^\\(\\d+\\/\\d+\\)[ _-]{0,3}\\[Lords-of-usenet\\][ _-]{0,3}<>[ _-]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//(05/10) - [Lords-of-usenet] <> "Wynardtage Praise The Fallen(2007).vol00+01.PAR2" - 132,64 MB - yEnc', + 'ordinal' => 5, + ), + 222 => + array ( + 'id' => 723, + 'group_regex' => '^alt\\.binaries\\.mp3\\.complete_cd$', + 'regex' => '/^\\(\\d+\\/\\d+\\)[ _-]{0,3}[ _-]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//(06/11) - - "Diens - Schwarzmale.vol00+01.PAR2" - 141,07 MB - yEnc', + 'ordinal' => 10, + ), + 223 => + array ( + 'id' => 724, + 'group_regex' => '^alt\\.binaries\\.mp3\\.complete_cd$', + 'regex' => '/^[ _-]{0,3}\\(\\d+\\/\\d+\\)[ _-]{0,3}[ _-]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '// (09/18) - "Mantus - Fatum (2013) [2CD].FH.vol00+2.PAR2" - 336,39 MB - yEnc', + 'ordinal' => 15, + ), + 224 => + array ( + 'id' => 725, + 'group_regex' => '^alt\\.binaries\\.mp3\\.complete_cd$', + 'regex' => '/^\\(\\d+\\/\\d+\\)[ _-]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//(08/15) "Noemi-Red.(Unreleased).2006.by.NYCrules.vol000+01.PAR2" - 179,66 MB - yEnc', + 'ordinal' => 20, + ), + 225 => + array ( + 'id' => 726, + 'group_regex' => '^alt\\.binaries\\.mp3\\.complete_cd$', + 'regex' => '/^\\[(?P[a-zA-Z0-9-_\\\\(\\)\\.]+)\\] \\[www\\.usenet4ever\\.info by Secretusenet\\] - "([\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[16_Bit_Lolitas-Warung_Brazil_002-2CD-2012-iHF] [www.usenet4ever.info by Secretusenet] - "000-16_bit_lolitas-warung_brazil_002-2cd-2012-ihf.sfv" yEnc ::: //[3RD_Prototype_-_On_My_Way-(TB7368)-WEB-2013-FMC] [www.usenet4ever.info by Secretusenet] - "01-3rd_prototype_-_deafback-when_you_are_in_the_dark_(deafback_remix).mp3" yEnc ::: //[Armin_Van_Buuren_Feat._Fiora-Waiting_For_The_Night-(ARMD1140)-WEB-2013-UKHx] [www.usenet4ever.info by Secretusenet] - "00-armin_van_buuren_feat._fiora-waiting_for_the_night-(armd1140)-web-2013-ukhx.m3u" yEnc', + 'ordinal' => 25, + ), + 226 => + array ( + 'id' => 727, + 'group_regex' => '^alt\\.binaries\\.mp3\\.complete_cd$', + 'regex' => '/^>ghost-of-usenet\\.org<< (?P[a-zA-Z0-9-_\\\\(\\)\\.]+) >>www\\.SSL-News\\.info> - "([\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//>ghost-of-usenet.org<< 16_Bit_Lolitas-Warung_Brazil_002-2CD-2012-iHF >>www.SSL-News.info> - "101-16_bit_lolitas-warung_brazil_002_cd1.mp3" yEnc', + 'ordinal' => 30, + ), + 227 => + array ( + 'id' => 728, + 'group_regex' => '^alt\\.binaries\\.mp3\\.complete_cd$', + 'regex' => '/^(?P[a-zA-Z0-9 -_\\\\(\\)\\.]+) \\[\\d+(\\/| of )(\\d+\\])[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Blok_B-Bienvenue_Dans_Mon_Blok_Vol.1-2005-BZ_INT [20 of 27] "01-gangsta.mp3" yEnc ::: //DJ Neev - HedKandi_2013-06-08 (Ministry of Sound Radio) [01/13] - "DJ Neev - HedKandi_2013-06-08 (Ministry of Sound Radio).par2" yEnc', + 'ordinal' => 35, + ), + 228 => + array ( + 'id' => 729, + 'group_regex' => '^alt\\.binaries\\.mp3\\.complete_cd$', + 'regex' => '/^\\(www\\.Thunder-News\\.org\\) >(?P.+?)< - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(www.Thunder-News.org) >Dee_And_Crane-Let_The_Music_Play-WEB-2012-UKHx< - "05-dee_and_crane-let_the_music_play_(jay_frogs_keep_the_groove_remix_edit).mp3" yEnc', + 'ordinal' => 40, + ), + 229 => + array ( + 'id' => 730, + 'group_regex' => '^alt\\.binaries\\.mp3\\.complete_cd$', + 'regex' => '/^\\[\\d+\\/\\d+\\] - \\((MP3 )?ALBUM CHARTS\\) - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/i', + 'status' => 1, + 'description' => '//[1/1] - (MP3 ALBUM CHARTS) - "Andreas Gabalier - Volksrock\'n\'roller-Live.rar" yEnc', + 'ordinal' => 45, + ), + 230 => + array ( + 'id' => 731, + 'group_regex' => '^alt\\.binaries\\.mp3\\.complete_cd$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - yEnc$/i', + 'status' => 1, + 'description' => '//"Miley Cyrus - Bangerz (Deluxe Version).nzb" - yEnc', + 'ordinal' => 50, + ), + 231 => + array ( + 'id' => 732, + 'group_regex' => '^alt\\.binaries\\.mp3\\.complete_cd$', + 'regex' => '/^.+\\[\\d+\\/\\d+\\](?P.+)"([\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/', + 'status' => 1, + 'description' => '//VA 200 NRJ 2014 CD2 mp3_320kbps[18/27]VA 200 NRJ 2014 CD2 mp3_320kbps"(217) [Capital Cities] Safe And Sound.mp3" yEnc', + 'ordinal' => 55, + ), + 232 => + array ( + 'id' => 733, + 'group_regex' => '^alt\\.binaries\\.mp3\\.full_albums$', + 'regex' => '/^\\. - \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//. - [05/10] - "Blues \'N Trouble - With Friends Like These [1989].vol00+01.par2" yEnc', + 'ordinal' => 5, + ), + 233 => + array ( + 'id' => 734, + 'group_regex' => '^alt\\.binaries\\.mp3\\.full_albums$', + 'regex' => '/^\\(\\d+\\/(\\d+\\)) "\\[www\\.Lords-of-Usenet\\.org\\]_\\[Partner von SSL-News\\]_(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//(001/122) "[www.Lords-of-Usenet.org]_[Partner von SSL-News]_Blind_Guardian-Discographie.par2" - 2,20 GB - yEnc', + 'ordinal' => 10, + ), + 234 => + array ( + 'id' => 735, + 'group_regex' => '^alt\\.binaries\\.mp3\\.full_albums$', + 'regex' => '/^\\(\\d+\\/(\\d+\\)) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,4}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}.+?yEnc$/', + 'status' => 1, + 'description' => '//(06/10) "Pink Floyd - Dark Side Of The Moon [MFSL UDCD 517].vol00+01.PAR2"- - 67,88 MB - Pink Floyd - Dark Side Of The Moon [MFSL UDCD 517] yEnc ::: //(07/11) "VA - Twilight - New Moon - Ost.vol00+01.PAR2"- - 93,69 MB - VA - Twilight - New Moon - Ost yEnc', + 'ordinal' => 15, + ), + 235 => + array ( + 'id' => 736, + 'group_regex' => '^alt\\.binaries\\.mp3\\.full_albums$', + 'regex' => '/^\\(.+\\) \\[\\d+\\/(\\d+\\]) - "(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) . http:\\/\\/usenet4ever\\.info_Sponsored by www\\.Secretusenet\\.com " yEnc$/', + 'status' => 1, + 'description' => '//(Kitty Samtpfote) [01/12] - "Electronic Music of the 80s.Michael Garrison - In The Regions Of Sunreturn and beyond 1991.par2 . http://usenet4ever.info_Sponsored by www.Secretusenet.com " yEnc', + 'ordinal' => 20, + ), + 236 => + array ( + 'id' => 737, + 'group_regex' => '^alt\\.binaries\\.mp3\\.full_albums$', + 'regex' => '/^\\(.+\\) >(?P.+?)< - \\(\\d+\\/(\\d+\\)) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(www.Thunder-News.org) >Boehse Onkelz - Discography< - (113/145) - "Boehse Onkelz - Discography.s10" yEnc', + 'ordinal' => 25, + ), + 237 => + array ( + 'id' => 738, + 'group_regex' => '^alt\\.binaries\\.mp3\\.full_albums$', + 'regex' => '/^\\[\\d+\\]-\\["(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")\\[ yEnc$/', + 'status' => 1, + 'description' => '//[00021]-["1999 Alphaville - Dreamscapes.part069.rar"[ yEnc', + 'ordinal' => 30, + ), + 238 => + array ( + 'id' => 739, + 'group_regex' => '^alt\\.binaries\\.mp3\\.full_albums$', + 'regex' => '/^\\(.+\\) \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(nzbDMZ) [0/2] - "Miles Crossing - Miles Crossing (2011).nzb" yEnc', + 'ordinal' => 35, + ), + 239 => + array ( + 'id' => 740, + 'group_regex' => '^alt\\.binaries\\.mp3\\.full_albums$', + 'regex' => '/^\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[06/10] - "Jeff Healey - Legacy Volume One [The Singles].vol00+01.PAR2" yEnc', + 'ordinal' => 40, + ), + 240 => + array ( + 'id' => 741, + 'group_regex' => '^alt\\.binaries\\.mp3\\.full_albums$', + 'regex' => '/^\\d+ "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//00008 "2003 Camouflage - Sensor.par2" yEnc', + 'ordinal' => 45, + ), + 241 => + array ( + 'id' => 742, + 'group_regex' => '^alt\\.binaries\\.mp3\\.full_albums$', + 'regex' => '/^(?P[a-zA-Z0-9 -_\\\\(\\)\\.]+) \\[\\d+(\\/| of )(\\d+\\])[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Alex Oriental Experience_-_Live II (Live II) [1/9] - "01_Red_Dress.mp3" yEnc', + 'ordinal' => 50, + ), + 242 => + array ( + 'id' => 743, + 'group_regex' => '^alt\\.binaries\\.multimedia$', + 'regex' => '/^(?P[A-Z0-9a-z.-]{10,})\\s+(- )?\\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Escort.2006.DUTCH.WEB-RiP.x264-DLH - [01/23] - "Escort.2006.DUTCH.WEB-RiP.x264-DLH.par2" yEnc ::: //Tusenbroder.S01E05.PDTV.XViD.SWEDiSH-NTV [01/69] - "ntv-tusenbroder.s01e05.nfo" yEnc', + 'ordinal' => 5, + ), + 243 => + array ( + 'id' => 744, + 'group_regex' => '^alt\\.binaries\\.multimedia$', + 'regex' => '/\\[[#]+\\]-\\[.+?\\]-\\[.+?\\]-\\[ (?P[\\w.,& \\()\\[\\]\\\'\\`-]{8,}?) \\][- ]\\[\\d+\\/\\d+\\][-_\\s]{0,3}("|#34;).+?/', + 'status' => 1, + 'description' => '//[####]-[FULL]-[#a.b.teevee@EFNet]-[ Tosh.0.S02E14.720p.HDTV.x264-aAF ]-[10/21] - "aaf-tosh.0.s02e14.720p.r07" yEnc', + 'ordinal' => 10, + ), + 244 => + array ( + 'id' => 745, + 'group_regex' => '^alt\\.binaries\\.multimedia$', + 'regex' => '/^\\[ ?(?P[\\w.,& \\()\\[\\]\\\'\\`-]{8,}?) ?\\][-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[ Top.Chef.S11E12.Mississippi.Mud.Bugs.720p.WEB-DL.AAC2.0.H.264-TVSmash ] - [13/38] - "tc1112-720p.r10" yEnc', + 'ordinal' => 15, + ), + 245 => + array ( + 'id' => 746, + 'group_regex' => '^alt\\.binaries\\.multimedia$', + 'regex' => '/^Handyman Shows-(?P.+) - File \\d+ of \\d+ - yEnc$/', + 'status' => 1, + 'description' => '//Handyman Shows-TOH-S32E10 - File 01 of 32 - yEnc', + 'ordinal' => 20, + ), + 246 => + array ( + 'id' => 747, + 'group_regex' => '^alt\\.binaries\\.multimedia$', + 'regex' => '/.*"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//- "Auction Hunters S04E04.HDTV.x264-StarryNights1.nzb" yEnc', + 'ordinal' => 25, + ), + 247 => + array ( + 'id' => 748, + 'group_regex' => '^alt\\.binaries\\.multimedia$', + 'regex' => '/^(?P[^.]{8,})\\.[A-Za-z0-9]{2,4} - \\[\\d+\\/(\\d+\\]) yEnc$/', + 'status' => 1, + 'description' => '//homeland.s02e12.1080p.bluray-bia.r08 - [011/111] yEnc', + 'ordinal' => 30, + ), + 248 => + array ( + 'id' => 749, + 'group_regex' => '^alt\\.binaries\\.multimedia\\.documentaries$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\[\\d+ of \\d+ - \\d+ [kKmMgG][bB]\\] yEnc$/', + 'status' => 1, + 'description' => '//"Universe S4E08.part40.rar" - [41 of 76 - 10013 kb] yEnc', + 'ordinal' => 5, + ), + 249 => + array ( + 'id' => 750, + 'group_regex' => '^alt\\.binaries\\.multimedia\\.scifi$', + 'regex' => '/^some m4vs - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//some m4vs - "SilverHawks_v1eps01_The Origin Story.par2" yEnc', + 'ordinal' => 5, + ), + 250 => + array ( + 'id' => 751, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^.+By Dready Niek \\) \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//( 80\'s Giga Hits Collection (32 CDs) By Dready Niek ) By Dready Niek ) [44/54] - "80\'s Giga Hits Collection (32 CDs) By Dready Niek.part43.rar" yEnc', + 'ordinal' => 5, + ), + 251 => + array ( + 'id' => 752, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^\\(\\d+\\/\\d+\\] (?P.+?) ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - nightsteff yEnc$/', + 'status' => 1, + 'description' => '//(00/24] Marco Mengoni - Prontoacorrere (2013) "Marco Mengoni - Prontoacorrere (2013).nzb" - nightsteff yEnc', + 'ordinal' => 10, + ), + 252 => + array ( + 'id' => 753, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^\\((?P.+)\\) \\[\\d+\\/\\d+\\] - \\[".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")\\] yEnc$/', + 'status' => 1, + 'description' => '//(80\'s Disco-Soul-Funk) [136/426] - ["Level 42 - Lessons In Love.mp3"] yEnc', + 'ordinal' => 15, + ), + 253 => + array ( + 'id' => 754, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^\\(\\?+\\) \\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/', + 'status' => 1, + 'description' => '//(????) [001/153] - "C4 House Party Horse Meat Disco Set 6.nfo" C4 House Party Horse Meat Disco Set 6 yEnc', + 'ordinal' => 20, + ), + 254 => + array ( + 'id' => 755, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^\\(\\?+\\) \\[\\d+\\/\\d+\\] - (?P.+)[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/', + 'status' => 1, + 'description' => '//(????) [19/22] - C.K.N. Demo 85 "19-rotten system.mp3" yEnc', + 'ordinal' => 25, + ), + 255 => + array ( + 'id' => 756, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^\\((?P.+)\\) \\[\\d+\\/(\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(Jungle Fever Tapepacks) [67/79] - "Jungle Fever Tapepacks.part65.rar" yEnc', + 'ordinal' => 30, + ), + 256 => + array ( + 'id' => 757, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[1/8] - "Black Market Flowers - Bind (1993).sfv" yEnc', + 'ordinal' => 35, + ), + 257 => + array ( + 'id' => 758, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^\\[DreamPieter\\] \\((?P.+)\\) \\[\\d+\\/\\d+\\] - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[DreamPieter] (Glen Tipton - Two solo albums) [04/23] - "Glenn Tipton - Baptizm of Fire - 04 - Fuel Me Up.mp3" yEnc', + 'ordinal' => 40, + ), + 258 => + array ( + 'id' => 759, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^.+ghost-of-usenet\\.org.+"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")> >www\\.SSL-News\\.info< - \\(\\d+\\/\\d+\\) - \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/', + 'status' => 1, + 'description' => '//<<< <"Dream Dance Vol. 21-30 - 20CDs MP3 - Ghost.part20.rar"> >www.SSL-News.info< - (22/32) - 2,45 GB yEnc', + 'ordinal' => 45, + ), + 259 => + array ( + 'id' => 760, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^Musikjunkie-(?P[\\pL\\pN\\pM\\pP. -]{8,})[-_\\s]{0,3}\\[\\d+\\/\\d+\\]".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Musikjunkie-The.Voice.Of.Germany.2013.The.Best.of.Liveshows.4.CD.Box.Set.VBR [15/28]"voice.part13.rar" yEnc', + 'ordinal' => 50, + ), + 260 => + array ( + 'id' => 761, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/', + 'status' => 1, + 'description' => '//"8 Wenn ich einmal gross bin .mp3" Koelschefetz postet.Die Filue -Immer Wigger yEnc', + 'ordinal' => 55, + ), + 261 => + array ( + 'id' => 762, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^.+\\(by dem verrückten Lordi\\)[-_\\s]{0,3}\\(\\d+\\/\\d+\\)[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+[.,]\\d+ [kKmMgG][bB].+[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//Der etwas andere Mix - Deutscher Foxmix 14 (by dem verrückten Lordi) (3/8) "Der etwas andere Mix - Deutscher Foxmix 14.txt" - 271,24 MB 11.11.03 yEnc', + 'ordinal' => 60, + ), + 262 => + array ( + 'id' => 763, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^\\(\\d+\\/\\d+\\)[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][-_\\s]{0,3}.+yEnc$/', + 'status' => 1, + 'description' => '//(01/10) "Mylène Farmer - Monkey me (2012 Bluray Audio).rar" - 1,56 GB - yEnc ::: //(3/7) "DJ Taz3 - Your Choice Sendung Silvester 2012.mp3.vol00+01.PAR2" - 119,50 MB -RadioShows und Livesets yEnc', + 'ordinal' => 65, + ), + 263 => + array ( + 'id' => 764, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^[\\(\\[]\\d+\\/\\d+[\\]\\)][-_\\s]{0,3}(?P.+) ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")([-_\\s]{0,3}nightsteff)?[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//[00/20] Nomadi - Terzo Tempo (2012) "Nomadi - Terzo Tempo (2012).nzb" - nightsteff yEnc ::: //[02/56] - The Beatles - The Decca Tapes "Beatles - The Decca Tapes.part01.rar" yEnc', + 'ordinal' => 70, + ), + 264 => + array ( + 'id' => 765, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^\\[.+\\] \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[Marillion - Live From Cadogan Hall 2011 (DVD 1)] [981/98] - "Marillion - Live From Cadogan Hall 2011 (DVD 1).par2" yEnc', + 'ordinal' => 75, + ), + 265 => + array ( + 'id' => 766, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^.+ \\[\\d+ of \\d+\\] "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//XTC - NMR - 2001 - Homegrown - The Wasp Star Home Demos [22 of 34] "2001 - Homegrown - The Wasp Star Home Demos.vol00+01.PAR2" yEnc', + 'ordinal' => 80, + ), + 266 => + array ( + 'id' => 767, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^.+[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Wendy O Williams Bump n Grind - "Wendy.O.Williams.Bump.n.Grind.nfo" yEnc', + 'ordinal' => 85, + ), + 267 => + array ( + 'id' => 768, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^.+ \\(\\d+\\/\\d+\\) - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB].+yEnc$/', + 'status' => 1, + 'description' => '//The Amity Affliction - Chasing Ghosts_lossless (01/11) - "The Amity Affliction - Chasing Ghosts_lossless.par2" - 321,40 MB - codari_4_usenetrevolution.info-Partner of SSL-News yEnc', + 'ordinal' => 90, + ), + 268 => + array ( + 'id' => 769, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^(?P[^.]{8,})([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) \\d+\\/\\d+[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//Bob Marley & The Wailers - African Herbsman.nzb 0/8 yEnc', + 'ordinal' => 95, + ), + 269 => + array ( + 'id' => 770, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^[\\w. &\\()\\[\\]\\\'-]+?\\.- (?P[^.]{8,})([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) \\[\\d+\\/\\d+\\][-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//DOG DAYS\' Season 2 ED Single - Natsu no Yakusoku (Horie Yui)[KICM-1402].- DOG DAYS\' Season 2 ED Single - Natsu no Yakusoku (Horie Yui)[KICM-1402].nzb [00/13] yEnc', + 'ordinal' => 100, + ), + 270 => + array ( + 'id' => 771, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//7 Seconds - Complete Discography - 21 releases - 1980-2005(04/51) "7 Seconds - Complete Discography 1980-2005 - 21 releases.part02.rar" - 639.17 MB - yEnc', + 'ordinal' => 105, + ), + 271 => + array ( + 'id' => 772, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//7 Seconds - Complete Discography - 21 releases - 1980-2005(04/51) "7 Seconds - Complete Discography 1980-2005 - 21 releases.part02.rar" yEnc', + 'ordinal' => 110, + ), + 272 => + array ( + 'id' => 773, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/(?P.+)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"[a-zA-Z]{3,4}\\.nzb"[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//El.Huervo-Do.Not.Lay.Waste.To.Homes.WEB-DL.MP3.VBR.V0.2012 [00/25] - "vbr.nzb" yEnc', + 'ordinal' => 115, + ), + 273 => + array ( + 'id' => 774, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^[\\(\\[]\\d+\\/\\d+[\\]\\)][-_\\s]{0,3}(?P.+) ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}nightsteff[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '// a.b.music.mp3 ::: public function music_mp3() ::: { ::: //(00/20] Nomadi - Terzo Tempo (2012) "Nomadi - Terzo Tempo (2012).nzb" - nightsteff yEnc', + 'ordinal' => 120, + ), + 274 => + array ( + 'id' => 775, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^.+?\\[\\d+\\/(\\d+\\][-_\\s]{0,3}.+?)[-_\\s]{0,3}("|#34;)(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}("|#34;))[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//(????) [0/8] - Crionics Post - Alice In Chains - Dirt REPOST"Alice In Chains - Dirt.nzb" yEnc', + 'ordinal' => 125, + ), + 275 => + array ( + 'id' => 776, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^\\(\\?+\\) \\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/', + 'status' => 1, + 'description' => '//(????) [001/153] - "C4 House Party Horse Meat Disco Set 6.nfo" C4 House Party Horse Meat Disco Set 6 yEnc', + 'ordinal' => 130, + ), + 276 => + array ( + 'id' => 777, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^\\(\\?+\\) \\[\\d+\\/\\d+\\] - (?P.+)[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/', + 'status' => 1, + 'description' => '//(????) [19/22] - C.K.N. Demo 85 "19-rotten system.mp3" yEnc', + 'ordinal' => 135, + ), + 277 => + array ( + 'id' => 778, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^\\((?P.+)\\) \\[\\d+\\/\\d+\\][-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(BierbauchFreddy Quwinn seine größten Coversongs Vol2) [22/60] - "040c - Freddy Quinn - Don\'t Forbid Me (1957) (NH 22 639, EPH 20 575).mp3" yEnc', + 'ordinal' => 140, + ), + 278 => + array ( + 'id' => 779, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^\\[ (?P.+) \\] - \\[\\d+\\] - \\[\\d+ Kbps MP3\\] \\[\\d+ of \\d+\\] ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[ Spectrum (ft. Matthew Koma) (Extended Mix) - Zedd ] - [2012] - [256 Kbps MP3] [1 of 7] "Spectrum (ft. Matthew Koma) [Extended Mix].mp3" yEnc', + 'ordinal' => 145, + ), + 279 => + array ( + 'id' => 780, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^\\[\\d+\\/\\d+\\][-_\\s]{0,3}\\(((Top)?\\d+ )?(MP3 )?((Album|Single) )?Charts\\)[ -]{0,4}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/', + 'status' => 1, + 'description' => '//[1/1] - (150 MP3 Album Charts) - "Atlantean Kodex - The White Goddess.rar" yEnc ::: //[1/1] - (MP3 Album Charts) - "Black Sabbath - 13.rar" yEnc ::: //[1/1] - (Top100 Album Charts) - "Bastille - Pompeii.rar" yEnc ::: //[1/1] - (Top100 Charts) - "Beatrice Egli - Gluecksgefuehle.rar" yEnc ::: //[1/1] - (Top100 Single Charts) - "Alicia Keys - Girl On Fire.rar" yEnc', + 'ordinal' => 150, + ), + 280 => + array ( + 'id' => 781, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^\\[\\d+\\/\\d+\\][-_\\s]{0,3}(Album )?Top \\d+( Album Charts \\d+)?[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/', + 'status' => 1, + 'description' => '//[1/1] - Album Top 100 - "Amy MacDonald - L', + 'ordinal' => 155, + ), + 281 => + array ( + 'id' => 782, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^\\[\\d+\\/\\d+\\][-_\\s]{0,3}\\(Album Top \\d+(( -)? \\d+)?\\)[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/', + 'status' => 1, + 'description' => '//[1/1] (Album Top 100 - 2012) - "Cro - Einmal Um Die Welt.rar" yEnc ::: //[1/1] (Album Top 100 2012) - "Cro - Einmal Um Die Welt.rar" yEnc ::: //[1/1] (Album Top 100) - "Cro - Raop.rar" yEnc', + 'ordinal' => 160, + ), + 282 => + array ( + 'id' => 783, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) yEnc$/', + 'status' => 1, + 'description' => '//100 Greatest One Hit Wonders 80s[mp3].rar yEnc', + 'ordinal' => 165, + ), + 283 => + array ( + 'id' => 784, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^\\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(001/225) "Dead Can Dance (mp3 - 320Kbs - CBR).part001.rar" - 1.11 GB - yEnc', + 'ordinal' => 170, + ), + 284 => + array ( + 'id' => 785, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^[\\(\\[]\\d+\\/\\d+[\\]\\)][-_\\s]{0,3}\\(MP3 Album\\)[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[1/1] (MP3 Album)- "Agnes Obel - Aventine.rar" yEnc', + 'ordinal' => 175, + ), + 285 => + array ( + 'id' => 786, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^\\[ech0park\\]-\\[spotnet\\]-\\[(?P.+?)\\] \\[\\d+\\/(\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[ech0park]-[spotnet]-[Snow Patrol 2012 Tour Sampler - 2012-iND] [02/20] - "02-snow_patrol-ill_never_let_go.mp3" yEnc', + 'ordinal' => 180, + ), + 286 => + array ( + 'id' => 787, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^.+usenet-piraten\\.info.+[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//<< http://usenet-piraten.info >> - [13/15] - "Monster Cyborg - Overkill (mp3).vol0+1.par2" yEnc', + 'ordinal' => 185, + ), + 287 => + array ( + 'id' => 788, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[- ]{0,4}ShapterV yEnc$/', + 'status' => 1, + 'description' => '//[1/8] - "Nightwish - Storytime (Retail-Single 2011).sfv" - ShapterV yEnc', + 'ordinal' => 190, + ), + 288 => + array ( + 'id' => 789, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^.+usenet-piraten\\.info.+newsconnection\\.eu.+[-_\\s]{0,3}\\(\\d+\\/\\d+\\)[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//100 Rock - Vol.04<>usenet-piraten.info<>www.newsconnection.eu<> - (1/5) "100 Rock - Vol.04.par2" - 101,65 MB - yEnc', + 'ordinal' => 195, + ), + 289 => + array ( + 'id' => 790, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^(?P.+?)[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\[\\d+\\/ (\\d+\\]) nightsteff[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//40 Italo Dance Tunes (2CD) - "00. 40 Italo Dance Tunes 2011.nfo" [02/ 50] nightsteff yEnc', + 'ordinal' => 200, + ), + 290 => + array ( + 'id' => 791, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^(?P.+?) ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}nightsteff yEnc$/', + 'status' => 1, + 'description' => '//Bud Spencer & Terence Hill - Greatest Hits Vol 1 (1995) "04 - Just A Good Boy.mp3" nightsteff yEnc', + 'ordinal' => 205, + ), + 291 => + array ( + 'id' => 792, + 'group_regex' => '^alt\\.binaries\\.music$', + 'regex' => '/^Attn: \\w+ - (?P.+?)\\[\\d+\\/(\\d+\\]) - .+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}\\d+[.,]\\d+[kKmMgG][bB][-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//Attn: bearcat - Avenged Sevenfold - Avenged Sevenfold 320[17/18] - .vol15+16.par2 5.9Mb yEnc', + 'ordinal' => 210, + ), + 292 => + array ( + 'id' => 793, + 'group_regex' => '^alt\\.binaries\\.multimedia\\.vintage-film\\.pre-1960$', + 'regex' => '/^\\S+ \\[\\d+\\/\\d+\\] - ("|#34;)(\\S+)\\.part\\d+\\.rar(?P"|#34;) yEnc$/', + 'status' => 1, + 'description' => '//WE.WANT.OUR.MUMMY.(THE.THREE.STOOGES).(1939) [08/15] - "The.Three.Stooges.S06E02.We.Want.Our.Mummy.DVDRip.XviD-DEiMOS.part6.rar" yEnc', + 'ordinal' => 5, + ), + 293 => + array ( + 'id' => 794, + 'group_regex' => '^alt\\.binaries\\.multimedia\\.vintage-film\\.pre-1960$', + 'regex' => '/^\\[.+\\] \\[\\d+of\\d+\\] .+ - \\[\\d+\\/\\d+\\] - ("|#34;)(?P.+)\\.nzb("|#34;) yEnc$/', + 'status' => 1, + 'description' => '//[Hepburn-Tracy Movie Pack] [4of8] Xvid 700mb ENG No-Subs - [00/62] - "State of the Union (1948).nzb" yEnc', + 'ordinal' => 10, + ), + 294 => + array ( + 'id' => 795, + 'group_regex' => '^alt\\.binaries\\.multimedia\\.vintage-film\\.pre-1960$', + 'regex' => '/^\\{.+\\} (?P.+ \\(\\d{4}\\)) .+ \\[\\d+\\/\\d+\\] - ("|#34;).+("|#34;) yEnc$/', + 'status' => 1, + 'description' => '//{Dracula #01} Dracula (1931) - Xvid DVDRip 624x464 NTSC FS Dual Audio - [00/15] - "DRACULA.nzb" yEnc', + 'ordinal' => 15, + ), + 295 => + array ( + 'id' => 796, + 'group_regex' => '^alt\\.binaries\\.multimedia\\.vintage-film\\.pre-1960$', + 'regex' => '/^(?P.+ \\(\\d{4}\\)) - .+ - \\[\\d+\\/\\d+\\] - ("|#34;).+("|#34;) yEnc$/', + 'status' => 1, + 'description' => '//The Incredible Shrinking Man (1957) - Xvid DVDRip 688x384 NTSC WS - [00/16] - "TISM.nzb" yEnc', + 'ordinal' => 20, + ), + 296 => + array ( + 'id' => 797, + 'group_regex' => '^alt\\.binaries\\.multimedia\\.vintage-film\\.pre-1960$', + 'regex' => '/^(?P.+\\d{4})\\.(VHSRip|COLOR).+\\[\\d+\\/\\d+\\] - ("|#34;).+("|#34;) yEnc$/', + 'status' => 1, + 'description' => '//Sudden.Danger.1955.VHSRip.XviD-KG [01/56] - "Sudden.Danger.1955.VHSRip.XviD-KG.nfo" yEnc', + 'ordinal' => 25, + ), + 297 => + array ( + 'id' => 798, + 'group_regex' => '^alt\\.binaries\\.multimedia\\.vintage-film\\.pre-1960$', + 'regex' => '/^.+ - (?P.+) -(?P \\d{4}) - DVDRip.+ \\[\\d+\\/\\d+\\] - ("|#34;).+("|#34;) yEnc$/', + 'status' => 1, + 'description' => '//W.C. Fields - You Can\'t Cheat An Honest Man - 1939 - DVDRip - Xvid - [00/68] - "you can\'t cheat an honest man 1939.nzb" yEnc', + 'ordinal' => 30, + ), + 298 => + array ( + 'id' => 799, + 'group_regex' => '^alt\\.binaries\\.multimedia\\.vintage-film\\.pre-1960$', + 'regex' => '/^.+enjoy\\!.+\\[\\d+\\/\\d+\\] - ("|#34;)(?P.+)\\.(nzb|nfo|part\\d+\\.rar|part\\.PAR2)("|#34;) yEnc$/i', + 'status' => 1, + 'description' => '//-=>EnJoY!<-=->Experimental/Avant-Garde/Artistic Shorts<-=->(Day1/?) [00/26] - "Unseen Cinema - Disc I - The Mechanized Eye - Experiments in Technique and Form - 1894-1941 (480p,x264).nzb" yEnc', + 'ordinal' => 35, + ), + 299 => + array ( + 'id' => 800, + 'group_regex' => '^alt\\.binaries\\.multimedia\\.vintage-film\\.pre-1960$', + 'regex' => '/^(?P.+\\d{4})(\\.COLOR)?\\.(TV|VHS|VHSTV)Rip.+ \\[\\d+\\/\\d+\\] - ("|#34;).+("|#34;) yEnc$/', + 'status' => 1, + 'description' => '//Goodbye.Charlie.1964.COLOR.TVRip.XviD-CG [01/56] - "Goodbye.Charlie.1964.COLOR.TVRip.XviD-CG.nfo" yEnc', + 'ordinal' => 40, + ), + 300 => + array ( + 'id' => 801, + 'group_regex' => '^alt\\.binaries\\.multimedia\\.vintage-film\\.pre-1960$', + 'regex' => '/^(?P\\S+\\d{4})\\.COLOR\\.DVDRip.+ \\[\\d+\\/\\d+\\] - ("|#34;).+("|#34;) yEnc$/', + 'status' => 1, + 'description' => '//The.Adventures.of.Sadie.(Our.Girl.Friday).1953.COLOR.DVDRip.XviD-CG [01/69] - "Our.Girl.Friday.1953.COLOR.DVDRip.XviD-CG.nfo" yEnc', + 'ordinal' => 45, + ), + 301 => + array ( + 'id' => 802, + 'group_regex' => '^alt\\.binaries\\.multimedia\\.vintage-film\\.pre-1960$', + 'regex' => '/^("|#34;)(?P.+)\\.MKV\\.\\d+("|#34;) \\d+ of \\d+$/', + 'status' => 1, + 'description' => '//"Singin\' in the Rain (1952) AVC 480p.MKV.001" 01 of 15', + 'ordinal' => 50, + ), + 302 => + array ( + 'id' => 803, + 'group_regex' => '^alt\\.binaries\\.multimedia\\.vintage-film\\.pre-1960$', + 'regex' => '/^.+\\(\\d{4}\\)(\\.EXTRA\\.PARS|\\.\\[REPOST\\])? \\[\\d+(?P\\/| of )\\d+\\][ -]+("|#34;)(.+)(\\.vol\\d+\\+\\d+\\.par2|-\\[big.+\\]\\.nfo|\\.nzb|\\.nfo| \\- .+.avi\\.\\d+)("|#34;) yEnc$/', + 'status' => 1, + 'description' => '//RANDOLPH.SCOTT.-.PARIS.CALLING.(1941) [42/49] - "Paris.Calling.1941.VHSRip.AVC-DD.vol001+002.par2" yEnc', + 'ordinal' => 55, + ), + 303 => + array ( + 'id' => 804, + 'group_regex' => '^alt\\.binaries\\.multimedia\\.vintage-film\\.pre-1960$', + 'regex' => '/^.+\\(\\d{4}\\)(\\.EXTRA\\.PARS|\\.\\[REPOST\\])? \\[\\d+(?P\\/| of )\\d+\\][ -]+("|#34;)(.+)(\\.vol\\d+\\+\\d+\\.par2|-\\[big.+\\]\\.nfo|\\.nzb|\\.nfo| \\- .+.avi\\.\\d+|\\.par2)("|#34;) yEnc$/', + 'status' => 1, + 'description' => '//RANDOLPH.SCOTT.-.PARIS.CALLING.(1941) [42/49] - "Paris.Calling.1941.VHSRip.AVC-DD.vol001+002.par2" yEnc', + 'ordinal' => 60, + ), + 304 => + array ( + 'id' => 805, + 'group_regex' => '^alt\\.binaries\\.multimedia\\.vintage-film\\.pre-1960$', + 'regex' => '/^.+\\d{4}\\.(SILENT|DVDRip).+ \\[\\d+\\/\\d+\\] - (?P"|#34;)(.+)\\.nfo("|#34;) yEnc$/', + 'status' => 1, + 'description' => '//Mickey.1918.SILENT.DVDRip.XviD-KG [01/70] - "Mickey.1918.SILENT.DVDRip.XviD-KG.nfo" yEnc', + 'ordinal' => 65, + ), + 305 => + array ( + 'id' => 806, + 'group_regex' => '^alt\\.binaries\\.multimedia\\.vintage-film\\.pre-1960$', + 'regex' => '/^(More Assorted Goodies|Even More Offerings) - REQ:.+ \\[\\d+\\/\\d+\\] - ("|#34;)(?P.+)\\.part\\.nzb("|#34;) yEnc$/', + 'status' => 1, + 'description' => '//More Assorted Goodies - REQ:Decasia [01/16] - "The Bullwinkle Show with Occasional Rare Bullwinkle Puppet - BnW.part.nzb" yEnc', + 'ordinal' => 70, + ), + 306 => + array ( + 'id' => 807, + 'group_regex' => '^alt\\.binaries\\.multimedia\\.vintage-film\\.pre-1960$', + 'regex' => '/^(?P.+) -(?P \\d{4}) \\[\\d+ of \\d+\\] ("|#34;).+("|#34;) yEnc$/', + 'status' => 1, + 'description' => '//The Birth of a Nation - 1915 [1 of 71] "The Birth of a Nation - 1915.part01.rar" yEnc', + 'ordinal' => 75, + ), + 307 => + array ( + 'id' => 808, + 'group_regex' => '^alt\\.binaries\\.multimedia\\.vintage-film\\.pre-1960$', + 'regex' => '/^Musicals(\\.NZBs)? \\[\\d+\\/\\d+\\] - ("|#34;)(?P.+)\\.nzb("|#34;) yEnc$/', + 'status' => 1, + 'description' => '//Musicals [05/10] - "The band wagon 1953.nzb" yEnc', + 'ordinal' => 80, + ), + 308 => + array ( + 'id' => 809, + 'group_regex' => '^alt\\.binaries\\.multimedia\\.vintage-film\\.pre-1960$', + 'regex' => '/^(?PTorchy.+) \\[\\d+ of \\d+\\] ("|#34;).+("|#34;) yEnc$/', + 'status' => 1, + 'description' => '//Torchy Runs for Mayor (Maypo) [13 of 24] "Torchy Runs for Mayor.avi.013" yEnc', + 'ordinal' => 85, + ), + 309 => + array ( + 'id' => 810, + 'group_regex' => '^alt\\.binaries\\.multimedia\\.vintage-film\\.pre-1960$', + 'regex' => '/^\\[\\d+\\/\\d+\\] - ("|#34;)(?P.+ \\(\\d{4}\\))\\.avi\\.\\d+("|#34;)( \\(\\d+\\/\\d+\\))?$/', + 'status' => 1, + 'description' => '//[01/27] - "Monkey Business (1952).avi.001" (1/130)', + 'ordinal' => 90, + ), + 310 => + array ( + 'id' => 811, + 'group_regex' => '^alt\\.binaries\\.nl$', + 'regex' => '/\\((\\d+|\\?+)\\) \\[\\d+\\/\\d+\\].*"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//(????) [01/46] - "NCIS.S11E02.Past.Present.and.Future.1080p.WEB-DL.DD5.1.H.264-CtrlHD.par2" yEnc', + 'ordinal' => 5, + ), + 311 => + array ( + 'id' => 812, + 'group_regex' => '^alt\\.binaries\\.nl$', + 'regex' => '/^\\w+[-_\\s]{0,3}[\\[\\(]\\d+\\/\\d+[\\]\\)][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//JN - [1/3] - "Operatie Teheran-Joel C Rosenberg JN.par2" yEnc', + 'ordinal' => 10, + ), + 312 => + array ( + 'id' => 813, + 'group_regex' => '^alt\\.binaries\\.nl$', + 'regex' => '/^\\( (?P[\\w. -]{8,}) \\)[-_\\s]{0,3}\\[\\d+\\/(\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//( Overlord II RELOADED ) - [013/112] - "rld-olii.part001.rar" yEnc', + 'ordinal' => 15, + ), + 313 => + array ( + 'id' => 814, + 'group_regex' => '^alt\\.binaries\\.nl$', + 'regex' => '/^(?P[\\w. &\\()-]{8,}?\\b)[-_\\s]{0,3}\\[\\d+\\/(\\d+\\])[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Batman.Arkham-Origins.Initiation-RELOADED - [006/296] - "r.vol010+08.PAR2" yEnc', + 'ordinal' => 20, + ), + 314 => + array ( + 'id' => 815, + 'group_regex' => '^alt\\.binaries\\.nl$', + 'regex' => '/^\\(PC-ISO\\)[-_\\s]{0,3}\\( (?P[\\w.,& \\()\\[\\]\\\'\\`-]{8,}?\\b) \\) \\[\\d+\\/\\d+\\][-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(PC-ISO) ( Trials.Fusion.Riders.of.the.Rustlands-SKIDROW ) [10/40] - "sr-tfrotr.part01.rar" yEnc', + 'ordinal' => 25, + ), + 315 => + array ( + 'id' => 816, + 'group_regex' => '^alt\\.binaries\\.nl$', + 'regex' => '/^[-_\\s]{0,4}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//- - [03/33] - "s88fX0O0g7ZPGa96TyeDr.part02.rar" yEnc', + 'ordinal' => 30, + ), + 316 => + array ( + 'id' => 817, + 'group_regex' => '^alt\\.binaries\\.pictures\\.erotica\\.anime$', + 'regex' => '/(?P.*)\\s+-\\s+\\d+\\s+of\\s+\\d+\\s+-\\s+yEnc\\s+".*"/i', + 'status' => 1, + 'description' => '// [ABPEA - Original] Arima Zin - Tennen Koiiro Alcohol [BB, Boy] - 005 of 229 - yEnc "Tennen_Koiiro_Alcohol-005.jpg" to [ABPEA - Original] Arima Zin - Tennen Koiiro Alcohol [BB, Boy]', + 'ordinal' => 5, + ), + 317 => + array ( + 'id' => 818, + 'group_regex' => '^alt\\.binaries\\.ps3$', + 'regex' => '/^(?P\\[\\d+\\] )\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[4197] [036/103] - "ant-mgstlcd2.r34" yEnc', + 'ordinal' => 5, + ), + 318 => + array ( + 'id' => 819, + 'group_regex' => '^alt\\.binaries\\.ps3$', + 'regex' => '/^\\(\\d+\\/\\d+\\)[-_ ]{0,3}"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '// a.b.pwp ::: public function pwp() ::: { ::: //(300/454) "James_Bond_You_Only_Live_Twice_bd25.part300.rar" - 22,22 GB - yEnc', + 'ordinal' => 10, + ), + 319 => + array ( + 'id' => 820, + 'group_regex' => '^alt\\.binaries\\.series\\.tv\\.french$', + 'regex' => '/^\\(\\d+\\/(\\d+\\)) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB]( -)? yEnc$/', + 'status' => 1, + 'description' => '//(01/34) "Merlin.2008.1x04.la.vengeance.de.nimue.par2" - 388,38 MB - yEnc', + 'ordinal' => 5, + ), + 320 => + array ( + 'id' => 821, + 'group_regex' => '^alt\\.binaries\\.series\\.tv\\.french$', + 'regex' => '/^(?P[a-zA-Z0-9._-]+)[-_\\s]{0,3}[\\(\\[]\\d+\\/(\\d+[\\)\\]])[-_\\s]{0,3}"(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//Breaking.Bad.S02.MULTi.720p.BluRay.AC3.x264-BoO [749/883] - "212ACS3517.part01.rar" yEnc', + 'ordinal' => 10, + ), + 321 => + array ( + 'id' => 822, + 'group_regex' => '^alt\\.binaries\\.series\\.tv\\.french$', + 'regex' => '/^(?P[a-zA-Z0-9._-]+)[-_\\s]{0,3}[\\(\\[]\\d+ of (\\d+[\\)\\]])[-_\\s]{0,3}"(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//Dawson.Saison2.DVDRIP.x264.FRENCH [111 of 196] "Dawson.S2.E22.Tout feu, tout flambe.m4v.003" yEnc', + 'ordinal' => 15, + ), + 322 => + array ( + 'id' => 823, + 'group_regex' => '^alt\\.binaries\\.series\\.tv\\.french$', + 'regex' => '/^[\\(\\[]\\d+\\/(?P\\d+[\\)\\]])[-_\\s]{0,3}"(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//[01/22] - "Unnatural.History.1x03.Espion.En.Sommeil.FR.LD.par2" yEnc', + 'ordinal' => 20, + ), + 323 => + array ( + 'id' => 824, + 'group_regex' => '^alt\\.binaries\\.series\\.tv\\.french$', + 'regex' => '/^\\[(?P.+?)\\][-_\\s]{0,3}[\\(\\[]\\d+\\/(\\d+[\\)\\]])[-_\\s]{0,3}"(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//[MagNeum 3.14 S1 D.V.D + par2][1148/1167] - "ZDFRIKK8470DO776.D7P" yEnc', + 'ordinal' => 25, + ), + 324 => + array ( + 'id' => 825, + 'group_regex' => '^alt\\.binaries\\.sony\\.psp$', + 'regex' => '/^\\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+([.,]\\d+ [kKmMgG])?[bB] yEnc$/', + 'status' => 1, + 'description' => '//(01/10) "Assassins Creed - Bloodlines [EUR].par2" - 408,46 MB yEnc', + 'ordinal' => 5, + ), + 325 => + array ( + 'id' => 826, + 'group_regex' => '^alt\\.binaries\\.sony\\.psp$', + 'regex' => '/^\\(\\d+\\) (?P[a-zA-Z0-9 -_\\.]+) \\[\\d+\\/(\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(20444) F', + 'ordinal' => 10, + ), + 326 => + array ( + 'id' => 827, + 'group_regex' => '^alt\\.binaries\\.sound\\.mp3$', + 'regex' => '/.+[-_\\s]{0,3}[\\(\\[]\\d+\\/\\d+[\\)\\]][-_\\s]{0,3}"(?P.+)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//- codari_4_usenetrevolution.info-Partner of SSL-News UK.Single.Charts.Top.40 [01/25] - "UK.Single.Charts.Top.40.par2" - 301,70 MB - yEnc', + 'ordinal' => 5, + ), + 327 => + array ( + 'id' => 828, + 'group_regex' => '^alt\\.binaries\\.sound\\.mp3$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}\\(\\d+\\/(\\d+\\))[ _-]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//"Terraplane Sun - Funnel of Love.mp3" - 21.55 MB - (1/6) - yEnc', + 'ordinal' => 10, + ), + 328 => + array ( + 'id' => 829, + 'group_regex' => '^alt\\.binaries\\.sound\\.mp3$', + 'regex' => '/^trtk\\d+[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//trtk09920 - [01/12] - "Guido Negraszus - Night Cafe Iii (Freedom Travellers) (2012)(320).par2" yEnc', + 'ordinal' => 15, + ), + 329 => + array ( + 'id' => 830, + 'group_regex' => '^alt\\.binaries\\.sound\\.mp3$', + 'regex' => '/^\\(\\?+\\) \\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/', + 'status' => 1, + 'description' => '//(????) [001/153] - "C4 House Party Horse Meat Disco Set 6.nfo" C4 House Party Horse Meat Disco Set 6 yEnc', + 'ordinal' => 20, + ), + 330 => + array ( + 'id' => 831, + 'group_regex' => '^alt\\.binaries\\.sound\\.mp3$', + 'regex' => '/^\\(\\?+\\) \\[\\d+\\/\\d+\\] - (?P.+)[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/', + 'status' => 1, + 'description' => '//(????) [19/22] - C.K.N. Demo 85 "19-rotten system.mp3" yEnc', + 'ordinal' => 25, + ), + 331 => + array ( + 'id' => 832, + 'group_regex' => '^alt\\.binaries\\.sound\\.mp3$', + 'regex' => '/^\\(.+\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(LUNATIC SOUL - IMPRESSIONS) [00/18] - "Lunatic Soul - Impressions 2011.nzb" yEnc', + 'ordinal' => 30, + ), + 332 => + array ( + 'id' => 833, + 'group_regex' => '^alt\\.binaries\\.sound\\.mp3$', + 'regex' => '/^\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[1/8] - "Black Market Flowers - Bind (1993).sfv" yEnc', + 'ordinal' => 35, + ), + 333 => + array ( + 'id' => 834, + 'group_regex' => '^alt\\.binaries\\.sound\\.mp3$', + 'regex' => '/^\\[\\d+\\/\\d+\\][-_\\s]{0,3}\\(((Top)?\\d+ )?(MP3 )?((Album|Single) )?Charts\\)[ -]{0,4}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/', + 'status' => 1, + 'description' => '//[1/1] - (150 MP3 Album Charts) - "Atlantean Kodex - The White Goddess.rar" yEnc ::: //[1/1] - (MP3 Album Charts) - "Black Sabbath - 13.rar" yEnc ::: //[1/1] - (Top100 Album Charts) - "Bastille - Pompeii.rar" yEnc ::: //[1/1] - (Top100 Charts) - "Beatrice Egli - Gluecksgefuehle.rar" yEnc ::: //[1/1] - (Top100 Single Charts) - "Alicia Keys - Girl On Fire.rar" yEnc', + 'ordinal' => 40, + ), + 334 => + array ( + 'id' => 835, + 'group_regex' => '^alt\\.binaries\\.sound\\.mp3$', + 'regex' => '/^\\[\\d+\\/\\d+\\][-_\\s]{0,3}(\\()?(Album|Single) Top \\d+ ([- ]{0,2}\\d+)?(\\))? - "(\\[.+?\\] )?(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") {1,4}yEnc$/i', + 'status' => 1, + 'description' => '//[1/1] - (Album Top 100) - "[Dance] David Guetta - One Love (2010) .rar" yEnc ::: //[1/1] - (Album Top 100) - "Aerosmith - Music From Another Dimension.rar" yEnc ::: //[1/1] - Album Top 100 - "ACDC - Live At River Plate.rar" yEnc ::: //[1/1] (Album Top 100 - 2012) - "Alicia Keys - Girl On Fire.rar" yEnc ::: //[1/1] (Album Top 100 2012) - "Asaf Avidan And The Mojos - One Day.rar" yEnc', + 'ordinal' => 45, + ), + 335 => + array ( + 'id' => 836, + 'group_regex' => '^alt\\.binaries\\.sound\\.mp3$', + 'regex' => '/^\\[\\d+\\/\\d+\\][-_\\s]{0,3}Top \\d+ Album Charts \\d+[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") {1,4}yEnc$/i', + 'status' => 1, + 'description' => '//[1/1] - Top 100 Album Charts 2012 - "Aura Dione feat. Rock Mafia - Friends.rar" yEnc', + 'ordinal' => 50, + ), + 336 => + array ( + 'id' => 837, + 'group_regex' => '^alt\\.binaries\\.sound\\.mp3$', + 'regex' => '/^.+usenet-piraten\\.info.+ - \\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//<>usenet-piraten.info<>partner<>ssl-news.info<> - [10/10] - "Overexposed (Deluxe Version).vol31+23.par2" yEnc', + 'ordinal' => 55, + ), + 337 => + array ( + 'id' => 838, + 'group_regex' => '^alt\\.binaries\\.sound\\.mp3$', + 'regex' => '/^\\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(1/1) "Adam Levine (Maroon 5) & Alicia Keys - Daylight & Girl on fire LIVE 55TH GRAMMY AWARDS 320Kpbs.mp3" yEnc', + 'ordinal' => 60, + ), + 338 => + array ( + 'id' => 839, + 'group_regex' => '^alt\\.binaries\\.sound\\.mp3$', + 'regex' => '/^\\(\\d+\\/\\d+\\) - VERBAteam™ present - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(1/4) - VERBAteam™ present - "Avril Lavigne - Rock \'N Roll (Official Audio).mp3" - 5,80 MB - yEnc', + 'ordinal' => 65, + ), + 339 => + array ( + 'id' => 840, + 'group_regex' => '^alt\\.binaries\\.sound\\.mp3$', + 'regex' => '/^\\[\\d+\\/\\d+\\][-_\\s]{0,3}\\(Album Top \\d+\\)[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/', + 'status' => 1, + 'description' => '//[1/1] - (Album Top 1000) - "Davis, Miles - Complete Live at the Plugged Nickel 1965.rar" yEnc', + 'ordinal' => 70, + ), + 340 => + array ( + 'id' => 841, + 'group_regex' => '^alt\\.binaries\\.sound\\.mp3$', + 'regex' => '/^\\[\\d+\\/\\d+\\][-_\\s]{0,3}Album Top \\d+[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/', + 'status' => 1, + 'description' => '//[1/1] - Album Top 100 - "Rammstein - Made In Germany 1995-2011.rar" yEnc', + 'ordinal' => 75, + ), + 341 => + array ( + 'id' => 842, + 'group_regex' => '^alt\\.binaries\\.sound\\.mp3$', + 'regex' => '/^(?P.+?) (\\()?by dem verrückten Lordi(\\))? {1,2}\\(\\d+\\/\\d+\\) ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+[.,]\\d+ [kKmMgG][bB].+yEnc$/i', + 'status' => 1, + 'description' => '//Andrea Berg - My Danish Collection (2013) by dem verrückten Lordi (14/27) "Andrea Berg - My Danish Collection (2013).par2" - 132,74 MB 150920134 yEnc ::: //Der Deutsche Beat Mix Teil 2 auf wunsch (by dem verrückten Lordi) (2/9) "Der Deutsche Beat Mix Teil 3 Back.jpg" - 117,84 MB 13.11.05 yEnc', + 'ordinal' => 80, + ), + 342 => + array ( + 'id' => 843, + 'group_regex' => '^alt\\.binaries\\.sound\\.mp3$', + 'regex' => '/^(?P.+?) \\(\\d+\\/\\d+\\) ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+[.,]\\d+ [kKmMgG][bB] {1,2}by dem verrückten Lordi.+yEnc$/i', + 'status' => 1, + 'description' => '//Christian Anders - Tief in dir (15/24) "Christian Anders - Tief In Dir Back.jpg" - 58,56 MB by dem verrückten Lordi 0703123 yEnc', + 'ordinal' => 85, + ), + 343 => + array ( + 'id' => 844, + 'group_regex' => '^alt\\.binaries\\.sound\\.mp3$', + 'regex' => '/^Der etwas.+ - (?P.+) \\(\\d+\\/\\d+\\) ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/i', + 'status' => 1, + 'description' => '//Der etwas andere Mix - Wilde Herzenmix (auf wunsch) neu (by dem verrückten Lordi) (1/8) "Der etwas andere Mix - Wilde Herzenmix.par2" yEnc', + 'ordinal' => 90, + ), + 344 => + array ( + 'id' => 845, + 'group_regex' => '^alt\\.binaries\\.sound\\.mp3$', + 'regex' => '/^(?P.+?) \\(\\d+\\/\\d+\\) ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+[.,]\\d+ [kKmMgG][bB] {1,2}\\d+ yEnc$/i', + 'status' => 1, + 'description' => '//Full Discography - The Cranberries (01/47) "Full Discography - The Cranberries.par2" - 3,52 GB 2812111 yEnc', + 'ordinal' => 95, + ), + 345 => + array ( + 'id' => 846, + 'group_regex' => '^alt\\.binaries\\.sound\\.mp3$', + 'regex' => '/^(?P.+?) meil29 ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//jean ferrat année 1967 à 1969 meil29 "17 Rien à voir.mp3" yEnc', + 'ordinal' => 100, + ), + 346 => + array ( + 'id' => 847, + 'group_regex' => '^alt\\.binaries\\.sound\\.mp3$', + 'regex' => '/^Selected Songs by Various Artists - (?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) yEnc$/i', + 'status' => 1, + 'description' => '//Selected Songs by Various Artists - Depeche Mode - Personal Jesus (Acoustic Version).mp3 yEnc', + 'ordinal' => 105, + ), + 347 => + array ( + 'id' => 848, + 'group_regex' => '^alt\\.binaries\\.sound\\.mp3\\.complete_cd$', + 'regex' => '/^\\(\\d+\\/\\d+\\)[ _-]{0,3}\\[Lords-of-usenet\\][ _-]{0,3}<>[ _-]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//(05/10) - [Lords-of-usenet] <> "Wynardtage Praise The Fallen(2007).vol00+01.PAR2" - 132,64 MB - yEnc', + 'ordinal' => 5, + ), + 348 => + array ( + 'id' => 849, + 'group_regex' => '^alt\\.binaries\\.sound\\.mp3\\.complete_cd$', + 'regex' => '/^\\(\\d+\\/\\d+\\)[ _-]{0,3}[ _-]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//(06/11) - - "Diens - Schwarzmale.vol00+01.PAR2" - 141,07 MB - yEnc', + 'ordinal' => 10, + ), + 349 => + array ( + 'id' => 850, + 'group_regex' => '^alt\\.binaries\\.sound\\.mp3\\.complete_cd$', + 'regex' => '/^trtk\\d+[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//trtk09920 - [01/12] - "Guido Negraszus - Night Cafe Iii (Freedom Travellers) (2012)(320).par2" yEnc', + 'ordinal' => 15, + ), + 350 => + array ( + 'id' => 851, + 'group_regex' => '^alt\\.binaries\\.sound\\.mp3\\.complete_cd$', + 'regex' => '/^\\(\\?+\\) \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(????) [01/31] - "Adrian von Ziegler - Discography - 2010-2013.par2" yEnc', + 'ordinal' => 20, + ), + 351 => + array ( + 'id' => 852, + 'group_regex' => '^alt\\.binaries\\.sound\\.mp3\\.complete_cd$', + 'regex' => '/^[ _-]{0,3}\\(\\d+\\/\\d+\\)[ _-]{0,3}[ _-]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '// (09/18) - "Mantus - Fatum (2013) [2CD].FH.vol00+2.PAR2" - 336,39 MB - yEnc', + 'ordinal' => 25, + ), + 352 => + array ( + 'id' => 853, + 'group_regex' => '^alt\\.binaries\\.sound\\.mp3\\.complete_cd$', + 'regex' => '/^\\(\\d+\\/\\d+\\)[ _-]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//(08/15) "Noemi-Red.(Unreleased).2006.by.NYCrules.vol000+01.PAR2" - 179,66 MB - yEnc', + 'ordinal' => 30, + ), + 353 => + array ( + 'id' => 854, + 'group_regex' => '^alt\\.binaries\\.sound\\.mp3\\.complete_cd$', + 'regex' => '/^\\[(?P[a-zA-Z0-9-_\\\\(\\)\\.]+)\\] \\[www\\.usenet4ever\\.info by Secretusenet\\] - "([\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[16_Bit_Lolitas-Warung_Brazil_002-2CD-2012-iHF] [www.usenet4ever.info by Secretusenet] - "000-16_bit_lolitas-warung_brazil_002-2cd-2012-ihf.sfv" yEnc ::: //[3RD_Prototype_-_On_My_Way-(TB7368)-WEB-2013-FMC] [www.usenet4ever.info by Secretusenet] - "01-3rd_prototype_-_deafback-when_you_are_in_the_dark_(deafback_remix).mp3" yEnc ::: //[Armin_Van_Buuren_Feat._Fiora-Waiting_For_The_Night-(ARMD1140)-WEB-2013-UKHx] [www.usenet4ever.info by Secretusenet] - "00-armin_van_buuren_feat._fiora-waiting_for_the_night-(armd1140)-web-2013-ukhx.m3u" yEnc', + 'ordinal' => 35, + ), + 354 => + array ( + 'id' => 855, + 'group_regex' => '^alt\\.binaries\\.sound\\.mp3\\.complete_cd$', + 'regex' => '/^>ghost-of-usenet\\.org<< (?P[a-zA-Z0-9-_\\\\(\\)\\.]+) >>www\\.SSL-News\\.info> - "([\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//>ghost-of-usenet.org<< 16_Bit_Lolitas-Warung_Brazil_002-2CD-2012-iHF >>www.SSL-News.info> - "101-16_bit_lolitas-warung_brazil_002_cd1.mp3" yEnc', + 'ordinal' => 40, + ), + 355 => + array ( + 'id' => 856, + 'group_regex' => '^alt\\.binaries\\.sound\\.mp3\\.complete_cd$', + 'regex' => '/^(?P[a-zA-Z0-9 -_\\\\(\\)\\.]+) \\[\\d+(\\/| of )(\\d+\\])[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Blok_B-Bienvenue_Dans_Mon_Blok_Vol.1-2005-BZ_INT [20 of 27] "01-gangsta.mp3" yEnc ::: //DJ Neev - HedKandi_2013-06-08 (Ministry of Sound Radio) [01/13] - "DJ Neev - HedKandi_2013-06-08 (Ministry of Sound Radio).par2" yEnc', + 'ordinal' => 45, + ), + 356 => + array ( + 'id' => 857, + 'group_regex' => '^alt\\.binaries\\.sound\\.mp3\\.complete_cd$', + 'regex' => '/^\\(www\\.Thunder-News\\.org\\) >(?P.+?)< - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(www.Thunder-News.org) >Dee_And_Crane-Let_The_Music_Play-WEB-2012-UKHx< - "05-dee_and_crane-let_the_music_play_(jay_frogs_keep_the_groove_remix_edit).mp3" yEnc', + 'ordinal' => 50, + ), + 357 => + array ( + 'id' => 858, + 'group_regex' => '^alt\\.binaries\\.sound\\.mp3\\.complete_cd$', + 'regex' => '/^\\[\\d+\\/\\d+\\] - \\((MP3 )?ALBUM CHARTS\\) - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/i', + 'status' => 1, + 'description' => '//[1/1] - (MP3 ALBUM CHARTS) - "Andreas Gabalier - Volksrock\'n\'roller-Live.rar" yEnc', + 'ordinal' => 55, + ), + 358 => + array ( + 'id' => 859, + 'group_regex' => '^alt\\.binaries\\.sounds\\.flac$', + 'regex' => '/^\\[\\d+\\]-\\[.+?\\]-\\[.+?\\]-\\[ (?P.+?) \\]-\\[\\d+\\/\\d+] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//[32974]-[FULL]-[#a.b.flac]-[ Tenniscoats-Tokinouta-JP-CD-FLAC-2011-BCC ]-[04/28] - "00-tenniscoats-tokinouta-jp-cd-flac-2011.nfo" yEnc', + 'ordinal' => 5, + ), + 359 => + array ( + 'id' => 860, + 'group_regex' => '^alt\\.binaries\\.sounds\\.flac$', + 'regex' => '/^\\[:.+:\\]\\[FLAC.+\\]-\\[:(?P.+):\\]-\\[\\d+\\/\\d+\\]-".+" yEnc$/', + 'status' => 1, + 'description' => '//[:SEK9:][FLAC/Metal]-[:Burn_The_Priest-Burn_The_Priest-Remastered-CD-FLAC-2005-TiLLMYDEATH:]-[01/18]-"00-burn_the_priest-burn_the_priest-remastered-cd-flac-2005-proof.jpg" yEnc', + 'ordinal' => 10, + ), + 360 => + array ( + 'id' => 861, + 'group_regex' => '^alt\\.binaries\\.sounds\\.lossless$', + 'regex' => '/^http:\\/\\/dream-of-usenet\\.org .+? - \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//http://dream-of-usenet.org empfehlen newsconnection.eu - [02/32] - "Adam_Ant-Manners_and_Physique-(MCAD-6315)-CD-FLAC-1989-2Eleven.par2" yEnc', + 'ordinal' => 5, + ), + 361 => + array ( + 'id' => 862, + 'group_regex' => '^alt\\.binaries\\.sounds\\.lossless$', + 'regex' => '/^(?P[a-zA-Z0-9]+.+? - .+?)\\s+\\(\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Rush - Sector One 24-96 (000/229] - ".nzb" yEnc ::: //Stevie Ray Vaughan - Couldn\'t Stand the Weather (01/19] - ".sfv" yEnc', + 'ordinal' => 10, + ), + 362 => + array ( + 'id' => 863, + 'group_regex' => '^alt\\.binaries\\.sounds\\.lossless$', + 'regex' => '/^trtk\\d+ - \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//trtk07073 - [18/26] - "1990 Santana - Spirits Dancing In The Flesh (flac).part17.rar" yEnc', + 'ordinal' => 15, + ), + 363 => + array ( + 'id' => 864, + 'group_regex' => '^alt\\.binaries\\.sounds\\.lossless$', + 'regex' => '/^COMPLETE REPOST (?P.+? - )NMR -(?P \\d{4}) - (?P.+?) \\[\\d+ of \\d+\\] ".+?" yEnc$/', + 'status' => 1, + 'description' => '//COMPLETE REPOST Magma - NMR - 1974 - Wurdah Itah [01 of 23] "1974 - Wurdah Itah.par2" yEnc', + 'ordinal' => 20, + ), + 364 => + array ( + 'id' => 865, + 'group_regex' => '^alt\\.binaries\\.sounds\\.lossless$', + 'regex' => '/^(?P[A-Z0-9].+? - VA - .+?) \\[\\d+ of \\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Sensation - VA - Source Of Light (2CD 2012) [02 of 67] - "00 - Sensation - VA - Source Of Light (2CD 2012) [nmr].txt" yEnc', + 'ordinal' => 25, + ), + 365 => + array ( + 'id' => 866, + 'group_regex' => '^alt\\.binaries\\.sounds\\.lossless$', + 'regex' => '/^(?P[A-Z0-9][A-Za-z0-9 ]{2,} -( \\d{4} -)? [A-Z0-9].+?( \\(.+?\\))?) \\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Ryan McGarvey - Forward In Reverse [01/21] - "00 - Ryan Mcgarvey - Forward in Reverse.nfo" yEnc ::: //JFC - The Timerewinder (NMR) [01/15] - "00 - The Timerewinder.nfo" yEnc ::: //The Brothers Johnson - 1981 - Winners (2011 expanded remastered) [01/31] - "01 - The Real Thing.flac" yEnc ::: //Jermaine Jackson - 1980 - Let\'s Get Serious [00/23] - "Jermaine Jackson - 1980 - Let\'s Get Serious.nzb" yEnc', + 'ordinal' => 30, + ), + 366 => + array ( + 'id' => 867, + 'group_regex' => '^alt\\.binaries\\.sounds\\.lossless$', + 'regex' => '/^(?P[A-Z0-9].+? - [A-Z0-9].+? \\(\\d{4}\\) \\[.*?HDTracks.+?\\]) - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Miles Davis - In A Silent Way (1969) [2013 - HDTracks 24-176,4] - "iasw24-176.par2" yEnc ::: //Bob James & David Sanborn - Quartette Humaine (2013) [HDTracks 24-88,2] - "qh24-88.par2" yEnc', + 'ordinal' => 35, + ), + 367 => + array ( + 'id' => 868, + 'group_regex' => '^alt\\.binaries\\.sounds\\.lossless$', + 'regex' => '/^(?P[A-Z0-9].+? - \\d{4} - .+?) - \\d+ of \\d+ - \\d+ - .+? yEnc$/', + 'status' => 1, + 'description' => '//Sonny Landreth - 2010 - Mississippi Blues - 04 of 29 - 00 - Mississippi Blues.sfv yEnc ::: //Fruteland Jackson - 1996 - ... Is All I Crave - 08 of 20 - 00 - Fruteland Jackson - ... Is All I Crave.log yEnc', + 'ordinal' => 40, + ), + 368 => + array ( + 'id' => 869, + 'group_regex' => '^alt\\.binaries\\.sounds\\.lossless$', + 'regex' => '/^\\((?PVA - .+?)\\) \\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//(VA - Cafe Del Mar Dreams 5-2012-Samfie Man) [37/38] - "VA - Cafe Del Mar Dreams 5-2012-Samfie Man.vol063+040.par2" yEnc', + 'ordinal' => 45, + ), + 369 => + array ( + 'id' => 870, + 'group_regex' => '^alt\\.binaries\\.sounds\\.lossless$', + 'regex' => '/^\\([A-Z0-9]+\\) \\[\\d+\\/\\d+\\] - "(?P.+?) - \\d+-.+?" yEnc$/', + 'status' => 1, + 'description' => '//(152092XA20) [08/16] - "Guns and Roses - Use Your Illusion I - 08-Back Off Bitch.flac" yEnc', + 'ordinal' => 50, + ), + 370 => + array ( + 'id' => 871, + 'group_regex' => '^alt\\.binaries\\.sounds\\.lossless$', + 'regex' => '/^(?P[\\w-]{5,})\\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Eros_Ramazzotti-Eros-IT-CD-FLAC-1997-FADA[04/26] - "00-eros_ramazzotti-eros-1997-fada.sfv" yEnc', + 'ordinal' => 55, + ), + 371 => + array ( + 'id' => 872, + 'group_regex' => '^alt\\.binaries\\.sounds\\.lossless$', + 'regex' => '/^.:[-_\\s]{0,3}(?P.+?)[-_\\s]{0,3}:..+?thunder-news\\.org.+?secretusenet\\.com:. - "([\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//.: VA-Liquid_Music-The_Future_House_Compilation-CD-FLAC-1993-WRS :. - .:www.thunder-news.org:. - .:sponsored by secretusenet.com:. - "00-va-liquid_music-the_future_house_compilation-cd-flac-1993-wrs.nfo" yEnc ::: //.:Bruce_BecVar-Arriba-CD-FLAC-1993-JLM:. - .:thunder-news.org:. - .:sponsored by secretusenet.com:. - "00-bruce_becvar-arriba-cd-flac-1993.m3u" yEnc', + 'ordinal' => 60, + ), + 372 => + array ( + 'id' => 873, + 'group_regex' => '^alt\\.binaries\\.sounds\\.lossless$', + 'regex' => '/^[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//_ "CARUSO & GIGLI - O Sole Mio - The Unknown.nzb" yEnc', + 'ordinal' => 65, + ), + 373 => + array ( + 'id' => 874, + 'group_regex' => '^alt\\.binaries\\.sounds\\.lossless$', + 'regex' => '/^[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+ (of \\d+)( \\(\\d+\\/\\d+\\)){1,2} (yEnc)?$/', + 'status' => 1, + 'description' => '//"Art Tatum - The Complete Trio Sessions with Tiny Grimes & Slam Stewart - Vol 1.NFO" - 1 of 6 (1/1) ::: //"Galen Jeter and the Dallas Jazz Orchestra - Thank You, Leon.NFO" - 1 of 5 (1/1) (1/1)', + 'ordinal' => 70, + ), + 374 => + array ( + 'id' => 875, + 'group_regex' => '^alt\\.binaries\\.sounds\\.lossless$', + 'regex' => '/^[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//"Doc Watson - 1973 - The Essential Doc Watson - 01 - Tom Dooley.flac" - 406.64 MB - yEnc', + 'ordinal' => 75, + ), + 375 => + array ( + 'id' => 876, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3$', + 'regex' => '/^\\(dream-of-usenet\\.info\\) - \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(dream-of-usenet.info) - [04/15] - "Enya-And_Winter_Came...-2008.part2.rar" yEnc', + 'ordinal' => 5, + ), + 376 => + array ( + 'id' => 877, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3$', + 'regex' => '/^http:\\/\\/dream-of-usenet\\.org .+? - \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//http://dream-of-usenet.org empfehlen newsconnection.eu - [02/32] - "Adam_Ant-Manners_and_Physique-(MCAD-6315)-CD-FLAC-1989-2Eleven.par2" yEnc', + 'ordinal' => 10, + ), + 377 => + array ( + 'id' => 878, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3$', + 'regex' => '/^trtk\\d+[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//trtk09920 - [01/12] - "Guido Negraszus - Night Cafe Iii (Freedom Travellers) (2012)(320).par2" yEnc', + 'ordinal' => 15, + ), + 378 => + array ( + 'id' => 879, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3$', + 'regex' => '/^>>> CREATIVE COMMONS NZB <<< "(?P.+?)" - File \\d+ of \\d+: ".+?" yEnc$/', + 'status' => 1, + 'description' => '//>>> CREATIVE COMMONS NZB <<< "dexter romweber duo-lookout" - File 1 of 9: "creative_commons_nzb_dexter_romweber_duo-lookout.rar" yEnc', + 'ordinal' => 20, + ), + 379 => + array ( + 'id' => 880, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3$', + 'regex' => '/^.+?usenet-space.+?Powered by.+? "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+? \\d+\\/\\d+ \\(\\d+[.,]\\d+ [kKmMgG][bB]\\) .+? \\d+[.,]\\d+ [kKmMgG][bB] .+?yEnc$/', + 'status' => 1, + 'description' => '//<<>> <<< "Justin_Bieber-Believe_Acoustic-2013-pLAN9_usenet-space-cowbys.info.rar" >< 4/6 (78.65 MB) >< 60.84 MB > yEnc', + 'ordinal' => 25, + ), + 380 => + array ( + 'id' => 881, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3$', + 'regex' => '/"(?P.+)"[-_\\s]{0,3}[\\(\\[]\\d+\\/(\\d+[\\)\\]])[-_\\s]{0,3}".+(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//"The Absence - Riders Of The Plague" [00/14] - "the_absence-riders_of_the_plague.nzb" yEnc', + 'ordinal' => 30, + ), + 381 => + array ( + 'id' => 882, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3$', + 'regex' => '/\\( (?P.+?)\\)[-_\\s]{0,3}( |\\().+\\)[-_\\s]{0,3}[\\(\\[]\\d+\\/(\\d+[\\)\\]])[-_\\s]{0,3}".+(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//( Albert Cummings Albums 6x By Dready Niek (1999-2012) ) ( ** By Dready Niek ** ) [11/20] - "Albert Cummings Albums 6x By Dready Niek (1999-2012).part10.rar" yEnc ::: //( Fat Freddy\'s Drop - Blackbird (2013) -- By Dready Niek ) -- By Dready Niek ) [01/15] - "Fat Freddy\'s Drop - Blackbird (2013) -- By Dready Niek.par2" yEnc', + 'ordinal' => 35, + ), + 382 => + array ( + 'id' => 883, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3$', + 'regex' => '/\\( (?P.+?) \\)[-_\\s]{0,3}[\\(\\[]\\d+\\/(\\d+[\\)\\]])[-_\\s]{0,3}".+(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//( Addison_Road-Addison_Road-2008 ) [01/10] - "01. Addison Road - This Could Be Our Day.mp3" yEnc', + 'ordinal' => 40, + ), + 383 => + array ( + 'id' => 884, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3$', + 'regex' => '/^.+?\\[\\d+\\/(\\d+\\][-_\\s]{0,3}.+?)[-_\\s]{0,3}("|#34;)(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}("|#34;))[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//(????) [0/8] - Crionics Post - Alice In Chains - Dirt REPOST"Alice In Chains - Dirt.nzb" yEnc', + 'ordinal' => 45, + ), + 384 => + array ( + 'id' => 885, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3$', + 'regex' => '/^\\(\\?+\\) \\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/', + 'status' => 1, + 'description' => '//(????) [001/153] - "C4 House Party Horse Meat Disco Set 6.nfo" C4 House Party Horse Meat Disco Set 6 yEnc', + 'ordinal' => 50, + ), + 385 => + array ( + 'id' => 886, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3$', + 'regex' => '/^\\(\\?+\\) \\[\\d+\\/\\d+\\] - (?P.+)[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/', + 'status' => 1, + 'description' => '//(????) [19/22] - C.K.N. Demo 85 "19-rotten system.mp3" yEnc', + 'ordinal' => 55, + ), + 386 => + array ( + 'id' => 887, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3$', + 'regex' => '/^\\(\\d+\\/\\d+\\)[-_\\s]{0,3}"(?P.+?) {1,3}www\\.brothers-of-usenet\\.org - empfehlen - Newsconnection([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(03/11) "Europe - Discography (1983 - 2009) (320 kbps CBR) www.brothers-of-usenet.org - empfehlen - Newsconnection.par2" yEnc ::: //(03/11) "Evanescence Diskographie (1998-2011) www.brothers-of-usenet.org - empfehlen - Newsconnection.par2" yEnc', + 'ordinal' => 60, + ), + 387 => + array ( + 'id' => 888, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3$', + 'regex' => '/^\\(\\d+\\/\\d+\\)[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(107/123) - "Mark.EG.M.Zone.Rave.Tape.Packs.Hard.Trance.1990s.vol006+04.PAR2" - 11.39 GB yEnc ::: //(12/16) "Horrid Henry The Movie - Original Soundtrack.vol00+01.PAR2" - 102.32 MB - yEnc', + 'ordinal' => 65, + ), + 388 => + array ( + 'id' => 889, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3$', + 'regex' => '/^\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[002/123] - "Mark.EG.M.Zone.Rave.Tape.Packs.Hard.Trance.1990s.part001.rar" yEnc', + 'ordinal' => 70, + ), + 389 => + array ( + 'id' => 890, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3$', + 'regex' => '/^.+usenetrevolution.+Partner of ssl-news\\.info.+\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//< usenetrevolution > <-> Partner of ssl-news.info <-> Anastacia.-.It\'s.a.Mans.World [04/15] - "Anastacia.-.It\'s.a.Mans.World.part01.rar" - 100,47 MB - yEnc', + 'ordinal' => 75, + ), + 390 => + array ( + 'id' => 891, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3$', + 'regex' => '/^.+Old but Sold.+>< "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") >< \\d+\\/\\d+ \\(\\d+[.,]\\d+ [kKmMgG][bB]\\).+ yEnc$/', + 'status' => 1, + 'description' => '//<<>> <<< >< >< "German Top 50 ODC - 12.08.2013.nfo" >< 02/33 (541,61 MB) >< 10,93 kB > yEnc', + 'ordinal' => 80, + ), + 391 => + array ( + 'id' => 892, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3$', + 'regex' => '/^.+ghost-of-usenet.org[<>] [><]"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")> >www\\.SSL-News\\.info< - \\(\\d+\\/\\d+\\)[-_\\s]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//<<< <"MC Basstard Diskographie 16CDs 2000-2011 MP3 - Ghost.part08.rar"> >www.SSL-News.info< - (10/43) - 1,69 GB yEnc ::: //<<< >"UltraTraxx Rare Remixes - Vol 011 MP3 192kbps.par2"> >www.SSL-News.info< - (1/9) - 120,82 MB yEnc', + 'ordinal' => 85, + ), + 392 => + array ( + 'id' => 893, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3$', + 'regex' => '/^BY REQ.+ - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") \\[\\d+\\/\\d+\\] yEnc$/i', + 'status' => 1, + 'description' => '//BY REQ:........! - "Keith Whitley - All American Country - .par2" [06/22] yEnc', + 'ordinal' => 90, + ), + 393 => + array ( + 'id' => 894, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3$', + 'regex' => '/^Der etwas.+ \\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/i', + 'status' => 1, + 'description' => '//Der etwas andere Mix - Wilde Herzenmix (auf wunsch) neu (by dem verrückten Lordi) (1/8) "Der etwas andere Mix - Wilde Herzenmix.par2" yEnc', + 'ordinal' => 95, + ), + 394 => + array ( + 'id' => 895, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3$', + 'regex' => '/^.+[\\[\\(]\\d+\\/\\d+[\\)\\]][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/i', + 'status' => 1, + 'description' => '//DJ Inferno Beatport Xtreme September 2011[63/66] - "DJ Inferno Beatport Xtreme September 2011.vol073+55.PAR2" upp o-o yEnc ::: //Kastelruther Spatzen - Weihnachten Bei Uns Daheim (2011) (22/25) "Kastelruther Spatzen - Weihnachten Bei Uns Daheim (2011).vol00+1.PAR2" - 113,03 MB - Tapier 13.11.02 yEnc', + 'ordinal' => 100, + ), + 395 => + array ( + 'id' => 896, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/', + 'status' => 1, + 'description' => '//"8 Wenn ich einmal gross bin .mp3" Koelschefetz postet.Die Filue -Immer Wigger yEnc', + 'ordinal' => 105, + ), + 396 => + array ( + 'id' => 897, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3$', + 'regex' => '/^.+"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/', + 'status' => 1, + 'description' => '//Queens Of The Stone Age - Rated R (2000) (10th Anniversary Deluxe Edition 2010) [EAC/Lame V0] "QU2 - Queens of the Stone Age - Rated R.M3u" yEnc', + 'ordinal' => 110, + ), + 397 => + array ( + 'id' => 898, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3$', + 'regex' => '/^(?P.+?)- [\\[\\(]\\d+\\/\\d+[\\)\\]][-_\\s]{0,3}\\d\\d.+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) yEnc$/', + 'status' => 1, + 'description' => '//squeeze-east side story-nmr- [01/14] - 01-squeeze-in quintessence.mp3 yEnc', + 'ordinal' => 115, + ), + 398 => + array ( + 'id' => 899, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$', + 'regex' => '/^\\(\\d+\\/\\d+\\) "(?P.+?) www\\.brothers-of-usenet\\.org - empfehlen - Newsconnection(\\.eu)?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(01/11) "Der Kleine Vampir Komplett - Folge 01 bis 18 www.brothers-of-usenet.org - empfehlen - Newsconnection.eu.nfo" yEnc', + 'ordinal' => 5, + ), + 399 => + array ( + 'id' => 900, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$', + 'regex' => '/^\\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")by_Funkeefly yEnc$/', + 'status' => 1, + 'description' => '//(01/15) "Dafuniks - Enter The Sideshow Groove.rar.001"by_Funkeefly yEnc', + 'ordinal' => 10, + ), + 400 => + array ( + 'id' => 901, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$', + 'regex' => '/^trtk\\d+[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//trtk09920 - [01/12] - "Guido Negraszus - Night Cafe Iii (Freedom Travellers) (2012)(320).par2" yEnc', + 'ordinal' => 15, + ), + 401 => + array ( + 'id' => 902, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$', + 'regex' => '/^\\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(01/20) "Oz Discography by Grave Digger.par2" - 445,72 MB - yEnc', + 'ordinal' => 20, + ), + 402 => + array ( + 'id' => 903, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$', + 'regex' => '/^\\(D(\\))? (?P.+) {1,2}\\[\\d+\\/\\d+\\] - .+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) {1,2}yEnc$/', + 'status' => 1, + 'description' => '//(D The Best Of Leon Russell [23/28] - The Best Of Leon Russell.vol00+01.PAR2 yEnc', + 'ordinal' => 25, + ), + 403 => + array ( + 'id' => 904, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$', + 'regex' => '/^.+ghost-of-usenet\\.org.+"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")> >www\\.SSL-News\\.info< - \\(\\d+\\/\\d+\\) - \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/', + 'status' => 1, + 'description' => '//<<< <"Dream Dance Vol. 21-30 - 20CDs MP3 - Ghost.part20.rar"> >www.SSL-News.info< - (22/32) - 2,45 GB yEnc', + 'ordinal' => 30, + ), + 404 => + array ( + 'id' => 905, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$', + 'regex' => '/^<<<.+>>><<<(?P.+)>>>usenet-space-cowboys\\.info.+secretusenet\\.com>< ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") >< \\d+\\/\\d+ \\(\\d+[.,]\\d+ [kKmMgG][bB]\\) >< \\d+[.,]\\d+ [kKmMgG][bB] > yEnc$/i', + 'status' => 1, + 'description' => '//<<>><<>>usenet-space-cowboys.info<<< "Adele - Rolling In The Deep.mp4" >< 2/5 (77,13 MB) >< 63,94 MB > yEnc ::: //<<>><<>>usenet-space-cowboys.info<<< "09_rusty_moon-kispatak.mp3.par2" >< 01/26 (143,73 MB) >< 6,10 kB > yEnc', + 'ordinal' => 35, + ), + 405 => + array ( + 'id' => 906, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$', + 'regex' => '/^<<>>.+secretusenet\\.com>< "(?P.+?)-\\w+_usenet-space-cowbys\\.info([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") >< \\d+\\/\\d+ \\(\\d+[.,]\\d+ [kKmMgG][bB]\\) >< \\d+[.,]\\d+ [kKmMgG][bB] > yEnc$/i', + 'status' => 1, + 'description' => '//<<>> THOR <<< "Bangbros_Vs_Hansebanger_-_Kiezstyle-Promo-Vinyl-2006-ToTo_usenet-space-cowbys.info.avi" >< 3/5 (31,12 MB) >< 11,21 MB > yEnc', + 'ordinal' => 40, + ), + 406 => + array ( + 'id' => 907, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$', + 'regex' => '/^<<>>.+secretusenet\\.com> < "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") >< \\d+\\/\\d+ \\(\\d+[.,]\\d+ [kKmMgG][bB]\\) >< \\d+[.,]\\d+ [kKmMgG][bB] > yEnc$/i', + 'status' => 1, + 'description' => '//<<>><<>> < "Alice_Cooper-Trash-1989-Wyse.nfo" >< 2/8 (89,39 MB) >< 17,21 kB > yEnc', + 'ordinal' => 45, + ), + 407 => + array ( + 'id' => 908, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$', + 'regex' => '/^>>> www.lords-of-usenet\\.org <<< "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\[\\d+\\/\\d+\\] - (\\[)?\\d+[.,]\\d+ [kKmMgG][bB](\\])? yEnc$/i', + 'status' => 1, + 'description' => '//>>> www.lords-of-usenet.org <<< "Chris De Burgh - The Getaway.par2" - [1/9] - [115,51 MB] yEnc ::: //>>> www.lords-of-usenet.org <<< "Das Deutsche Schlager Magazin Die Maxis 1 2CD.par2" [01/12] - 205,70 MB yEnc', + 'ordinal' => 50, + ), + 408 => + array ( + 'id' => 909, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$', + 'regex' => '/^\\[.+?\\][-_\\s]{0,3}\\[(?P[\\w.,& \\()\\[\\]\\\'\\`-]{8,}?)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}\\])[-_\\s]{0,3}[\\(\\[]\\d+\\/\\d+[\\)\\]][-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//[BFMP3] [Barrelhouse_Time Frames.nzb] [00/18] yEnc', + 'ordinal' => 55, + ), + 409 => + array ( + 'id' => 910, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$', + 'regex' => '/^(?P[\\w.,& \\()\\[\\]\\\'\\`-]{8,}?)[-_\\s]{0,3}("|#34;)(.+?)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}("|#34;))[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//Metallica - Ride The Lightning "01 - Fight Fire With Fire.mp3" yEnc', + 'ordinal' => 60, + ), + 410 => + array ( + 'id' => 911, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$', + 'regex' => '/^\\(\\d+\\/\\d+\\) "(?P[\\w.,& \\()\\[\\]\\\'\\`-]{8,}?) www\\.brothers-of-usenet\\.org - empfehlen - Newsconnection\\.eu([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(01/11) "Der Kleine Vampir Komplett - Folge 01 bis 18 www.brothers-of-usenet.org - empfehlen - Newsconnection.eu.nfo" yEnc', + 'ordinal' => 65, + ), + 411 => + array ( + 'id' => 912, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$', + 'regex' => '/([\\w.,& \\()\\[\\]\\\'\\`-]{8,}?)[-_\\s]{0,3}[\\(\\[]\\d+\\/\\d+[\\)\\]][-_\\s]{0,3}"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//The Refreshments - [1/9] - "The Refreshments - Rock´n Roll Christmas [2003].par2" yEnc', + 'ordinal' => 70, + ), + 412 => + array ( + 'id' => 913, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$', + 'regex' => '/^(?P[\\w.,& \\()\\[\\]\\\'\\`-]{8,}?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) yEnc$/', + 'status' => 1, + 'description' => '//Longines Symphonette-Far Away Places-(LP2 of 2)-Far Away Places-LP 2.par2 yEnc', + 'ordinal' => 75, + ), + 413 => + array ( + 'id' => 914, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$', + 'regex' => '/^Reader\\\'s Digest- {0,1}(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) yEnc$/', + 'status' => 1, + 'description' => '//Reader\'s Digest- Mario Lanza-The Very Best of Mario Lanza(CD3 of 3)-CD 3.par2 yEnc', + 'ordinal' => 80, + ), + 414 => + array ( + 'id' => 915, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$', + 'regex' => '/^\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w.,& \\()\\[\\]\\\'\\`-]{8,}?)[-_\\s]{0,3}\\d+[\\w.,& \\()\\[\\]\\\'\\`-]{8,}?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[01/10] - "Acdc - Fly On The Wall - 1985 -01 - Fly On The Wall -Creative7164.mp3" yEnc', + 'ordinal' => 85, + ), + 415 => + array ( + 'id' => 916, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$', + 'regex' => '/^\\[\\d+\\/\\d+\\] ->> "(?P[\\w.,& \\()\\[\\]\\\'\\`-]{8,}?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") <<- ShapterV yEnc$/', + 'status' => 1, + 'description' => '//[1/7] ->> "God Forbid 2009 - Reject the Sickness.par2" <<- ShapterV yEnc', + 'ordinal' => 90, + ), + 416 => + array ( + 'id' => 917, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$', + 'regex' => '/^(?P[\\w.,& \\()\\[\\]\\\'\\`-]{8,}?)--[\\w.,& \\()\\[\\]\\\'\\`-]{8,}?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Glenn Miller-The Missing Chapters Vol. 6-Blue Champagne--Glenn Miller-The Missing Chapters Vol. 6-Blue Champagne.par2 yEnc', + 'ordinal' => 95, + ), + 417 => + array ( + 'id' => 918, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3\\.dance$', + 'regex' => '/^\\[\\d+\\](?P.+?)[-_\\s]{0,3}("|#34;)(.+?)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}("|#34;))[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//[2707]Solarstone-Solarstone_Collected_Vol_1-ARDI3177-WEB-2012-TraX "02-solarstone_feat_kym_marsh-day_by_day_(red_jerry_smackthe_bigot_up_remix).mp3" - yEnc', + 'ordinal' => 5, + ), + 418 => + array ( + 'id' => 919, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3\\.electronic$', + 'regex' => '/^\\(\\d+\\/\\d+\\)[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(03/10) "Washing Machines - Planet-E CH-Basel Ultimate Hardcore - 4.9.1993.vol00+01.PAR2" - 232.39 MB - yEnc', + 'ordinal' => 5, + ), + 419 => + array ( + 'id' => 920, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3\\.electronic$', + 'regex' => '/^\\(\\d+\\/\\d+\\)[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+ [bB][-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//(2/7) "Cosmic Baby live at Energy 1995.vol00+01.PAR2" - 0 B - yEnc', + 'ordinal' => 10, + ), + 420 => + array ( + 'id' => 921, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3\\.electronic$', + 'regex' => '/^\\[0sk\\]-\\[\\d+-\\d+-\\d+\\]-\\[.+\\]-\\[.+\\]-\\[\\d+\\/\\d+\\]-\\[(?P[\\w.,& \\()\\[\\]\\\'\\`-]{8,})\\]--.+? yEnc$/', + 'status' => 1, + 'description' => '//[0sk]-[2002-12-06]-[idm]-[vinyl]-[4/5]-[Maps_And_Diagrams_-_Ti_Sta_Bene_Marone-(cact_001)-Vinyl-2002]--cact 001.sfv yEnc', + 'ordinal' => 15, + ), + 421 => + array ( + 'id' => 922, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3\\.electronic$', + 'regex' => '/^\\[.+\\]-\\[.+\\]-\\[\\d+\\/\\d+\\]-\\[(?P[\\w.,& \\()\\[\\]\\\'\\`-]{8,})\\]-.+? yEnc$/', + 'status' => 1, + 'description' => '//[10_years---happy_bday_absme]-[cd]-[04/15]-[va_-_spacewars_01-(plkcd003)-cd-1996-nwd]-01-Nuw Idol - Union Of Ilk -nwd-.mp3 yEnc', + 'ordinal' => 20, + ), + 422 => + array ( + 'id' => 923, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3\\.electronic$', + 'regex' => '/^(?P[\\w.,& \\()\\[\\]\\\'\\`-]{8,}?)[-_\\s]{0,3}\\d+[-_\\s]{0,3}[\\w.,& \\()\\[\\]\\\'\\`-]{8,}?\\b.?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//Alec Empire - Low On Ice 06 - Untitled.mp3 yEnc', + 'ordinal' => 25, + ), + 423 => + array ( + 'id' => 924, + 'group_regex' => '^alt\\.binaries\\.sounds\\.mp3\\.electronic$', + 'regex' => '/^Selected Songs by Various Artists - (?P[^.]{8,})([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//Selected Songs by Various Artists - Collide - Razor Sharp.mp3 yEnc', + 'ordinal' => 30, + ), + 424 => + array ( + 'id' => 925, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d.+?B - (\\d.+?B -)? yEnc$/', + 'status' => 1, + 'description' => '//(01/37) "Entourage S08E08.part01.rar" - 349,20 MB - yEnc ::: //(01/24) "EGtnu7OrLNQMO2pDbgpDrBL8SnjZDpab.nfo" - 686 B - 338.74 MB - yEnc (1/1)', + 'ordinal' => 40, + ), + 425 => + array ( + 'id' => 926, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\(\\d+\\/\\d+\\) - (?P[\\w.-]{5,}) - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/', + 'status' => 1, + 'description' => '//(01/28) - Continuum.S02E13.Second.Time.1080p.WEB-DL.AAC2.0.H264 - "Continuum.S02E13.Second.Time.1080p.WEB-DL.AAC2.0.H264.par2" - 1.75 GB - yEnc', + 'ordinal' => 45, + ), + 426 => + array ( + 'id' => 927, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\[\\d+\\/\\d+\\] - "(?P[A-Za-z0-9.-]+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[01/42] - "King.And.Maxwell.S01E08.1080p.WEB-DL.DD5.1.H264-Abjex.par2" yEnc', + 'ordinal' => 50, + ), + 427 => + array ( + 'id' => 928, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\(\\d+\\/\\d+\\)[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(01/15) - "Oz.S01E01.The.Routine.par2" - 380.18 MB yEnc ::: //(01/87) "Homeland.S03E05.Mini.720p.WEB.DL.DD5.1.H.264-ITSat.par2" - 773,24 MB - yEnc', + 'ordinal' => 55, + ), + 428 => + array ( + 'id' => 929, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\(\\?+\\) \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(????) [10/26] - "The.Young.Riders.S01E02.480pWEB-DL.AAC2.0.H.264-AJP69.part09.rar" yEnc', + 'ordinal' => 60, + ), + 429 => + array ( + 'id' => 930, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\(Dgpc\\) \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(Dgpc) [01/19] - "The.Xtra.Factor.S10E04.PDTVx264.JIVE.par2" yEnc', + 'ordinal' => 65, + ), + 430 => + array ( + 'id' => 931, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\[ (?P.+?) \\] .+ \\(\\d+\\/\\d+\\) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[ Anthony.Bourdain.Parts.Unknown.S01.480p.HDTV.x264-mSD ] MKV.h264 (03/17) - "Anthony.Bourdain.Parts.Unknown.S01E01.480p.HDTV.x264-mSD.mkv" yEnc', + 'ordinal' => 70, + ), + 431 => + array ( + 'id' => 932, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\[\\d+\\/\\d+\\] (?P.+S\\d+E\\d+.+?) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/', + 'status' => 1, + 'description' => '//[01/31] Unsealed.Alien.Files.S02E02.The.Kecksburg.Incident.720p.HDTV.x264-N0TSC3N3 - "n0tsc3n3-unsealed.alien.files.s02e02.the.kecksburg.incident.720p.hdtv.x264.par2" yEnc', + 'ordinal' => 75, + ), + 432 => + array ( + 'id' => 933, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^[\\w ]+[\\(\\[]\\d+\\/\\d+[\\)\\]] "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//The Colbert Report [00/12] "The.Colbert.Report.2014.01.20.Scott.Stossel.720p.WEB-DL.AAC2.0.H.264-monkee.nzb" yEnc ::: //Colbert [01/10] "The.Colbert.Report.2013.12.19.Ben Stiller.720p.WEB-DL.AAC2.0.H264-zee.rar" yEnc ::: //Whale Wars (01/30) "Whale.Wars.S06.A.Commander.Rises.PDTV.XviD-ZEN.par2" yEnc', + 'ordinal' => 80, + ), + 433 => + array ( + 'id' => 934, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\. - \\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//. - [01/42] - "Under.the.Dome.S01E03.Manhunt.1080p.WEB-DL.DD5.1.H.264-NTb.par2" yEnc', + 'ordinal' => 85, + ), + 434 => + array ( + 'id' => 935, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^(Re: )?(?P([\\w._-]{8,31}|[\\w._-]{33,}))([{}A-Z_]+)?( -)? \\[\\d+(\\/| of )\\d+\\]( -)? ".+?" yEnc$/', + 'status' => 1, + 'description' => '//House.Hunters.International.S05E502.720p.hdtv.x264 [01/27] - "House.Hunters.International.S05E502.720p.hdtv.x264.nfo" yEnc ::: //Criminal.Minds.S03E01.Doubt.PROPER.DVDRip.XviD-SAiNTS - [01/33] - "Criminal.Minds.S03E01.Doubt.PROPER.DVDRip.XviD-SAiNTS.par2" yEnc', + 'ordinal' => 90, + ), + 435 => + array ( + 'id' => 936, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^(?P[a-zA-Z0-9 ]+)(\\.part\\d*|\\.rar)?(\\.vol.+? |\\.[A-Za-z0-9]{2,4} )\\[\\d+\\/\\d+\\] - yEnc$/', + 'status' => 1, + 'description' => '//Silent Witness S15E02 Death has no dominion.par2 [01/44] - yEnc', + 'ordinal' => 95, + ), + 436 => + array ( + 'id' => 937, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\(bf1\\) \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(bf1) [03/31] - "The.Block.AU.Sky.High.S07E61.WS.PDTV.XviD.BF1.part01.sfv" yEnc (1/1)', + 'ordinal' => 100, + ), + 437 => + array ( + 'id' => 938, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^"(?P[\\w._-]{8,}?\\b)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\(\\d+\\/\\d+\\)[-_\\s]{0,3}[\\w. -]+[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//"Moving.On.S05E05.HDTV.x264.part19.rar" - (21/28) - Per REQ yEnc', + 'ordinal' => 105, + ), + 438 => + array ( + 'id' => 939, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\(\\?+\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w._-]{8,}?\\b)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}[\\w. -]+[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//(????) [01/20] - "Boxing.Cinnamon vs El Perro.8th.March.2014.PDTV.x264-Sir.Paul.par2" Cinnamon vs El Perro yEnc', + 'ordinal' => 110, + ), + 439 => + array ( + 'id' => 940, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\[[\\w. -]+\\][-_\\s]{0,3}"(?P[\\w._-]{8,}?\\b)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[REPOST]-"True.Blood.S06E01-E10.HDTV.x264.part094.rar" yEnc', + 'ordinal' => 115, + ), + 440 => + array ( + 'id' => 941, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\([\\w. -]{8,}\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}""(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")"[-_\\s]{0,3}[\\w. -]+[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//(Pretty.Little.Liars.S04E11.Bring.Down.the.Hoe.1080p.WEB-DL.DD5.1.H.264-BS) [31/45] - ""Pretty.Little.Liars.S04E11.Bring.Down.the.Hoe.1080p.WEB-DL.DD5.1.H.264-BS.part29.rar"" yEnc yEnc', + 'ordinal' => 120, + ), + 441 => + array ( + 'id' => 942, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^[\\w\\(). -]+[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[]-[FULL]-[a.b.teevee]-[Hannibal.S01.Special.Ceuf.720p.WEB-DL.DD5.1.H-264-NTb]-[03/40] - "Hannibal.S01.Special.Ceuf.720p.WEB-DL.DD5.1.H-264-NTb.part01.rar" yEnc', + 'ordinal' => 125, + ), + 442 => + array ( + 'id' => 943, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\[[\\w. -]{8,}\\][-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[Ax.Men.S06E18.Risking.it.All.720p.WEB-DL.AAC.2.0.H.264-AKS74u]-[07/68] "Ax.Men.S06E18.Risking.it.All.720p.WEB-DL.AAC.2.0.H.264-AKS74u.r04" - 1.46 GB yEnc', + 'ordinal' => 130, + ), + 443 => + array ( + 'id' => 944, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\[ As requested \\][-_\\s]{0,3}(?P[\\w. -]+)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//[ As requested ] Pawn.Stars.S07E15.Colt.To.The.Touch.720p.WEB-DL.AAC2.0.H.264.par2 yEnc', + 'ordinal' => 135, + ), + 444 => + array ( + 'id' => 945, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^(?P[\\w.-]+)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//Alaska.The.Last.Frontier.S02E15.HDTV.XviD-AFG.nzb yEnc', + 'ordinal' => 140, + ), + 445 => + array ( + 'id' => 946, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\d+\\/\\d+[-_\\s]{0,3}(?P[\\w. -]+)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//09/13 The.Exes.S03E10.My.Ex-Boyfriends.Wedding.WEBRip.x264.AAC-NoGRP.vol007+05.PAR2 yEnc', + 'ordinal' => 145, + ), + 446 => + array ( + 'id' => 947, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\[\\d+\\/\\d+\\][-_\\s]{0,3}(?P[\\w. -]+)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//[14/16] - Game.of.Thrones.S03E04.720p to 640x480 for size.vol11+08.PAR2 yEnc ::: //[22/39] LEGO.Batman.The.Movie.2013.1080p.WEB-DL.DD5.1.H.264-YFN.part21.rar yEnc', + 'ordinal' => 150, + ), + 447 => + array ( + 'id' => 948, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\[\\]-\\[FULL\\]-\\[a\\.b\\.teevee\\]-\\[[\\w.-]+\\][-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(tv) ncis.1021.hdtv-lol [1/8] - "ncis.1021.hdtv-lol.sfv" yEnc', + 'ordinal' => 155, + ), + 448 => + array ( + 'id' => 949, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\(\\d+\\/\\d+\\)[-_\\s]{0,3}[\\w. -]+[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(05/29) - LoK214 - "The.Legend.of.Korra.S02E14.Light.in.the.Dark.1080p.WEB-DL.DD5.1.H.264-BS.part04.rar" - 1,01 GB - yEnc ::: //(34/45) -Continuum.S02E11.1080p.WEB-DL.AAC2.0.H264- "Continuum.S02E11.1080p.WEB-DL.AAC2.0.H264.part33.rar" - 1.76 GB - yEnc', + 'ordinal' => 160, + ), + 449 => + array ( + 'id' => 950, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\[ [A-Za-z]+ \\] - (\\[\\d+\\/\\d+\\] - )?"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[ TVPower ] - "Dexter.S07E10.720p.HDTV.x264-NLsubs.par2" yEnc ::: //[ TVPower ] - [010/101] - "Desperate.Housewives.S08Disc2.NLsubs.part009.rar" yEnc', + 'ordinal' => 165, + ), + 450 => + array ( + 'id' => 951, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\[.+?\\]-\\[(?P.+?)\\]-\\[\\d+\\/\\d+\\] ".+?" - \\d+([.,]\\d+ [kKmMgG])?[bB] - yEnc$/', + 'status' => 1, + 'description' => '//[www.allyourbasearebelongtous.pw]-[WWE.Monday.Night.Raw.2013.07.22.HDTV.x264-IWStreams]-[03/69] "WWE.Monday.Night.Raw.2013.07.22.HDTV.x264-IWStreams.r00" - 1.58 GB - yEnc', + 'ordinal' => 170, + ), + 451 => + array ( + 'id' => 952, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\(www\\..+?\\) .+? - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(www.Thunder-News.org) >CD1< - "moovee-fastest.cda.par2" yEnc', + 'ordinal' => 175, + ), + 452 => + array ( + 'id' => 953, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/\\.info .+?Powered by .+?\\.com "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") .+? \\d+\\/\\d+ \\(\\d+[,.]\\d+ [mMkKgG][bB]\\) .+? yEnc$/', + 'status' => 1, + 'description' => '//<<>> usenet-space-cowboys.info <<< "S05E03 Pack die Badehose ein_usenet-space-cowbys.info.par2" >< 01/10 (411,16 MB) >< 3,48 kB > yEnc', + 'ordinal' => 180, + ), + 453 => + array ( + 'id' => 954, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^(?P[a-zA-Z0-9]+ .+? - S\\d+E\\d+ - .+?) \\[\\d+\\/\\d+\\] - ".+?\\..+?" yEnc$/', + 'status' => 1, + 'description' => '//Newport Harbor The Real Orange County - S01E01 - A Black & White Affair [01/11] - "Newport Harbor The Real Orange County - S01E01 - A Black & White Affair.mkv" yEnc', + 'ordinal' => 185, + ), + 454 => + array ( + 'id' => 955, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\(www\\.Thunder-News\\.org\\) ?>(?P.+)< ?[ _-]{0,3}(\\(\\d+\\/\\d+\\)|\\[\\d+\\/\\d+\\])?[ _-]{0,5}("|#34;).+("|#34;) yEnc$/i', + 'status' => 1, + 'description' => '//(www.Thunder-News.org) >Robin.Hood.S02E04.Der.Todesengel.German.WS.DVDRip.XviD-GTVG< - "gtvg-rh.xvid.s02e04.jpg" yEnc', + 'ordinal' => 190, + ), + 455 => + array ( + 'id' => 956, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\.: (?P.+):. - .:www\\.thunder-news\\.org:. - .:sponsored by secretusenet\\.com:\\. - ("|#34;).+("|#34;).+yEnc$/', + 'status' => 1, + 'description' => '//.: Breaking.Bad.S04E10.Prost.German.WS.DVDRip.XviD-GTVG :. - .:www.thunder-news.org:. - .:sponsored by secretusenet.com:. - "gtvg-bb.xvid.s04e10_poster.jpg" yEnc', + 'ordinal' => 195, + ), + 456 => + array ( + 'id' => 957, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/\\[FULL\\]-\\[.+.EFNet\\] - (?P.+)\\.rar$/', + 'status' => 1, + 'description' => '//[FULL]-[#a.b.teevee@EFNet] - Celemony Melodyne Studio Edition 3.2 (MAC OSX).rar', + 'ordinal' => 200, + ), + 457 => + array ( + 'id' => 958, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\(\\d+\\/\\d+\\) ("|#34;)(?P.+?)\\.rar("|#34;) - .+ - yEnc$/', + 'status' => 1, + 'description' => '//(00912/17663) "Afghanistan The Great Game With Rory Stewart Part1 HDTV XviD-AFG.rar" - 344,98 GB - yEnc', + 'ordinal' => 205, + ), + 458 => + array ( + 'id' => 959, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\[[\\d#]+\\]-\\[.+?\\]-\\[.+?\\]-\\[ (?P.+?) \\][- ]\\[\\d+\\/\\d+\\][-_\\s]{0,3}("|#34;).+?/', + 'status' => 1, + 'description' => '//[84491]-[FULL]-[#a.b.teevee@EFNet]-[ Tennis.Australian.Open.2012.Mens.1st.Round.Lleyton.Hewitt.vs.Cedrik-Marcel.Stebe.720p.HDTV.x264-LMAO ]-[04/97] - "tennis.australian.open.2012.mens.1st.round.lleyton.hewitt.vs.cedrik-marcel.stebe.720p.hdtv.x264-lmao.r01', + 'ordinal' => 210, + ), + 459 => + array ( + 'id' => 960, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\(\\(\\((Nimue|CowboyUp26-1208)\\)\\)\\)\\(\\(\\((?P.+)\\)\\)\\).+yEnc$/', + 'status' => 1, + 'description' => '//(((Nimue)))(((Hawaii.Five.0.S02E12.Der.Mann.im.Bunker.GERMAN.DUBBED.HDTVRiP.XviD-SOF))) usenet-space-cowboys.info (((Powered by https://secretusenet.com)( #34;hawaii.five.0.s02e12.avi#34; )( 02/11 (762,35 MB) )( 349,83 MB ) yEnc', + 'ordinal' => 215, + ), + 460 => + array ( + 'id' => 961, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^__www\\.realmom\\.info__ - (?P.+)\\.(rar$|rar yEnc$)/', + 'status' => 1, + 'description' => '//__www.realmom.info__ - 56 Downloader (XMLBar) - DOWNLOAD EVERY VIDEO!.rar', + 'ordinal' => 220, + ), + 461 => + array ( + 'id' => 962, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\((?P.+)\\)\\[\\d+\\/\\d+\\] - ("|#34;).+("|#34;) yEnc$/', + 'status' => 1, + 'description' => '//(My.Name.Is.Earl.S03.DVDRip.XviD-ORPHEUS-NODLABS.PARS)[000/197] - "My.Name.Is.Earl.S03.DVDRip.XviD-ORPHEUS-NODLABS.PARS.nzb" yEnc', + 'ordinal' => 225, + ), + 462 => + array ( + 'id' => 963, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^(?P[a-zA-Z].+) - ("|#34;).+("|#34;) \\d+[,.]\\d+ [mMkKgG][bB]ytes yEnc$/', + 'status' => 1, + 'description' => '//Curb.Your.Enthusiasm.S08.DVDRiP.XviD.COMPLETE.REPACK-CLuE - "sample-curb.your.enthusiasm.s08.dvdrip.xvid.complete.repack-clue.avi.vol1+2.PAR2" 770.0 KBytes yEnc', + 'ordinal' => 230, + ), + 463 => + array ( + 'id' => 964, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^<<<(Thor(\\d+)?)>>><<<(?P.+)>>>usenet-space-cowboys.+<<< ("|#34;).+("|#34;).+> yEnc$/i', + 'status' => 1, + 'description' => '//<<>><<>>usenet-space-cowboys.info<<< "idtv-chuck_s04e20_720p-sample.mkv" >< 03/61 (2,39 GB) >< 21,89 MB > yEnc', + 'ordinal' => 235, + ), + 464 => + array ( + 'id' => 965, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/\\(Public\\).*"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//(Public) (FULL) (a.b.teevee@EFNet) [04/13] (????) [00/27] - "DC.Guy.in.a.Ceelo.Green.Hood..S01E07.720p.HDTV.X264-DIMENSION.nzb" yEnc', + 'ordinal' => 240, + ), + 465 => + array ( + 'id' => 966, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^>ghost-of-usenet\\.org<< ?(?P.+) ?>>www.+>[ _-]{0,3}("|#34;)?.+("|#34;)? ?yEnc$/i', + 'status' => 1, + 'description' => '//>ghost-of-usenet.org<< Suburgatory.S01E13.Sex.und.die.Vorstadt.GERMAN.DUBBED.DL.720p.WebHD.x264-TVP >>www.SSL-News.info> - "tvp-suburgatory-s01e13-720p.nfo" yEnc', + 'ordinal' => 245, + ), + 466 => + array ( + 'id' => 967, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^(?P.+?) NoAds \\[\\d+\\/\\d+\\][-_\\s]{0,3}("|#34;).+?("|#34;) yEnc$/', + 'status' => 1, + 'description' => '//Touch.S02E09.PROPER.1080p.WEB-DL.DD5.1.H.264-LFF NoAds [01/30] - "Touch.S02E09.PROPER.1080p.WEB-DL.DD5.1.H.264-LFF.nfo" yEnc', + 'ordinal' => 250, + ), + 467 => + array ( + 'id' => 968, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^<<<(?PThor(\\d+)?)>>><<<(.+)>>>.+<<<.+>< ("|#34;).+("|#34;).+/', + 'status' => 1, + 'description' => '//<<>><<>>usenet-space-cowboys.info<<< "sof-ncis.los.angeles.s03e02.die.cyberattacke.(2010).hdtvdubbed.nfo" >< 02/28 (419,00 MB) >< 4,18', + 'ordinal' => 255, + ), + 468 => + array ( + 'id' => 969, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^AS REQ: "(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//AS REQ: "Game.of.Thrones.Season.3.480p.HDTV.H264.part52.rar" yEnc', + 'ordinal' => 260, + ), + 469 => + array ( + 'id' => 970, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^<<<(Hustensaft\\d+|Nimue|CowboyUp\\d+(-\\d+)?)>>><<<(?P.+)>>>.+<< 1, + 'description' => '//<<>><<>> usenet-space-cowboys.info <<< "nge-dgdf-e05-xvid.r04" >< 07/39 (1,51 GB) >< 47,68 MB > yEnc ::: //<<>><<>>usenet-space-cowboys.info<<< "zzgtv-spartacus-s02e09.r00" >< 04/43 (1,72 GB) >< 47,68 MB > yEnc ::: //<<>><<>> usenet-space-cowboys.info <<< "nge-dgdf-e05-xvid.r04" >< 07/39 (1,51 GB) >< 47,68 MB > yEnc ::: //<<>><<>>usenet-space-cowboys.info<<< "etm-csi_las_vegas_s10e21-1080p.r12.vol000+01.par2" >< 39/49 (3,86 GB) >< 3,32 MB > yEnc', + 'ordinal' => 265, + ), + 470 => + array ( + 'id' => 971, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\[ (?P[a-zA-Z].+) \\] - \\[\\d+\\/\\d+\\] - ".+" yEnc$/', + 'status' => 1, + 'description' => '//[ Ugly.Betty.S02E13.DVDRip.XviD-SAiNTS ] - [01/39] - "Ugly.Betty.S02E13.DVDRip.XviD-SAiNTS.par2" yEnc', + 'ordinal' => 270, + ), + 471 => + array ( + 'id' => 972, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\((?P[\\w.,& \\()\\[\\]\\\'\\`-]{8,}?)\\) \\[\\d+\\/\\d+\\][ _-]{0,3}("|#34;).+("|#34;) yEnc$/i', + 'status' => 1, + 'description' => '//(Wainy Days.S02E07.DVDRip.x264-PiNK) [01/10] - "Wainy Days.S02E07.DVDRip.x264-PiNK.par2" yEnc', + 'ordinal' => 275, + ), + 472 => + array ( + 'id' => 973, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\[.+\\][-_\\s]{0,3}\\[ (?P.+) \\][-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}("|#34;).+("|#34;) yEnc$/', + 'status' => 1, + 'description' => '//[Mercy.S01.720p.WEB-DL.DD5.1.h.264-LP-MMI]-[ Mercy.S01E18.Of Course I\'m Not.720p.WEB-DL.DD5.1.H.264-LP ]-[01/24] - "Mercy.S01E18.Of Course I\'m Not.720p.WEB-DL.DD5.1.H.264-LP.par2" yEnc', + 'ordinal' => 280, + ), + 473 => + array ( + 'id' => 974, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^(REPOST: )?\\[ (?P.+) \\] - \\[\\d+\\/\\d+\\] - ".+" yEnc$/', + 'status' => 1, + 'description' => '//REPOST: [ Th3.V@mpir3.Di@ri35.S05E02.HDTV.X264-DIMENSION ] - [31/33] - "Th3.V@mpir3.Di@ri35.S05E02.HDTV.X264-DIMENSION.vol050+051.par2" yEnc', + 'ordinal' => 285, + ), + 474 => + array ( + 'id' => 975, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\[#a\\.b\\.teevee\\] (?P.+) - \\[\\d+\\/\\d+\\] - ".+" yEnc$/', + 'status' => 1, + 'description' => '//[#a.b.teevee] Covert.Affairs.S04E11.720p.WEB-DL.DD5.1.H.264-XEON - [11/40] - "Covert.Affairs.S04E11.720p.WEB-DL.DD5.1.H.264-XEON.part09.rar" yEnc', + 'ordinal' => 290, + ), + 475 => + array ( + 'id' => 976, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^(?P.+ )Confessions.+\\[\\d+ of \\d+\\] ".+\\((?P(1080|720).+[HS]D)\\).+" yEnc$/', + 'status' => 1, + 'description' => '//Breaking Bad S6E03 Confessions enjoy! [7 of 46] "03 Confessions (1080p HD).mov.007" yEnc', + 'ordinal' => 295, + ), + 476 => + array ( + 'id' => 977, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\[\\d+\\/\\d+\\] (?P.+) - ".+" yEnc$/', + 'status' => 1, + 'description' => '//[51/62] Morrissey.25.Live.Concert.2013.BDRip.x264-N0TSC3N3 - "n0tsc3n3-morrissey.25.live.2013.bdrip.x264.rar" yEnc', + 'ordinal' => 300, + ), + 477 => + array ( + 'id' => 978, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\(\\d+\\/\\d+\\)[ -]+Description[ -]+"(?P.+)\\.part\\d+\\.rar"[ -]+\\d+[.,]\\d+ [kKmMgG][bB][ -]+yEnc$/', + 'status' => 1, + 'description' => '//(01/19) - Description - "How I Met Your Mother S05E24 - Doppelgangers.part01.rar" - 175,05 MB - yEnc', + 'ordinal' => 305, + ), + 478 => + array ( + 'id' => 979, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\(\\d+\\/\\d+\\) -(?P.+) - ".+" - \\d+[.,]\\d+ [MGK]B - yEnc$/', + 'status' => 1, + 'description' => '//(23/23) -The.Mindy.Project.S02E09.720p.WEB-DL.DD5.1.H.264 - "The.Mindy.Project.S02E09.720p.WEB-DL.DD5.1.H.264.vol31+29.PAR2" - 768.86 MB - yEnc', + 'ordinal' => 310, + ), + 479 => + array ( + 'id' => 980, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^(?P.+[Ss]\\d+.+) - \\[\\d+\\/\\d+\\] - ".+" yEnc$/', + 'status' => 1, + 'description' => '//The Mindy Project s02e06 720p WEB-DL - [02/24] - "The Mindy Project S02E06 720p WEB-DL.part01.rar" yEnc', + 'ordinal' => 315, + ), + 480 => + array ( + 'id' => 981, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\[ ?(?P.+(S\\d+|READ\\.NFO).+) ?\\] \\[\\d+\\/\\d+\\] - ".+" yEnc$/', + 'status' => 1, + 'description' => '//[ Breaking.Bad.S05E16.BDRip.x264-DEMAND ] [30/30] - "breaking.bad.s05e16.bdrip.x264-demand.vol42+37.PAR2" yEnc', + 'ordinal' => 320, + ), + 481 => + array ( + 'id' => 982, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\[\\d+\\/\\d+\\] - "(?P.+S\\d+.+)\\.par.+" yEnc$/', + 'status' => 1, + 'description' => '//[32/44] - "Scandal.S03E07.Everything\'s.Coming.Up.Mellie.1080p.WEB-DL.DD5.1.H.264-ECI.part31.rar" yEnc', + 'ordinal' => 325, + ), + 482 => + array ( + 'id' => 983, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^< (?P.+) >- \\[\\d+\\/\\d+\\] - ".+" yEnc$/', + 'status' => 1, + 'description' => '//< Welcome.to.the.Jungle.German.2003.DVD9.AC3.DL.1080p.BluRay.x264-MOViESTARS >- [93/95] - "moviestars-wttj.1080p.vol15+16.par2" yEnc', + 'ordinal' => 330, + ), + 483 => + array ( + 'id' => 984, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/[Ss]\\d+[Ee]\\d+.+\\[\\d+ of \\d+\\] "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Sam & Cat S01E06 BabysitterWar [1 of 9] "Sam & Cat - S01E06 - BabysitterWar-ORIG.mp4" yEnc', + 'ordinal' => 335, + ), + 484 => + array ( + 'id' => 985, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/[Ss]\\d+[Ee]\\d+.+- "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Sam & Cat - S01E10 - BabysittingCommercial - "Sam & Cat - S01E10 - BabysittingCommercial.m4v" yEnc', + 'ordinal' => 340, + ), + 485 => + array ( + 'id' => 986, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[12/22] - "stargate_sg-1.6x12.unnatural_selection.ws_dvdrip_xvid-fov.avi" yEnc', + 'ordinal' => 345, + ), + 486 => + array ( + 'id' => 987, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^For teevee - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") \\[\\d+\\/\\d+\\][ _-]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//For teevee - "Silent.Witness.S17E05.480p.HDTV.x264-mSD.mkv.sfv" [01/23] yEnc', + 'ordinal' => 350, + ), + 487 => + array ( + 'id' => 988, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//"Mad.Men.S06E11.HDTV.x264-2HD.par2" yEnc', + 'ordinal' => 355, + ), + 488 => + array ( + 'id' => 989, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\[\\d+\\/(\\d+\\])[ _-]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//"Marvels.Agents.of.S.H.I.E.L.D.S01E07.HDTV.XviD-FUM.avi.nfo" [09/16] yEnc', + 'ordinal' => 360, + ), + 489 => + array ( + 'id' => 990, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^(?P.+(1080|720).+)\\..+\\[\\d+\\/\\d+\\]".+" yEnc$/', + 'status' => 1, + 'description' => '//Public Enemies (2009).720p.x264.English Subtitles.Dolby Digital 5.1.mkv [04/55]"Public Enemies sample.mkv" yEnc', + 'ordinal' => 365, + ), + 490 => + array ( + 'id' => 991, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^.+EnJoY\\!.+\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//-=->EnJoY!<-=- (Day1/5) [01/17] - "The Machine that Changed the World S01E01 - Giant Brains - 1992 (480p,x264).nfo" yEnc ::: //-=>EnJoY!<-=->Req:The Animated Alias:Tribunal (2004)<=- [01/17] - "Da Vinci\'s Demons - S01E07 - The Hierophant (480p,x264).nfo" yEnc', + 'ordinal' => 370, + ), + 491 => + array ( + 'id' => 992, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^[\\w. -]+\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//The.Colbert.Report.2013.07.29.The.Lumineers.WEBRip.AAC2.0.H.264-DCK [01/11] - "The.Colbert.Report.2013.07.29.The.Lumineers.WEBRip.AAC2.0.H.264-DCK.mp4" yEnc', + 'ordinal' => 375, + ), + 492 => + array ( + 'id' => 993, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^[\\w. -]+[-_ ]{0,4}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//the.lockerbie.bombing.720p.HDTV.x264-fatboy - "the.lockerbie.bombing.720p.HDTV.x264-fatboy.nfo" - 829.12 MB - yEnc', + 'ordinal' => 380, + ), + 493 => + array ( + 'id' => 994, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^[\\w. -]+[-_ ]{0,4}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//The.Vampire.Diaries.S05E13.HDTV.X264"The.Vampire.Diaries.S05E13.HDTV.X264.vol40+36.PAR2" yEnc', + 'ordinal' => 385, + ), + 494 => + array ( + 'id' => 995, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\[[\\w.-]+\\][-_\\s]{0,3}.+[-_\\s]{0,3}\\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[Doomsday.Preppers.S03E11.720p.HDTV.x264-TTVa] - NOT ORIGINAL RARS, REPACKED. Sorry. - (18/35) "Doomsday.Preppers.S03E11.720p.HDTV.x264-TTVa.r16" - 1.31 GB - yEnc', + 'ordinal' => 390, + ), + 495 => + array ( + 'id' => 996, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\[[\\w. -]+\\][-_\\s]{0,3}.+[-_\\s]{0,3}[\\[\\(]\\d+\\/\\d+[\\]\\)][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[CONAN] Conan.2013.12.12.Adam.Levine.WEBRiP.x264-CoCo [Missed Conan Episodes] - [22/32] - "conan.2013.12.12.adam.levine.webrip.x264-coco.r18" yEnc', + 'ordinal' => 395, + ), + 496 => + array ( + 'id' => 997, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^[\\w -]+[-_\\s]{0,3}[\\[\\(]\\d+ of \\d+[\\]\\)][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Dave Gorman Modern L', + 'ordinal' => 400, + ), + 497 => + array ( + 'id' => 998, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^[\\[\\(]\\d+\\/\\d+[\\]\\)][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(1/9) "Tronens_Spil_S03E08.par2" yEnc', + 'ordinal' => 405, + ), + 498 => + array ( + 'id' => 999, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\d+\\/\\d+[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//07/14 "Sister.Wives.S06E06.STV.XviD-kralcx.vol000+01.PAR2" yEnc', + 'ordinal' => 410, + ), + 499 => + array ( + 'id' => 1000, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\d+\\/\\d+[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//07/14 "Sister.Wives.S06E06.STV.XviD-kralcx.vol000+01.PAR2" yEnc', + 'ordinal' => 415, + ), + )); + \DB::table('release_naming_regexes')->insert(array ( + 0 => + array ( + 'id' => 1001, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^\\[ \\d+[.,]\\d+ [kKmMgG][bB] \\][-_\\s]{0,3}\\[ \\d+\\/\\d+ \\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[ 749,75 MB ]-[ 01/20 ]-"choir.of.young.believers-this.is.for.the.white.in.your.eyes.live.2009.pdtv.x264.nfo" yEnc', + 'ordinal' => 420, + ), + 1 => + array ( + 'id' => 1002, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^ (?P[\\w. \\()-]{8,}?\\b)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '// Hannibal.S01E04.mp4 yEnc', + 'ordinal' => 425, + ), + 2 => + array ( + 'id' => 1003, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^A5F[-_\\s]{0,3}\\[ (?P[\\w. \\()-]{8,}?\\b) \\][-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/', + 'status' => 1, + 'description' => '//A5F - [ NOVA.S40E19.Manhunt.Boston.Bombers.HDTV.x264-A5F ] - [01/43] - "NOVA.S40E19.Manhunt.Boston.Bombers.HDTV.x264-A5F.sfv" (not.teevee) yEnc', + 'ordinal' => 430, + ), + 3 => + array ( + 'id' => 1004, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^[\\w. \\()-]{8,}?\\b\\(\\d+\\/\\d+\\)[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Arrested.Development.S04E08.x264(04/164) "Arrested.Development.S04E08.WEBRiP.x264.part03.rar" - 197.21 MB - yEnc', + 'ordinal' => 435, + ), + 4 => + array ( + 'id' => 1005, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '/^(?P[a-zA-Z0-9 ]+) \\(\\d+\\/\\d+\\) - ?".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Divers (12/42) -"Juste.Pour.Rire.2013.Gala.JF.Mercier.FRENCH.720p.HDTV.x264-QuebecRules.part11.rar" yEnc ::: //Par le chapeau (06/43) - "8C7D59F472E03.part04.rar" yEnc', + 'ordinal' => 440, + ), + 5 => + array ( + 'id' => 1006, + 'group_regex' => '^alt\\.binaries\\.test$', + 'regex' => '/^brothers-of-usenet.net\\)\\((?P.+)\\)\\)\\(\\d+\\/\\d+\\) ("|#34;).+("|#34;).+yEnc$/', + 'status' => 1, + 'description' => '//brothers-of-usenet.net)(Sons.of.Anarchy.S03E03.Fuersorge.GERMAN.DUBBED.720p.BLURAY.x264-ZZGtv))(07/31) #34;zzgtv-soa-s03e03.part05.rar#34; - 2,02 GB - yEnc', + 'ordinal' => 5, + ), + 6 => + array ( + 'id' => 1007, + 'group_regex' => '^alt\\.binaries\\.test$', + 'regex' => '/^brothers-of-usenet.net\\((?P.+)\\)\\)\\(\\d+\\/\\d+\\) ("|#34;).+("|#34;).+yEnc$/', + 'status' => 1, + 'description' => '//brothers-of-usenet.net(Sons.of.Anarchy.S03E03.Fuersorge.GERMAN.DUBBED.720p.BLURAY.x264-ZZGtv))(07/31) #34;zzgtv-soa-s03e03.part05.rar#34; - 2,02 GB - yEnc ::: else', + 'ordinal' => 10, + ), + 7 => + array ( + 'id' => 1008, + 'group_regex' => '^alt\\.binaries\\.test$', + 'regex' => '/^brothers-of-usenet.net><(?P.+)>>\\(\\d+\\/\\d+\\) ("|#34;).+("|#34;).+yEnc$/', + 'status' => 1, + 'description' => '//brothers-of-usenet.net>>(01/31) "zzgtv-soa-s03e02.nfo" - 1,98 GB - yEnc ::: else', + 'ordinal' => 15, + ), + 8 => + array ( + 'id' => 1009, + 'group_regex' => '^alt\\.binaries\\.town$', + 'regex' => '/^[\\[(?P]\\d+\\/\\d+[\\])] - "([A-Z0-9].{2,}?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB]( -)? yEnc$/', + 'status' => 1, + 'description' => '//[01/29] - "Bellflower.2011.German.AC3.BDRip.XviD-EPHEMERiD.par2" - 1,01 GB yEnc ::: //(3/9) - "Microsoft Frontpage 2003 - 4 Town-Up from Kraenk.rar.par2" - 181,98 MB - yEnc', + 'ordinal' => 5, + ), + 9 => + array ( + 'id' => 1010, + 'group_regex' => '^alt\\.binaries\\.town$', + 'regex' => '/^"(?P.+)__www.realmom.info__.+" \\(\\d+\\/(\\d+\\)) \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/', + 'status' => 1, + 'description' => '//"Armored_Core_V_PS3-ANTiDOTE__www.realmom.info__.r00" (03/78) 3,32 GB yEnc', + 'ordinal' => 10, + ), + 10 => + array ( + 'id' => 1011, + 'group_regex' => '^alt\\.binaries\\.town\\.cine$', + 'regex' => '/^[\\[(?P]\\d+\\/\\d+[\\])] - "([A-Z0-9].{2,}?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB]( -)? yEnc$/', + 'status' => 1, + 'description' => '//[01/29] - "Bellflower.2011.German.AC3.BDRip.XviD-EPHEMERiD.par2" - 1,01 GB yEnc ::: //(3/9) - "Microsoft Frontpage 2003 - 4 Town-Up from Kraenk.rar.par2" - 181,98 MB - yEnc', + 'ordinal' => 5, + ), + 11 => + array ( + 'id' => 1012, + 'group_regex' => '^alt\\.binaries\\.town\\.xxx$', + 'regex' => '/^[\\[(?P]\\d+\\/\\d+[\\])] - "([A-Z0-9].{2,}?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB]( -)? yEnc$/', + 'status' => 1, + 'description' => '//[01/29] - "Bellflower.2011.German.AC3.BDRip.XviD-EPHEMERiD.par2" - 1,01 GB yEnc ::: //(3/9) - "Microsoft Frontpage 2003 - 4 Town-Up from Kraenk.rar.par2" - 181,98 MB - yEnc', + 'ordinal' => 5, + ), + 12 => + array ( + 'id' => 1013, + 'group_regex' => '^alt\\.binaries\\.tun$', + 'regex' => '/^\\[ nEwZ\\[NZB\\]\\.iNFO - \\[ (?P[a-z0-9A-Z]{3,}=) \\] - File \\[\\d+\\/\\d+\\]: ".+?" yEnc$/', + 'status' => 0, + 'description' => '// Leaving here to show that you can get the names from these. ::: // Useless since all these are passworded and', + 'ordinal' => 5, + ), + 13 => + array ( + 'id' => 1014, + 'group_regex' => '^alt\\.binaries\\.tun$', + 'regex' => '/^\\[PRiVATE\\] (?P[a-z0-9A-Z]{4,}=*) \\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 0, + 'description' => '//[PRiVATE] VHdpc3R5cy5jb21fMTMuMDguMDkuQWlkZW4uQXNobGV5LkVsbGUuQWxleGFuZHJhLldoYXQuWW91ci5GdXR1cmUuSG9sZHMuWFhYLklNQUdFU0VULUZ1R0xp [06/10] - "89857cebff1efd7927ebddf30281b0e4.part2.rar" yEnc', + 'ordinal' => 10, + ), + 14 => + array ( + 'id' => 1015, + 'group_regex' => '^alt\\.binaries\\.tv$', + 'regex' => '/^#?.+req (\\d+|x+)[ -]{1,}(?P.+)\\s*- ?\\[?\\d+\\/\\d+\\]?[ -]{1,3}"?.+"? yEnc$/i', + 'status' => 1, + 'description' => '//#a.b.mm@efnet - req 86820 - World.Series.of.Poker.2009.E05.Celebrity.No-Limit.Holdem.Part.1.of.2.HDTV.XviD-FQM - [26/28] - "world.series.of.poker.2009.e05.hdtv.xvid-fqm.vol07+08.par2" yEnc ::: //#a.b.mm@efnet - req 60243 - Dawn.Porter.Mail.Order.Bride.PROPER.WS.PDTV.XviD-NOsegmenT - [01/28] - dawn.porter.mail.order.bride.proper.ws.pdtv.xvid-nosegment.nfo yEnc ::: //a.b.mm@EFNet - Req 58360 - Seinfeld.7x02.The_Postponement.DVDRip_XviD-FoV - [01/21] "seinfeld.7x02.the_postponement.dvdrip_xvid-fov.nfo" yEnc ::: //#a.b.mm@efnet - req xxxxx - Spin.City.S02E04.PROPER.DVDRiP.XViD-NODLABS - [07/28] - "spin.city.s02e04.proper.dvdrip.xvid.subs-nodlabs.vol0+1.par2" yEnc ::: //#a.b.mm@EFNeT - REQ 58160 - How.I.Met.Your.Mother.S03E19.DVDRip.XviD-ORPHEUS - 00/26 - how.i.met.your.mother.s03e19.dvdrip.xvid-orpheus.nzb yEnc ::: //#a.b.mm@EFNeT - REQ 81686 - Burn.Notice.S02E01.720p.HDTV.X264-2HD- 00/42 - Burn.Notice.S02E01.720p.HDTV.X264-2HD.nzb yEnc', + 'ordinal' => 5, + ), + 15 => + array ( + 'id' => 1016, + 'group_regex' => '^alt\\.binaries\\.tv$', + 'regex' => '/^www\\.Bin-Req\\.net Presents: #\\d+[ -]{1,3}(?P.+) - \\[\\d+\\/\\d+\\].+\\(\\d+\\/\\d+\\) yEnc$/', + 'status' => 1, + 'description' => '//www.Bin-Req.net Presents: #57629 - Man.vs.Wild.S05E03.Bears.Essentials.HDTV.XviD-GNARLY - [01/37] - man.vs.wild.s05e03.bears.essentials.hdtv.xvid-gnarly.sample.avi (1/27) yEnc', + 'ordinal' => 10, + ), + 16 => + array ( + 'id' => 1017, + 'group_regex' => '^alt\\.binaries\\.tv$', + 'regex' => '/^\\((?P[a-zA-Z].+)\\) \\(\\d+\\/\\d+\\) - ".+" yEnc$/', + 'status' => 1, + 'description' => '//(The.Legend.Of.Korra.S01E08.When.Extremes.Meet.720p.HDTV.h264) (00/41) - "The.Legend.Of.Korra.S01E08.When.Extremes.Meet.720p.HDTV.h264.nzb" yEnc', + 'ordinal' => 15, + ), + 17 => + array ( + 'id' => 1018, + 'group_regex' => '^alt\\.binaries\\.tv$', + 'regex' => '/^(?P[A-Za-z0-9][a-zA-Z0-9.-]{6,})\\s+- ".+" yEnc$/', + 'status' => 1, + 'description' => '//NCIS.S11E08.HDTV.x264-LOL - "NCIS.S11E08.HDTV.x264-LOL.part.par2" yEnc', + 'ordinal' => 20, + ), + 18 => + array ( + 'id' => 1019, + 'group_regex' => '^alt\\.binaries\\.tv$', + 'regex' => '/^>ghost-of-usenet\\.org< ?(?P.+)>Sponsored.+< ?\\(\\d+\\/\\d+\\)[ _-]{0,3}("|#34;)?.+("|#34;)?[ _-]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//>ghost-of-usenet.org<24.S07E01.German.SATRip.XviD-ITG>Sponsored by Astinews< (02/27) "itg-24-s07e01.nfo" yEnc', + 'ordinal' => 25, + ), + 19 => + array ( + 'id' => 1020, + 'group_regex' => '^alt\\.binaries\\.tv$', + 'regex' => '/^(?P[\\w.\\\' -]{8,}) [\\[\\(]\\d+\\/\\d+[\\]\\)] - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")([-_\\s]{0,3}[\\w.-]+)?[ _-]{0,3}yEncs$/', + 'status' => 1, + 'description' => '//World\'s.Strongest.Man.2013.Episode1.Webrip [01/46] - "2013x01.nfo" yEnc', + 'ordinal' => 30, + ), + 20 => + array ( + 'id' => 1021, + 'group_regex' => '^alt\\.binaries\\.tv$', + 'regex' => '/^Handyman Shows-(?P.+) - File \\d+ of \\d+ - yEnc$/', + 'status' => 1, + 'description' => '//Handyman Shows-TOH-S32E10 - File 01 of 32 - yEnc', + 'ordinal' => 35, + ), + 21 => + array ( + 'id' => 1022, + 'group_regex' => '^alt\\.binaries\\.tv$', + 'regex' => '/^Handyman Shows.+"(?P.+)\\.(par2|nfo|avi|nzb)" yEnc$/', + 'status' => 1, + 'description' => '///^Handyman Shows.+"(.+).(par2|nfo|avi|nzb)" yEnc$/', + 'ordinal' => 40, + ), + 22 => + array ( + 'id' => 1023, + 'group_regex' => '^alt\\.binaries\\.tv$', + 'regex' => '/^(?P(Kung Fu|Kids In The Hall) S\\d+\\E\\d+.+)\\.(par2|avi)\\s+yEnc$/', + 'status' => 1, + 'description' => '//Kung Fu S02E15 A Dream WIthin a Dream.par2 yEnc ::: //Kids In The Hall S01E15.par2 yEnc', + 'ordinal' => 45, + ), + 23 => + array ( + 'id' => 1024, + 'group_regex' => '^alt\\.binaries\\.tv$', + 'regex' => '/^(?P[a-zA-Z][\\w\\d\\.-]+) - \\[?\\d+\\/\\d+\\]? - "?.+\\.?(par2|nzb|nfo|avi)?"? yEnc$/', + 'status' => 1, + 'description' => '//Project.Runway.Canada.S02E05.HDTV.DivX-JWo - 00/33 - project.runway.canada.205.nzb yEnc ::: //Yu-Gi-Oh.S03.DVDRip.AAC2.0.x264-DarkDream - [000/306] - "Yu-Gi-Oh.S03.DVDRip.AAC2.0.x264-DarkDream" yEnc', + 'ordinal' => 50, + ), + 24 => + array ( + 'id' => 1025, + 'group_regex' => '^alt\\.binaries\\.tv$', + 'regex' => '/^(?P[a-zA-Z0-9.-]+) \\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Borgen.2x02.A.Bruxelles.Non.Ti.Sentono.Urlare.ITA.BDMux.x264-NovaRip [02/22] - "borgen.2x02.ita.bdmux.x264-novarip.par2" yEnc', + 'ordinal' => 55, + ), + 25 => + array ( + 'id' => 1026, + 'group_regex' => '^alt\\.binaries\\.tv$', + 'regex' => '/^[\\[\\(]\\w+[\\]\\)][-_\\s]{0,3}\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(bf1) [03/31] - "The.Block.AU.Sky.High.S07E56.WS.PDTV.XviD.BF1.part01.sfv" yEnc ::: //[REPOST] - [01/33] - "Breaking.Bad.S05E16.Felina.1080p.WEB-DL.DD5.1.H.264-BS.par2" yEnc', + 'ordinal' => 60, + ), + 26 => + array ( + 'id' => 1027, + 'group_regex' => '^alt\\.binaries\\.tv$', + 'regex' => '/^\\(\\?+\\)[-_\\s]{0,3}[\\(\\[]\\d+\\/\\d+[\\]\\)][-_\\s]{0,3}"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})Carrie.+"[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//(????) [01/11] - "The Carrie Diaries - S02E01 - HDTV x264-LOL.sfvCarrieDiariesS02E01" yEnc', + 'ordinal' => 65, + ), + 27 => + array ( + 'id' => 1028, + 'group_regex' => '^alt\\.binaries\\.tv$', + 'regex' => '/^\\([\\w. ]+\\)[-_\\s]{0,3}(?P[\\w+. -]{8,})(\\[\\w+\\])?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//(noname 0307) NCIS.S11E14.HDTV.x264-LOL[rarbg].vol047+40.PAR2 yEnc', + 'ordinal' => 70, + ), + 28 => + array ( + 'id' => 1029, + 'group_regex' => '^alt\\.binaries\\.tv$', + 'regex' => '/^\\[\\d+\\/\\d+\\][-_\\s]{0,3}(?P[\\w.\\() -]{8,}?\\b)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//[014/144] - The Bible (2013) - S1E01 - In the Beginning AVC 480p.vol31+27.PAR2 yEnc', + 'ordinal' => 75, + ), + 29 => + array ( + 'id' => 1030, + 'group_regex' => '^alt\\.binaries\\.tv$', + 'regex' => '/^Saturday Morning Classic (?P[\\w.\\()-]{8,}?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//Saturday Morning Classic Return-to-the-Planet-of-the-Apes-S01E03 - Lagoon of Peril.avi.001 yEnc', + 'ordinal' => 80, + ), + 30 => + array ( + 'id' => 1031, + 'group_regex' => '^alt\\.binaries\\.tv$', + 'regex' => '/^"[\\w ]+" yEnc[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//"NCIS S11E21" yEnc - [01/21] - "NCIS.S11E21.hdtv-lol.par2" yEnc', + 'ordinal' => 85, + ), + 31 => + array ( + 'id' => 1032, + 'group_regex' => '^alt\\.binaries\\.tv$', + 'regex' => '/^(\\[\\d+\\]-)?\\[ ?(?P[a-zA-Z0-9.-]{6,}) ?\\](-\\[REAL\\])? ?- ?\\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//[ Best.Friends.Forever.S01E06.720p.WEB-DL.DD5.1.H.264-HWD ]-[01/25] - "Best.Friends.Forever.S01E06.720p.WEB-DL.DD5.1.H.264-HWD.nfo" yEnc', + 'ordinal' => 90, + ), + 32 => + array ( + 'id' => 1033, + 'group_regex' => '^alt\\.binaries\\.tv$', + 'regex' => '/^"(?P[\\w. -]{8,})"[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//"Arrow S02E07" yEnc', + 'ordinal' => 95, + ), + 33 => + array ( + 'id' => 1034, + 'group_regex' => '^alt\\.binaries\\.tvseries$', + 'regex' => '/^(?P.+\\d+x\\d+.+)\\s*\\[\\d+\\/\\d+\\][ -]*".+" yEnc$/', + 'status' => 1, + 'description' => '//Mr.Sunshine.1x10.Ben.E.Vivian.ITA.DVDMux.XviD-NovaRip [01/14] - "mr.sunshine.1x10.ita.dvdmux.xvid-novarip.nfo" yEnc', + 'ordinal' => 5, + ), + 34 => + array ( + 'id' => 1035, + 'group_regex' => '^alt\\.binaries\\.tvseries$', + 'regex' => '/^(?P.+S\\d+E\\d+.+)[ -]+\\[\\d+\\/\\d+\\] - ".+" yEnc$/', + 'status' => 1, + 'description' => '//Ancient.Aliens.S06E03.The.Anunnaki.Connection.HDTV.x264-SOL - [13/28] - "Ancient.Aliens.S06E03.The.Anunnaki.Connection.HDTV.x264-SOL.r10" yEnc', + 'ordinal' => 10, + ), + 35 => + array ( + 'id' => 1036, + 'group_regex' => '^alt\\.binaries\\.tvseries$', + 'regex' => '/^(?P[\\w\\s]+)\\[\\d+\\/\\d+\\] - ".+" [\\w\\s]+ yEnc$/', + 'status' => 1, + 'description' => '//Moonlight Post Voor Dutch Release Crew [077/110] - "HLVRSM87654_S2D4.part76.rar" Wij Zoeken Nog Stafleden Meld Je Bij De Staf yEnc yEnc', + 'ordinal' => 15, + ), + 36 => + array ( + 'id' => 1037, + 'group_regex' => '^alt\\.binaries\\.tvseries$', + 'regex' => '/\\[QWERTY\\] "(?P.+)\\.(mp4|mkv|ts)"( - \\d+[.,]\\d+ GB)?[ -]+yEnc$/', + 'status' => 1, + 'description' => '//[QWERTY] "The.Real.Housewives.of.Atlanta.S06E02.HDTV.x264-CRiMSON.mp4" yEnc ::: //[QWERTY] "Air.Crash.Investigation.S10E06.HDTV.x264-TViLLAGE.mp4" - 6.76 GB - yEnc', + 'ordinal' => 20, + ), + 37 => + array ( + 'id' => 1038, + 'group_regex' => '^alt\\.binaries\\.tvseries$', + 'regex' => '/\\(\\d+\\/\\d+\\)[ -]*"(BBC )?(?P.+)\\.(mp4|mkv|ts|nfo|par|par2)".+[GKM]B - yEnc$/', + 'status' => 1, + 'description' => '//(01/32) - "Adam.Devines.House.Party.S01E04.HDTV.x264-YesTV.mp4" - 9.98 GB - yEnc ::: //(01/24) "BBC Dr Who An Unearthly Child S01E04 The Firemaker 1963.nfo" - 3.86 kB - 329.37 MB - yEnc', + 'ordinal' => 25, + ), + 38 => + array ( + 'id' => 1039, + 'group_regex' => '^alt\\.binaries\\.tvseries$', + 'regex' => '/^(?P[a-zA-Z0-9 -_\\.]+) \\(\\d+\\/\\d+\\) - Description - "(.+)".+yEnc$/', + 'status' => 1, + 'description' => '//Touched.By.An.Angel.S09 (001/179) - Description - "Season 9.par2" - 8.10 GB - yEnc', + 'ordinal' => 30, + ), + 39 => + array ( + 'id' => 1040, + 'group_regex' => '^alt\\.binaries\\.tvseries$', + 'regex' => '/^\\(\\d+\\/\\d+\\) - (?P.+) - "(.+)".+yEnc$/', + 'status' => 1, + 'description' => '//(01/31) - Balika.Vadhu.s01e1379.2013.09.07.720p.web-dl.x264 - "Balika.Vadhu.s01e1379.2013.09.07.720p.web-dl.x264.nfo" - 340.72 MB - yEnc', + 'ordinal' => 35, + ), + 40 => + array ( + 'id' => 1041, + 'group_regex' => '^alt\\.binaries\\.tvseries$', + 'regex' => '/\\Israeli.+\\[\\d+\\/\\d+\\] - "(?P.+)\\.(mp4|mkv|ts|vol.+|)" yEnc$/', + 'status' => 1, + 'description' => '//Israeli AutoRarPar0002 [54/55] - "Hameofefim.Hanoazim.E02.PDTV.XviD-Sweet-Star.vol063+64.par2" yEnc', + 'ordinal' => 40, + ), + 41 => + array ( + 'id' => 1042, + 'group_regex' => '^alt\\.binaries\\.tvseries$', + 'regex' => '/\\Israeli.+\\[\\d+\\/\\d+\\] - "(?P.+)\\.(mp4|mkv|ts|par.+)" yEnc$/', + 'status' => 1, + 'description' => '//Israeli AutoRarPar0021 [07/44] - "Hameofefim.Hanoazim.E23.PDTV.XviD-Sweet-Star.part06.rar" yEnc', + 'ordinal' => 45, + ), + 42 => + array ( + 'id' => 1043, + 'group_regex' => '^alt\\.binaries\\.tvseries$', + 'regex' => '/AutoRarPar\\d+\\s+\\[\\d+\\/\\d+\\] - "(?P.+S\\d+\\s*E\\d+.+)\\.[vol|part].+" yEnc$/', + 'status' => 1, + 'description' => '//AutoRarPar0005 [44/45] - "Prisoners of War (Hatufim) S01 E05 - Xvid - Hardcoded Subs - Sno.vol063+64.par2" yEnc', + 'ordinal' => 50, + ), + 43 => + array ( + 'id' => 1044, + 'group_regex' => '^alt\\.binaries\\.tvseries$', + 'regex' => '/\\[ .+S\\d+.+ \\] \\w+\\.\\w+ \\(\\d+\\/\\d+\\) - "(?P.+)\\.(mp4|mkv|ts|rar)" yEnc$/', + 'status' => 1, + 'description' => '//[ Skins UK - S02 - Season 2 DVDRip ] AVI.XviD (06/20) - "Skins.UK.S02E04.DVDRip.XviD-Affinity.rar" yEnc', + 'ordinal' => 55, + ), + 44 => + array ( + 'id' => 1045, + 'group_regex' => '^alt\\.binaries\\.tvseries$', + 'regex' => '/^\\[ .+[sS]\\d+ \\[ \\w+ \\] - \\[ \\w+ \\] - \\[ \\w+ \\d+ \\] - \\[ "(?P.+[sS]\\d+[eE]\\d+).+".+yEnc$/', + 'status' => 1, + 'description' => '//[ gtvg-mm.xvid.s03 [ PWP ] - [ TV ] - [ DBS 0883 ] - [ "gtvg-mm.xvid.s03e11.r09" ] 7,32 GB yEnc', + 'ordinal' => 60, + ), + 45 => + array ( + 'id' => 1046, + 'group_regex' => '^alt\\.binaries\\.tvseries$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")( - \\d+([.,]\\d+ [kKmMgG])?[bB])? - \\d+([.,]\\d+ [kKmMgG])?[bB] - yEnc$/', + 'status' => 1, + 'description' => '//"Forbrydelsen.II.S01E03.2009.DVDRip.MULTi.DD5.1.x264.nzb" - 213.54 kB - yEnc ::: //"Futurama S07E01 The Bots And The Bees.vol26+23.PAR2" - 8.49 MB - 193.51 MB - yEnc', + 'ordinal' => 65, + ), + 46 => + array ( + 'id' => 1047, + 'group_regex' => '^alt\\.binaries\\.tvseries$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\[\\d+\\/(\\d+\\]) - yEnc$/', + 'status' => 1, + 'description' => '//"Rijdende.Rechter.-.19x01.-.Huisbiggen.1080p.MKV-BNABOYZ.part38.rar" - [40/56] - yEnc', + 'ordinal' => 70, + ), + 47 => + array ( + 'id' => 1048, + 'group_regex' => '^alt\\.binaries\\.tvseries$', + 'regex' => '/^\\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB] - yEnc$/', + 'status' => 1, + 'description' => '//(003/104) "blackcave1001.part002.rar" - 4,83 GB - yEnc', + 'ordinal' => 75, + ), + 48 => + array ( + 'id' => 1049, + 'group_regex' => '^alt\\.binaries\\.tvseries$', + 'regex' => '/^(?P[a-zA-Z0-9 -_\\.]+) \\(\\d+(\\/\\d+\\)) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//Chuck - Season2 (015/164) - "2x04.par2" yEnc', + 'ordinal' => 80, + ), + 49 => + array ( + 'id' => 1050, + 'group_regex' => '^alt\\.binaries\\.tvseries$', + 'regex' => '/^[a-zA-Z0-9 -_\\.]+ \\[\\d+\\/(\\d+\\]) - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//X-Men Evolution - 2000 - [01/20] - "X-Men Evolution - 3x03 - Mainstream.par2" yEnc', + 'ordinal' => 85, + ), + 50 => + array ( + 'id' => 1051, + 'group_regex' => '^alt\\.binaries\\.tvseries$', + 'regex' => '/^(?P[a-zA-Z0-9 -_\\.]+) (RETRY)?[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") \\d+(\\/\\d+)( {0,2}yEnc)?$/', + 'status' => 1, + 'description' => '//\'X-Files\' Season 1 XviD RETRY "Files101.par2" 004/387 ::: //\'X-Files\' Season 5 XviD "Files502.par2" 018/321 yEnc ::: //\'X-Files\' Season 2 XviD "Files223.part2.rar" 356/401 yEnc', + 'ordinal' => 90, + ), + 51 => + array ( + 'id' => 1052, + 'group_regex' => '^alt\\.binaries\\.tvseries$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//"the.tudors.s03e03.nfo" yEnc', + 'ordinal' => 95, + ), + 52 => + array ( + 'id' => 1053, + 'group_regex' => '^alt\\.binaries\\.tvseries$', + 'regex' => '/^\\(\\d+\\/(\\d+\\)) "((BBC|ITV) )?(?P.+?)(\\.part\\d+)?(\\.(par2|(vol.+?))"|\\.[a-z0-9]{3}"|") - \\d.+? - (\\d.+? -)? yEnc$/', + 'status' => 1, + 'description' => '//(08/25) "Wild Russia 5 of 6 The Secret Forest 2009.part06.rar" - 47.68 MB - 771.18 MB - yEnc ::: //(01/24) "ITV Wild Britain With Ray Mears 1 of 6 Deciduous Forest 2011.nfo" - 4.34 kB - 770.97 MB - yEnc ::: //(24/24) "BBC Great British Garden Revival 03 of 10 Cottage Gardens And House Plants 2013.vol27+22.PAR2" - 48.39 MB - 808.88 MB - yEnc', + 'ordinal' => 100, + ), + 53 => + array ( + 'id' => 1054, + 'group_regex' => '^alt\\.binaries\\.tvseries$', + 'regex' => '/^(.+?)[-_\\s]{0,3}("|#34;)(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}("|#34;))[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//[ Angel.S01.NTSC.DVDRip.DD2.0.x264.CRF-OtakuLoser ]-[003/550] - "Angel.S01E01.City.Of.NTSC.DVDRip.DD2.0.CRF.x264-OtakuLoser.part01.rar" yEnc', + 'ordinal' => 105, + ), + 54 => + array ( + 'id' => 1055, + 'group_regex' => '^alt\\.binaries\\.tvseries$', + 'regex' => '/^(?P[a-zA-Z0-9 -_\\.]+) - \\[\\d+(\\/\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//FIRST.WAVE.NTSC.DVD.DD2.0 - [121/512] - "FIRST_WAVE_SEASON_1_DVD2.r26" - 44,33 GB - yEnc', + 'ordinal' => 110, + ), + 55 => + array ( + 'id' => 1056, + 'group_regex' => '^alt\\.binaries\\.tvseries$', + 'regex' => '/^\\(\\d+(\\/\\d+\\)) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(03/19) "Damages S04E02 FR.avi" - 5,49 GB yEnc', + 'ordinal' => 115, + ), + 56 => + array ( + 'id' => 1057, + 'group_regex' => '^alt\\.binaries\\.tv\\.deutsch$', + 'regex' => '/^>ghost-of-usenet\\.org<< ?(?P.+) ?>>www.+>[ _-]{0,3}("|#34;)?.+("|#34;)? ?yEnc$/i', + 'status' => 1, + 'description' => '//>ghost-of-usenet.org<< Roseanne.S03E02.Die.lieben.Verwandten.German.1990.FS.DVDRip.XviD-GM4FS >>www.SSL-News.info> - (01/32) - "gm4fs-roseannedxvid-s03e02-sample.par2" yEnc', + 'ordinal' => 5, + ), + 57 => + array ( + 'id' => 1058, + 'group_regex' => '^alt\\.binaries\\.u4e$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//"Angry Birds USA PSN PSP-NRP.exe" yEnc', + 'ordinal' => 5, + ), + 58 => + array ( + 'id' => 1059, + 'group_regex' => '^alt\\.binaries\\.u-4all$', + 'regex' => '/^(?P.+)\\[.+?usenet-4all\\.info\\][ _-]{0,3}\\[.+\\][ _-]{0,3}\\(\\d+\\/\\d+\\) ("|#34;).+("|#34;) yEnc$/', + 'status' => 1, + 'description' => '//Breakin.1984.German.DL.720p.HDTV.x264-msd [ich for usenet-4all.info] [ich25729] [powered by ssl-news.info] (01/99) "ich25729.par2" yEnc', + 'ordinal' => 5, + ), + 59 => + array ( + 'id' => 1060, + 'group_regex' => '^alt\\.binaries\\.u-4all$', + 'regex' => '/\\[ usenet-4all\\.info - powered by ssl\\.news -\\][-_\\s]{0,3}\\[\\d+([.,]\\d+)? [kKmMgG][bB]\\][-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//-4y (PW) [ usenet-4all.info - powered by ssl.news -] [1,44 GB] [08/14] "71cc4edc6R08eb7.vol00+01.PAR2" yEnc', + 'ordinal' => 10, + ), + 60 => + array ( + 'id' => 1061, + 'group_regex' => '^alt\\.binaries\\.u-4all$', + 'regex' => '/^\\(\\?{4}\\) \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(????) [02838/75096] - "3D Browser v5.51.rar" yEnc', + 'ordinal' => 15, + ), + 61 => + array ( + 'id' => 1062, + 'group_regex' => '^alt\\.binaries\\.u-4all$', + 'regex' => '/^\\(\\?{4}\\) \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/ui', + 'status' => 1, + 'description' => '//(????) [02838/75096] - "3D Browser v5.51.rar" yEnc', + 'ordinal' => 20, + ), + 62 => + array ( + 'id' => 1063, + 'group_regex' => '^alt\\.binaries\\.u-4all$', + 'regex' => '/^[\\[\\(]\\d+\\/\\d+[\\]\\)][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(06/10) "Christopher Paolini - Eragon 01-04.part5.rar" - 7,84 GB - yEnc ::: //[09/22] - "H56A2_20131018_038.part08.rar" - 858,20 MB yEnc', + 'ordinal' => 25, + ), + 63 => + array ( + 'id' => 1064, + 'group_regex' => '^alt\\.binaries\\.u-4all$', + 'regex' => '/^\\(\\d+\\/\\d+\\)[-_\\s]{0,3}Description[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(07/27) - Description - " Court Order 890879887870337.vol015+016.par2" - 1.80 GB - yEnc', + 'ordinal' => 30, + ), + 64 => + array ( + 'id' => 1065, + 'group_regex' => '^alt\\.binaries\\.u-4all$', + 'regex' => '/^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//"18X Girls Mirabella Gets Her Tight Ass Hole Plowed Hard.rar" yEnc', + 'ordinal' => 35, + ), + 65 => + array ( + 'id' => 1066, + 'group_regex' => '^alt\\.binaries\\.usenetrevolution$', + 'regex' => '/^\\[\\d+\\/\\d+\\][ _-]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+[.,]\\d+ [kKmMgG][bB].+secretusenet\\.com.+yEnc$/i', + 'status' => 1, + 'description' => '//[3/3] - "Berwein Saskia - Leitner und Grohmann 02 - Herzenskaelte.epub.vol0+1.par2" - 860,05 kB {UR - powered by secretusenet.com} yEnc', + 'ordinal' => 5, + ), + 66 => + array ( + 'id' => 1067, + 'group_regex' => '^alt\\.binaries\\.usenetrevolution$', + 'regex' => '/^.secretusenet\\.com[ _-]{0,3}\\[\\d+\\/\\d+\\][ _-]{0,3}"(?P[\\w.,&! \\()\\[\\]\\\'-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][-_\\s]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//- UR-powered by secretusenet.com - [3/3] - "Berg Ellen - Zur Hoelle mit Seniorentellern!.vol0+1.par2" - 1,24 MB yEnc', + 'ordinal' => 10, + ), + 67 => + array ( + 'id' => 1068, + 'group_regex' => '^alt\\.binaries\\.usenetrevolution$', + 'regex' => '/^"(?P[\\w.,&! \\()\\[\\]\\\'-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\(\\d+\\/\\d+\\)[ _-]{0,3}[-_\\s]{0,3}\\d+[.,]\\d+ [kKmMgG][bB].+secretusenet\\.com.+yEnc$/i', + 'status' => 1, + 'description' => '//- "Alcohol 120 Retail v2.0.2.5629German-UR.info.rar" - (2/3) - 13,35 MB -...:::UR.info-SecretUsenet.com:::... yEnc', + 'ordinal' => 15, + ), + 68 => + array ( + 'id' => 1069, + 'group_regex' => '^alt\\.binaries\\.warez$', + 'regex' => '/^(?P[a-zA-Z].+) - \\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//BabysitterMovies.13.03.11.Babysitter.Jocelyn.Pink.XXX.HR.WMV-VSEX - [7/7] - "BabysitterMovies.13.03.11.Babysitter.Jocelyn.Pink.XXX.HR.WMV-VSEX.rar.vol15+5.par2" yEnc', + 'ordinal' => 5, + ), + 69 => + array ( + 'id' => 1070, + 'group_regex' => '^alt\\.binaries\\.warez$', + 'regex' => '/^(?P[a-z].+) - \\[\\d+\\/\\d+\\][ _-]{0,3}("|#34;).+("|#34;) yEnc$/i', + 'status' => 1, + 'description' => '//ATKExotics.13.01.06.Janea.Toys.XXX.1080p.x264-SEXORS - [1/7] - #34;ATKExotics.13.01.06.Janea.Toys.XXX.1080p.x264-SEXORS.rar#34; yEnc', + 'ordinal' => 10, + ), + 70 => + array ( + 'id' => 1071, + 'group_regex' => '^alt\\.binaries\\.warez$', + 'regex' => '/.*[\\(\\[]\\d+\\/\\d+[\\)\\]][-_\\s]{0,3}("|#34;)(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4})("|#34;)(.+?)yEnc$/', + 'status' => 1, + 'description' => '//-Panzer.Command.Kharkov-SKIDROW - [1/7] - "-Panzer.Command.Kharkov-SKIDROW.rar" yEnc ::: //-AssMasterpiece.12.07.09.Alexis.Monroe.XXX.1080p.x264-SEXORS - [1/7] - #34;-AssMasterpiece.12.07.09.Alexis.Monroe.XXX.1080p.x264-SEXORS.rar#34; yEnc', + 'ordinal' => 15, + ), + 71 => + array ( + 'id' => 1072, + 'group_regex' => '^alt\\.binaries\\.warez$', + 'regex' => '/.*"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4}")(.+?)yEnc$/', + 'status' => 1, + 'description' => '//- "JH2U0H5FIK8TO7YK3Q.part12.rar" yEnc', + 'ordinal' => 20, + ), + 72 => + array ( + 'id' => 1073, + 'group_regex' => '^alt\\.binaries\\.warez$', + 'regex' => '/^\\( (?P.+?) \\) - yEnc$/', + 'status' => 1, + 'description' => '//( XS Video Converter Ultimate 7.7.0 Build 20121226 ) - yEnc', + 'ordinal' => 25, + ), + 73 => + array ( + 'id' => 1074, + 'group_regex' => '^alt\\.binaries\\.warez(|\\.ibm-pc)\\.0-day$', + 'regex' => '/^(?P[a-zA-Z].+) - \\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//BabysitterMovies.13.03.11.Babysitter.Jocelyn.Pink.XXX.HR.WMV-VSEX - [7/7] - "BabysitterMovies.13.03.11.Babysitter.Jocelyn.Pink.XXX.HR.WMV-VSEX.rar.vol15+5.par2" yEnc', + 'ordinal' => 5, + ), + 74 => + array ( + 'id' => 1075, + 'group_regex' => '^alt\\.binaries\\.warez(|\\.ibm-pc)\\.0-day$', + 'regex' => '/^(?P[a-z].+) - \\[\\d+\\/\\d+\\][ _-]{0,3}("|#34;).+("|#34;) yEnc$/i', + 'status' => 1, + 'description' => '//ATKExotics.13.01.06.Janea.Toys.XXX.1080p.x264-SEXORS - [1/7] - #34;ATKExotics.13.01.06.Janea.Toys.XXX.1080p.x264-SEXORS.rar#34; yEnc', + 'ordinal' => 10, + ), + 75 => + array ( + 'id' => 1076, + 'group_regex' => '^alt\\.binaries\\.warez(|\\.ibm-pc)\\.0-day$', + 'regex' => '/.*[\\(\\[]\\d+\\/\\d+[\\)\\]][-_\\s]{0,3}("|#34;)(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4})("|#34;)(.+?)yEnc$/', + 'status' => 1, + 'description' => '//-Panzer.Command.Kharkov-SKIDROW - [1/7] - "-Panzer.Command.Kharkov-SKIDROW.rar" yEnc ::: //-AssMasterpiece.12.07.09.Alexis.Monroe.XXX.1080p.x264-SEXORS - [1/7] - #34;-AssMasterpiece.12.07.09.Alexis.Monroe.XXX.1080p.x264-SEXORS.rar#34; yEnc', + 'ordinal' => 15, + ), + 76 => + array ( + 'id' => 1077, + 'group_regex' => '^alt\\.binaries\\.warez(|\\.ibm-pc)\\.0-day$', + 'regex' => '/.*"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4}")(.+?)yEnc$/', + 'status' => 1, + 'description' => '//- "JH2U0H5FIK8TO7YK3Q.part12.rar" yEnc', + 'ordinal' => 20, + ), + 77 => + array ( + 'id' => 1078, + 'group_regex' => '^alt\\.binaries\\.warez(|\\.ibm-pc)\\.0-day$', + 'regex' => '/^\\( (?P.+?) \\) - yEnc$/', + 'status' => 1, + 'description' => '//( XS Video Converter Ultimate 7.7.0 Build 20121226 ) - yEnc', + 'ordinal' => 25, + ), + 78 => + array ( + 'id' => 1079, + 'group_regex' => '^alt\\.binaries\\.wii$', + 'regex' => '/^(?P.+)>\\(\\d+\\/\\d+\\) ".+" yEnc$/', + 'status' => 1, + 'description' => '//Guitar.Hero.5-Vampire.Weekend.The.Kids.Dont.Stand.a.Chance.PAL.DLC.Wii-OneUp>(01/13) "1u-gh5-the-kids-dont-stand-a-chance-pal.nfo" yEnc', + 'ordinal' => 5, + ), + 79 => + array ( + 'id' => 1080, + 'group_regex' => '^alt\\.binaries\\.wii$', + 'regex' => '/^\\((?P[a-zA-Z].+)\\) \\[\\d+\\/\\d+\\] - ".+".+yEnc$/', + 'status' => 1, + 'description' => '//(Alice_In_Wonderland_PAL_Wii-BAHAMUT) [000/101] - "b-alicew.nzb" (1/4yEnc', + 'ordinal' => 10, + ), + 80 => + array ( + 'id' => 1081, + 'group_regex' => '^alt\\.binaries\\.wii$', + 'regex' => '/^\\(\\d+\\/\\d+\\) "(?P.+)\\.(rar|par2|avi|URL|jpg)".+yEnc$/', + 'status' => 1, + 'description' => '//(13/24) "amateur.-.Deutsches.Girl.-.Erster.User.Anal.Fick.rar" - 2,40 GB -md-hobbys.com yEnc', + 'ordinal' => 15, + ), + 81 => + array ( + 'id' => 1082, + 'group_regex' => '^alt\\.binaries\\.wii$', + 'regex' => '/^\\[\\d+\\/\\d+\\] - ".+" - (?P[A-z0-9_-]+).+yEnc$/', + 'status' => 1, + 'description' => '//[000/104] - "Story_Hour_Adventures_USA_WII-ZRY.nzb" - Story_Hour_Adventures_USA_WII-ZRY (1/9yEnc', + 'ordinal' => 20, + ), + 82 => + array ( + 'id' => 1083, + 'group_regex' => '^alt\\.binaries\\.wii$', + 'regex' => '/^www\\.theplace4you\\.org.*"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4}").+?yEnc$/', + 'status' => 1, + 'description' => '//www.theplace4you.org - [066/104] - "1234 Star.Wars.The.Force.Unleashed.2.PAL.Wii.part065.rar" yEnc', + 'ordinal' => 25, + ), + 83 => + array ( + 'id' => 1084, + 'group_regex' => '^alt\\.binaries\\.wii$', + 'regex' => '/^<>(?P.+)>\\(\\d+\\/\\d+\\) ".+" yEnc$/', + 'status' => 1, + 'description' => '//<>Super_Monkey_Ball_PAL_MULTi5_NGC_WORKING_iNTERNAL_For_Wii-SUNSHiNE>(01/35) "shine-gmbp.nfo" yEnc', + 'ordinal' => 30, + ), + 84 => + array ( + 'id' => 1085, + 'group_regex' => '^alt\\.binaries\\.wii$', + 'regex' => '/^\\(-=\\s+R-KNORLOADING POST\\s+=-: (?P.+) FTD-NR: \\d+\\s+=-.+-= \\) \\[\\d+\\/\\d+\\] - ".+" yEnc$/', + 'status' => 1, + 'description' => '//(-= R-KNORLOADING POST =-: Super Paper MarioPAL FTD-NR: 874068 =- R-KNORLOADING -= ) [01/19] - "R-KNORLOADING POST super paper mario PAL.sfv" yEnc', + 'ordinal' => 35, + ), + 85 => + array ( + 'id' => 1086, + 'group_regex' => '^alt\\.binaries\\.wii$', + 'regex' => '/^.+"(?P.+)\\.nfo" - \\(\\d+\\/\\d+\\) yEnc$/', + 'status' => 1, + 'description' => '//With Wii-Studio you can convert movie and music files easily so you can play it on Wii (2009) - "S.A.D.-Wii.Studio.v1.0.7.1127-incl.Patch.nfo" - (01/18) yEnc', + 'ordinal' => 40, + ), + 86 => + array ( + 'id' => 1087, + 'group_regex' => '^alt\\.binaries\\.wii\\.gamez$', + 'regex' => '/^(?P\\w.+) - \\[\\d+\\/\\d+\\] - ".+" yEnc$/', + 'status' => 1, + 'description' => '//Wicked_Monster_Blast_USA_WII-ZRY - [1/105] - "Wicked_Monster_Blast_USA_WII-ZRY.par2" yEnc', + 'ordinal' => 5, + ), + 87 => + array ( + 'id' => 1088, + 'group_regex' => '^alt\\.binaries\\.worms$', + 'regex' => '/^(\\[U4A]) (?P.+?)\\[\\d+(\\/\\d+\\]) - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//[U4A] 2 Dudes and a Dream 2009 BRRip XvidHD 720p-NPW[01/36] - "2 Dudes and a Dream 2009 BRRip XvidHD 720p-NPW-Sample.avi" yEnc', + 'ordinal' => 5, + ), + 88 => + array ( + 'id' => 1089, + 'group_regex' => '^alt\\.binaries\\.worms$', + 'regex' => '/^\\(\\d+\\/(\\d+\\)) ("|#34;)(?P.+)(\\.[vol|part].+)?\\.(par2|nfo|rar|nzb)("|#34;) - \\d+[.,]\\d+ [kKmMgG][bB] - yEnc$/i', + 'status' => 1, + 'description' => '//(38/57) "Fright.Night.2.New.Blood.2013.UNRATED.BluRay.810p.DTS.x264-PRoDJi.part26.rar" - 4,81 GB - yEnc ::: //(14/20) "Jack.the.Giant.Slayer.2013.AC3.192Kbps.23fps.2ch.TR.Audio.BluRay-Demuxed.by.par2" - 173,15 MB - yEnc', + 'ordinal' => 10, + ), + 89 => + array ( + 'id' => 1090, + 'group_regex' => '^alt\\.binaries\\.worms$', + 'regex' => '/^\\(\\d+\\/\\d+\\) - Description - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(01/40) - Description - "Cloudy.with.a.Chance.of.Meatballs.2009.AC3.23Fps.640Kbps.6Ch.TR.Audio.BD-Demuxed.by.DWA.nfo" - 454,60 MB - yEnc', + 'ordinal' => 15, + ), + 90 => + array ( + 'id' => 1091, + 'group_regex' => '^alt\\.binaries\\.worms$', + 'regex' => '/^\\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(151/161) "Troy.2004.Directors.Cut.1080p.BluRay.x264.DTS.vol064+21.PAR2.bad" - 18,64 GB - yEnc', + 'ordinal' => 20, + ), + 91 => + array ( + 'id' => 1092, + 'group_regex' => '^alt\\.binaries\\.worms$', + 'regex' => '/^(\\[(Request|Repost)\\])?\\[Macguffin Proudly Presents\\][-_\\s]{0,3}\\(\\d+\\/\\d+\\)[-_\\s]{0,3}(?P.+?) MacGuffin[-_\\s]{0,3}".+([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[- ]{0,4}\\d+[.,]\\d+ [kKmMgG][bB][-_\\s]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//[Macguffin Proudly Presents] (33/75) -Reservoir Dogs 1992 720p BDRip AC3 x264 MacGuffin - "macguffin-redog720p.r30" - 3.06 GB - yEnc ::: //[Request][MacGuffin Proudly Presents](056/229) - LOTR The Trilogy EXTENDED REPOST 720p BRRip AC3 x264 MacGuffin - "macguffin-tfotr720p.r53" - 18.54 GB - yEnc ::: //[REPOST][MacGuffin Proudly Presents](44/54) - Flight 2012 720p BRRip REPOST AC3 x264 MacGuffin - "macguffin-flit720p.rar" - 4.09 GB - yEnc', + 'ordinal' => 25, + ), + 92 => + array ( + 'id' => 1093, + 'group_regex' => '^alt\\.binaries\\.x$', + 'regex' => '/^!!www\\.usenet4all\\.eu!![ _-]{0,3}(?P.+)\\[\\d+\\/\\d+\\][ _-]{0,3}("|#34;).+("|#34;) yEnc$/i', + 'status' => 1, + 'description' => '//!!www.usenet4all.eu!! - Acceptance.2009.COMPLETE.NTSC.DVDR-D0PE[001/100] - #34;d0pe-a.nfo#34; yEnc', + 'ordinal' => 5, + ), + 93 => + array ( + 'id' => 1094, + 'group_regex' => '^alt\\.binaries\\.x264$', + 'regex' => '/^"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4}") \\(\\d+\\/(\\d+\\)) yEnc$/', + 'status' => 1, + 'description' => '//"Batman-8 TDKR-Pittis AVCHD-ADD.English.dtsHDma.part013.rar" (042/197) yEnc', + 'ordinal' => 5, + ), + 94 => + array ( + 'id' => 1095, + 'group_regex' => '^alt\\.binaries\\.x264$', + 'regex' => '/^\\(\\d+\\/(\\d+\\)) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB]( -)? yEnc$/', + 'status' => 1, + 'description' => '//(001/108) "Wizards.of.Waverly.Place.720p.S04E01.by.sugarr.par2" - 5,15 GB - yEnc', + 'ordinal' => 10, + ), + 95 => + array ( + 'id' => 1096, + 'group_regex' => '^alt\\.binaries\\.x264$', + 'regex' => '/^\\[NZBsRus\\.com.+\\]-\\[(?P.+)\\][-_\\s]{0,3}\\[\\d+\\/\\d+\\] - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[NZBsRus.com]-[Arthur.Christmas.2011.BDRip.AC3-5.1.x264-AKS74u] [18/74] - "ac-bdrip-aks74u.r15" yEnc', + 'ordinal' => 15, + ), + 96 => + array ( + 'id' => 1097, + 'group_regex' => '^alt\\.binaries\\.x264$', + 'regex' => '/^\\[.+\\]-\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[Entourage.S05.720p.WEB-DL.DD5.1.H.264-BTN]-[167/193] - "Entourage.S05E11.Playn.With.Fire.720p.WEB-DL.DD5.1.h.264-BTN.part05.rar" yEnc', + 'ordinal' => 20, + ), + 97 => + array ( + 'id' => 1098, + 'group_regex' => '^alt\\.binaries\\.x264$', + 'regex' => '/^CTW\\d+ \\| (?P.+) yEnc$/', + 'status' => 1, + 'description' => '//CTW487678426 | Get.the.Gringo.1080p.BluRay.x264.DTS-HDChina.r43-CTW yEnc', + 'ordinal' => 25, + ), + 98 => + array ( + 'id' => 1099, + 'group_regex' => '^alt\\.binaries\\.x264$', + 'regex' => '/^.+?\\[\\d+\\/(\\d+\\][-_\\s]{0,3}.+?)[-_\\s]{0,3}("|#34;)(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}("|#34;))[-_\\s]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//(????) [0/8] - Crionics Post - Alice In Chains - Dirt REPOST"Alice In Chains - Dirt.nzb" yEnc', + 'ordinal' => 30, + ), + 99 => + array ( + 'id' => 1100, + 'group_regex' => '^alt\\.binaries\\.x264$', + 'regex' => '/^\\(\\?+\\) \\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/', + 'status' => 1, + 'description' => '//(????) [001/153] - "C4 House Party Horse Meat Disco Set 6.nfo" C4 House Party Horse Meat Disco Set 6 yEnc', + 'ordinal' => 35, + ), + 100 => + array ( + 'id' => 1101, + 'group_regex' => '^alt\\.binaries\\.x264$', + 'regex' => '/^\\(\\?+\\) \\[\\d+\\/\\d+\\] - (?P.+)[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/', + 'status' => 1, + 'description' => '//(????) [19/22] - C.K.N. Demo 85 "19-rotten system.mp3" yEnc', + 'ordinal' => 40, + ), + 101 => + array ( + 'id' => 1102, + 'group_regex' => '^alt\\.binaries\\.xbox360$', + 'regex' => '/^a\\.b\\.g\\.xbox360 presents \\[ReqID: \\d+\\]\\[(?P.+)\\] \\[\\d+\\/\\d+\\] - ".+" yEnc$/', + 'status' => 1, + 'description' => '//a.b.g.xbox360 presents [ReqID: 8747][Lego_Star_Wars_The_Complete_Saga_USA_XBOX360-PROTOCOL] [01/80] - "ptc-swcs.nfo" yEnc', + 'ordinal' => 5, + ), + 102 => + array ( + 'id' => 1103, + 'group_regex' => '^dk\\.binaer\\.tv$', + 'regex' => '/^(?P[a-zA-Z0-9].+?) - \\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '//Store.Boligdroemme.S02E06.DANiS H.HDTV.x264-TVBYEN - [01/28] - "store.boligdroemme.s02e06.danis h.hdtv.x264-tvbyen.nfo" yEnc', + 'ordinal' => 5, + ), + 103 => + array ( + 'id' => 1104, + 'group_regex' => '^alt\\.binaries\\.town$', + 'regex' => '/^.+?town\\.ag.+?(www\\..+?|News)\\.[iI]nfo.+? \\[\\d+\\/\\d+\\]( -)? "(?P.+?)(-sample)?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB]M? yEnc$/', + 'status' => 1, + 'description' => '// >> www.ssl-news.info <<< > [05/87] - "Deep.Black.Ass.5.XXX.1080p.WEBRip.x264-TBP.part03.rar" - 7,87 GB yEnc ::: // [02/24] - "Dragons.Den.UK.S11E02.HDTV.x264-ANGELiC.nfo" - 288,96 MB yEnc ::: // [6/6] - "TTT.Magazine.2013.08.vol0+1.par2" - 33,47 MB yEnc', + 'ordinal' => 5, + ), + 104 => + array ( + 'id' => 1105, + 'group_regex' => '^alt\\.binaries\\.town$', + 'regex' => '/^\\[\\s*TOWN\\s*\\][-_\\s]{0,3}\\[\\s*www\\.town\\.ag\\s*\\][-_\\s]{0,3}\\[\\s*partner of www\\.ssl-news\\.info\\s*\\][-_\\s]{0,3}\\[\\s* .*\\s*\\][-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,4}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[ TOWN ]-[ www.town.ag ]-[ partner of www.ssl-news.info ]-[ 1080p ] - [320/352] - "Gq7YGEWLy8wAA2NhbZx5LukEa.vol000+5.par2" - 17.09 GB yEnc', + 'ordinal' => 10, + ), + 105 => + array ( + 'id' => 1106, + 'group_regex' => '^alt\\.binaries\\.town$', + 'regex' => '/^.+?town\\.ag.+?(www\\..+?|News)\\.[iI]nfo.+? \\[\\d+\\/\\d+\\]( -)? "(?P.+?)(-sample)?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '// >> www.ssl-news.info <<< >IP Scanner Pro 3.21-Sebaro - [1/3] - "IP Scanner Pro 3.21-Sebaro.rar" yEnc', + 'ordinal' => 15, + ), + 106 => + array ( + 'id' => 1107, + 'group_regex' => '^alt\\.binaries\\.town$', + 'regex' => '/^\\(\\d+\\/\\d+\\) -\\s+ - ("|#34;)(?P[\\w. \\()-]{8,}?\\b)(\\.par2|-\\.part\\d+\\.rar|\\.nfo)("|#34;) - \\d+[.,]\\d+ [kKmMgG][bB]( -)? yEnc$/', + 'status' => 1, + 'description' => '//(05/10) - - "D.Olivier.Wer Boeses.saet-gsx-.part4.rar" - 741,51 kB - yEnc', + 'ordinal' => 20, + ), + 107 => + array ( + 'id' => 1108, + 'group_regex' => '^alt\\.binaries\\.town$', + 'regex' => '/^\\[ TOWN \\][ _-]{0,3}\\[ www\\.town\\.ag \\][ _-]{0,3}\\[ partner of www\\.ssl-news\\.info \\][ _-]{0,3}\\[ .* \\] \\[\\d+\\/\\d+\\][ _-]{0,3}("|#34;)(?P.+)((\\.part\\d+\\.rar)|(\\.vol\\d+\\+\\d+\\.par2))("|#34;)[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//[ TOWN ]-[ www.town.ag ]-[ partner of www.ssl-news.info ]-[ MOVIE ] [14/19] - "Night.Vision.2011.DVDRip.x264-IGUANA.part12.rar" - 660,80 MB yEnc', + 'ordinal' => 25, + ), + 108 => + array ( + 'id' => 1109, + 'group_regex' => '^alt\\.binaries\\.town$', + 'regex' => '/^\\[ TOWN \\][ _-]{0,3}\\[ www\\.town\\.ag \\][ _-]{0,3}\\[ partner of www\\.ssl-news\\.info \\][ _-]{0,3}\\[ .* \\] \\[\\d+\\/\\d+\\][ _-]{0,3}("|#34;)(?P.+)\\.(par2|rar|nfo|nzb)("|#34;)[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//[ TOWN ]-[ www.town.ag ]-[ partner of www.ssl-news.info ]-[ MOVIE ] [01/84] - "The.Butterfly.Effect.2.2006.1080p.BluRay.x264-LCHD.par2" - 7,49 GB yEnc', + 'ordinal' => 30, + ), + 109 => + array ( + 'id' => 1110, + 'group_regex' => '^alt\\.binaries\\.town$', + 'regex' => '/^\\[ TOWN \\][ _-]{0,3}\\[ www\\.town\\.ag \\][ _-]{0,3}\\[ partner of www\\.ssl-news\\.info \\][ _-]{0,3}(\\[ TV \\] )?\\[\\d+\\/\\d+\\][ _-]{0,3}("|#34;)(?P.+)((\\.part\\d+\\.rar)|(\\.vol\\d+\\+\\d+\\.par2)|\\.nfo|\\.vol\\d+\\+\\.par2)("|#34;)[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//[ TOWN ]-[ www.town.ag ]-[ partner of www.ssl-news.info ] [22/22] - "Arsenio.Hall.2013.09.11.Magic.Johnson.720p.HDTV.x264-2HD.vol31+11.par2" - 1,45 GB yEnc', + 'ordinal' => 35, + ), + 110 => + array ( + 'id' => 1111, + 'group_regex' => '^alt\\.binaries\\.town$', + 'regex' => '/^\\[ TOWN \\][ _-]{0,3}\\[ www\\.town\\.ag \\][ _-]{0,3}\\[ partner of www\\.ssl-news\\.info \\][ _-]{0,3}(\\[ TV \\] )?\\[\\d+\\/\\d+\\][ _-]{0,3}("|#34;)(?P.+)\\.par2("|#34;)[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//[ TOWN ]-[ www.town.ag ]-[ partner of www.ssl-news.info ] [01/28] - "Arsenio.Hall.2013.09.18.Dr.Phil.McGraw.HDTV.x264-2HD.par2" - 352,58 MB yEnc', + 'ordinal' => 40, + ), + 111 => + array ( + 'id' => 1112, + 'group_regex' => '^alt\\.binaries\\.town$', + 'regex' => '/^\\d+\\.-\\.(?P.+) \\s+\\s+<.+>\\s+\\[\\d+\\/\\d+\\] - ("|#34;).+("|#34;).+yEnc$/', + 'status' => 1, + 'description' => '//4675.-.Wedding.Planner.multi3.(EU) [01/10] - "4675.-.Wedding.Planner.multi3.(EU).par2" - 72,80 MB - yEnc', + 'ordinal' => 45, + ), + 112 => + array ( + 'id' => 1113, + 'group_regex' => '^alt\\.binaries\\.town$', + 'regex' => '/^\\d+\\.-\\.(?P.+) \\s+\\s+<.+>\\s+\\[\\d+\\/\\d+\\] - ("|#34;).+/', + 'status' => 1, + 'description' => '//4675.-.Wedding.Planner.multi3.(EU) [01/10] - "4675.-.Wedding.Planner.multi3.(EU).par2" - 72,80 MB - yEnc ::: // Some have no yEnc', + 'ordinal' => 50, + ), + 113 => + array ( + 'id' => 1114, + 'group_regex' => '^alt\\.binaries\\.town$', + 'regex' => '/^(?P\\w.+) \\s+\\s+\\[\\d+\\/\\d+\\] - ("|#34;).+("|#34;).+yEnc$/', + 'status' => 1, + 'description' => '//Marco.Fehr.-.In.the.Mix.at.Der.Club-09-01-SAT-2012-XDS [01/13] - "Marco.Fehr.-.In.the.Mix.at.Der.Club-09-01-SAT-2012-XDS.par2" - 92,12 MB - yEnc', + 'ordinal' => 55, + ), + 114 => + array ( + 'id' => 1115, + 'group_regex' => '^alt\\.binaries\\.town$', + 'regex' => '/^(?P\\w.+) \\s+\\s+\\[\\d+\\/\\d+\\] - ("|#34;).+/', + 'status' => 1, + 'description' => '//Marco.Fehr.-.In.the.Mix.at.Der.Club-09-01-SAT-2012-XDS [01/13] - "Marco.Fehr.-.In.the.Mix.at.Der.Club-09-01-SAT-2012-XDS.par2" - 92,12 MB - yEnc ::: // Some have no yEnc', + 'ordinal' => 60, + ), + 115 => + array ( + 'id' => 1116, + 'group_regex' => '^alt\\.binaries\\.town$', + 'regex' => '/^\\s+\\s+(?P.+)\\s+\\[\\d+\\/\\d+\\] - ("|#34;).+("|#34;).+yEnc$/', + 'status' => 1, + 'description' => '// JetBrains.IntelliJ.IDEA.v11.1.4.Ultimate.Edition.MacOSX.Incl.Keymaker-EMBRACE [01/18] - "JetBrains.IntelliJ.IDEA.v11.1.4.Ultimate.Edition.MacOSX.Incl.Keymaker-EMBRACE.par2" - 200,77 MB - yEnc', + 'ordinal' => 65, + ), + 116 => + array ( + 'id' => 1117, + 'group_regex' => '^alt\\.binaries\\.town$', + 'regex' => '/^\\s+\\s+(?P.+)\\s+\\[\\d+\\/\\d+\\] - ("|#34;).+/', + 'status' => 1, + 'description' => '// JetBrains.IntelliJ.IDEA.v11.1.4.Ultimate.Edition.MacOSX.Incl.Keymaker-EMBRACE [01/18] - "JetBrains.IntelliJ.IDEA.v11.1.4.Ultimate.Edition.MacOSX.Incl.Keymaker-EMBRACE.par2" - 200,77 MB - yEnc ::: // Some have no yEnc', + 'ordinal' => 70, + ), + 117 => + array ( + 'id' => 1118, + 'group_regex' => '^alt\\.binaries\\.town$', + 'regex' => '/^[ <\\[]{0,2}TOWN[ >\\]]{0,2}[ _-]{0,3}[ <\\[]{0,2}www\\.town\\.ag[ >\\]]{0,2}[ _-]{0,3}[ <\\[]{0,2}partner of www.ssl-news\\.info[ >\\]]{0,2}[ _-]{0,3}\\[\\d+\\/\\d+\\][ _-]{0,3}("|#34;)(?P.+)\\.(par|vol|rar|nfo).*?("|#34;).+?yEnc$/i', + 'status' => 1, + 'description' => '// [01/18] - "2012-11.-.Supurbia.-.Volume.Tw o.Digital-1920.K6-Empire.par2" - 421,98 MB yEnc', + 'ordinal' => 75, + ), + 118 => + array ( + 'id' => 1119, + 'group_regex' => '^alt\\.binaries\\.town$', + 'regex' => '/^ www\\.town\\.ag > sponsored by www\\.ssl-news\\.info > \\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/', + 'status' => 1, + 'description' => '// www.town.ag > sponsored by www.ssl-news.info > (1/3) "HolzWerken_40.par2" - 43,89 MB - yEnc', + 'ordinal' => 80, + ), + 119 => + array ( + 'id' => 1120, + 'group_regex' => '^alt\\.binaries\\.town$', + 'regex' => '/^\\(\\d+\\/\\d+\\).+?www\\.town\\.ag.+?sponsored by (www\\.)?ssl-news\\.info<+?.+? "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//(1/9)<<>> sponsored by ssl-news.info<<<[HorribleSubs]_AIURA_-_01_[480p].mkv "[HorribleSubs]_AIURA_-_01_[480p].par2" yEnc', + 'ordinal' => 85, + ), + 120 => + array ( + 'id' => 1121, + 'group_regex' => '^alt\\.binaries\\.town$', + 'regex' => '/^\\[ TOWN \\][ _-]{0,3}\\[ www\\.town\\.ag \\][ _-]{0,3}\\[ (?P.+?) \\][ _-]{0,3}\\[ partner of www\\.ssl-news\\.info \\][ _-]{0,3}\\[\\d+\\/(\\d+\\])[ _-]{0,3}"(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")[ _-]{0,3}yEnc$/i', + 'status' => 1, + 'description' => '//[ TOWN ]-[ www.town.ag ]-[ Assassins.Creed.IV.Black.Flag.XBOX360-COMPLEX ]-[ partner of www.ssl-news.info ] [074/195]- "complex-ac4.bf.d1.r71" yEnc', + 'ordinal' => 90, + ), + 121 => + array ( + 'id' => 1122, + 'group_regex' => '^alt\\.binaries\\.town$', + 'regex' => '/^\\(TOWN\\)\\(www\\.town\\.ag \\)[ _-]{0,3}\\(partner of www\\.ssl-news\\.info \\)[ _-]{0,3} (?P.+?) \\[\\d+\\/(\\d+\\][ _-]{0,3}("|#34;).+?)\\.(par2|rar|nfo|nzb)("|#34;)[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/', + 'status' => 1, + 'description' => '//(TOWN)(www.town.ag ) (partner of www.ssl-news.info ) Twinz-Conversation-CD-FLAC-1995-CUSTODES [01/23] - #34;Twinz-Conversation-CD-FLAC-1995-CUSTODES.par2#34; - 266,00 MB - yEnc', + 'ordinal' => 95, + ), + 122 => + array ( + 'id' => 1123, + 'group_regex' => '^alt\\.binaries\\.town$', + 'regex' => '/^ (?P.+) \\[\\d+\\/\\d+\\][ _-]{0,3}("|#34;).+?("|#34;).+?yEnc$/i', + 'status' => 1, + 'description' => '// Greek.S04E06.Katerstimmung.German.DL.Dubbed.WEB-DL.XviD-GEZ [01/22] - "Greek.S04E06.Katerstimmung.German.DL.Dubbed.WEB-DL.XviD-GEZ.par2" - 526,99 MB - yEnc', + 'ordinal' => 100, + ), + 123 => + array ( + 'id' => 1124, + 'group_regex' => '^alt\\.binaries\\.town$', + 'regex' => '/^\\[ TOWN \\][ _-]{0,3}\\[ www\\.town\\.ag \\][ _-]{0,3}\\[ .* \\][ _-]{0,3}\\[\\d+\\/\\d+\\][ _-]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui', + 'status' => 1, + 'description' => '//[ TOWN ]-[ www.town.ag ]-[ ANIME ] [01/17] - "[Chyuu] Nanatsu no Taizai - 12 [720p][D1F49539].par2" - 585,03 MB yEnc', + 'ordinal' => 105, + ), + 124 => + array ( + 'id' => 1125, + 'group_regex' => '^alt\\.binaries\\.b4e\\.erotica$', + 'regex' => '/^Uploader.Presents-(?P.+?)\\[\\d+\\/\\d+\\]".+?" yEnc$/ui', + 'status' => 1, + 'description' => '//Uploader.Presents-Jupiter.Ascending.2015.German.Cam.MD.XviD.Read.NFO-KMOA [01/51]"jupiter.cam.md-kmoa.nfo" yEnc', + 'ordinal' => 5, + ), + 125 => + array ( + 'id' => 1126, + 'group_regex' => '^alt\\.binaries\\.b4e\\.erotica$', + 'regex' => '/^\\((?P.+?)\\) \\[\\d+\\/\\d+\\] - ".+?" yEnc$/ui', + 'status' => 1, + 'description' => '//(Navy CIS - Drei Folgen) [35/63] - "NCIS.part34.rar" yEnc', + 'ordinal' => 10, + ), + 126 => + array ( + 'id' => 1127, + 'group_regex' => '^alt\\.binaries\\.teevee$', + 'regex' => '#^\\[KoreanTV]\\s*(?P.+?)\\.[a-z0-9]+\\s+\\[\\d+/\\d+\\]\\s+-\\s+".+?"\\s+yEnc$#i', + 'status' => 1, + 'description' => '[KoreanTV] Star.King.E412.150509.HDTV.H264.720p-WITH.mp4 [1/36] - "놀ë�¼ìš´ 대회 스타킹.E412.150509.HDTV.H264.720p-WITH.par2" yEnc', + 'ordinal' => 445, + ), + 127 => + array ( + 'id' => 1128, + 'group_regex' => '^alt\\.binaries\\.fz$', + 'regex' => '#^Uploader.Presents-(?P.+?)\\s+\\[\\d{1,3}/\\d{1,3}\\]\\s*".+?"\\s+yEnc$#i', + 'status' => 1, + 'description' => 'Uploader.Presents-Black.Sails.S02E02.Die.schwarze.Flagge.GERMAN.DUBBED.BLURAYRiP.x264-SOF [00/23]"sof-black-sails-s02e02.nzb" yEnc', + 'ordinal' => 10, + ), + 128 => + array ( + 'id' => 1129, + 'group_regex' => '^alt\\.binaries\\.moovee$', + 'regex' => '#^(?P[\\w.-]{8,}?) \\[\\d+/\\d+\\] - ".+?" yEnc$#', + 'status' => 1, + 'description' => 'Search.Party.2014.1080p.WEB-DL.DD5.1.H264-RARBG [01/57] - "Search.Party.2014.1080p.WEB-DL.DD5.1.H264-RARBG.nfo" yEnc', + 'ordinal' => 95, + ), + 129 => + array ( + 'id' => 1130, + 'group_regex' => '^alt\\.binaries\\.moovee$', + 'regex' => '#^\\[FETiSH]-(\\[REPOST\\]-)?\\[ (?P.+?) \\]-\\[\\d+/\\d+\\] ".+?" yEnc$#', + 'status' => 1, + 'description' => '[FETiSH]-[ In.Dreams.1999.DVDRip.x264-FETiSH ]-[32/40] " fetish-ids1999.vol000+001.PAR2 " yEnc', + 'ordinal' => 100, + ), + 130 => + array ( + 'id' => 1131, + 'group_regex' => '^korea\\.binaries\\.music\\.videos)$', + 'regex' => '/^\\[KoreanMusic\\] \\[(?P(뮤직뱅크|스케치북|음악중심|인기가요|더\\.쇼))\\](?P\\.\\d{6}\\..+?) \\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '[KoreanMusic] [더.쇼].150730.워너비.전체.차렷.ts [5/16] - "[더.쇼].150730.워너비.전체.차렷.part04.rar" yEnc', + 'ordinal' => 0, + ), + 131 => + array ( + 'id' => 1132, + 'group_regex' => '^korea\\.binaries\\.music\\.videos$', + 'regex' => '/^\\[KoreanMusic\\] (?P\\d{8}_)(?P(Simply\\.K-POP|쇼챔|더쇼|위열|음중|엠카)_)(?P.*?)_FHD_M2T \\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '[KoreanMusic] 20151009_Simply.K-POP_GI-Doligo.Doligo_FHD_M2T [11/18] - "20151009_Simply.K-POP_GI-Doligo.Doligo_FHD_M2T.part09.rar" yEnc', + 'ordinal' => 1, + ), + 132 => + array ( + 'id' => 1133, + 'group_regex' => '^korea\\.binaries\\.movies$', + 'regex' => '/^\\[KoreanMovies\\] (?P.+?) \\[\\d+\\/\\d+\\] - ".+" yEnc$/', + 'status' => 1, + 'description' => '[KoreanMovies] 12.Deep.Red.Nights.2013.AVC1.H264.720p-UNknown [11/69] - "12 Deep Red Nights 2013.AVC1.H264.720p-UNknown.part09.rar" yEnc', + 'ordinal' => 6, + ), + 133 => + array ( + 'id' => 1134, + 'group_regex' => '^(korea\\.binaries\\.tv|alt\\.binaries\\.multimedia\\.korean)$', + 'regex' => '/^\\[KoreanTV] (\\[.+?]\\.)?(?P.+?) \\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '[KoreanTV] Hyde.Jekyll.Me.E15.150311.HDTV.H264.720p-WITH [20/31] - "Hyde.Jekyll.Me.E15.150311.HDTV.H264.720p-WITH.part19.rar" yEnc ::: [KoreanTV] [OCN].My.Beautiful.Bride.E16.END.150809.HDTV.H264.720p-WITH.mp4 [31/32] - "[OCN] 아름다운 나의신부.E16.END.150809.HDTV.H264.720p-WITH.vol15+16.par2" yEnc', + 'ordinal' => 0, + ), + 134 => + array ( + 'id' => 1135, + 'group_regex' => '^(korea\\.binaries\\.tv|alt\\.binaries\\.multimedia\\.korean)$', + 'regex' => '/^.+?-enjoy-\\s+\\[\\d+\\/\\d+\\] - "(?P.+?)\\.(mkv|mp4|avi|jpe?g|par2|nzb|nfo|iso|ts|part\\d+\\.rar|vol\\d+\\+\\d+\\.par2|rar)(\\.\\d+)?" yEnc$/i', + 'status' => 1, + 'description' => 'Take Care of the Young Lady 2009 720p Completed -enjoy- [542/630] - "Take Care of the Young Lady.E06.720p.HDTV.x264-Zeus.vol000+001.PAR2" yEnc ::: Dream High 2 E01 720p -enjoy- [01/40] - "Dream.High.2.E01.120130.HDTV.X264.720p-HANrel.par2" yEnc', + 'ordinal' => 10, + ), + 135 => + array ( + 'id' => 1136, + 'group_regex' => '^(korea\\.binaries\\.tv|alt\\.binaries\\.multimedia\\.korean)$', + 'regex' => '/^.+?-enjoy-\\s+- File \\d+ of \\d+: "(?P.+?)\\.(mkv|mp4|avi|jpe?g|par2|nzb|nfo|iso|ts|part\\d+\\.rar|vol\\d+\\+\\d+\\.par2|rar)(\\.\\d+)?" yEnc$/i', + 'status' => 1, + 'description' => '[MV] C-REAL - No No No No No [2011.10.12] 1080p WEB MP4 -enjoy- - File 03 of 15: "C-real-no.no.no.no.part1.rar" yEnc', + 'ordinal' => 70, + ), + 136 => + array ( + 'id' => 1137, + 'group_regex' => '^(korea\\.binaries\\.tv|alt\\.binaries\\.multimedia\\.korean)$', + 'regex' => '/^.+?-enjoy-\\s+\\(\\d+\\/\\d+\\) "(?P.+)$/', + 'status' => 1, + 'description' => 'Queen Seon Deok 720p Completed -enjoy- (1538/2482) "Queen Seon Deok.E39.091005.HDTV.X264.720p-HAN', + 'ordinal' => 40, + ), + 137 => + array ( + 'id' => 1138, + 'group_regex' => '^alt\\.binaries\\.multimedia\\.korean$', + 'regex' => '/^\\(\\d+\\/\\d+\\) "(?P.+?)\\.(par2|part\\d+\\.rar)" - .+yEnc$/', + 'status' => 1, + 'description' => '(01/24) "IRIS E02 091015 HDTV X264 720p-HAN™.par2" - 1.60 GB - ????(IRIS) E02 091015 HDTV X264 720p-HAN™ with eng subs yEnc', + 'ordinal' => 45, + ), + 138 => + array ( + 'id' => 1139, + 'group_regex' => '^alt\\.binaries\\.multimedia\\.korean$', + 'regex' => '/^alt\\.binaries\\.newmiyamoto - .+? \\[\\d+\\/\\d+\\] - "(?P.+?)\\.(vol\\d+\\+\\d+\\.par2|avi|mkv)(\\.\\d+)?" yEnc$/', + 'status' => 1, + 'description' => 'alt.binaries.newmiyamoto - for scr3wtard and the canuck [002/276] - "Delightful Girl Choon-Hyang .vol000+561.par2" yEnc', + 'ordinal' => 20, + ), + 139 => + array ( + 'id' => 1140, + 'group_regex' => '^alt\\.binaries\\.multimedia\\.korean$', + 'regex' => '/^(\\(|\\[)OMNi(\\)|\\]) (alt\\.binaries\\.newmiyamoto - )?.+?\\[\\d+\\/\\d+] - "(?P.+?)\\.(avi|mkv|vol\\d+\\+\\d+|iso|t(s|p))(\\.(par2|\\d+))?" yEnc$/i', + 'status' => 1, + 'description' => '(OMNi) alt.binaries.newmiyamoto - Gourmet 720p RAW - 19-24 - [052/206] - "Sikgaek.E20.720p.HDTV.x264-jinuki.mkv.011" yEnc ::: (OMNi) alt.binaries.newmiyamoto - Fantasy Couple 720p - softsubbed - [002/584] - "Fantasy.Couple.01-02.vol00+01.PAR2" yEnc ::: (OMNi) Korean Kdrama of Hana Yori Dango - [02/70] - "Boys.Before.Flowers.E01.720p.HDTV.x264-NotoriouS.mkv.001" yEnc', + 'ordinal' => 21, + ), + 140 => + array ( + 'id' => 1141, + 'group_regex' => '^alt\\.binaries\\.multimedia\\.korean$', + 'regex' => '/^\\(.+?\\) \\[\\d+\\/\\d+] - "(?P.+)\\[T1\\]\\.avi" yEnc$/', + 'status' => 1, + 'description' => '(Winter Sonata) [12/34] - "Winter_Sonata_ep-10[T1].avi" yEnc', + 'ordinal' => 60, + ), + 141 => + array ( + 'id' => 1142, + 'group_regex' => '^alt\\.binaries\\.multimedia\\.korean$', + 'regex' => '/^\\[KDrama\\].+? \\[\\d+\\/\\d+\\] - "(?P.+?)\\.(nzb|par2|r\\d+)" yEnc$/', + 'status' => 1, + 'description' => '[KDrama]Secret.Garden.450p-HANrel [00/12] - "Secret.Garden.New.Year.Special.Part2.HDTV.X264.450p-HANrel.nzb" yEnc', + 'ordinal' => 50, + ), + 142 => + array ( + 'id' => 1143, + 'group_regex' => '^alt\\.binaries\\.multimedia\\.korean$', + 'regex' => '/^\\[Album\\] (?P.+?) -enjoy- .+" yEnc$/', + 'status' => 1, + 'description' => '[Album] Secret - Moving In Secret [2011.10.18] MP3 320 WEB -enjoy- - File 02 of 20: "02 섹시하게.mp3" yEnc', + 'ordinal' => 65, + ), + 143 => + array ( + 'id' => 1144, + 'group_regex' => '^alt\\.binaries\\.multimedia\\.korean$', + 'regex' => '/^\\[\\?{4}\\] - "(?P.+?)\\.mp3" \\[\\d+\\/\\d+\\] yEnc$/', + 'status' => 1, + 'description' => '[????] - "Elmio-09-You Will Follow.mp3" [009/130] yEnc', + 'ordinal' => 55, + ), + 144 => + array ( + 'id' => 1145, + 'group_regex' => '^alt\\.binaries\\.multimedia\\.korean$', + 'regex' => '/^\\(\\d+\\/\\d+\\) "(?P.+?)\\..+?" - \\d+\\.\\d+ .+ yEnc$/', + 'status' => 1, + 'description' => '(1/1) "100612.MBC MusicCore.Just Married.Bye Bye Bye.60fps.x264-Izo.mkv" - 150.66 MB - 100612.MBC MusicCore.Double K.Favorite Music.60fps.x264-Izo yEnc', + 'ordinal' => 35, + ), + 145 => + array ( + 'id' => 1146, + 'group_regex' => '^korea\\.binaries\\.tv$', + 'regex' => '/^.+? -?"(?P.+?)\\.(nzb|par2|vol\\d+\\+\\d+\\.par2|part\\d+\\.rar|r\\d+|rar)" \\[\\d+\\/\\d+\\] yEnc$/', + 'status' => 1, + 'description' => 'Posts by AREA11 ::: Sunbi18 "Scholar.Who.Walks.the.Night.E18.720p.HDTV.x264-AREA11.nzb" [00/56] yEnc', + 'ordinal' => 15, + ), + 146 => + array ( + 'id' => 1147, + 'group_regex' => '^(korea\\.binaries\\.(tv|movies)|alt\\.binaries\\.multimedia\\.korean)$', + 'regex' => '/^\\((?P.+?)\\) \\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '(BMask.E25.120829.HDTV.H264.720p-HANrel) [00/44] - "BMask.E25.nzb" yEnc', + 'ordinal' => 30, + ), + 147 => + array ( + 'id' => 1148, + 'group_regex' => '^korea\\.binaries\\.tv$', + 'regex' => '/^"(?P\\w.+)\\.(par2|nzb|part\\d+\\.rar)" \\[\\d+\\/\\d+\\] yEnc$/', + 'status' => 1, + 'description' => '"Queen.InHyun\'s.Man.E16.END.720p.HDTV.x264-AREA11.nzb" [00/40] yEnc 25', + 'ordinal' => 0, + ), + 148 => + array ( + 'id' => 1149, + 'group_regex' => '^korea\\.binaries\\.music\\.videos$', + 'regex' => '/^\\[KoreanMusic\\] \\[.+?\\]\\.(?P.+?)(?P(MCD|The\\.Show)\\.\\d{6}\\.)(?P1080i\\.HDMI) \\[\\d+\\/\\d+\\] - ".+?" yEnc$/', + 'status' => 1, + 'description' => '[KoreanMusic] [Mnet].NS윤지-Wifey.MCD.150409.1080i.HDMI [5/16] - "[Mnet].NS윤지-Wifey.MCD.150409.1080i.HDMI.part04.rar" yEnc', + 'ordinal' => 2, + ), + 149 => + array ( + 'id' => 1150, + 'group_regex' => '^alt\\.binaries\\.e-book\\.technical$', + 'regex' => '/^(New )?tech eBooks -=?\\[?\\s?(?P[\\w\\.-]+)\\s?\\]?=?- ".+?" yEnc$/i', + 'status' => 1, + 'description' => 'New Tech eBooks -=[ ELSEVIER.SYSTEMS.PROGRAMMING.2015.RETAIL.EPUB.EBOOK-kE]=- "kesp15ef.zip" yEnc', + 'ordinal' => 5, + ), + 150 => + array ( + 'id' => 1151, + 'group_regex' => '^alt\\.binaries\\.(cores|ath)$', + 'regex' => '/^\\[(SERIES|MOVIES)]-\\[ www\\.vip-lounge\\.me \\] \\[\\d+\\/\\d+\\] - "(?P.+?)\\.(par2|nfo|rar|part\\d+\\.rar|vol\\d+\\+\\d+\\.par2)" - \\d+\\d+ [GM]B yEnc$/i', + 'status' => 1, + 'description' => '[SERIES]-[ www.vip-lounge.me ] [19/20] - "Wild.World.Africas.Deadly.Eden.480p.x264-mSD.vol03+4.par2" - 44342 MB yEnc', + 'ordinal' => 55, + ), + 151 => + array ( + 'id' => 1152, + 'group_regex' => '^alt\\.binaries\\.cores$', + 'regex' => '/^(?P.+?) - \\[\\d+/d+] - ".+?" yEnc$/', + 'status' => 1, + 'description' => 'Gracepoint S01E04 Episode Four 1080p WEB-DL DD51 H 264 CtrlHD - [52/52] - "Gracepoint S01E04 Episode Four 1080p WEB-DL DD51 H 264 CtrlHD.vol511+021.par2" yEnc', + 'ordinal' => 110, + ), + 152 => + array ( + 'id' => 1153, + 'group_regex' => '^alt\\.binaries\\.howard-stern$', + 'regex' => '/^.+? \\[\\d+/d+] "(?P.+?).(mp3|nzb).*?" yEnc$/', + 'status' => 1, + 'description' => 'Artie Lange ArtieQuitter Podcast [2/9] "ArtieQuiterPodcast_2015-11-05_161_CF_128k.mp3.par2" yEnc', + 'ordinal' => 5, + ), + 153 => + array ( + 'id' => 1154, + 'group_regex' => '^alt\\.binaries\\.howard-stern$', + 'regex' => '/^.+? - File \\d+ of \\d+ - yEnc "(?P.+?).mp3" \\d+ bytes$/', + 'status' => 1, + 'description' => 'Howard Stern 11.04.2015 CF 32K 57.7MB + WUS - File 1 of 1 - yEnc "Howard Stern 11.04.15 (Alanis Morissette Visits).mp3" 60596352 bytes', + 'ordinal' => 10, + ), + 154 => + array ( + 'id' => 1155, + 'group_regex' => '^alt\\.binaries\\.howard-stern$', + 'regex' => '/^(?P.+?) \\d (?P\\d+kbps) - \\[\\d+\\/\\d+\\] - ".+?Part_\\d+\\.(mp3|nzb).*?" yEnc$/', + 'status' => 1, + 'description' => 'Howard Stern Show Oct 19 2015 Mon Hour 6 96kbps - [1/1] - "Stern-2015_10_19-96k-Part_06.mp3" yEnc', + 'ordinal' => 15, + ), + 155 => + array ( + 'id' => 1156, + 'group_regex' => '^alt\\.binaries\\.movies$', + 'regex' => '/^.*?"(?P.*?)\\.\\w+"\\s+yenc$/i', + 'status' => 1, + 'description' => '//BDRips "Daredevil.2003.BDRip.x264-DJ.par2" yEnc', + 'ordinal' => 70, + ), + 156 => + array ( + 'id' => 1157, + 'group_regex' => '^alt\\.binaries\\.multimedia\\.sports$', + 'regex' => '/^\\[?AFL.+\\" ?[ .-]?(?P.+?) ?[ .](7z|avi|md5|mkv|mp4|nfo|nzb|par|rar|sfv|vol)t?\\d?+.+yEnc$/', + 'status' => 1, + 'description' => '//[AFL 2017 Round 8 NMFC vs SYD 720p] - "AFL 2017 Round 8 NMFC vs SYD 720p par2" yEnc or AFL.2017.Round.8.ADEL.vs.MELB.480p] - "AFL.2017.Round.8.ADEL.vs.MELB.480p.sfv" yEnc', + 'ordinal' => 5, + ), + )); + + + } +} \ No newline at end of file diff --git a/database/seeds/SettingsTableSeeder.php b/database/seeds/SettingsTableSeeder.php new file mode 100644 index 000000000..586b3074e --- /dev/null +++ b/database/seeds/SettingsTableSeeder.php @@ -0,0 +1,1483 @@ +delete(); + + \DB::table('settings')->insert(array ( + 0 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'addpar2', + 'value' => '0', + 'hint' => 'When going through PAR2 files, add them to the RAR file content list of the NZB.', + 'setting' => 'addpar2', + ), + 1 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'allasmgr', + 'value' => '1', + 'hint' => 'Treat all releases as MGR', + 'setting' => 'allasmgr', + ), + 2 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'alternate_nntp', + 'value' => '0', + 'hint' => 'This sets Postproccessing Additional/Nfo to use the alternate NNTP provider as set in config.php.', + 'setting' => 'alternate_nntp', + ), + 3 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'amazonsleep', + 'value' => '1000', + 'hint' => 'Sleep time in milliseconds to wait in between amazon requests. If you thread post-proc, multiply by the number of threads. ie Postprocessing Threads = 12, Amazon sleep time = 12000
https://affiliate-program.amazon.com/gp/advertising/api/detail/faq.html', + 'setting' => 'amazonsleep', + ), + 4 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'backfillthreads', + 'value' => '1', + 'hint' => 'The number of threads for backfill.', + 'setting' => 'backfillthreads', + ), + 5 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'binarythreads', + 'value' => '1', + 'hint' => 'The number of threads for update_binaries. If you notice that you are getting a lot of parts into the partrepair table, it is possible that you USP is not keeping up with the requests. Try to reduce the threads to safe scripts or stop using safe scripts until improves. Ar least until the cause can be determined.', + 'setting' => 'binarythreads', + ), + 6 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'book_reqids', + 'value' => '7010', + 'hint' => 'Categories of Books to lookup information for (only work if Lookup Books is set to yes).', + 'setting' => 'book_reqids', + ), + 7 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'checkpasswordedrar', + 'value' => '0', + 'hint' => 'Whether to attempt to peek into every release, to see if rar files are password protected.', + 'setting' => 'checkpasswordedrar', + ), + 8 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'completionpercent', + 'value' => '95', + 'hint' => 'The minimum completion % to keep a release. Set to 0 to disable.', + 'setting' => 'completionpercent', + ), + 9 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'compressedheaders', + 'value' => '0', + 'hint' => 'Some servers allow headers to be sent over in a compressed format. If enabled this will use much less bandwidth, but processing times may increase.
If you notice that update binaries or backfill seems to hang, look in htop and see if a group is being processed. If so, first try disabling compressed headers and let run until it processes the group at least once, then you can re-enable compressed headers.', + 'setting' => 'compressedheaders', + ), + 10 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'crossposttime', + 'value' => '2', + 'hint' => 'The time in hours to check for cross-posted releases.', + 'setting' => 'crossposttime', + ), + 11 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'currentppticket', + 'value' => '0', + 'hint' => '', + 'setting' => 'currentppticket', + ), + 12 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'debuginfo', + 'value' => '0', + 'hint' => '', + 'setting' => 'debuginfo', + ), + 13 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'delaytime', + 'value' => '2', + 'hint' => 'The time in hours to wait, since last activity, before releases without parts counts in the subject are are created
Setting this below 2 hours could create incomplete releases.', + 'setting' => 'delaytime', + ), + 14 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'deletepasswordedrelease', + 'value' => '0', + 'hint' => 'Whether to delete releases which are passworded.', + 'setting' => 'deletepasswordedrelease', + ), + 15 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'deletepossiblerelease', + 'value' => '0', + 'hint' => 'Whether to delete releases which are potentially passworded.', + 'setting' => 'deletepossiblerelease', + ), + 16 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'disablebackfillgroup', + 'value' => '0', + 'hint' => 'Whether to disable backfill on a group if the target date has been reached.', + 'setting' => 'disablebackfillgroup', + ), + 17 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'extractusingrarinfo', + 'value' => '0', + 'hint' => 'Whether to use rarinfo or 7zip/unrar directly to decompress zip/rar files.', + 'setting' => 'extractusingrarinfo', + ), + 18 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'ffmpeg_duration', + 'value' => '5', + 'hint' => 'The maximum duration (In Seconds) for ffmpeg to generate the sample for. (Default 5)', + 'setting' => 'ffmpeg_duration', + ), + 19 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'ffmpeg_image_time', + 'value' => '5', + 'hint' => '', + 'setting' => 'ffmpeg_image_time', + ), + 20 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'fixnamesperrun', + 'value' => '10', + 'hint' => 'The maximum number of releases to check per run(threaded script only).', + 'setting' => 'fixnamesperrun', + ), + 21 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'fixnamethreads', + 'value' => '1', + 'hint' => 'The number of threads for fixReleasesNames. This includes md5, nfos and filenames.', + 'setting' => 'fixnamethreads', + ), + 22 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'grabstatus', + 'value' => '1', + 'hint' => 'Whether to update download counts when someone downloads a release.', + 'setting' => 'grabstatus', + ), + 23 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'lastpretime', + 'value' => '0', + 'hint' => 'Last time we downloaded a pre using WEB sources', + 'setting' => 'lastpretime', + ), + 24 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'lookup_reqids', + 'value' => '1', + 'hint' => 'Whether to attempt to lookup Request IDs using the Request ID link below.', + 'setting' => 'lookup_reqids', + ), + 25 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'lookupanidb', + 'value' => '0', + 'hint' => 'Whether to attempt to lookup anime information from AniDB when processing binaries. Currently it is not recommend to enable this.', + 'setting' => 'lookupanidb', + ), + 26 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'lookupbooks', + 'value' => '1', + 'hint' => 'Whether to attempt to lookup book information from Amazon when processing binaries.', + 'setting' => 'lookupbooks', + ), + 27 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'lookupgames', + 'value' => '1', + 'hint' => 'Whether to attempt to lookup game information from Amazon when processing binaries.', + 'setting' => 'lookupgames', + ), + 28 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'lookupimdb', + 'value' => '1', + 'hint' => 'Whether to attempt to lookup film information from IMDB or TheMovieDB when processing binaries.', + 'setting' => 'lookupimdb', + ), + 29 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'lookupmusic', + 'value' => '1', + 'hint' => 'Whether to attempt to lookup music information from Amazon when processing binaries.', + 'setting' => 'lookupmusic', + ), + 30 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'lookupnfo', + 'value' => '1', + 'hint' => 'Whether to attempt to retrieve an nfo file from usenet when processing binaries.
NOTE: disabling nfo lookups will disable movie lookups.', + 'setting' => 'lookupnfo', + ), + 31 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'lookuppar2', + 'value' => '0', + 'hint' => 'Whether to attempt to find a better name for releases in misc->other using the PAR2 file.
NOTE: this can be slow depending on the group!', + 'setting' => 'lookuppar2', + ), + 32 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'lookuptvrage', + 'value' => '1', + 'hint' => 'Whether to attempt to lookup tv rage ids on the web when processing binaries.', + 'setting' => 'lookuptvrage', + ), + 33 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'lookupxxx', + 'value' => '1', + 'hint' => 'Whether to attempt to lookup xxx information from ADE or Popporn when processing binaries.', + 'setting' => 'lookupxxx', + ), + 34 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'max_headers_iteration', + 'value' => '1000000', + 'hint' => 'The maximum number of headers that update binaries is given as the total range. This ensures that a total of no more than this amount is attempted to be downloaded per group.', + 'setting' => 'max_headers_iteration', + ), + 35 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'maxaddprocessed', + 'value' => '25', + 'hint' => 'The maximum amount of releases to process for passwords/previews/mediainfo per run. Every release gets processed here. This uses NNTP an connection, 1 per thread. This does not query Amazon.', + 'setting' => 'maxaddprocessed', + ), + 36 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'maxanidbprocessed', + 'value' => '100', + 'hint' => 'The maximum amount of anime to process with anidb per run. This does not use an NNTP connection or query Amazon.', + 'setting' => 'maxanidbprocessed', + ), + 37 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'maxbooksprocessed', + 'value' => '300', + 'hint' => 'The maximum amount of books to process with amazon per run. This does not use an NNTP connection', + 'setting' => 'maxbooksprocessed', + ), + 38 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'maxgamesprocessed', + 'value' => '150', + 'hint' => 'The maximum amount of games to process with amazon per run. This does not use an NNTP connection.', + 'setting' => 'maxgamesprocessed', + ), + 39 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'maximdbprocessed', + 'value' => '100', + 'hint' => 'The maximum amount of movies to process with IMDB per run. This does not use an NNTP connection or query Amazon.', + 'setting' => 'maximdbprocessed', + ), + 40 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'maxmssgs', + 'value' => '20000', + 'hint' => 'The maximum number of messages to fetch at a time from the server. Only raise this if you have php set right and lots of RAM.', + 'setting' => 'maxmssgs', + ), + 41 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'maxmusicprocessed', + 'value' => '150', + 'hint' => 'The maximum amount of music to process with amazon per run. This does not use an NNTP connection.', + 'setting' => 'maxmusicprocessed', + ), + 42 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'maxnestedlevels', + 'value' => '3', + 'hint' => 'How many levels deep to go into nested rar/zip files.', + 'setting' => 'maxnestedlevels', + ), + 43 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'maxnfoprocessed', + 'value' => '100', + 'hint' => 'The maximum amount of NFO files to process per run. This uses an NNTP connection, 1 per thread. This does not query Amazon.', + 'setting' => 'maxnfoprocessed', + ), + 44 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'maxnforetries', + 'value' => '5', + 'hint' => 'How many times to retry when a NFO fails to download. If set to 0, we will not retry. The max is 7.', + 'setting' => 'maxnforetries', + ), + 45 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'maxnzbsprocessed', + 'value' => '1000', + 'hint' => 'The maximum amount of NZB files to create on stage 5 in update_releases.', + 'setting' => 'maxnzbsprocessed', + ), + 46 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'maxpartrepair', + 'value' => '15000', + 'hint' => 'The maximum amount of articles to attempt to repair at a time. If you notice that you are getting a lot of parts into the partrepair table, it is possible that you USP is not keeping up with the requests. Try to reduce the threads to safe scripts or stop using safe scripts until improves. At least until the cause can be determined.', + 'setting' => 'maxpartrepair', + ), + 47 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'maxpartsprocessed', + 'value' => '3', + 'hint' => 'If a part fails to download while post processing, this will retry up to the amount you set, then give up.', + 'setting' => 'maxpartsprocessed', + ), + 48 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'maxrageprocessed', + 'value' => '75', + 'hint' => 'The maximum amount of TV shows to process with TVRage per run. This does not use an NNTP connection or query Amazon.', + 'setting' => 'maxrageprocessed', + ), + 49 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'maxsizetopostprocess', + 'value' => '100', + 'hint' => 'The maximum size in gigabytes to post process (additional) a release. If set to 0, then ignored.', + 'setting' => 'maxsizetopostprocess', + ), + 50 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'maxsizetoprocessnfo', + 'value' => '100', + 'hint' => 'The maximum size in gigabytes of a release to process it for NFOs. If set to 0, then ignored.', + 'setting' => 'maxsizetoprocessnfo', + ), + 51 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'maxxxxprocessed', + 'value' => '100', + 'hint' => 'The maximum amount of xxx to process with ADE and Popporn per run. This does not use an NNTP connection or query Amazon.', + 'setting' => 'maxxxxprocessed', + ), + 52 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'minsizetopostprocess', + 'value' => '1', + 'hint' => 'The minimum size in megabytes to post process (additional) a release. If set to 0, then ignored.', + 'setting' => 'minsizetopostprocess', + ), + 53 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'minsizetoprocessnfo', + 'value' => '1', + 'hint' => 'The minimum size in megabytes of a release to process it for NFOs. If set to 0, then ignored.', + 'setting' => 'minsizetoprocessnfo', + ), + 54 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'mischashedretentionhours', + 'value' => '0', + 'hint' => 'The number of hours releases categorized as Misc->Hashed will be retained. Set to 0 to disable.', + 'setting' => 'mischashedretentionhours', + ), + 55 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'miscotherretentionhours', + 'value' => '0', + 'hint' => 'The number of hours releases categorized as Misc->Other will be retained. Set to 0 to disable.', + 'setting' => 'miscotherretentionhours', + ), + 56 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'newgroupdaystoscan', + 'value' => '1', + 'hint' => 'Days', + 'setting' => 'newgroupdaystoscan', + ), + 57 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'newgroupmsgstoscan', + 'value' => '100000', + 'hint' => 'Posts', + 'setting' => 'newgroupmsgstoscan', + ), + 58 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'newgroupscanmethod', + 'value' => '0', + 'hint' => 'Scan back X (posts/days) for each new group? Use backfill to scan further.', + 'setting' => 'newgroupscanmethod', + ), + 59 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'nextppticket', + 'value' => '0', + 'hint' => '', + 'setting' => 'nextppticket', + ), + 60 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'nfothreads', + 'value' => '1', + 'hint' => 'The number of threads for nfo postprocessing. The max is 16, if you set anything higher it will use 16.', + 'setting' => 'nfothreads', + ), + 61 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'nntpretries', + 'value' => '10', + 'hint' => 'The maximum number of retry attmpts to connect to nntp provider. On error, each retry takes approximately 5 seconds nntp returns reply. (Default 10).', + 'setting' => 'nntpretries', + ), + 62 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'nzbpath', + 'value' => '/var/www/NNTmux/resources/nzb/', + 'hint' => 'The directory where nzb files will be stored.', + 'setting' => 'nzbpath', + ), + 63 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'nzbsplitlevel', + 'value' => '4', + 'hint' => 'Levels deep to store the nzb Files.', + 'setting' => 'nzbsplitlevel', + ), + 64 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'nzbthreads', + 'value' => '1', + 'hint' => 'The number of threads for Grab NZBs.', + 'setting' => 'nzbthreads', + ), + 65 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'partrepair', + 'value' => '1', + 'hint' => 'Whether to attempt to repair parts or not, increases backfill/binaries updating time.', + 'setting' => 'partrepair', + ), + 66 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'partrepairmaxtries', + 'value' => '3', + 'hint' => 'Maximum amount of times to try part repair.', + 'setting' => 'partrepairmaxtries', + ), + 67 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'partretentionhours', + 'value' => '72', + 'hint' => 'The number of hours incomplete parts and binaries will be retained.', + 'setting' => 'partretentionhours', + ), + 68 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'passchkattempts', + 'value' => '1', + 'hint' => 'This overrides the above setting if set above 1. How many parts to check for a password before giving up. This slows down post processing massively, better to leave it 1.', + 'setting' => 'passchkattempts', + ), + 69 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'postdelay', + 'value' => '300', + 'hint' => '', + 'setting' => 'postdelay', + ), + 70 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'postthreads', + 'value' => '1', + 'hint' => 'The number of threads for additional postprocessing. This includes deep rar inspection, preview and sample creation and nfo processing.', + 'setting' => 'postthreads', + ), + 71 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'postthreadsamazon', + 'value' => '1', + 'hint' => '', + 'setting' => 'postthreadsamazon', + ), + 72 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'postthreadsnon', + 'value' => '1', + 'hint' => 'The number of threads for non-amazon postprocessing. This includes movies, anime and tv lookups.', + 'setting' => 'postthreadsnon', + ), + 73 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'predbversion', + 'value' => '1', + 'hint' => '', + 'setting' => 'predbversion', + ), + 74 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'privateprofiles', + 'value' => '1', + 'hint' => 'Hide profiles from other users (admin/mod can still access).', + 'setting' => 'privateprofiles', + ), + 75 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'processjpg', + 'value' => '0', + 'hint' => 'Whether to attempt to retrieve a JPG file while additional post processing, these are usually on XXX releases.', + 'setting' => 'processjpg', + ), + 76 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'processthumbnails', + 'value' => '0', + 'hint' => 'Whether to attempt to process a video thumbnail image. You must have ffmpeg for this.', + 'setting' => 'processthumbnails', + ), + 77 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'processvideos', + 'value' => '0', + 'hint' => 'Whether to attempt to process a video sample, these videos are very short 1-3 seconds, 100KB on average, in ogv format. You must have ffmpeg for this.', + 'setting' => 'processvideos', + ), + 78 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'registerstatus', + 'value' => '0', + 'hint' => 'The status of registrations to the site.', + 'setting' => 'registerstatus', + ), + 79 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'releaseretentiondays', + 'value' => '0', + 'hint' => '!!THIS IS NOT HEADER RETENTION!! The number of days releases will be retained for use throughout site. Set to 0 to disable.', + 'setting' => 'releaseretentiondays', + ), + 80 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'releasethreads', + 'value' => '1', + 'hint' => 'The number of threads for update_releases.', + 'setting' => 'releasethreads', + ), + 81 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'replacenzbs', + 'value' => '0', + 'hint' => 'NZBs that are crossposted, instead of deleting, replace with the nzb grabbed.(This is not necessary, was added before I understood how crossposted nzbs work).', + 'setting' => 'replacenzbs', + ), + 82 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'reqidthreads', + 'value' => '1', + 'hint' => 'The number of threads for local request id processing.', + 'setting' => 'reqidthreads', + ), + 83 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'request_hours', + 'value' => '1', + 'hint' => 'The maximum hours after a release is added to recheck for a Request ID match.', + 'setting' => 'request_hours', + ), + 84 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'request_url', + 'value' => 'http://reqid.newznab-tmux.pw/index.php', + 'hint' => 'Optional URL to lookup Request IDs.', + 'setting' => 'request_url', + ), + 85 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'safebackfilldate', + 'value' => '2012-06-24', + 'hint' => 'The target date for safe backfill. Format: YYYY-MM-DD', + 'setting' => 'safebackfilldate', + ), + 86 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'safepartrepair', + 'value' => '0', + 'hint' => 'Whether to put unreceived parts into partrepair table when running binaries(safe) or backfill scripts.', + 'setting' => 'safepartrepair', + ), + 87 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'saveaudiopreview', + 'value' => '0', + 'hint' => 'Whether to attempt to process a audio sample, they will be up to 30 seconds, in ogg format. You must have ffmpeg for this.', + 'setting' => 'saveaudiopreview', + ), + 88 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'segmentstodownload', + 'value' => '2', + 'hint' => 'The maximum number of segments to download to generate the sample video file. (Default 2)', + 'setting' => 'segmentstodownload', + ), + 89 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'showbacks', + 'value' => '0', + 'hint' => '', + 'setting' => 'showbacks', + ), + 90 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'showdroppedyencparts', + 'value' => '0', + 'hint' => 'For developers. Whether to log all headers that have \'yEnc\' and are dropped. Logged to not_yenc/groupname.dropped.txt.', + 'setting' => 'showdroppedyencparts', + ), + 91 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'showpasswordedrelease', + 'value' => '10', + 'hint' => 'Whether to show passworded or potentially passworded releases in browse, search, api and rss feeds. Potentially passworded means releases which contain .cab or .ace files which are typically password protected. (*yes): Unprocessed releases are hidden. (*no): Unprocessed releases are displayed.', + 'setting' => 'showpasswordedrelease', + ), + 92 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'showrecentforumposts', + 'value' => '', + 'hint' => '', + 'setting' => 'showrecentforumposts', + ), + 93 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'siteseed', + 'value' => '', + 'hint' => '', + 'setting' => 'siteseed', + ), + 94 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'sqlpatch', + 'value' => '336', + 'hint' => '', + 'setting' => 'sqlpatch', + ), + 95 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'storeuserips', + 'value' => '0', + 'hint' => 'Whether to store the users ip address when they signup or login.', + 'setting' => 'storeuserips', + ), + 96 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'timeoutseconds', + 'value' => '0', + 'hint' => 'How much time to wait for unrar/7zip/mediainfo/ffmpeg/avconv before killing it, set to 0 to disable. 60 is a good value. Requires the GNU Timeout path to be set.', + 'setting' => 'timeoutseconds', + ), + 97 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'tmpunrarpath', + 'value' => '/var/www/NNTmux/resources/tmp/unrar/', + 'hint' => 'The path to where unrar puts files. WARNING: This directory will have its contents deleted.
Use forward slashes in windows c:/temp/path/stuff/will/be/unpacked/to', + 'setting' => 'tmpunrarpath', + ), + 98 => + array ( + 'section' => '', + 'subsection' => '', + 'name' => 'userhostexclusion', + 'value' => '', + 'hint' => '', + 'setting' => 'userhostexclusion', + ), + 99 => + array ( + 'section' => '', + 'subsection' => 'release', + 'name' => 'maxsizetoformrelease', + 'value' => '0', + 'hint' => 'The maximum total size in bytes to make a release. If set to 0, then ignored. Only deletes during release creation.', + 'setting' => 'maxsizetoformrelease', + ), + 100 => + array ( + 'section' => '', + 'subsection' => 'release', + 'name' => 'minfilestoformrelease', + 'value' => '1', + 'hint' => 'The minimum number of files to make a release. i.e. if set to two, then releases which only contain one file will not be created.', + 'setting' => 'minfilestoformrelease', + ), + 101 => + array ( + 'section' => '', + 'subsection' => 'release', + 'name' => 'minsizetoformrelease', + 'value' => '0', + 'hint' => 'The minimum total size in bytes to make a release. If set to 0, then ignored. Only deletes during release creation.', + 'setting' => 'minsizetoformrelease', + ), + 102 => + array ( + 'section' => 'APIs', + 'subsection' => '', + 'name' => 'amazonassociatetag', + 'value' => 'n01369-20', + 'hint' => 'The amazon associate tag. Used for music/book lookups.', + 'setting' => 'amazonassociatetag', + ), + 103 => + array ( + 'section' => 'APIs', + 'subsection' => '', + 'name' => 'amazonprivkey', + 'value' => 'B58mVwyj+T/MEucxWugJ3GQ0CcW2kQq16qq/1WpS', + 'hint' => 'The amazon private api key. Used for music/book lookups.', + 'setting' => 'amazonprivkey', + ), + 104 => + array ( + 'section' => 'APIs', + 'subsection' => '', + 'name' => 'amazonpubkey', + 'value' => 'AKIAIPDNG5EU7LB4AD3Q', + 'hint' => 'The amazon public api key. Used for music/book lookups.', + 'setting' => 'amazonpubkey', + ), + 105 => + array ( + 'section' => 'APIs', + 'subsection' => '', + 'name' => 'anidbkey', + 'value' => '', + 'hint' => 'The Anidb api key. Used for Anime lookups.', + 'setting' => 'anidbkey', + ), + 106 => + array ( + 'section' => 'APIs', + 'subsection' => '', + 'name' => 'fanarttvkey', + 'value' => '', + 'hint' => 'The Fanart.tv api key. Used for Fanart.tv lookups. Fanart.tv would appreciate it if you use this service to help them out by adding high quality images not already available on TMDB.', + 'setting' => 'fanarttvkey', + ), + 107 => + array ( + 'section' => 'APIs', + 'subsection' => '', + 'name' => 'giantbombkey', + 'value' => '', + 'hint' => 'The giantbomb api key. Used for game lookups.', + 'setting' => 'giantbombkey', + ), + 108 => + array ( + 'section' => 'APIs', + 'subsection' => '', + 'name' => 'omdbkey', + 'value' => '', + 'hint' => 'OmdbAPIkey obtained from Omdb.Used for Omdb API lookups', + 'setting' => 'omdbkey', + ), + 109 => + array ( + 'section' => 'APIs', + 'subsection' => '', + 'name' => 'rottentomatokey', + 'value' => 'qxbxyngtujprvw7jxam2m6na', + 'hint' => 'The api key used for access to rotten tomatoes.', + 'setting' => 'rottentomatokey', + ), + 110 => + array ( + 'section' => 'APIs', + 'subsection' => '', + 'name' => 'tmdbkey', + 'value' => '9a4e16adddcd1e86da19bcaf5ff3c2a3', + 'hint' => 'The API key used for access to TMDb.', + 'setting' => 'tmdbkey', + ), + 111 => + array ( + 'section' => 'APIs', + 'subsection' => '', + 'name' => 'trakttvclientkey', + 'value' => '', + 'hint' => 'The Trakt.tv API v2 Client ID (SHA256 hash - 64 characters long string). Used for movie and tv lookups.', + 'setting' => 'trakttvclientkey', + ), + 112 => + array ( + 'section' => 'APIs', + 'subsection' => 'AniDB', + 'name' => 'banned', + 'value' => '0', + 'hint' => 'Timestamp of WHEN we were banned.', + 'setting' => 'AniDB_banned', + ), + 113 => + array ( + 'section' => 'APIs', + 'subsection' => 'AniDB', + 'name' => 'last_full_update', + 'value' => '0', + 'hint' => 'The last time a full AniDB update occurred in unixtime.', + 'setting' => 'lastanidbupdate', + ), + 114 => + array ( + 'section' => 'APIs', + 'subsection' => 'AniDB', + 'name' => 'max_update_frequency', + 'value' => '7', + 'hint' => 'The number of days between AniDB full updates. Default is 7.', + 'setting' => 'intanidbupdate', + ), + 115 => + array ( + 'section' => 'APIs', + 'subsection' => 'APIKeys', + 'name' => 'section-label', + 'value' => '3rd. Party API Keys', + 'hint' => '', + 'setting' => '""', + ), + 116 => + array ( + 'section' => 'APIs', + 'subsection' => 'Steam', + 'name' => 'last_update', + 'value' => '0', + 'hint' => 'Last time we updated steam_apps table.', + 'setting' => 'laststeamupdate', + ), + 117 => + array ( + 'section' => 'apps', + 'subsection' => '', + 'name' => 'ffmpegpath', + 'value' => '', + 'hint' => 'The path to the ffmpeg or avconv binary. Used for making thumbnails and video/audio previews. Use forward slashes in windows c:/path/to/ffmpeg.exe', + 'setting' => 'ffmpegpath', + ), + 118 => + array ( + 'section' => 'apps', + 'subsection' => '', + 'name' => 'lamepath', + 'value' => '', + 'hint' => 'The path to the lame binary. Used for audio manipulation. Use forward slashes in windows c:/path/to/lame.exe', + 'setting' => 'lamepath', + ), + 119 => + array ( + 'section' => 'apps', + 'subsection' => '', + 'name' => 'mediainfopath', + 'value' => '', + 'hint' => 'The path to the mediainfo binary. Used for deep file media analysis. Use empty path to disable mediainfo checks Use forward slashes in windows c:/path/to/mediainfo.exe', + 'setting' => 'mediainfopath', + ), + 120 => + array ( + 'section' => 'apps', + 'subsection' => '', + 'name' => 'timeoutpath', + 'value' => '', + 'hint' => 'The path to the timeout binary. This is used to limit the amount of time unrar/7zip/mediainfo/ffmpeg/avconv can run. You can the time limit in the process additional section. You can leave this empty to disable this. Use forward slashes in windows c:/path/to/timeout.exe', + 'setting' => 'timeoutpath', + ), + 121 => + array ( + 'section' => 'apps', + 'subsection' => '', + 'name' => 'unrarpath', + 'value' => '', + 'hint' => 'The path to an unrar binary, used in deep password detection and media info grabbing. Use forward slashes in windows c:/path/to/unrar.exe', + 'setting' => 'unrarpath', + ), + 122 => + array ( + 'section' => 'apps', + 'subsection' => '', + 'name' => 'yydecoderpath', + 'value' => '', + 'hint' => 'Path to yydecode, this will decode yEnc articles. On ubuntu/debian you can get yydecode in the getdeb repository. Compiling yydecode from source is easy/fast also. Use forward slashes in windows c:/path/to/yydecode.exe', + 'setting' => 'yydecoderpath', + ), + 123 => + array ( + 'section' => 'apps', + 'subsection' => '', + 'name' => 'zippath', + 'value' => '', + 'hint' => 'The path to the 7za (7zip command line in windows) binary, used for grabbing nfos from compressed zip files. Use forward slashes in windows c:/path/to/7z.exe', + 'setting' => 'zippath', + ), + 124 => + array ( + 'section' => 'apps', + 'subsection' => 'indexer', + 'name' => 'magic_file_path', + 'value' => '', + 'hint' => 'Path to magic number database. Windows' users should set this if they have installed GNUWin ‘file’. *nix users can optionally set this to a file of their choice.', + 'setting' => 'magic_file_path', + ), + 125 => + array ( + 'section' => 'apps', + 'subsection' => 'sabnzbplus', + 'name' => 'integrationtype', + 'value' => '2', + 'hint' => 'Whether to allow integration with a SAB install or not.', + 'setting' => 'sabintegrationtype', + ), + 126 => + array ( + 'section' => 'archive', + 'subsection' => 'fetch', + 'name' => 'end', + 'value' => '0', + 'hint' => 'Download/process the last rar or zip file(s) to check for a password and get the file names inside?', + 'setting' => 'fetchlastcompressedfiles', + ), + 127 => + array ( + 'section' => 'indexer', + 'subsection' => 'categorise', + 'name' => 'categorizeforeign', + 'value' => '1', + 'hint' => 'This only works if the above is set to english. Whether to send foreign movies/tv to foreign sections or not. If set to true they will go in foreign categories.', + 'setting' => 'categorizeforeign', + ), + 128 => + array ( + 'section' => 'indexer', + 'subsection' => 'categorise', + 'name' => 'catwebdl', + 'value' => '0', + 'hint' => 'Whether to send WEB-DL to the WEB-DL section or not. If set to true they will go in WEB-DL category, false will send them in HD TV.
This will also make them inaccessible to Sickbeard and possibly Couchpotato.', + 'setting' => 'catwebdl', + ), + 129 => + array ( + 'section' => 'indexer', + 'subsection' => 'categorise', + 'name' => 'imdblanguage', + 'value' => 'en', + 'hint' => 'Which language to lookup when sending requests to IMDB/Tmdb. (If akas.imdb.com is set, imdb still returns the original titles.)', + 'setting' => 'imdblanguage', + ), + 130 => + array ( + 'section' => 'indexer', + 'subsection' => 'categorise', + 'name' => 'imdburl', + 'value' => '0', + 'hint' => 'akas.imdb.com returns titles in their original title, imdb.com returns titles based on your IP address (if you are in france, you will get french titles).', + 'setting' => 'imdburl', + ), + 131 => + array ( + 'section' => 'indexer', + 'subsection' => 'ppa', + 'name' => 'innerfileblacklist', + 'value' => '/setup.exe|password.url/i', + 'hint' => 'You can add a regex here to set releases to potentially passworded when a file name inside a rar/zip matches this regex.', + 'setting' => 'innerfileblacklist', + ), + 132 => + array ( + 'section' => 'indexer', + 'subsection' => 'processing', + 'name' => 'collection_timeout', + 'value' => '48', + 'hint' => 'How many hours to wait before deleting a stuck/broken collection. (This is to prevent the MySQL tables from swelling up.)', + 'setting' => 'collection_timeout', + ), + 133 => + array ( + 'section' => 'indexer', + 'subsection' => 'processing', + 'name' => 'last_run_time', + 'value' => '3015-08-04 15:58:23', + 'hint' => 'Last date the indexer (update_binaries or backfill) was run.', + 'setting' => 'last_run_time', + ), + 134 => + array ( + 'section' => 'shell', + 'subsection' => 'date', + 'name' => 'format', + 'value' => '%Y-%m-%d %T', + 'hint' => 'Format string to use in shell\'s date command output. See `man date` for acceptable format. +Default: %Y-%m-%d %T', + 'setting' => 'shell.date.format', + ), + 135 => + array ( + 'section' => 'site', + 'subsection' => 'google', + 'name' => 'adbrowse', + 'value' => '', + 'hint' => 'The banner slot in the header.', + 'setting' => 'adbrowse', + ), + 136 => + array ( + 'section' => 'site', + 'subsection' => 'google', + 'name' => 'addetail', + 'value' => '', + 'hint' => 'The banner slot in the release details view.', + 'setting' => 'addetail', + ), + 137 => + array ( + 'section' => 'site', + 'subsection' => 'google', + 'name' => 'adheader', + 'value' => '', + 'hint' => 'The banner slot in the header.', + 'setting' => 'adheader', + ), + 138 => + array ( + 'section' => 'site', + 'subsection' => 'google', + 'name' => 'google_adsense_acc', + 'value' => '', + 'hint' => 'AdSense account: e.g. pub-123123123123123', + 'setting' => 'google_adsense_acc', + ), + 139 => + array ( + 'section' => 'site', + 'subsection' => 'google', + 'name' => 'google_adsense_search', + 'value' => '', + 'hint' => 'The ID of the google search ad panel displayed at the bottom of the left menu.', + 'setting' => 'google_adsense_search', + ), + 140 => + array ( + 'section' => 'site', + 'subsection' => 'google', + 'name' => 'google_analytics_acc', + 'value' => '', + 'hint' => 'Analytic\'s account: e.g. UA-xxxxxx-x', + 'setting' => 'google_analytics_acc', + ), + 141 => + array ( + 'section' => 'site', + 'subsection' => 'main', + 'name' => 'code', + 'value' => 'NNTmux', + 'hint' => 'A just for fun value, shown in debug and not on public pages.', + 'setting' => 'code', + ), + 142 => + array ( + 'section' => 'site', + 'subsection' => 'main', + 'name' => 'coverspath', + 'value' => '/var/www/NNTmux/resources/covers/', + 'hint' => 'The absolute path to the place covers will be stored.', + 'setting' => 'coverspath', + ), + 143 => + array ( + 'section' => 'site', + 'subsection' => 'main', + 'name' => 'dereferrer_link', + 'value' => '', + 'hint' => 'Optional URL to prepend to external links', + 'setting' => 'dereferrer_link', + ), + 144 => + array ( + 'section' => 'site', + 'subsection' => 'main', + 'name' => 'email', + 'value' => '', + 'hint' => 'Shown in the contact us page, and where the contact html form is sent to.', + 'setting' => 'email', + ), + 145 => + array ( + 'section' => 'site', + 'subsection' => 'main', + 'name' => 'footer', + 'value' => 'Usenet binary indexer.', + 'hint' => 'Displayed in the footer section of every public page.', + 'setting' => 'footer', + ), + 146 => + array ( + 'section' => 'site', + 'subsection' => 'main', + 'name' => 'home_link', + 'value' => '/', + 'hint' => 'The relative path to a the landing page shown when a user logs in, or clicks the home link.', + 'setting' => 'home_link', + ), + 147 => + array ( + 'section' => 'site', + 'subsection' => 'main', + 'name' => 'logfile', + 'value' => '/var/www/nntmux/resources/logs/failed-login.log', + 'hint' => 'Location of log file (MUST be set if logging to file is set).', + 'setting' => 'logfile', + ), + 148 => + array ( + 'section' => 'site', + 'subsection' => 'main', + 'name' => 'loggingopt', + 'value' => '0', + 'hint' => 'Where you would like to log failed logins to the site.', + 'setting' => 'loggingopt', + ), + 149 => + array ( + 'section' => 'site', + 'subsection' => 'main', + 'name' => 'menuposition', + 'value' => '2', + 'hint' => 'Where the menu should appear. Moving the menu to the top will require using a theme which widens the content panel. (not currently functional)', + 'setting' => 'menuposition', + ), + 150 => + array ( + 'section' => 'site', + 'subsection' => 'main', + 'name' => 'metadescription', + 'value' => 'A usenet indexing website', + 'hint' => 'Stem meta-description appended to all page meta description tags.', + 'setting' => 'metadescription', + ), + 151 => + array ( + 'section' => 'site', + 'subsection' => 'main', + 'name' => 'metakeywords', + 'value' => 'usenet,nzbs,cms,community', + 'hint' => 'Stem meta-keywords appended to all page meta keyword tags', + 'setting' => 'metakeywords', + ), + 152 => + array ( + 'section' => 'site', + 'subsection' => 'main', + 'name' => 'metatitle', + 'value' => 'An indexer', + 'hint' => 'Stem meta-tag appended to all page title tags.', + 'setting' => 'metatitle', + ), + 153 => + array ( + 'section' => 'site', + 'subsection' => 'main', + 'name' => 'strapline', + 'value' => 'A great usenet indexer', + 'hint' => 'Displayed in the header on every public page.', + 'setting' => 'strapline', + ), + 154 => + array ( + 'section' => 'site', + 'subsection' => 'main', + 'name' => 'style', + 'value' => 'Gentele', + 'hint' => 'The theme folder which will be loaded for css and images.', + 'setting' => 'style', + ), + 155 => + array ( + 'section' => 'site', + 'subsection' => 'main', + 'name' => 'tandc', + 'value' => '

All information within this database is indexed by an automated process, without any human intervention. It is obtained from global Usenet newsgroups over which this site has no control. We cannot prevent that you might find obscene or objectionable material by using this service. If you do come across obscene, incorrect or objectionable results, let us know by using the contact form.

', + 'hint' => 'Text displayed in the terms and conditions page.', + 'setting' => 'tandc', + ), + 156 => + array ( + 'section' => 'site', + 'subsection' => 'main', + 'name' => 'title', + 'value' => 'NNTmux', + 'hint' => 'Displayed around the site and contact form as the name for the site.', + 'setting' => 'title', + ), + 157 => + array ( + 'section' => 'site', + 'subsection' => 'main', + 'name' => 'userselstyle', + 'value' => '0', + 'hint' => 'Users can select their theme?', + 'setting' => 'userselstyle', + ), + 158 => + array ( + 'section' => 'site', + 'subsection' => 'trailers', + 'name' => 'trailers_display', + 'value' => '1', + 'hint' => 'Display trailers on the details page?', + 'setting' => 'trailers_display', + ), + 159 => + array ( + 'section' => 'site', + 'subsection' => 'trailers', + 'name' => 'trailers_size_x', + 'value' => '480', + 'hint' => 'Width of the displayed trailer. 480 by default.', + 'setting' => 'trailers_size_x', + ), + 160 => + array ( + 'section' => 'site', + 'subsection' => 'trailers', + 'name' => 'trailers_size_y', + 'value' => '345', + 'hint' => 'Height of the displayed trailer. 345 by default.', + 'setting' => 'trailers_size_y', + ), + 161 => + array ( + 'section' => 'tmux', + 'subsection' => 'running', + 'name' => 'exit', + 'value' => '0', + 'hint' => 'Determines if the running tmux monitor script should exit. If 0 nothing changes; if positive the script should exit gracefully (allowing all panes to finish); if negative the script should die as soon as possible.', + 'setting' => 'tmux.running.exit', + ), + )); + + + } +} \ No newline at end of file diff --git a/database/seeds/TmuxTableSeeder.php b/database/seeds/TmuxTableSeeder.php new file mode 100644 index 000000000..2f61926ba --- /dev/null +++ b/database/seeds/TmuxTableSeeder.php @@ -0,0 +1,556 @@ +delete(); + + \DB::table('tmux')->insert(array ( + 0 => + array ( + 'id' => 1, + 'setting' => 'defrag_cache', + 'value' => '900', + 'updated_at' => '2018-01-18 11:11:35', + ), + 1 => + array ( + 'id' => 2, + 'setting' => 'monitor_delay', + 'value' => '300', + 'updated_at' => '2018-01-18 11:11:35', + ), + 2 => + array ( + 'id' => 3, + 'setting' => 'tmux_session', + 'value' => 'nntmux', + 'updated_at' => '2018-01-18 11:11:35', + ), + 3 => + array ( + 'id' => 4, + 'setting' => 'niceness', + 'value' => '19', + 'updated_at' => '2018-01-18 11:11:35', + ), + 4 => + array ( + 'id' => 5, + 'setting' => 'binaries', + 'value' => '0', + 'updated_at' => '2018-01-18 11:11:35', + ), + 5 => + array ( + 'id' => 6, + 'setting' => 'backfill', + 'value' => '0', + 'updated_at' => '2018-01-18 11:11:35', + ), + 6 => + array ( + 'id' => 7, + 'setting' => 'import', + 'value' => '0', + 'updated_at' => '2018-01-18 11:11:35', + ), + 7 => + array ( + 'id' => 8, + 'setting' => 'nzbs', + 'value' => '/path/to/nzbs', + 'updated_at' => '2018-01-18 11:11:35', + ), + 8 => + array ( + 'id' => 9, + 'setting' => 'running', + 'value' => '0', + 'updated_at' => '2018-01-18 11:11:35', + ), + 9 => + array ( + 'id' => 10, + 'setting' => 'sequential', + 'value' => '0', + 'updated_at' => '2018-01-18 11:11:35', + ), + 10 => + array ( + 'id' => 11, + 'setting' => 'nfos', + 'value' => '0', + 'updated_at' => '2018-01-18 11:11:35', + ), + 11 => + array ( + 'id' => 12, + 'setting' => 'post', + 'value' => '0', + 'updated_at' => '2018-01-18 11:11:35', + ), + 12 => + array ( + 'id' => 13, + 'setting' => 'releases', + 'value' => '0', + 'updated_at' => '2018-01-18 11:11:35', + ), + 13 => + array ( + 'id' => 14, + 'setting' => 'releases_threaded', + 'value' => '0', + 'updated_at' => '2018-01-18 11:11:35', + ), + 14 => + array ( + 'id' => 15, + 'setting' => 'fix_names', + 'value' => '0', + 'updated_at' => '2018-01-18 11:11:35', + ), + 15 => + array ( + 'id' => 16, + 'setting' => 'seq_timer', + 'value' => '30', + 'updated_at' => '2018-01-18 11:11:35', + ), + 16 => + array ( + 'id' => 17, + 'setting' => 'bins_timer', + 'value' => '30', + 'updated_at' => '2018-01-18 11:11:35', + ), + 17 => + array ( + 'id' => 18, + 'setting' => 'bins_kill_timer', + 'value' => '1', + 'updated_at' => '2018-01-18 11:11:35', + ), + 18 => + array ( + 'id' => 19, + 'setting' => 'back_timer', + 'value' => '30', + 'updated_at' => '2018-01-18 11:11:35', + ), + 19 => + array ( + 'id' => 20, + 'setting' => 'import_timer', + 'value' => '30', + 'updated_at' => '2018-01-18 11:11:35', + ), + 20 => + array ( + 'id' => 21, + 'setting' => 'rel_timer', + 'value' => '30', + 'updated_at' => '2018-01-18 11:11:35', + ), + 21 => + array ( + 'id' => 22, + 'setting' => 'fix_timer', + 'value' => '30', + 'updated_at' => '2018-01-18 11:11:35', + ), + 22 => + array ( + 'id' => 23, + 'setting' => 'post_timer', + 'value' => '30', + 'updated_at' => '2018-01-18 11:11:35', + ), + 23 => + array ( + 'id' => 24, + 'setting' => 'import_bulk', + 'value' => '0', + 'updated_at' => '2018-01-18 11:11:35', + ), + 24 => + array ( + 'id' => 25, + 'setting' => 'backfill_qty', + 'value' => '100000', + 'updated_at' => '2018-01-18 11:11:35', + ), + 25 => + array ( + 'id' => 26, + 'setting' => 'collections_kill', + 'value' => '0', + 'updated_at' => '2018-01-18 11:11:35', + ), + 26 => + array ( + 'id' => 27, + 'setting' => 'postprocess_kill', + 'value' => '0', + 'updated_at' => '2018-01-18 11:11:35', + ), + 27 => + array ( + 'id' => 28, + 'setting' => 'crap_timer', + 'value' => '30', + 'updated_at' => '2018-01-18 11:11:35', + ), + 28 => + array ( + 'id' => 29, + 'setting' => 'fix_crap', + 'value' => '0', + 'updated_at' => '2018-01-18 11:11:35', + ), + 29 => + array ( + 'id' => 30, + 'setting' => 'tv_timer', + 'value' => '43200', + 'updated_at' => '2018-01-18 11:11:35', + ), + 30 => + array ( + 'id' => 31, + 'setting' => 'update_tv', + 'value' => '0', + 'updated_at' => '2018-01-18 11:11:35', + ), + 31 => + array ( + 'id' => 32, + 'setting' => 'htop', + 'value' => '0', + 'updated_at' => '2018-01-18 11:11:35', + ), + 32 => + array ( + 'id' => 33, + 'setting' => 'nmon', + 'value' => '0', + 'updated_at' => '2018-01-18 11:11:35', + ), + 33 => + array ( + 'id' => 34, + 'setting' => 'bwmng', + 'value' => '0', + 'updated_at' => '2018-01-18 11:11:35', + ), + 34 => + array ( + 'id' => 35, + 'setting' => 'mytop', + 'value' => '0', + 'updated_at' => '2018-01-18 11:11:35', + ), + 35 => + array ( + 'id' => 36, + 'setting' => 'console', + 'value' => '0', + 'updated_at' => '2018-01-18 11:11:35', + ), + 36 => + array ( + 'id' => 37, + 'setting' => 'vnstat', + 'value' => '0', + 'updated_at' => '2018-01-18 11:11:35', + ), + 37 => + array ( + 'id' => 38, + 'setting' => 'vnstat_args', + 'value' => 'NULL', + 'updated_at' => '2018-01-18 11:11:35', + ), + 38 => + array ( + 'id' => 39, + 'setting' => 'tcptrack', + 'value' => '0', + 'updated_at' => '2018-01-18 11:11:35', + ), + 39 => + array ( + 'id' => 40, + 'setting' => 'tcptrack_args', + 'value' => '-i eth0 port 443', + 'updated_at' => '2018-01-18 11:11:35', + ), + 40 => + array ( + 'id' => 41, + 'setting' => 'backfill_groups', + 'value' => '4', + 'updated_at' => '2018-01-18 11:11:35', + ), + 41 => + array ( + 'id' => 42, + 'setting' => 'post_kill_timer', + 'value' => '300', + 'updated_at' => '2018-01-18 11:11:35', + ), + 42 => + array ( + 'id' => 43, + 'setting' => 'optimize', + 'value' => '0', + 'updated_at' => '2018-01-18 11:11:35', + ), + 43 => + array ( + 'id' => 44, + 'setting' => 'optimize_timer', + 'value' => '86400', + 'updated_at' => '2018-01-18 11:11:35', + ), + 44 => + array ( + 'id' => 45, + 'setting' => 'monitor_path', + 'value' => 'NULL', + 'updated_at' => '2018-01-18 11:11:35', + ), + 45 => + array ( + 'id' => 46, + 'setting' => 'write_logs', + 'value' => '0', + 'updated_at' => '2018-01-18 11:11:35', + ), + 46 => + array ( + 'id' => 47, + 'setting' => 'sorter', + 'value' => '0', + 'updated_at' => '2018-01-18 11:11:35', + ), + 47 => + array ( + 'id' => 48, + 'setting' => 'sorter_timer', + 'value' => '30', + 'updated_at' => '2018-01-18 11:11:35', + ), + 48 => + array ( + 'id' => 49, + 'setting' => 'powerline', + 'value' => '0', + 'updated_at' => '2018-01-18 11:11:35', + ), + 49 => + array ( + 'id' => 50, + 'setting' => 'patchdb', + 'value' => '0', + 'updated_at' => '2018-01-18 11:11:35', + ), + 50 => + array ( + 'id' => 51, + 'setting' => 'patchdb_timer', + 'value' => '21600', + 'updated_at' => '2018-01-18 11:11:35', + ), + 51 => + array ( + 'id' => 52, + 'setting' => 'progressive', + 'value' => '0', + 'updated_at' => '2018-01-18 11:11:35', + ), + 52 => + array ( + 'id' => 53, + 'setting' => 'dehash', + 'value' => '0', + 'updated_at' => '2018-01-18 11:11:35', + ), + 53 => + array ( + 'id' => 54, + 'setting' => 'dehash_timer', + 'value' => '30', + 'updated_at' => '2018-01-18 11:11:35', + ), + 54 => + array ( + 'id' => 55, + 'setting' => 'backfill_order', + 'value' => '2', + 'updated_at' => '2018-01-18 11:11:35', + ), + 55 => + array ( + 'id' => 56, + 'setting' => 'backfill_days', + 'value' => '1', + 'updated_at' => '2018-01-18 11:11:35', + ), + 56 => + array ( + 'id' => 57, + 'setting' => 'post_amazon', + 'value' => '0', + 'updated_at' => '2018-01-18 11:11:35', + ), + 57 => + array ( + 'id' => 58, + 'setting' => 'post_non', + 'value' => '0', + 'updated_at' => '2018-01-18 11:11:35', + ), + 58 => + array ( + 'id' => 59, + 'setting' => 'post_timer_amazon', + 'value' => '30', + 'updated_at' => '2018-01-18 11:11:35', + ), + 59 => + array ( + 'id' => 60, + 'setting' => 'post_timer_non', + 'value' => '30', + 'updated_at' => '2018-01-18 11:11:35', + ), + 60 => + array ( + 'id' => 61, + 'setting' => 'colors_start', + 'value' => '1', + 'updated_at' => '2018-01-18 11:11:35', + ), + 61 => + array ( + 'id' => 62, + 'setting' => 'colors_end', + 'value' => '250', + 'updated_at' => '2018-01-18 11:11:35', + ), + 62 => + array ( + 'id' => 63, + 'setting' => 'colors_exc', + 'value' => '4, 8, 9, 11, 15, 16, 17, 18, 19, 46, 47, 48, 49, 50, 51, 52, 53, 59, 60', + 'updated_at' => '2018-01-18 11:11:35', + ), + 63 => + array ( + 'id' => 64, + 'setting' => 'monitor_path_a', + 'value' => 'NULL', + 'updated_at' => '2018-01-18 11:11:35', + ), + 64 => + array ( + 'id' => 65, + 'setting' => 'monitor_path_b', + 'value' => 'NULL', + 'updated_at' => '2018-01-18 11:11:35', + ), + 65 => + array ( + 'id' => 66, + 'setting' => 'colors', + 'value' => '0', + 'updated_at' => '2018-01-18 11:11:35', + ), + 66 => + array ( + 'id' => 67, + 'setting' => 'showquery', + 'value' => '0', + 'updated_at' => '2018-01-18 11:11:35', + ), + 67 => + array ( + 'id' => 68, + 'setting' => 'fix_crap_opt', + 'value' => 'Disabled', + 'updated_at' => '2018-01-18 11:11:35', + ), + 68 => + array ( + 'id' => 69, + 'setting' => 'showprocesslist', + 'value' => '0', + 'updated_at' => '2018-01-18 11:11:35', + ), + 69 => + array ( + 'id' => 70, + 'setting' => 'processupdate', + 'value' => '2', + 'updated_at' => '2018-01-18 11:11:35', + ), + 70 => + array ( + 'id' => 71, + 'setting' => 'run_ircscraper', + 'value' => '0', + 'updated_at' => '2018-01-18 11:11:35', + ), + 71 => + array ( + 'id' => 72, + 'setting' => 'run_sharing', + 'value' => '0', + 'updated_at' => '2018-01-18 11:11:35', + ), + 72 => + array ( + 'id' => 73, + 'setting' => 'sharing_timer', + 'value' => '60', + 'updated_at' => '2018-01-18 11:11:35', + ), + 73 => + array ( + 'id' => 74, + 'setting' => 'import_count', + 'value' => '50000', + 'updated_at' => '2018-01-18 11:11:35', + ), + 74 => + array ( + 'id' => 75, + 'setting' => 'debuginfo', + 'value' => '0', + 'updated_at' => '2018-01-18 11:11:35', + ), + 75 => + array ( + 'id' => 76, + 'setting' => 'redis', + 'value' => '0', + 'updated_at' => '2018-01-18 11:11:35', + ), + )); + + + } +} \ No newline at end of file diff --git a/resources/db/schema/data/10-binaryblacklist.tsv b/resources/db/schema/data/10-binaryblacklist.tsv deleted file mode 100755 index 8e6af92b0..000000000 --- a/resources/db/schema/data/10-binaryblacklist.tsv +++ /dev/null @@ -1,19 +0,0 @@ -id, groupname, regex, msgcol, optype, status, description -1 alt\\.binaries\\..* (brazilian|chinese|croatian|danish|deutsch|dutch|estonian|flemish|finnish|french|german|greek|hebrew|icelandic|italian|latin|nordic|norwegian|polish|portuguese|japenese|japanese|russian|serbian|slovenian|spanish|spanisch|swedish|thai|turkish)[\\)]?( \\-)?[ \\-\\.]((19|20)\\d\\d|(480|720|1080)(i|p)|3d|5\\.1|dts|ac3|truehd|(bd|dvd|hd|sat|vhs|web)\\.?rip|(bd.)?(h|x).?2?64|divx|xvid|bluray|svcd|board|custom|\"|(d|h|p|s)d?v?tv|m?dvd(-|sc)?r|int(ernal)?|nzb|par2|\\b(((dc|ld|md|ml|dl|hr|se)[.])|(anime\\.)|(fs|ws)|dsr|pal|ntsc|iso|complete|cracked|ebook|extended|dirfix|festival|proper|game|limited|read.?nfo|real|rerip|repack|remastered|retail|samplefix|scan|screener|theatrical|uncut|unrated|incl|winall)\\b|doku|doc|dub|sub|\\(uncut\\)) 1 1 0 Blacklists non-english releases. -2 alt\\.binaries\\..* [ -.](bl|cz|de|es|fr|ger|heb|hu|hun|ita|ko|kor|nl|pl|se)[ -.]((19|20)\\d\\d|(480|720|1080)(i|p)|(bd|dvd.?|sat|vhs)?rip?|(bd|dl)mux|( -.)?(dub|sub)(ed|bed)?|complete|convert|(d|h|p|s)d?tv|dirfix|docu|dual|dvbs|dvdscr|eng|(h|x).?2?64|int(ernal)?|pal|proper|repack|xbox) 1 1 0 Blacklists non-english abbreviated releases. -3 alt\\.binaries\\..* [ -.]((19|20)\\d\\d|(bd|dvd.?|sat|vhs)?rip?|custom|divx|dts)[ -.](bl|cz|de|es|fr|ger|heb|hu|ita|ko|kor|nl|pl|se)[ -.] 1 1 0 Blacklists non-english abbreviated (reversed) releases. -4 alt\\.binaries\\..* [ -.](chinese.subbed|dksubs|fansubs?|finsub|hebdub|hebsub|korsub|norsub|nordicsubs|nl( -.)?sub(ed|bed|s)?|nlvlaams|pldub|plsub|slosinh|swesub|truefrench|vost(fr)?)[ -.] 1 1 0 Blacklists non-english subtitled releases. -5 alt\\.binaries\\..* [ -._](4u\\.nl|nov[ a]+rip|realco|videomann|vost)[ -._] 1 1 0 Blacklists non-english (release group specific) releases. -6 alt\\.binaries\\..* [ -.]((bd|dl)mux|doku|\\[foreign\\]|seizoen|staffel)[ -.] 1 1 0 Blacklists non-english (lang specific) releases. -7 alt\\.binaries\\..* [ -.](imageset|pictureset|xxx)[ -.] 1 1 0 Blacklists porn releases. -8 alt\\.binaries\\..* hdnectar|nzbcave 1 1 0 Bad releases. -9 alt\\.binaries\\..* Passworded 1 1 0 Removes passworded releases. -10 alt\\.binaries\\.(boneless|movies\\.divx) ((Frkz|info)@XviD2?|x?VIDZ?@pwrpst|movies@movies?)\\.net|(hsv\\.stoned@hotmail|unequal87@gmail|ilove@movies)\\.com 2 1 0 Virus codec posters. -11 alt\\.binaries\\.tun \\[PRiVATE\\]\\s+[a-z0-9]+ 1 1 0 Passworded/Encrypted junk. -12 ^alt\\.binaries\\.teevee$ ^\\[KoreanTV\\] 1 1 0 Blocks posts by koreantv. -13 ^alt\\.binaries\\.(kenpsx|frogs)$ ^\\s*([a-f0-9]{16})\\s\\[\\d+\\/\\d+\\]\\s-\\s\\"\\1\\"\\s+yEnc$ 1 1 0 Block 16 character hash floods in kenpsx frogs. -14 ^alt\\.binaries\\.multimedia\\.korean$ TESTMAN 2 1 1 Posts by TESTMAN (jpegs) -15 ^alt\\.binaries\\.multimedia\\.korean$ ^yEnc ".+torrent"$ 1 1 1 torrent uploads ::: yEnc "SBS ÀαⰡ¿ä.E690.120916.HDTV.H264.720p-KOR.avi.torrent" -16 ^korea\\.binaries\\.movies$ ^.\[?(Kornet|SK|xpeed|KT)\]? 1 1 1 Incomplete releases -17 ^korea\\.binaries\\.movies$ ^(top@top.t \\(top\\)|shit@xxxxxxxxaa.com \\(shit\\)|none@nonemail.com \\(none\\))$ 2 1 1 incomplete cryptic releases -18 ^korea\\.binaries\\.movies$ ^filzilla6@web\\.de \\(Baruth\\)$ 2 1 1 Virus Poster \ No newline at end of file diff --git a/resources/db/schema/data/10-category_regexes.tsv b/resources/db/schema/data/10-category_regexes.tsv deleted file mode 100755 index e126ee6ff..000000000 --- a/resources/db/schema/data/10-category_regexes.tsv +++ /dev/null @@ -1,2 +0,0 @@ -id, group_regex, regex, status, description, ordinal, categories_id -1 ^alt\\.binaries\\.sony\\.psvita$ /.*/ 1 50 1120 \ No newline at end of file diff --git a/resources/db/schema/data/10-collection_regexes.tsv b/resources/db/schema/data/10-collection_regexes.tsv deleted file mode 100755 index 8a33131bc..000000000 --- a/resources/db/schema/data/10-collection_regexes.tsv +++ /dev/null @@ -1,603 +0,0 @@ -id, group_regex, regex, status, description, ordinal -1 ^alt\\.binaries\\.teevee$ /(?P\\[[\\d#]+\\]-\\[.+?\\]-\\[.+?\\])-\\[ (?P.+?) \\][- ]\\[\\d+\\/\\d+\\] - ".+?" yEnc$/i 1 [278997]-[FULL]-[#a.b.erotica]-[ chi-the.walking.dead.xxx ]-[06/51] - "chi-the.walking.dead.xxx-s.mp4" yEnc ::: [######]-[FULL]-[#a.b.teevee@EFNet]-[ Misfits.S01.SUBPACK.DVDRip.XviD-P0W4DVD ] [1/5] - "Misfits.S01.SUBPACK.DVDRip.XviD-P0W4DVD.nfo" yEnc ::: Re: [147053]-[FULL]-[#a.b.teevee]-[ Top_Gear.20x04.HDTV_x264-FoV ]-[11/59] - "top_gear.20x04.hdtv_x264-fov.r00" yEnc 0 -2 ^alt\\.binaries\\.teevee$ /(?P\\[[\\d#]+\\]-\\[.+?\\]-\\[.+?\\])-\\[ (?P.+?) \\][ -]{0,3}".+?" yEnc$/i 1 [185409]-[FULL]-[a.b.teeveeEFNet]-[ Dragon.Ball.Z.S03E24.1080p.WS.BluRay.x264-CCAT ]-"dragon.ball.z.s03e24.1080p.ws.bluray.x264-ccat.nfo" yEnc 1 -3 ^alt\\.binaries\\.teevee$ /^(?P\\[#a\\.b\\.teevee\\] .+? - \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 [#a.b.teevee] Parks.and.Recreation.S01E01.720p.WEB-DL.DD5.1.H.264-CtrlHD - [01/24] - "Parks.and.Recreation.S01E01.720p.WEB-DL.DD5.1.H.264-CtrlHD.nfo" yEnc 2 -4 ^alt\\.binaries\\.teevee$ /^(?P[a-z0-9]+ - )\\[\\d+\\/\\d+\\] - "[a-z0-9]+\\..+?" yEnc$/ 1 ah63jka93jf0jh26ahjas558 - [01/22] - "ah63jka93jf0jh26ahjas558.par2" yEnc 3 -5 ^alt\\.binaries\\.teevee$ /^(?P[a-z0-9]+ \\()\\d+\\/\\d+\\) ".+?" - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/ 1 fhdbg34rgjdsfd008c (42/43) "fhdbg34rgjdsfd008c.vol062+64.par2" - 3,68 GB - yEnc 4 -6 ^alt\\.binaries\\.teevee$ /^(?P[a-zA-Z0-9]+)\\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 t2EI3CdWdF0hi5b8L9tkx[08/52] - "t2EI3CdWdF0hi5b8L9tkx.part07.rar" yEnc 5 -7 ^alt\\.binaries\\.0day\\.stuffz$ /^(?P[a-zA-Z0-9].+?)(?P - )\\[\\d+(?P\\/\\d+\\] - ").+?" yEnc$/ 1 //ArcSoft.TotalMedia.Theatre.v5.0.1.87-Lz0 - [08/35] - "ArcSoft.TotalMedia.Theatre.v5.0.1.87-Lz0.vol43+09.par2" yEnc 5 -8 ^alt\\.binaries\\.0day\\.stuffz$ /^(?P[a-zA-Z0-9].+?) \\[\\d+(?P\\/\\d+\\] - ").+?" yEnc$/ 1 //rld-tcavu1 [5/6] - "rld-tcavu1.rar" yEnc 10 -9 ^alt\\.binaries\\.0day\\.stuffz$ /^(?P\\((.+?)\\) \\[)\\d+(?P\\/\\d+] - ").+?" yEnc$/ 1 //(DVD Shrink.ss) [1/1] - "DVD Shrink.ss.rar" yEnc 15 -10 ^alt\\.binaries\\.0day\\.stuffz$ /^(?P[a-zA-Z0-9].+?)\\(\\d+(?P\\/\\d+\\) - ").+?" yEnc$/ 1 //WinASO.Registry.Optimizer.4.8.0.0(1/4) - "WinASO_RO_v4.8.0.rar" yEnc 20 -11 ^alt\\.binaries\\.3d$ /^(?P.+)File \\d+ (?Pof \\d+): ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //ugMBqtZw3vFnmrmr16EQhaAz9mMri9mD - File 01 of 98: "1vJ7wswi9ZG6YrzE5OGBFPKeuRv9X86xgYdK.par2" yEnc 5 -12 ^alt\\.binaries\\.3d$ /^(?P.+)\\[\\d+\\/(?P\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //999XL[074/103] - "LLKJ678CCDE1223ss.part073.rar" yEnc 10 -13 ^alt\\.binaries\\.amazing$ /^\\(\\?+\\) \\[\\d+(?P\\/\\d+\\])[-_ ]{0,3}"(?P[\\w\\säöüÄÖÜß¶!.,&_\\()\\[\\]\\'\\`-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(???) [1/1] - "Asimov, Isaac - [Foundation 01] - De Foundation_v2.rar" yEnc 5 -14 ^alt\\.binaries\\.amazing$ /^\\([\\w!.,&_ \\()\\[\\]\\'\\`-]{8,}\\)[-_ ]{0,3}\\[\\d+(?P\\/\\d+\\])[-_ ]{0,3}"(?P[\\w\\säöüÄÖÜß¶!.,&_\\()\\[\\]\\'\\`-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(Ass Backwards (2013) WEBrip XviD AC3 (english subs)) [18/35] - "Ass Backwards (2013) WEBrip XviD AC3 (english subs).part17.rar" yEnc 10 -15 ^alt\\.binaries\\.amazing$ /^\\w+[-_ ]{0,3}"(?P[\\w\\säöüÄÖÜß¶!.,&_\\()\\[\\]\\'\\`-]{8,}?\\b.?)([-_](?Pproof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")\\d+(\\/\\d+)[-_\\s]{0,3}yEnc$/i 1 //05VANmA80DckBho "05VANmA80DckBho.part07.rar"08/94 yEnc 15 -16 ^alt\\.binaries\\.amazing$ /^\\(Angels4Always\\)[-_ ]{0,3}\\[\\d+(?P\\/\\d+\\])[-_ ]{0,3}"(?P[\\w\\säöüÄÖÜß¶!.,&_\\()\\[\\]\\'\\`-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(Angels4Always) [1/1] - "Vermeulen, John - De tweelingparadox.rar" yEnc 20 -17 ^alt\\.binaries\\.amazing$ /^www\\.wolfsteamers\\.info[-_ ]{0,3}\\[\\d+(?P\\/\\d+\\])[-_ ]{0,3}"(?P[\\w\\säöüÄÖÜß¶!.,&_\\()\\[\\]\\'\\`-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //www.wolfsteamers.info [1/6] - "Wohnen Bauen Leben - Sommer 2014.par2" - 16,46 MB yEnc 25 -18 ^alt\\.binaries\\.amazing$ /^[\\w!.,&_ \\()\\[\\]\\'\\`-]{8,}\\[\\d+(?P\\/\\d+\\])[-_ ]{0,3}"(?P[\\w\\säöüÄÖÜß¶!.,&_\\()\\[\\]\\'\\`-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Heaven_en_Fayth Presenteren Diana Gabaldon - Reiziger Cyclus 01 - De Reiziger[0/3] - "Diana Gabaldon - Reiziger Cyclus 01 - De Reiziger.nzb" yEnc 30 -19 ^alt\\.binaries\\.amazing$ /^\\w+[-_ ]{0,3}\\[\\d+(?P\\/\\d+\\])[-_ ]{0,3}"(?P[\\w\\säöüÄÖÜß¶!.,&_\\()\\[\\]\\'\\`-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //096XZFUPQ0PxH4441H14fU8V - [34/99] - "096XZFUPQ0PxH4441H14fU8V.part033.rar" yEnc 35 -20 ^alt\\.binaries\\.amazing$ /^\\(.+the-ultimate-force\\.org\\.ua\\/\\)[-_ ]{0,3}\\[\\d+(?P\\/\\d+\\])[-_ ]{0,3}"(?P[\\w\\säöüÄÖÜß¶!.,&_\\()\\[\\]\\'\\`-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(Slaapkop post voor http://the-ultimate-force.org.ua/) [0/7] - "Wham - I'm Your Man (1985).nzb" yEnc 40 -21 ^alt\\.binaries\\.amazing$ /^\\(\\d+(?P\\/\\d+\\)) - P2H - "(?P[\\w\\säöüÄÖÜß¶!.,&_\\()\\[\\]\\'\\`-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}\\w+[-_\\s]{0,3}yEnc$/i 1 //(001/101) - P2H - "L62WD8P4U539A7.par2" - 4,66 GB - Z9F6KN7SXRCY845 yEnc 45 -22 ^alt\\.binaries\\.amazing$ /^\\(\\d+(?P\\/\\d+\\))([-_ ]{0,4}(Description|FTTEAM\\.INFO))?[-_ ]{0,4}"(?P[\\w\\säöüÄÖÜß¶!.,&_\\()\\[\\]\\'\\`-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //(001/101) "654258ItB1418pBRDNS264159.par2" - 9,74 GB - yEnc ::: //(001/105) - Description - "oH291TB0bPxf3lqm1P7QQ.par2" - 4,56 GB - yEnc ::: //(03/43) - FTTEAM.INFO - "JDSJ2J4ENASJCKR-FTTEAM.INFO.part02.rar" - 2,04 GB - yEnc 50 -23 ^alt\\.binaries\\.amazing$ /^[-_ .]{0,4}\\[\\d+(?P\\/\\d+\\])[-_ ]{0,3}"(?P[\\w\\säöüÄÖÜß¶!.,&_\\()\\[\\]\\'\\`-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //- - [001/242] - "C65JuogI92CwfMo2TiX59.par2" yEnc 55 -24 ^alt\\.binaries\\.amazing$ /^[-_ ]{0,4}\\[\\d+\\/\\d+\\][-_ ]{0,3}".+" yEnc[-_ ]{0,3}\\[\\d+(?P\\/\\d+\\])[-_ ]{0,3}"(?P[\\w\\säöüÄÖÜß¶!.,&_\\()\\[\\]\\'\\`-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //- [01/10] - "file.xyz" yEnc - [001/107] - "86u1Qr8mm56jGiW7nUPTM.par2" yEnc 60 -25 ^alt\\.binaries\\.anime$ /^(?P\\((\\[.+?\\] .+?)\\) \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //([AST] One Piece Episode 301-350 [720p]) [007/340] - "One Piece episode 301-350.part006.rar" yEnc 5 -26 ^alt\\.binaries\\.anime$ /^(?P\\[.+?\\]\\[ (.+?) \\] \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //[REPOST][ New Doraemon 2013.05.03 Episode 328 (TV Asahi) 1080i HDTV MPEG2 AAC-DoraClub.org ] [35/61] - "doraclub.org-doraemon-20130503-b8de1f8e.r32" yEnc 10 -27 ^alt\\.binaries\\.anime$ /^(?P\\[.+?\\] (.+?) \\[[A-F0-9]+\\] \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //[De.us] Suzumiya Haruhi no Shoushitsu (1920x1080 h.264 Dual-Audio FLAC 10-bit) [017CB24D] [000/357] - "[De.us] Suzumiya Haruhi no Shoushitsu (1920x1080 h.264 Dual-Audio FLAC 10-bit) [017CB24D].nzb" yEnc 15 -28 ^alt\\.binaries\\.anime$ /^(?P\\[.+?\\] (.+?) - \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //[eraser] Ghost in the Shell ARISE - border_1 Ghost Pain (BD 720p Hi444PP LC-AAC Stereo) - [01/65] - "[eraser] Ghost in the Shell ARISE - border_1 Ghost Pain (BD 720p Hi444PP LC-AAC Stereo) .md5" yEnc 20 -29 ^alt\\.binaries\\.anime$ /^\\(\\d+(?P\\/\\d+\\) - (.+?) - ").+?" - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/ 1 //(01/27) - Maid.Sama.Jap.dubbed.german.english.subbed - "01 Misaki ist eine Maid!.divx" - 6,44 GB - yEnc 25 -30 ^alt\\.binaries\\.anime$ /^(?P\\[ (.+?) \\] \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //[ New Doraemon 2013.06.14 Episode 334 (TV Asahi) 1080i HDTV MPEG2 AAC-DoraClub.org ] [01/60] - "doraclub.org-doraemon-20130614-fae28cec.nfo" yEnc 30 -31 ^alt\\.binaries\\.anime$ /^ www\\.town\\.ag > sponsored by www\\.ssl-news\\.info > \\(\\d+(?P\\/\\d+\\) ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/i 1 // www.town.ag > sponsored by www.ssl-news.info > (1/3) "HolzWerken_40.par2" - 43,89 MB - yEnc ::: // www.town.ag > sponsored by www.ssl-news.info > (1/5) "[HorribleSubs]_Aku_no_Hana_-_01_[480p].par2" - 157,13 MB - yEnc 35 -32 ^alt\\.binaries\\.anime$ /^\\(\\d+\\/\\d+\\)(?P.+?www\\.town\\.ag.+?sponsored by (www\\.)?ssl-news\\.info<+?(.+?)) ".+?" yEnc$/ 1 //(1/9)<<>> sponsored by ssl-news.info<<<[HorribleSubs]_AIURA_-_01_[480p].mkv "[HorribleSubs]_AIURA_-_01_[480p].par2" yEnc 40 -33 ^alt\\.binaries\\.anime$ /^(?P.+? \\[Dual [aA]udio, EngSub\\] .+?) - \\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //Overman King Gainer [Dual audio, EngSub] Exiled Destiny - [002/149] - "Overman King Gainer.part001.rar" yEnc 45 -34 ^alt\\.binaries\\.anime$ /^(?P(blazedazer_.+?) \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //blazedazer_NAN000010 [140/245] - "blazedazer_NAN000010.part138.rar" yEnc 50 -35 ^alt\\.binaries\\.astronomy$ /^(?P\\d+-)\\d+\\[\\d+(\\/\\d+\\] - ").+?" yEnc$/ 1 //58600-0[51/51] - "58600-0.vol0+1.par2" yEnc 5 -36 ^alt\\.binaries\\.astronomy$ /^\\[ TOWN \\][ _-]{0,3}\\[ www\\.town\\.ag \\][ _-]{0,3}\\[ partner of www\\.ssl-news\\.info \\][ _-]{0,3}\\[ .* \\] \\[\\d+\\/(?P\\d+\\][ _-]{0,3}("|#34;).+)\\.(par2|rar|nfo|nzb)("|#34;)[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i 1 //[ TOWN ]-[ www.town.ag ]-[ partner of www.ssl-news.info ]-[ TV ] [01/16] - "Jono.And.Ben.At.Ten.S02E14.PDTV.x264-FiHTV.par2" - 198,25 MB yEnc 10 -37 ^alt\\.binaries\\.ath$ /^\\[\\d+\\/\\d+ (?P[a-zA-Z0-9]+ .+?)\\..+?" yEnc$/ 1 //[3/3 Karel Gott - Die Biene Maja Original MP3 Karel Gott - Die Biene Maja Original MP3.mp3.vol0+1.PAR2" yEnc 5 -38 ^alt\\.binaries\\.ath$ /^\\[ TOWN \\][ _-]{0,3}\\[ www\\.town\\.ag \\][ _-]{0,3}\\[ partner of www\\.ssl-news\\.info \\][ _-]{0,3}\\[ .* \\] \\[\\d+\\/(?P\\d+\\][ _-]{0,3}("|#34;).+)\\.(par2|rar|nfo|nzb)("|#34;)[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i 1 //[ TOWN ]-[ www.town.ag ]-[ partner of www.ssl-news.info ]-[ TV ] [01/16] - "Jono.And.Ben.At.Ten.S02E14.PDTV.x264-FiHTV.par2" - 198,25 MB yEnc 10 -39 ^alt\\.binaries\\.ath$ /^(?P[a-f0-9]{32}) - \\(\\d+\\/\\d+\\) - "[a-f0-9]{32}\\..+" yEnc$/ 1 //8b33bf5960714efbe6cfcf13dd0f618f - (01/55) - "8b33bf5960714efbe6cfcf13dd0f618f.par2" yEnc 15 -40 ^alt\\.binaries\\.ath$ /^(?P[a-z]+ - \\[)\\d+\\/\\d+\\] - "([a-z]+)\\..+?" yEnc$/ 1 //nmlsrgnb - [04/37] - "htwlngmrstdsntdnh.part03.rar" yEnc 20 -41 ^alt\\.binaries\\.ath$ /^(?P>+Hell-of-Usenet(\\.org)?>+(?P -)? \\[)\\d+\\/\\d+\\] - "(.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")( - \\d+[.,]\\d+ [kKmMgG][bB])? yEnc$/i 1 //>>>>>Hell-of-Usenet>>>>> - [01/33] - "Cassadaga Hier lebt der Teufel 2011 German AC3 DVDRip XViD iNTERNAL-VhV.par2" yEnc 25 -42 ^alt\\.binaries\\.ath$ /^(?P[a-z0-9]{10,}) \\(\\d+\\/\\d+\\) "[a-z0-9]{10,}\\..+?" yEnc$/ 1 //1dbo1u5ce6182436yb2eo (001/105) "1dbo1u5ce6182436yb2eo.par2" yEnc 30 -43 ^alt\\.binaries\\.ath$ /^(?P<<<>>>kosova-shqip\\.eu<<< (.+?) >>>kosova-shqip.eu<<<<<< - \\()\\d+\\/\\d+\\) - ".+?" yEnc$/ 1 //<<<>>>kosova-shqip.eu<<< Deep SWG - 90s Club Megamix 2011 >>>kosova-shqip.eu<<<<<< - (2/4) - "Deep SWG - 90s Club Megamix 2011.rar" yEnc 35 -44 ^alt\\.binaries\\.ath$ /^(?P \\[)\\d+(?P\\/\\d+\\] - .+? )yEnc$/ 1 // [02/39] - SpongeBoZZ yEnc 40 -45 ^alt\\.binaries\\.ath$ /^(?P[a-zA-Z0-9].+?\\s{2,}|Old Dad uppt\\s+)(?P.+?) \\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //Old Dad uppt Taffe Mädels XivD LD HDTV Rip oben Kleine Einblendug German 01/43] - "Taffe Mädels.par2" yEnc 45 -46 ^alt\\.binaries\\.ath$ /^\\[\\d+\\/(?P\\d+\\][ _-]{0,3}".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+[.,]\\d+ [kKmMgG][bB].+UpperTeam.+ Secretusenet\\.com.+yEnc$/i 1 //[28/55] - "XzrgzBWoRqtcuBF.part27.rar" - 4,78 GB >>>UpperTeam for Usenet-Space-Cowboys.info and Secretusenet.com<<< yEnc 50 -47 ^alt\\.binaries\\.audio\\.warez$ /^(Re: )?(?P\\[.+?\\]-\\[\\d+\\]-\\[(.+?)\\]-\\[)\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //[#nzbx.audio/EFnet]-[1681]-[MagicScore.Note.v7.084-UNION]-[02/12] - "u-msn7.r00" yEnc 5 -48 ^alt\\.binaries\\.audio\\.warez$ /^(?P([\\w.-]+) ?\\[)\\d+( of |\\/)\\d+\\] ".+?" yEnc$/ 1 //MacProVideo.com.Pro.Tools8.101.Core.Pro.Tools8.TUTORiAL-DYNAMiCS [2 of 50] "dyn-mpvprtls101.sfv" yEnc ::: //Native.Instruments.Komplete.7.VSTi.RTAS.AU.DVDR.D02-DYNAMiCS[01/13] - "dyn.par2" yEnc ::: //Native.Instruments.Komplete.7.VSTi.RTAS.AU.DVDR.DYNAMiCS.NZB.ONLY [02/13] - "dyn.vol0000+001.PAR2" yEnc 10 -49 ^alt\\.binaries\\.audio\\.warez$ /^(?PREQ : .+? ~ (.+?) \\[)\\d+ of \\d+\\] ".+?" yEnc$/ 1 //REQ : VSL Stuff ~ Here's PreSonus Studio One 1.5.2 for OS X [16 of 22] "a-p152x.rar" yEnc 15 -50 ^alt\\.binaries\\.audio\\.warez$ /^(?P([a-zA-Z0-9].+?) - \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //Eminem - Recovery (2010) - [1/1] - "Eminem - Recovery (2010).rar" yEnc 20 -51 ^alt\\.binaries\\.audio\\.warez$ /^(?P\\(\\?{4}\\) \\[)\\d+(?P\\/\\d+\\] - "(.+?))([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(????) [1/1] - "Dust in the Wind - the Violin Solo.rar" yEnc 25 -52 ^alt\\.binaries\\.audio\\.warez$ /^(?P(.+?) \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //Native Instruments Battery 3 incl Library ( VST DX RTA )( windows ) Libraries [1/1] - "Native Instruments Battery 2 + 3 SERIAL KEY KEYGEN.nfo" yEnc 30 -53 ^alt\\.binaries\\.b4e$ /^(?P"(B4E-vip\\d+))\\..+?" yEnc$/ 1 //"B4E-vip2851.r83" yEnc 5 -54 ^alt\\.binaries\\.b4e$ /^\\[\\d+(?P\\/\\d+\\] - "(.+?) \\().+?" yEnc$/ 1 //[02/12] - "The.Call.GERMAN.2013.DL.AC3.Dubbed.720p.BluRay.x264 (Avi-RiP ).rar" yEnc 10 -55 ^alt\\.binaries\\.b4e$ /^(?P- "(.+?))([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //- "as-jew3.vol03+3.PAR2" - yEnc 15 -56 ^alt\\.binaries\\.barbarella$ /^(?P([a-zA-Z0-9].+?) - \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //ACDSee.Video.Converter.Pro.v3.5.41.Incl.Keymaker-CORE - [1/7] - "ACDSee.Video.Converter.Pro.v3.5.41.Incl.Keymaker-CORE.par2" yEnc 5 -57 ^alt\\.binaries\\.barbarella$ /^(?P([\\w.-]+)\\s+-\\s+").+?" yEnc$/ 1 //Die.Nacht.Der.Creeps.THEATRICAL.GERMAN.1986.720p.BluRay.x264-GH - "gh-notcreepskf720.nfo" yEnc ::: //The.Fast.and.the.Furious.Tokyo.Dr 10 -58 ^alt\\.binaries\\.barbarella$ /^(?P((\\[[A-Za-z]+\\]\\.)?[a-zA-Z0-9].+?) ?([\\^<> ]+give-me-all\\.org[\\^<> ]+|[\\^<> ]+)DRM[\\^<> ]+.+? - \\()\\d+\\/\\d+\\) ".+?" - .+? yEnc$/ 1 //CorelDRAW Technical Suite X6-16.3.0.1114 x32-x64<><>DRM<><> - (10/48) "CorelDRAW Technical Suite X6-16.3.0.1114 x32-x64.part09.rar" - 2,01 GB - yEnc ::: //AnyDVD_7.1.9.3_-_HD-BR - Beta<>give-me-all.org<>DRM<><> - (1/3) "AnyDVD_7.1.9.3_-_HD-BR - Beta.par2" - 14,53 MB - yEnc ::: //Android Softarchive.net Collection Pack 27^^give-me-all.org^^^^DRM^^^^ - (01/26) "Android Softarchive.net Collection Pack 27.par2" - 1,01 GB - yEnc ::: //WIN7_ULT_SP1_x86_x64_IE10_19_05_13_TRIBAL <> give-me-all.org <> DRM <> <> PW <> - (154/155) "WIN7_ULT_SP1_x86_x64_IE10_19_05_13_TRIBAL.vol57+11.par2" - 7,03 GB - yEnc ::: //[Android].Ultimate.iOS7.Apex.Nova.Theme.v1.45 <> DRM <> - (1/3) "[Android].Ultimate.iOS7.Apex.Nova.Theme.v1.45.par2" - 21,14 MB - yEnc 15 -59 ^alt\\.binaries\\.barbarella$ /^\\(\\d+(?P\\/\\d+\\) - .+? - "(.+?))( \\(\\d+\\))?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/i 1 //(004/114) - Description - "Pluralsight.net XAML Patterns (10).rar" - 532,92 MB - yEnc 20 -60 ^alt\\.binaries\\.barbarella$ /^\\(\\d+\\/\\d+\\)( -)? ".+?" - \\d+[,.]\\d+ [mMkKgG](?P[bB] - (.+?)) yEnc$/ 1 //(59/81) "1973 .Lee.Jun.Fan.DVD9.untouched.z46" - 7,29 GB - Lee.Jun.Fan.sein.Film.DVD9.untouched yEnc ::: //(01/12) - "TransX - Living on a Video 1993.part01.rar" - 561,55 MB - TransX - Living on a Video 1993.[Lossless] Highh Quality yEnc 25 -61 ^alt\\.binaries\\.barbarella$ /^(?P>>> www\\.lords-of-usenet\\.org <<<.+? "(.+?))([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") .+? \\[\\d+\\/\\d+\\] - .+? yEnc$/i 1 //>>> www.lords-of-usenet.org <<< "Der Schuh Des Manitu.par2" DVD5 [001/158] - 4,29 GB yEnc 30 -62 ^alt\\.binaries\\.barbarella$ /^.+? (-|\\(PW\\))\\s+\\[.+? -\\] \\[\\d+[,.]\\d+ [mMkKgG][bB]\\] \\[\\d+(?P\\/\\d+\\] "(.+?))([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //NEUES 4y - [@ usenet-4all.info - powered by ssl.news -] [5,58 GB] [002/120] "DovakinPack.part002.rar" yEnc ::: //NEUES 4y (PW) [@ usenet-4all.info - powered by ssl.news -] [7,05 GB] [014/152] "EngelsGleich.part014.rar" yEnc 35 -63 ^alt\\.binaries\\.barbarella$ /^(?P([a-zA-Z0-9].+?\\s{2,}|Old Dad uppt\\s+)(.+?) )\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //Old Dad uppt Die Schatzinsel Teil 1+Teil2 AC3 DVD Rip German XviD Wp 01/33] - "upp11.par2" yEnc ::: //Old Dad uppt Scary Movie5 WEB RiP Line XviD German 01/24] - "Scary Movie 5.par2" yEnc 40 -64 ^alt\\.binaries\\.barbarella$ /^.+?\\s{2,}\\d+[,.]\\d+ [mMkKgG][bB]\\s{2,}"(?P.+?_)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")\\s{2,}(\\d+ B|\\d+[,.]\\d+ [mMkKgG][bB]) yEnc$/i 1 //>>> 20,36 MB "Winamp.Pro.v5.70.3392.Incl.Keygen-FFF.par2" 552 B yEnc ::: //..:[DoAsYouLike]:.. 9,64 MB "Snooper 1.39.5.par2" 468 B yEnc 45 -65 ^alt\\.binaries\\.barbarella$ /^(?P\\(.+?\\) - "(.+?))([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(MKV - DVD - Rip - German - English - Italiano) - "CALIGULA (1982) UNCUT.sfv" yEnc 50 -66 ^alt\\.binaries\\.barbarella$ /^"(?P[a-z0-9]+)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //"sre56565ztrtzuzi8inzufft.par2" yEnc 55 -67 ^alt\\.binaries\\.big$ /^(?P([\\w.-]+) - ").+?" yEnc$/ 1 //Girls.against.Boys.2012.German.720p.BluRay.x264-ENCOUNTERS - "encounters-giagbo_720p.nfo" yEnc 5 -68 ^alt\\.binaries\\.big$ /^(?P([a-z]{3,}) - \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //wtvrwschdhfthj - [001/246] - "dtstchhtmrrnvn.par2" yEnc ::: //oijhuiurfjvbklk - [01/18] - "tb5-3ioewr90f.par2" yEnc 10 -69 ^alt\\.binaries\\.big$ /^\\(\\d+(?P\\/\\d+\\) - "(.+?))([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(08/22) - "538D7B021B362A4300D1C0D84DD17E6D.r06" yEnc 15 -70 ^alt\\.binaries\\.big$ /^(?P\\(\\?{4}\\) \\[)\\d+(?P\\/\\d+\\] - "(.+?))([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(????) [02/71] - "Lasting Weep (1969-1971).part.par2" yEnc 20 -71 ^alt\\.binaries\\.big$ /^\\(\\d+(?P\\/\\d+\\) "(.+?))([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB] -(re)? yEnc$/i 1 //(01/59) "ThienSuChungQuy_II_E16.avi.001" - 1,49 GB - yEnc ::: //(058/183) "LS_HoangChui_2xdvd5.part057.rar" - 8,36 GB -re yEnc 25 -72 ^alt\\.binaries\\.big$ /^(?P\\[[a-zA-Z]+\\] .+? - \\[)\\d+\\/\\d+\\] - "(.+?)" yEnc$/ 1 //[AoU] Upload#00287 - [04/43] - "Upload-ZGT1-20130525.part03.rar" yEnc 30 -73 ^alt\\.binaries\\.big$ /^\\([a-z]+\\) \\[\\d+(?P\\/\\d+\\] - "(.+?))([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(nate) [01/27] - "nate_light_13.05.23.par2" yEnc 35 -74 ^alt\\.binaries\\.big$ /^(?P""(.+?))([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")" yEnc$/i 1 //""Absolute Database Component for BCBuilder 4-6 MultiUser Edit 4.85.rar"" yEnc 40 -75 ^alt\\.binaries\\.big$ /^(?P[a-f0-9]{32}) - \\(\\d+\\/\\d+\\) - "[a-f0-9]{32}.+?" yEnc$/ 1 //781e1d8dccc641e8df6530edb7679a0e - (26/30) - "781e1d8dccc641e8df6530edb7679a0e.rar" yEnc 45 -76 ^alt\\.binaries\\.bloaf$ /^(?P[a-f0-9]{32}) - \\(\\d+\\/\\d+\\) - "[a-f0-9]{32}.+?" yEnc$/ 1 //36c1d5d4eaf558126c67f00be46f77b6 - (01/22) - "36c1d5d4eaf558126c67f00be46f77b6.par2" yEnc 5 -77 ^alt\\.binaries\\.bloaf$ /^\\[\\d+(?P\\/\\d+\\] - "(.+?))([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB] .+? usenet-space.+?yEnc$/i 1 //[10/17] - "EGk13kQ1c8.part09.rar" - 372.48 MB <-> usenet-space-cowboys.info <-> powered by secretusenet.com <-> yEnc 10 -78 ^alt\\.binaries\\.bloaf$ /^(?P\\((.+?)\\) - ").+?" yEnc$/ 1 //(Neu bei Bitfighter vom 23-07-2013) - "01 - Sido - Bilder Im Kopf.mp3" yEnc 15 -79 ^alt\\.binaries\\.bloaf$ /^\\(\\d+(?P\\/\\d+\\) "(.+?))([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/i 1 //(2/8) "Mike.und.Molly.S01E22.Maennergespraeche.GERMAN.DL.DUBBED.720p.BluRay.x264-TVP.part1.rar" - 1023,92 MB - yEnc 20 -80 ^alt\\.binaries\\.bloaf$ /^.+? (-|\\(PW\\))\\s+\\[.+? -\\] \\[\\d+[,.]\\d+ [mMkKgG][bB]\\] \\[\\d+(?P\\/\\d+\\] "(.+?))([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //4y (PW) [@ usenet-4all.info - powered by ssl.news -] [27,35 GB] [001/118] "1f8867bb6f89491793d3.part001.rar" yEnc 25 -81 ^alt\\.binaries\\.bloaf$ /^(?P(\\[[A-Za-z]+\\]\\.)?([a-zA-Z0-9].+?)([\\^<> ]+give-me-all\\.org[\\^<> ]+|[\\^<> ]+)DRM[\\^<> ]+.+? - \\()\\d+\\/\\d+\\)\\s+".+?" - .+? - yEnc$/ 1 //Bennos Special Tools DVD - Die Letzte <> DRM <><> PW <> - (002/183) "Bennos Special Tools DVD - Die Letzte.nfo" - 8,28 GB - yEnc 30 -82 ^alt\\.binaries\\.bloaf$ /^\\(\\d+(?P\\/\\d+\\) - (.+?) ?- ").+?" - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/ 1 //(1/9) - CyberLink.PhotoDirector.4.Ultra.4.0.3306.Multilingual - "CyberLink.PhotoDirector.4.Ultra.4.0.3306.Multilingual.par2" - 154,07 MB - yEnc ::: //(1/5) - Mac.DVDRipper.Pro.4.0.8.Mac.OS.X- "Mac.DVDRipper.Pro.4.0.8.Mac.OS.X.rar" - 24,12 MB - yEnc 35 -83 ^alt\\.binaries\\.bloaf$ /^\\[\\d+(?P\\/\\d+ (.+?)\\.).+?" yEnc$/ 1 //[3/3 Helene Fischer - Die Biene Maja 2013 MP3 Helene Fischer - Die Biene Maja 2013 MP3.mp3.vol0+1.PAR2" yEnc 40 -84 ^alt\\.binaries\\.blu-ray$ /^"(?P\\d+\\.MK\\.[A-Z])\\..+?" yEnc$/ 1 //"786936833607.MK.A.part086.rar" yEnc 45 -85 ^alt\\.binaries\\.blu-ray$ /^(?P\\(\\?{4}\\) \\[)\\d+\\/\\d+\\] - "(?P[a-z0-9]+)\\..+?" yEnc$/ 1 //(????) [001/107] - "260713thbldnstnsclw.par2" yEnc 50 -86 ^alt\\.binaries\\.blu-ray$ /^(?P\\[www\\..+?\\]-\\[(.+?)\\]-\\[)\\d+\\/\\d+\\] ".+?" - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/ 1 //[www.allyourbasearebelongtous.pw]-[The Place Beyond the Pines 2012 1080p US Blu-ray AVC DTS-HD MA 5.1-HDWinG]-[03/97] "tt1817273-us-hdwing-bd.r00" - 46.51 GB - yEnc 55 -87 ^alt\\.binaries\\.blu-ray$ /^\\(\\d+(?P\\/\\d+\\)(\\s+ -)? "[a-zA-Z0-9]+?)\\d*\\..+?" - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/ 1 //(01/71) - "EwRQCtU4BnaeXmT48hbg7bCn.par2" - 54,15 GB - yEnc ::: //(63/63) "dfbgfdgtghtghthgGPGEIBPBrwg34t05.rev" - 10.67 GB - yEnc 60 -88 ^alt\\.binaries\\.blu-ray$ /^\\[\\d+(?P\\/\\d+\\] - "([a-zA-Z0-9]+)\\.).+?" yEnc$/ 1 //[01/67] - "O3tk4u681gd767Y.par2" yEnc 65 -89 ^alt\\.binaries\\.blu-ray$ /^(?P([a-z0-9]+) \\[.+?\\] \\[.+?\\] \\[)\\d+[,.]\\d+ [mMkKgG][bB]\\] \\[\\d+\\/\\d+\\] ".+?" yEnc$/ 1 //209a212675ba31ca24a8 [usenet-4all.info] [powered by ssl-news] [21,59 GB] [002/223] "209a212675ba31ca24a8.part001.rar" yEnc 70 -90 ^alt\\.binaries\\.blu-ray$ /^(?P([A-Z0-9]+) - "[a-z0-9]+\\.).+?" yEnc$/ 1 //TIS97CC - "tis97cc.par2" yEnc 75 -91 ^alt\\.binaries\\.blu-ray$ /^.+?<<\\d+\\/\\d+>> "(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB] - yEnc$/i 1 //<><><><<13/14>> "xxtxxlxxrxxbdxx05.vol421+98.par2" - 2,54 GB - yEnc 80 -92 ^alt\\.binaries\\.blu-ray$ /^\\((?P\\w+)\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(wtnybhd7i3g6p1kuj3dffhnqyrx) [27/31] - "wtnybhd7i3g6p1kuj3dffhnqyrx.vol224+8.par2" yEnc 85 -93 ^alt\\.binaries\\.blu-ray$ /^(?P\\w+)[-_\\s]{0,3}File \\d+ of (?P\\d+):[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //nS9XNOrMzD7FNniVfWUswrGmq8hQPMBqMSuQcMty - File 91 of 98: "aWYt0MpWaY6bmDp0d8hOdvBgz6.par2" yEnc 90 -94 ^alt\\.binaries\\.blu-ray$ /^"(?P.+?)(?P[-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\(\\d+\\/(\\d+)\\)[-_\\s]{0,3}yEnc$/ui 1 //"t46e6mopz864y82-Pittis ZusatzTon.English.dtsHDma.vol168+67.PAR2" (46/46) yEnc 95 -95 ^alt\\.binaries\\.blu-ray$ /^\\(\\d+\\/(?P\\d+)\\)[-_\\s]{0,3}"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //(190/201) "Kreatur by Eisenschrott & Gollum.vol1781+137.PAR2" - 9,46 GB - yEnc 100 -96 ^alt\\.binaries\\.boneless$ /^(?P[a-zA-Z0-9]+)\\[\\d+(?P\\/\\d+\\] - "[a-zA-Z0-9]+\\.).+?" yEnc$/ 1 //4Etmo7uBeuTW[047/106] - "006dEbPcea29U6K.part046.rar" yEnc 5 -97 ^alt\\.binaries\\.boneless$ /^\\( (?P[\\w. -]{8,}) \\)[-_ ]{0,3}\\[\\d+\\/(?P\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //( Overlord II RELOADED ) - [013/112] - "rld-olii.part001.rar" yEnc 10 -98 ^alt\\.binaries\\.boneless$ /^(REPOST: )?\\[\\s*#?scnzb@?efnet\\s*\\]\\[(?P\\d+)\\] (?P.+?) \\[\\d+\\/(?P\\d+\\]) - ".+?" yEnc$/ 1 //[scnzbefnet][500934] Super.Fun.Night.S01E09.720p.HDTV.X264-DIMENSION [1/19] - "bieber.109.720p-dimension.sfv" yEnc ::: //REPOST: [scnzbefnet][500025] Major.Crimes.S02E13.720p.HDTV.x264-IMMERSE [16/33] - "major.crimes.s02e13.720p.hdtv.x264-immerse.r24" yEnc 15 -99 ^alt\\.binaries\\.boneless$ /^\\[\\s*#?scnzb@?efnet\\s*\\] (?P.+?) \\[\\d+\\/(?P\\d+\\]) - ".+?" yEnc$/ 1 //[scnzbefnet] Murdoch.Mysteries.S07E09.HDTV.x264-KILLERS [1/20] - "murdoch.mysteries.s07e09.hdtv.x264-killers.r13" yEnc 20 -100 ^alt\\.binaries\\.boneless$ /^\\(\\d+(?P\\/\\d+\\)\\s+(- )?"([a-zA-Z0-9]+)\\.).+?" - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/ 1 //(68/89) "dz1R2wT8hH1iQEA28gRvm.part67.rar" - 7,91 GB - yEnc ::: //(01/14) - "JrjCY4pUjQ9qUqQ7jx6k2VLF.par2" - 4,39 GB - yEnc 25 -101 ^alt\\.binaries\\.boneless$ /^(?P\\((\\d+)\\) \\[)\\d+\\/\\d+\\] - "\\d+\\..+?" yEnc$/ 1 //(110320152518519) [22/78] - "110320152518519.part21.rar" yEnc 30 -102 ^alt\\.binaries\\.boneless$ /^(?P[\\w. &\\()\\[\\]\\'-]{8,}?\\b.?)\\.[A-Za-z0-9]{2,4}[-_\\s]{0,3}\\[\\d+\\/(?P\\d+\\])[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //A.Fantastic.Fear.of.Everything.2012.AC3.BDRiP.XviD-IJf.nfo [01/63] - "A.Fantastic.Fear.of.Everything.2012.AC3.BDRiP.XviD-IJf.nfo" yEnc 35 -103 ^alt\\.binaries\\.boneless$ /^(?P([a-zA-Z0-9]+) - \\[)\\d+\\/\\d+\\] - "[a-zA-Z0-9]+\\..+?" yEnc$/ 1 //1VSXrAZPD - [123/177] - "1VSXrAZPD.part122.rar" yEnc 40 -104 ^alt\\.binaries\\.boneless$ /^(?P\\( (.+?) \\)\\s+\\( .+?\\) \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //( Peter Gabriel Albums 24x +17 Singles = 71x cd By Dready Niek ) ( ** By Dready Niek ** ) [113/178] - "Peter Gabriel Albums 24x +17 Singles = 71CDs By Dready Niek (1977-2010).part112.rar" yEnc 45 -105 ^alt\\.binaries\\.boneless$ /^(?P([A-Za-z0-9].+?) \\((19|20)\\d\\d\\) ")\\d{2}\\. .+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Tarja - Colours In The Dark (2013) "00. Tarja-Colours In The Dark.m3u" yEnc 50 -106 ^alt\\.binaries\\.boneless$ /^"(?P[a-zA-Z0-9]+)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\(\\d+\\/\\d+\\) - yEnc$/i 1 //"BB636.part14.rar" - (15/39) - yEnc 55 -107 ^alt\\.binaries\\.boneless$ /^[-a-zA-Z0-9 ]+ \\[\\d+(?P\\/\\d+\\] - "(.+?))([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Lutheria - FC Twente TV Special - Ze wilde op voetbal [16/49] - "Lutheria - FC Twente TV Special - Ze wilde op voetbal.part16.rar" yEnc ::: // panter - [001/101] - "74518-The Hunters (2011).par2" yEnc 60 -108 ^alt\\.binaries\\.boneless$ /^(?P[-a-zA-Z0-9 ]+ - "(.+?))([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Pee Mak Prakanong - 2013 - Thailand - ENG Subs - "Pee Mak Prakanong.2013.part22.rar" yEnc ::: //P2H - "AMHZQHPHDUZZJSFZ.vol181+33.par2" yEnc 65 -109 ^alt\\.binaries\\.boneless$ /^\\((?P\\?{4}|[a-zA-Z]+)\\) \\[\\d+(?P\\/\\d+\\] - "(.+?))([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(????) [011/161] - "flynns-image-redux.part010.rar" yEnc ::: //(Dgpc) [000/110] - "Teen Wolf - Seizoen.3 - Dvd.2 (NLsub).nzb" yEnc 70 -110 ^alt\\.binaries\\.boneless$ /^\\("(?P[a-z0-9A-Z]+).+?" - \\d+[,.]\\d+ [mMkKgG][bB] -\\) ".+?" - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/ 1 //("Massaladvd5Kilusadisc4S1.par2" - 4,55 GB -) "Massaladvd5Kilusadisc4S1.par2" - 4,55 GB - yEnc 75 -111 ^alt\\.binaries\\.boneless$ /^"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //"par.4kW9beE.1.vol122+21.par2" yEnc 80 -112 ^alt\\.binaries\\.boneless$ /^(?P.+?\\.(info|org)>+ - \\[)\\d+\\/\\d+\\] - "(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //brothers-of-usenet.info/.net <<>> - [01/19] - "Age.of.Dinosaurs.German.AC3.HDRip.x264-FuN.par2" yEnc ::: //>>>>>Hell-of-Usenet.org>>>>> - [01/35] - "Female.Agents.German.2008.AC3.DVDRip.XviD.iNTERNAL-VideoStar.par2" yEnc 85 -113 ^alt\\.binaries\\.boneless$ /^\\[\\d+(?P\\/\\d+\\] - "(.+?))([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[010/101] - "Bf56a8aR-20743f8D-Vf7a11fD-d7c6c0.part09.rar" yEnc ::: //[1/9] - "fdbvgdfbdfb.part.par2" yEnc 90 -114 ^alt\\.binaries\\.boneless$ /^(?P\\[[A-Z]+\\] - \\[)\\d+\\/\\d+\\] - "(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[LB] - [063/112] - "RVL-GISSFBD.part063.rar" yEnc 95 -115 ^alt\\.binaries\\.boneless$ /^\\(.+?\\(PWP\\).+?\\) \\(\\d+(?P\\/\\d+\\) "(.+?))([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") .+? \\d+[,.]\\d+ [mMkKgG][bB] .+ yEnc$/i 1 //(¯`*.¸(PWP).*´¯) (071/100) "JUST4US_025.part070.rar" - 22,50 GB yEnc 100 -116 ^alt\\.binaries\\.boneless$ /^thnx to original poster \\[\\d+(?P\\/\\d+\\] - "(.+?))(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2|\\.[A-Za-z0-9]{2,4})("| `).+? yEnc$/ 1 //thnx to original poster [00/98] - "2669DFKKFD2008.nzb ` 2669DFKKFD2008 " yEnc 105 -117 ^alt\\.binaries\\.boneless$ /^place2home\\.net - (?P.*?) - (\\[\\d+\\/\\d+\\] - )?".+?" yEnc$/i 1 //place2home.net - Call.of.Duty.Ghosts.XBOX360-iMARS - [095/101] - "imars-codghosts-360b.vol049+33.par2" yEnc ::: //Place2home.net - Diablo_III_USA_RF_XBOX360-PROTOCOL - "d3-ptc.r34" yEnc 110 -118 ^alt\\.binaries\\.boneless$ /^(?P\\((.+?)\\) \\[)\\d+(?P\\/\\d+] - ").+?" yEnc$/ 1 //(Ancient.Aliens.S03E05.Aliens.and.Mysterious.Rituals.720p.HDTV.x264.AC3.2Ch.REPOST) [41/42] - "Ancient.Aliens.S03E05.Aliens.and.Mysterious.Rituals.720p.HDTV.x264.AC3.2Ch.REPOST.vol071+66.PAR2" yEnc 115 -119 ^alt\\.binaries\\.boneless$ /^Doobz (?P[a-zA-z-_]+) \\[\\d+\\/(?P\\d+\\]) - ".+([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Doobz Europa_Universalis_IV_Conquest_of_Paradise-FLT [10/54] - "flt-eucp.001" yEnc 120 -120 ^alt\\.binaries\\.boneless$ /^(?P[\\w. -]{8,}) - \\[\\d+\\/(?P\\d+\\])[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Outlast.Whistleblower-RELOADED - [014/119] - "rld-outwhistle.part001.rar" yEnc 125 -121 ^alt\\.binaries\\.boneless$ /^.+\\[\\d+\\/(?P\\d+\\]) - "(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Charlies.Angels.2000.iNTERNAL.DVDRip.XviD-Vmr.part44.rar [46/66] - "Charlies.Angels.2000.iNTERNAL.DVDRip.XviD-Vmr.part44.rar" yEnc 130 -122 ^alt\\.binaries\\.british\\.drama$ /^(?P[a-zA-Z0-9].+? \\[XviD\\] \\[)\\d\\/\\d+\\] - ".+?" yEnc$/ 1 //Coronation Street 03.05.2012 [XviD] [01/23] - "coronation.street.03.05.12.[ws.pdtv].par2" yEnc ::: //Coronation Street 04.05.2012 - Part 1 [XviD] [01/23] - "coronation.street.04.05.12.part.1.[ws.pdtv].par2" yEnc 5 -123 ^alt\\.binaries\\.british\\.drama$ /^(?P[a-zA-Z0-9]+ .+? (S\\d+)?E\\d+-\\d\\d \\[)\\d+\\/\\d+\\] - "\\d(\\d |\\.).+?" yEnc$/ 1 //The Prisoner E06-09 [001/152] - "06 The General.mkv.001" yEnc ::: //Danger Man S2E05-08 [075/149] - "7.The colonel's daughter.avi.001" yEnc 10 -124 ^alt\\.binaries\\.british\\.drama$ /^.+?\\[\\d+\\/(?P\\d+\\][-_ ]{0,3}.+?)[-_ ]{0,3}("|#34;)(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}("|#34;))[-_ ]{0,3}yEnc$/ 1 //Wizards Vs Aliens - 1x06 - Rebel Magic, Part Two [XviD][00/27] - "wizards.vs.aliens.106.rebel.magic.part.two.[ws.pdtv].nzb" yEnc 15 -125 ^alt\\.binaries\\.british\\.drama$ /.*"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}").+?yEnc$/i 1 //Vera.3x03.Young.Gods.720p.HDTV.x264-FoV - "vera.3x03.young_gods.720p_hdtv_x264-fov.r00" yEnc 20 -126 ^alt\\.binaries\\.cats$ /^(?P[a-zA-Z0-9]{5,} ?\\[)\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //Pb7cvL3YiiOu06dsYPzEfpSvvTul[02/37] - "Fkq33mlTVyHHJLm0gJNU.par2" yEnc ::: //DLJorQ37rMDvc [01/16] - "DLJorQ37rMDvc.part1.rar" yEnc 5 -127 ^alt\\.binaries\\.cbt$ /^\\((?P[a-zA-Z0-9-\\.\\&_ ]+)\\) \\[\\d+\\/(?P\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(WinEdt.v8.0.Build.20130513.Cracked-EAT) [01/10] - "eatwedt8.nfo" yEnc 5 -128 ^alt\\.binaries\\.cbt$ /^\\[ (?P[a-zA-Z0-9-\\.\\&\\\\(\\)\\,_ ]+) \\] [a-zA-Z0-9]{3,4}\\.[a-zA-Z0-9]{3,4} \\(\\d+\\/(?P\\d+\\)) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[ ABCAsiaPacific.com - Study English IELTS Preparation (2006) ] AVI.PDF (17/34) - "abcap-senglishielts.r16" yEnc 10 -129 ^alt\\.binaries\\.cbts$ /.*"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}")(.+?)yEnc$/i 1 //"softWoRx.Suite.2.0.0.25.x32-TFT.rar" yEnc 5 -130 ^alt\\.binaries\\.cd\\.image$ /^(?P\\[(\\d+|redump)?\\]-+\\[.+?\\]-\\[.+?\\]-)(\\s?\\[\\d+\\/\\d+\\])?(\\s?\\[.+?\\])?[- ]{0,3}".+?"( - \\d+[,.]\\d+ [mMkKgG][bB] -)? yEnc$/i 1 //[27849]-[altbinEFNet]-[Full]- "ppt-sogz.001" - 7,62 GB - yEnc ::: //[27925]--[altbinEFNet]-[Full]- "unl_p2rd.par2" yEnc ::: //[27608]-[FULL]-[#altbin@EFNet]-[007/136] "27608-1.005" yEnc ::: //[30605]-[altbinEFNet]-[FULL]- [10/165] - "plaza-the.witcher.3.wild.hunt.r09" yEnc ::: //[]-[#altbin@EFNet]-[Full]-[ACE.LIGHTNING.PLUS.6.TRAINER-DEViANCE]-[0/8] - "deviance.nfo" yEnc 5 -131 ^alt\\.binaries\\.cd\\.image$ /^(?P\\[\\d+\\]-\\[.+?\\]-\\[.+?\\]-\\[ .+? \\] ?- ?\\[)\\d+\\/\\d+\\] (- )?".+?" yEnc$/ 1 //[27930]-[FULL]-[altbinEFNet]-[ Ubersoldier.UNCUT.PATCH-RELOADED ]-[3/5] "rld-usuc.par2" yEnc ::: //[27607]-[#altbin@EFNet]-[Full]-[ Cars.Radiator.Springs.Adventure.READNFO-CRIME ] - [02/49] - "crm-crsa.par2" yEnc 10 -132 ^alt\\.binaries\\.cd\\.image$ /^(?P\\[\\d+\\]-\\[.+?\\]-\\[.+?\\]-\\[.+?\\]-\\[)\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //[27575]-[#altbin@EFNet]-[Full]-[CD1]-[01/58] - "CD1.par2" yEnc ::: //[27575]-[altbinEFNet]-[Full]-[CD3]-[00/59] - "dev-gk3c.sfv" yEnc 15 -133 ^alt\\.binaries\\.cd\\.image$ /^(?P\\(\\d+(-\\d+)?\\) \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //(27608-1) [2/5] - "skidrow.nfo" yEnc 20 -134 ^alt\\.binaries\\.cd\\.image$ /^(?P\\[www\\..+?\\]-\\[.+?\\]-\\[)\\d+\\/\\d+\\] ".+?" - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/ 1 //[www.drlecter.tk]-[The_Night_of_the_Rabbit-FLT]-[01/67] "Dr.Lecter.nfo" - 5.61 GB - yEnc 25 -135 ^alt\\.binaries\\.cd\\.image$ /^(?P[a-zA-Z0-9.-]{10,} -( PC GAME -| [A-Z0-9\\[\\]]+ -)? \\[)\\d+\\/\\d+\\] - ".+?" - (.+? - (\\d+[,.]\\d+ [mMkKgG][bB] - )?)?yEnc$/ 1 //Slender.The.Arrival-WaLMaRT.PC - [01/26] - "wmt-stal.nfo" - yEnc ::: //The.Night.of.the.Rabbit-FLT - [03/66] - "flt-notr.r00" - FAiRLIGHT - 5,10 GB - yEnc ::: //Resident.Evil.Revelations-FLT - PC GAME - [03/97] - "Resident.Evil.Revelations-FLT.r00" - FAiRLIGHT - yEnc ::: //Afterfall.Insanity.Dirty.Arena.Edition-WaLMaRT - [MULTI6][PCDVD] - [02/45] - "wmt-adae.r00" - PC GAME - yEnc 30 -136 ^alt\\.binaries\\.cd\\.image$ /^(PC Game - )?\\[\\d+(?P\\/\\d+\\] - .+? - ").+?" -( .+? -)? yEnc$/ 1 //[01/46] - Crashtime 5 Undercover RELOADED - "rld-ct5u.nfo" - PC - yEnc ::: //[01/76] - Of.Orcs.And.Men-SKIDROW - "sr-oforcsandmen.nfo" - yEnc ::: //PC Game - [01/71] - MotoGP 13-RELOADED Including NoDVD Fix - "MotoGP 13-RELOADED Including NoDVD Fix nfo" - yEnc 35 -137 ^alt\\.binaries\\.cd\\.image$ /^(?P[A-Za-z0-9][a-zA-Z0-9: ]{8,}(-[a-zA-Z]+)?( \\(.+?\\)| - [\\[A-Z0-9\\]]+)? - \\[)\\d+\\/\\d+\\] - ".+?" - .+? - yEnc$/ 1 //Magrunner Dark Pulse FLT (FAiRLIGHT) - [02/70] - "flt-madp par2" - PC - yEnc ::: //MotoGP 13 RELOADED - [01/71] - "rld-motogp13 nfo" - PC - yEnc ::: //Dracula 4: Shadow of the Dragon FAiRLIGHT - [01/36] - "flt-drc4 nfo" - PC - yEnc 40 -138 ^alt\\.binaries\\.cd\\.image$ /^(?P(\\[[A-Z ]+\\] - )?[a-zA-Z0-9.-]{10,} - ").+?" - \\[\\d+\\/\\d+\\] - yEnc$/ 1 //[NEW PC GAME] - Lumber.island-WaLMaRT - "wmt-lisd.nfo" - [01/18] - yEnc ::: //Trine.2.Complete.Story-SKIDROW - "sr-trine2completestory.nfo" - [01/78] - yEnc 45 -139 ^alt\\.binaries\\.cd\\.image$ /^(?PUploader.Presents)[- ](?P.+?)[\\(\\[]\\d+\\/\\d+\\]".+?" yEnc$/ 1 //Uploader.Presents-Need.For.Speed.Rivals.XBOX360-PROTOCOL[10/94]"nfs.r-ptc.r07" yEnc 50 -140 ^alt\\.binaries\\.cd\\.lossless$ /^(?PFlac Flood( -)? .+? - ").+?" \\(\\d+\\/\\d+\\) .+? yEnc$/ 1 //Flac Flood - Modern Talking - China In Her Eyes (CDM) - "1 - Modern Talking - China In Her Eyes (feat. Eric Singleton) (Video Version).flac" (01/14) (23,64 MB) 136,66 MB yEnc ::: //Flac Flood Modern Talking - America - "1 - Modern Talking - Win The Race.flac" (01/18) (29,12 MB) 549,35 MB yEnc 5 -141 ^alt\\.binaries\\.cd\\.lossless$ /^(?P[a-zA-Z0-9].+? \\[)\\d+\\/\\d+\\]( -)? "\\d{2,} - .+?" yEnc$/ 1 //Cannonball Adderley - Nippon Soul [01/17] "00 - Cannonball Adderley - Nippon Soul.nfo" yEnc ::: //Black Tie White Noise [01/24] - "00 - David Bowie - Black Tie White Noise.nfo" yEnc 10 -142 ^alt\\.binaries\\.cd\\.lossless$ /^(?P(\\[\\d{4}\\] )?[a-zA-Z0-9].+? - File )\\d+ of \\d+: .+? yEnc$/ 1 //[1977] Joan Armatrading - Show Some Emotion - File 15 of 20: 06 Joan Armatrading - Opportunity.flac yEnc ::: //The Allman Brothers Band - Statesboro Blues [Swingin' Pig - Bootleg] [1970 April 4] - File 09 of 19: Statesboro Blues.cue yEnc 15 -143 ^alt\\.binaries\\.cd\\.lossless$ /^(?P[A-Z0-9].+? - [A-z0-9].+? \\[\\d{4}\\] - )\\d{2,} .+? yEnc$/ 1 //The Allman Brothers Band - The Fillmore Concerts [1971] - 06 The Allman Brothers Band - Done Somebody Wrong.flac yEnc 20 -144 ^alt\\.binaries\\.cd\\.lossless$ /^(?P[A-Z0-9].+? - [A-Z0-9].+? Disc \\d+ of \\d+ - )[A-Z0-9].+?\\..+? yEnc$/ 1 //The Velvet Underground - Peel Slow And See (Box Set) Disc 5 of 5 - 13 The Velvet Underground - Oh Gin.flac yEnc 25 -145 ^alt\\.binaries\\.cd\\.lossless$ /^\\(\\d+(?P\\/\\d+\\) ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/i 1 //(28/55) "Ivan Neville - If My Ancestors Could See Me Now.par2" - 624,44 MB - yEnc 30 -146 ^alt\\.binaries\\.chello$ /^(?P[A-Za-z0-9]{5,} ?\\[)\\d+\\/\\d+\\] - "[A-Za-z0-9]{3,}.+?" yEnc$/ 1 //0F623Uv71RHKt0jzA7inbGZLk00[2/5] - "l2iOkRvy80bgLrZm1xxw.par2" yEnc ::: //GMC2G8KixJKy [01/15] - "GMC2G8KixJKy.part1.rar" yEnc 5 -147 ^alt\\.binaries\\.chello$ /^(?P[a-zA-Z0-9][a-zA-Z0-9.-]+ \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //Imactools.Cefipx.v3.20.MacOSX.Incl.Keyfilemaker-NOY [03/10] - "parfile.vol000+01.par2" yEnc 10 -148 ^alt\\.binaries\\.chello$ /^(?P[A-Za-z0-9-]+ .+?[. ]\\[)\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //Siberian Mouses LS, BD models and special... [150/152] - "Xlola - Luba, Sasha & Vika.avi.jpg" yEnc 15 -149 ^alt\\.binaries\\.classic\\.tv\\.shows$ /^(?PRe: REQ: .+? - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Re: REQ: All In The Family - "Archie Bunkers Place 1x01 Archies New Partner part 1.nzb" yEnc 5 -150 ^alt\\.binaries\\.classic\\.tv\\.shows$ /^(?PPer REQ - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") .+? \\[\\d+\\/\\d+\\] yEnc$/i 1 //Per REQ - "The.Wild.Wild.West.S03E11.The.Night.of.the.Cut-Throats.DVDRip.XVID-tz.par2" 512x384 [01/40] yEnc 10 -151 ^alt\\.binaries\\.classic\\.tv\\.shows$ /^(?PBy req: ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //By req: "Dennis The Menace - 4x25 - Dennis and the Homing Pigeons.part05.rar" yEnc 15 -152 ^alt\\.binaries\\.classic\\.tv\\.shows$ /^(?P[a-zA-Z ]+HQ DVDRips ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") \\[\\d+\\/\\d+\\] yEnc$/i 1 //I Spy HQ DVDRips "I Spy - 3x26 Pinwheel.part10.rar" [13/22] yEnc 20 -153 ^alt\\.binaries\\.classic\\.tv\\.shows$ /^(?P[a-zA-Z0-9].+? (S\\d+D\\d+|- Season \\d+ -) \\[)\\d+\\/\\d+\\] - ".+?"? yEnc$/ 1 //Sledge Hammer! S2D2 [016/138] - "SH! S2 D2.ISO.016" yEnc ::: //Sledge Hammer! S2D2 [113/138] - "SH! S2 D2.ISO.1132 yEnc ::: //Lost In Space - Season 1 - [13/40] - "S1E02 - The Derelict.avi" yEnc 25 -154 ^alt\\.binaries\\.classic\\.tv\\.shows$ /^(?P[a-zA-Z0-9].+? \\d{4}-\\d\\d-\\d\\d( \\[.+?\\])? \\()\\d+\\/\\d+\\) - ".+?" yEnc$/ 1 //Night Flight TV Show rec 1991-01-12 (02/54) - "night flight rec 1991-01-12.nfo" yEnc ::: //Night Flight TV Show rec 1991-05-05 [NEW PAR SET] (1/9) - "night flight rec 1991-05-05.par2" yEnc 30 -155 ^alt\\.binaries\\.classic\\.tv\\.shows$ /^(?P[a-zA-Z0-9][a-zA-Z0-9.-]+ \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //The.Love.Boat.S05E08 [01/31] - "The.Love.Boat.S05E08.Chefs.Special.Kleinschmidt.New.Beginnings.par2" yEnc 35 -156 ^alt\\.binaries\\.classic\\.tv\\.shows$ /^(?P".+?)(\\.part\\d*|\\.rar)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/i 1 //"Batman - S1E13-The Thirteenth Hat.par2" yEnc 40 -157 ^alt\\.binaries\\.classic\\.tv\\.shows$ /^(Re: )?(?P[a-zA-Z0-9]+ .+? series \\d+ - \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //Re: Outside Edge series 1 - [01/20] - "Outside Edge S01.nfo" yEnc 45 -158 ^alt\\.binaries\\.classic\\.tv\\.shows$ /^(?P[a-zA-Z0-9 -_\\.:]+) - \\d+(?P of \\d+)[-_ ]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") (\\(\\d+\\/\\d+\\) )?(yEnc)?$/i 1 //'Mission: Impossible' - 1x09 - NTSC - DivX - 28 of 48 - "MI-S01E09.r23" yEnc ::: //'Mission: Impossible' - 1x09 - NTSC - DivX - 01 of 48 - "MI-S01E09.nfo" (1/1) 50 -159 ^alt\\.binaries\\.classic\\.tv\\.shows$ /^"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")(yEnc)?( )?$/i 1 //"Batman - S2E58-Ice Spy.par2"yEnc ::: //"Black Sheep Squadron 1x03 Best Three Out of Five.par2" 55 -160 ^alt\\.binaries\\.classic\\.tv\\.shows$ /^"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") \\(Not My Rip\\).+ \\d+ (?P- \\d+) .+ yEnc$/i 1 //"Guns of Will Sonnett - 1x04.mp4" (Not My Rip)Guns Of Will Sonnett Season 1 1 - 26 Mp4 With Pars yEnc 60 -161 ^alt\\.binaries\\.classic\\.tv\\.shows$ /^\\(\\d+\\/(?P\\d+\\) ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB] - yEnc$/i 1 //(01/10) "Watch_With_Mother-Bill_And_Ben-1953_02_12-Scarecrow-VHSRip-XviD.avi" - 162.20 MB - yEnc 65 -162 ^alt\\.binaries\\.classic\\.tv\\.shows$ /^\\(.+\\) "(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") \\[\\d+\\/(?P\\d+\\]) (Last One I Have! )?yEnc$/i 1 //(Our Gang - Little Rascals DVDRips) "Our Gang - The Lucky Corner (1936).part0.sfv" [01/19] yEnc ::: //(Our Gang - Little Rascals DVDRips) "Our Gang - Wild Poses (1933).part.par" [02/20] Last One I Have! yEnc 70 -163 ^alt\\.binaries\\.classic\\.tv\\.shows$ /^.+ Usenet Past .+\\[\\d+\\/(?P\\d+\\]) - "(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[EnJoY] =>A Blast from Usenet Past (1/3)<= [00/14] - "Mcdonalds Training Film - 1972 (Vhs-Mpg).part.nzb" yEnc 75 -164 ^alt\\.binaries\\.classic\\.tv\\.shows$ /^ \\[\\d+\\/(?P\\d+\\]) - "(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 // [01/12] - "Yancy Derringer - 03 - Geheime Fracht.par2" yEnc 80 -165 ^alt\\.binaries\\.classic\\.tv\\.shows$ /^.+ [\\[\\(]\\d+( of |\\/)(?P\\d+[\\]\\)])[-_ ]{0,3}"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //77 Sunset Strip 409 [1 of 23] "77 Sunset Strip 409 The Missing Daddy Caper.avi.vol63+34.par2" yEnc ::: //Barney.Miller.NZBs [001/170] - "Barney.Miller.S01E01.Ramon.nzb" yEnc 85 -166 ^alt\\.binaries\\.classic\\.tv\\.shows$ /^.+[-_ ]{0,3}"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") [\\[\\(]\\d+\\/(?P\\d+[\\]\\)]) yEnc$/i 1 //All in the Family - missing eps - DVDRips "All in the Family - 6x23 Gloria & Mike's House Guests.part5.rar" [08/16] yEnc ::: //Amos 'n' Andy - more shows---read info.txt "Amos 'n' Andy S01E00 Introduction of the Cast.mkv.001" (002/773) yEnc 90 -167 ^alt\\.binaries\\.classic\\.tv\\.shows$ /^(?P.+\\d+x\\d+.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol\\d+\\+\\d+\\.par2|\\.[A-Za-z0-9]{2,4})( yEnc)?( (Series|Season) Finale)?$/ 1 //Andy Griffith Show,The 1x05....Irresistible Andy - (DVD).part04.rar 95 -168 ^alt\\.binaries\\.comp$ /^(?P[\\w.]+\\s+\\[)\\d+\\/\\d+\\] -\\d+\\s+".+?" yEnc$/i 1 //Sims3blokjesremover [0/0] -3162 "Sims3blokjesremover.nzb" yEnc ::: //xSIMS_The_Sims_3_Censor_Remover_v2.91 5 -169 ^alt\\.binaries\\.comp$ /^(?P[a-zA-Z0-9].+?\\s+\\()\\d+\\/\\d+\\) ".+?" - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/ 1 //Photo Mechanic 5.0 build 13915 (1/6) "Photo Mechanic 5.0 build 13915 (1).par2" - 32,97 MB - yEnc 10 -170 ^alt\\.binaries\\.comp$ /^\\(\\d+(?P\\/\\d+\\) .+? post .+? ").+?" yEnc$/ 1 //(45/74) NikJosuf post Magento tutorials "43 - Theming Magento 19 - Adding a Responsive Slideshow.mp4" yEnc 15 -171 ^alt\\.binaries\\.cores$ /^Film - \\[\\d+\\/(?P\\d+\\] - )?"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Film - [13/59] - "Jerry Maguire (1996) 1080p DTS multisub HUN HighCode-PHD.part13.rar" yEnc ::: //Film - "Phone.booth.2003.RERIP.Bluray.1080p.DTS-HD.x264-Grym.part001.rar" yEnc 5 -172 ^alt\\.binaries\\.cores$ /^\\[Art-Of-Use\\.Net\\] :: \\[.+?\\] :: - \\[\\d+\\/(?P\\d+\\][-_ ]{0,3}"(.+?))([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[Art-Of-Use.Net] :: [AUTO] :: - [34/36] - "ImmoralLive.13.11.10.Immoral.Orgies.Rikki.Six.Carmen.Callaway.And.Amanda.Tate.XXX.1080p.MP4-KTR.vol15+16.par2" yEnc 10 -173 ^alt\\.binaries\\.cores$ /^brothers-of-usenet\\.info\\.net.+SSL-News\\.info-----(?P.+) - "(.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //brothers-of-usenet.info.net Partner von---- SSL-News.info----- brothers-of-usenet.info.net Partner von---- SSL-News.info-----AVG.Internet.Security.2014.Build.4335.x86.x64 - "AVG.Internet.Security.2014.Build.4335.vol00+01.PAR2" - 315,68 MB - yEnc 15 -174 ^alt\\.binaries\\.cores$ /^>+GOU<+ (?P.+?) >+www\\..+?<+ - \\(\\d+\\/\\d+\\) - ".+?" yEnc$/ 1 //>GOU<< ZDF.History.Das.Geiseldrama.von.Gladbeck.GERMAN.DOKU.720p.HDTV.x264-TVP >>www.SSL-News.info< - (02/35) - "tvp-gladbeck-720p.nfo" yEnc 20 -175 ^alt\\.binaries\\.cores$ /^<<>> \\[\\d+\\/(?P\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //<<>> USC <<>> [22/26] - "Zombie.Tycoon.2.Brainhovs.Revenge-SKIDROW.vol00+1.par2" - 1,85 GB yEnc 25 -176 ^alt\\.binaries\\.cores$ /^[a-zA-Z0-9]+ post voor u op www\\..+? - \\[\\d+\\/\\d+\\] - "(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Jipejans post voor u op www.Dreamplace.biz - [010/568] - "Alien-Antology-DC-Special-Edition-1979-1997-1080p-GER-HUN-HighCode.part009.rar" yEnc ::: //Egbert47 post voor u op www.nzbworld.me - [01/21] - "100 Hits - Lady Sings The Blues 2006 (5cd's).par2" yEnc 30 -177 ^alt\\.binaries\\.cores$ /^>+ .+?\\.info [<>+]+ .+?\\.com <+ "(?P.+?)\\s+- .*?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - .+? yEnc$/i 1 //>>> usenet4ever.info <<<+>>> secretusenet.com <<< "Weltnaturerbe USA Grand Canyon Nationalpark 2012 3D Blu-ray untouched - DarKneSS.part039.rar" - DarKneSS yEnc 35 -178 ^alt\\.binaries\\.cores$ /^Old\\s+Dad\\s+uppt?\\s*?(?P.+?)( mp4| )?\\[?\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //Old Dad uppt Der gro?e Gatsby BD Rip AC3 Line XvidD German 01/57] - "Der gro?e Gatsby.par2" yEnc 40 -179 ^alt\\.binaries\\.cores$ /^[A-Za-z]+ - \\[\\d+\\/\\d+\\] - "\\d+-(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //panter - [46/60] - "68645-Busty Beauties Car Wash XXX 3D BD26.part45.rar" yEnc ::: //Wildrose - [01/57] - "49567-Kleine Rode Tractor Buitenpret.par2" yEnc 45 -180 ^alt\\.binaries\\.cores$ /^\\[ TOWN \\][ _-]{0,3}\\[ www\\.town\\.ag \\][ _-]{0,3}\\[ partner of www\\.ssl-news\\.info \\][ _-]{0,3}\\[ .* \\] \\[\\d+\\/(?P\\d+\\][ _-]{0,3}("|#34;).+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i 1 //[ TOWN ]-[ www.town.ag ]-[ partner of www.ssl-news.info ]-[ MOVIE ] [14/19] - "Night.Vision.2011.DVDRip.x264-IGUANA.part12.rar" - 660,80 MB yEnc 50 -181 ^alt\\.binaries\\.cores$ /^\\[ TOWN \\][ _-]{0,3}\\[ www\\.town\\.ag \\][ _-]{0,3}\\[ partner of www\\.ssl-news\\.info \\] \\[\\d+\\/(?P\\d+\\][ _-]{0,3}("|#34;).+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i 1 //[ TOWN ]-[ www.town.ag ]-[ partner of www.ssl-news.info ] [01/28] - "Shadowrun_Returns_MULTi4-iNLAWS.par2" - 1,11 GB yEnc 55 -182 ^alt\\.binaries\\.cores$ /^[ _-]{0,3}\\w+(-\\w+)?[ _-]{0,3}\\d+[ _-]{0,3}(?P.+) - \\[\\d+\\/\\d+\\][ _-]{0,3}("|#34;).+?("|#34;) yEnc$/i 1 // - FLAC - 1330543524 - Keziah_Jones-Femiliarise-PROMO_CDS-FLAC-2003-oNePiEcE - [01/11] - "00-keziah_jones-femiliarise-promo_cds-flac-2003-1.jpg" yEnc 60 -183 ^alt\\.binaries\\.cores$ /.*[\\(\\[]\\d+\\/(?P\\d+[\\)\\]])[-_ ]{0,3}"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4})[-_ ]{0,3}(\\d+[.,]\\d+ [kKmMgG][bB](ytes)?)? yEnc$/i 1 //[ TOWN ]-[ www.town.ag ]-[ partner of www.ssl-news.info ] [26/26] - "Legally.Brown.S01E06.HDTV.x264-BWB.vol7+4.par2" - 332,80 MB yEnc 65 -184 ^alt\\.binaries\\.cores$ /^Doobz (?P[a-zA-z-_]+) \\[\\d+\\/(?P\\d+\\]) - ".+([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Doobz Europa_Universalis_IV_Conquest_of_Paradise-FLT [10/54] - "flt-eucp.001" yEnc 70 -185 ^alt\\.binaries\\.cores$ /^\\[\\d+\\/(?P\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/i 1 //[01/10] - "Wondershare.Video.Converter.Ultimate.v6.7.1.0.Multilanguage.par2" - 45,44 MB yEnc 75 -186 ^alt\\.binaries\\.pictures\\.erotica\\.anime$ /(?P.*)\\s+-\\s+\\d+\\s+of\\s+\\d+\\s+-\\s+yEnc\\s+".*"/i 1 // pictures.erotica.anime has really only header we care about in the form ::: // [ABPEA - Original] Arima Zin - Tennen Koiiro Alcohol [BB, Boy] - 005 of 229 - yEnc "Tennen_Koiiro_Alcohol-005.jpg" ::: // in this case we only need the title of the manga, not which image we are viewing or the post file name 5 -187 ^alt\\.binaries\\.console\\.ps3$ /^(?P\\[\\d+\\]-\\[ABGX\\.(?Pnet|NET)\\] - ").+?(" - \\d+[,.]\\d+ [kKmMgG][bB] - )yEnc$/ 1 //[4062]-[ABGX.net] - "unlimited-skyrim.legendary.multi4.ps3.par2" - 17.10 GB - yEnc 5 -188 ^alt\\.binaries\\.console\\.ps3$ /^(?P\\[\\d+\\]-\\[abgx\\] - ").+?" yEnc$/ 1 //[4017]-[abgx]- "duplex.nfo" yEnc 10 -189 ^alt\\.binaries\\.console\\.ps3$ /^(?P\\[\\d+\\] \\[\\d+\\/\\d+\\] - ").+?" yEnc$/ 1 //[4197] [036/103] - "ant-mgstlcd2.r34" yEnc 15 -190 ^alt\\.binaries\\.console\\.ps3$ /(?P[A-Z0-9]\\w{10,}-?PS3-[a-zA-Z0-9]+ \\[)\\d+\\/\\d+\\] - ".+?" $/ 1 //Musou_Orochi_Z_JPN_PS3-JPMORGAN [62/62] - "jpmorgan.nfo" yEnc 20 -191 ^alt\\.binaries\\.console\\.ps3$ /^"(?P.+)__www.realmom.info__.+" \\(\\d+\\/(?P\\d+\\)) \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/ 1 //"Armored_Core_V_PS3-ANTiDOTE__www.realmom.info__.r00" (03/78) 3,32 GB yEnc 25 -192 ^alt\\.binaries\\.console\\.ps3$ /^"(?P.+)__www.realmom.info__.+" (?P\\d+[.,]\\d+ [kKmMgG][bB]) yEnc$/ 1 //"Ace.Combat.Assault.Horizon.PS3-DUPLEX__www.realmom.info__.nfo" 7,14 GB yEnc 30 -193 ^alt\\.binaries\\.country\\.mp3$ /^(?PAttn: .+? - .+? - .+? - )(\\d+ - )?.+?\\.[A-Za-z0-9]{2,4} yEnc$/ 1 //Attn: wulf109 - Jim Reeves - There's Someone Who Loves You - 01 - Anna Marie.mp3 yEnc ::: //Attn: wulf109 - Jim Reeves - There's Someone Who Loves You - Front.jpg yEnc 5 -194 ^alt\\.binaries\\.country\\.mp3$ /^(?P[A-Z0-9].{3,} -( (19|20)\\d\\d - )?[A-Z0-9].{3,}\\s+")[A-Z0-9].{3,} - \\d+ - [A-Z0-9].+?\\.[A-Za-z0-9]{2,4}" yEnc$/ 1 //Jo Dee Messina - A Joyful Noise "01 - Winter Wonderland.mp3" yEnc ::: //Karen Lynne - 2000 - Six Days in December "Pat Drummond and Karen Lynne - 01 - The Rush.mp3" yEnc 10 -195 ^alt\\.binaries\\.country\\.mp3$ /^(?P(\\]?"[A-Z0-9].{3,} - )+?([A-Z0-9].{3,}? - )+?)(\\d\\d - )?[a-zA-Z0-9].+?\\.[A-Za-z0-9]{2,4}" yEnc$/ 1 //"Heather Myles - Highways and Honky Tonks - 05 - True Love.mp3" yEnc ::: //"Reba McEntire - The Secret Of Giving - A Christmas Collection - 09 - This Christmas.mp3" yEnc ::: //]"Heather Myles - Highways and Honky Tonks - 05 - True Love.mp3" yEnc ::: //"Reba McEntire - Moments & Memories - The Best Of Reba - Australian-back.jpg" yEnc ::: //"Reba McEntire - The Secret Of Giving - A Christmas Collection - 01 - This Is My Prayer For You.mp3" yEnc ::: //"Reba McEntire - American Legends-Best Of The Early Years - 02 - You Really Better Love Me After This.Mp3" yEnc 15 -196 ^alt\\.binaries\\.country\\.mp3$ /^(?P"[A-Z0-9].{3,}? - )(([A-Z0-9][^-]{3,}?|\\s*\\d\\d) - )?[a-zA-Z0-9].{2,}?\\.[A-Za-z0-9]{2,4}?" yEnc$/ 1 //"Reba McEntire - Duets.m3u" yEnc ::: //"Reba McEntire - Greatest Hits Volume Two - back.jpg" yEnc ::: //"Reba McEntire - American Legends-Best Of The Early Years.m3u" yEnc ::: //"Jason Allen - 00 - nfo.txt" yEnc ::: //"Sean Ofarrell-L 20 -197 ^alt\\.binaries\\.country\\.mp3$ /^(?P\\]"[\\w-]{10,}?)-[a-zA-Z0-9]+\\.[a-zA-Z0-9]{2,4}" yEnc$/ 1 //]"Heather_Myles_-_Highways_And_Honky_Tonks-back.jpg" yEnc 25 -198 ^alt\\.binaries\\.country\\.mp3$ /^(?P[A-Z0-9].{3,}? - [A-Z0-9].{3,}? - )\\d\\d - [a-zA-Z0-9].{2,}?\\.[A-Za-z0-9]{2,4}?" yEnc$/ 1 //Merv & Maria - Chasing Rainbows Merv & Maria - 01 - Sowin' Love.mp3" yEnc 30 -199 ^alt\\.binaries\\.dc$ /^(?P[A-Z0-9].+? postet\\s+.+?\\s+\\[)\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //Eragon postet Horror S01 E01 german Sub [02/22] - "kopiert neu.par2" yEnc ::: //Eragon postet Rapunzel S02E12 german Sub hardcodet [02/18] - "Rapunzel S02E12 HDTV x264-LOL ger subbed.par2" yEnc 5 -200 ^alt\\.binaries\\.documentaries$ /^(?P#sterntuary - .+? - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //#sterntuary - Alex Jones Radio Show - "05-03-2009_INFO_BAK_ALJ.nfo" yEnc 5 -201 ^alt\\.binaries\\.documentaries$ /^\\(\\d+\\/(?P\\d+\\)) "((BBC|ITV) )?(?P.+?)(\\.part\\d+)?(\\.(par2|(vol.+?))"|\\.[a-z0-9]{3}"|") - \\d.+? - (\\d.+? -)? yEnc$/ 1 //(08/25) "Wild Russia 5 of 6 The Secret Forest 2009.part06.rar" - 47.68 MB - 771.18 MB - yEnc ::: //(01/24) "ITV Wild Britain With Ray Mears 1 of 6 Deciduous Forest 2011.nfo" - 4.34 kB - 770.97 MB - yEnc ::: //(24/24) "BBC Great British Garden Revival 03 of 10 Cottage Gardens And House Plants 2013.vol27+22.PAR2" - 48.39 MB - 808.88 MB - yEnc 10 -202 ^alt\\.binaries\\.documentaries$ /^.+?\\[\\d+\\/(?P\\d+\\][-_ ]{0,3}.+?)[-_ ]{0,3}("|#34;)(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}("|#34;))[-_ ]{0,3}yEnc$/ 1 //(World Air Routes - WESTJET - B737-700) [028/109] - "World Air Routes - WESTJET - B737-700.part027.rar" yEnc 15 -203 ^alt\\.binaries\\.documentaries$ /.*[\\(\\[]\\d+\\/(?P\\d+[\\)\\]])[-_ ]{0,3}("|#34;)(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4})("|#34;)(.+?)yEnc$/i 1 //Beyond Vanilla (2010) Documentary DVDrip XviD-Uncut - (02/22) "Beyond.Vanilla.2010.Documentary.DVDrip.XviD-Uncut.par2" - yenc yEnc 20 -204 ^alt\\.binaries\\.documentaries$ /.*[\\(\\[]\\d+-(?P\\d+[\\)\\]])[-_ ]{0,3}("|#34;)(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}("|#34;)).+?yEnc$/i 1 //Rough Cut - Woodworking with Tommy Mac - Pilgrim Blanket Chest (1600s) DVDrip DivX - (02-17) "Rough.Cut-Woodworking.with.Tommy.Mac-Pilgrim.Blanket.Chest.1600s-DVDrip.DivX.2010.par2" - yEnc yEnc 25 -205 ^alt\\.binaries\\.documentaries$ /(?P.+) - [\\(\\[]\\d+(?P\\|\\d+[\\)\\]])[-_ ]{0,3}("|#34;).+?(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}("|#34;)).+?yEnc$/i 1 //Asia This Week (NHK World, 19 & 20 July 2013) - 'Malala's movement for girls' education + Japan seeks imports from Southeast Asia - soccer players' - (02|14) - "ATW-2013-07-20.par2" yEnc ::: //Asia Biz Forecast (NHK World, 6 & 7 July 2013) - 'China: limits of growth + Japan: remote access' - (05|14) - "ABF-2013-07-07.part3.rar" yEnc 30 -206 ^alt\\.binaries\\.documentaries$ /(?P.+) - File \\d+ of (?P\\d+)[-_ ]{0,3}.+?(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}).+?yEnc$/i 1 //Asia Biz Forecast (NHK World, 16-17 June 2012) - "Japan seeks energy options" - File 01 of 14 - ABF-2012-06-16.nfo (yEnc 35 -207 ^alt\\.binaries\\.documentaries$ /.*"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}") (?P\\d+[,.]\\d+ [kKmMgG][bB]ytes) yEnc$/i 1 //Dark MatterDark Energy S02E06 - "Dark Matter_Dark Energy S02E06 - The Universe - History Channel.part1.rar" 51.0 MBytes yEnc 40 -208 ^alt\\.binaries\\.documentaries$ /\\(\\d+\\/(?P\\d+\\) - .+) - "(.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB] - yEnc$/i 1 //(35/45) - Keating Pt4 - "Keating Pt4.part34.rar" - 1.77 GB - yEnc 45 -209 ^alt\\.binaries\\.downunder$ /^(?P[a-zA-Z0-9]{5,}\\[)\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //RWlgVffClWxD0vXT1peIwb9DubTLMiYm3nvD1aMMDe[04/16] - "A9jFik7Fk4hCG4GWuxAg.r02" yEnc 5 -210 ^alt\\.binaries\\.dvd$ /^(thnx to original poster )?\\[\\d+(?P\\/\\d+\\] - ".+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2|\\.[A-Za-z0-9]{2,4})("| `).* yEnc$/ 1 //thnx to original poster [00/98] - "2669DFKKFD2008.nzb ` 2669DFKKFD2008 " yEnc 5 -211 ^alt\\.binaries\\.dvd-r$ /^(?Pkatanxya "katanxya\\d+)/ 1 //katanxya "katanxya7221.par2" yEnc 5 -212 ^alt\\.binaries\\.dvd-r$ /^\\[\\d+\\/\\d+\\] - "(?P[A-Z0-9](19|20)\\d\\d[01]\\d[123]\\d_\\d+\\.).+?" - \\d+[,.]\\d+ [mMkKgG][bB] yEnc$/ 1 //[01/52] - "H1F3E_20130715_005.par2" - 4.59 GB yEnc 10 -213 ^alt\\.binaries\\.ebook$ /^New eBooks.+[ _-]{0,3}("|#34;)(?P.+?.+)\\.(par|vol|rar|nfo).*?("|#34;)/i 1 //New eBooks 8 June 2013 - "Melody Carlson - [Carter House Girls 08] - Last Dance (mobi).rar" 5 -214 ^alt\\.binaries\\.ebook$ /www.nzbworld.me - \\[\\d+\\/(?P\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") yEnc/i 1 //(Nora Roberts)"Black Rose - Nora Roberts.epub" yEnc ::: //Rowwendees post voor u op www.nzbworld.me - [0/6] - "Animaniacs - Lights, Camera, Action!.nzb" yEnc (1/1) 10 -215 ^alt\\.binaries\\.ebook$ /town\\.ag.+?(download all our files with|partner of).+?www\\..+?\\.info.+? \\[\\d+\\/(?P\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/i 1 // >> www.ssl-news.info <<< > [02/19] - "2013.AUG.non-fiction.NEW.releases.part.1.(PDF)-MiMESiS.part01.rar" - 1,31 GB yEnc ::: // [3/3] - "Career.Secrets.Exposed.by.Gavin.F..Redelman_.RedStarResume.vol0+1.par2" - 8,16 MB yEnc 15 -216 ^alt\\.binaries\\.ebook$ /\\((?P.+works)\\) \\[\\d+\\/(?P\\d+\\]) - "(?P.+?)\\.(mobi|pdf|epub|html|azw)" yEnc$/ 1 //(Zelazny works) [36/39] - "Roger Zelazny - The Furies.mobi" yEnc 20 -217 ^alt\\.binaries\\.ebook$ /^\\([a-zA-Z ]+ sampler\\) \\[\\d+(?P\\/\\d+\\]) - "(?P.+?)\\.(txt|pdf|mobi|epub|azw)" yEnc$/ 1 //(Joan D Vinge sampler) [17/17] - "Joan D Vinge - World's End.txt" yEnc 25 -218 ^alt\\.binaries\\.ebook$ /^New - Retail -( Juvenile Fiction -)? "(?P.+?)\\.(txt|pdf|mobi|epub|azw)" yEnc$/ 1 //New - Retail - Juvenile Fiction - "Magic Tree House #47_ Abe Lincoln at Last! - Mary Pope Osborne & Sal Murdocca.epub" yEnc ::: //New - Retail - "Linda Howard - Cover of Night.epub" yEnc ::: //New - Retail - "Kylie Logan_Button Box Mystery 01 - Button Holed.epub" yEnc 30 -219 ^alt\\.binaries\\.ebook$ /^\\(No\\. 1 Ladies Detective Agency\\) \\[\\d+(?P\\/\\d+\\]) - "(?P.+?)\\.(txt|pdf|mobi|epub|azw)" yEnc$/ 1 //(No. 1 Ladies Detective Agency) [04/13] - "Alexander McCall Smith - No 1-12 - The Saturday Big Tent Wedding Party.mobi" yEnc 35 -220 ^alt\\.binaries\\.ebook$ /^\\[\\d+\\/(?P\\d+\\]) (?P.+?)\\.(txt|pdf|mobi|epub|azw)/ 1 //[25/33] Philip Jose Farmer - Toward the Beloved City [ss].mobi ::: //[2/4] Graham Masterton - Descendant.mobi 40 -221 ^alt\\.binaries\\.ebook$ /(?P.+)[-_ ]{0,3}[\\(\\[]\\d+\\/(?P\\d+[\\)\\]][-_ ]{0,3}".+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //(NordicAlbino) [01/10] - "SWHQ_NA_675qe0033102suSmzSE.sfv" yEnc ::: //365 Sex Positions A New Way Every Day for a Steamy Erotic Year [eBook] - (1/5) "365.Sex.Positions.A.New.Way.Every.Day.for.a.Steamy.Erotic.Year.eBook.nfo" - yenc yEnc 45 -222 ^alt\\.binaries\\.ebook$ /^\\[\\d+\\/(?P\\d+\\] .+?) - "(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}") yEnc$/ 1 //[001/125] (NL Epub Wierook Set 49) - "Abulhawa, Susan - Litteken van David_Ochtend in Jenin.epub" yEnc 50 -223 ^alt\\.binaries\\.ebook$ /^\\(\\d+\\/(?P\\d+\\)) "(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //(1/1) "Radiological Imaging of the Kidney - E. Quaia (Springer, 2011) WW.pdf" - 162,82 MB - (Radiological Imaging of the Kidney - E. Quaia (Springer, 2011) WW) yEnc 55 -224 ^alt\\.binaries\\.ebook$ /^\\(\\d+\\/(?P\\d+\\)) "(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //(1/7) "0865779767.epub" - 88,93 MB - "Anatomic Basis of Neurologic Diagnosis - epub" yEnc 60 -225 ^alt\\.binaries\\.ebook$ /^(?PAttn:|Re:|REQ:|New Scan).+?[-_ ]{0,3}"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")[-_ ]{0,3}(\\d+[.,]\\d+ [kKmMgG][bB](ytes)?)? yEnc$/i 1 //Re: REQ: Jay Lake's Mainspring series/trilogy (see titles inside) - "Lake, Jay - Clockwork Earth 03 - Pinion [epub].rar" 405.6 kBytes yEnc ::: //Attn: Brownian - "del Rey, Maria - Paradise Bay (FBS).rar" yEnc ::: //New Scan "Herbert, James - Sepulchre (html).rar" yEnc 65 -226 ^alt\\.binaries\\.ebook$ /.*"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}").+?yEnc$/i 1 //"Gabaldon, Diana - Outlander [5] The Fiery Cross.epub" yEnc ::: //Kiny Friedman "Friedman, Kinky - Prisoner of Vandam Street_ A Novel, The.epub" yEnc 70 -227 ^alt\\.binaries\\.ebook$ /(?P.+?)[-_ ]{0,3}\\d+\\/(?P\\d+[-_ ]{0,3}".+?)\\.(txt|pdf|mobi|epub|azw)"( \\(\\d+\\/\\d+\\))?( )?$/ 1 //Patterson flood - Mobi - 15/45 "James Patterson - AC 13 - Double Cross.mobi" 75 -228 ^alt\\.binaries\\.e-book$ /^New eBooks.+[ _-]{0,3}("|#34;)(?P.+?.+)\\.(par|vol|rar|nfo).*?("|#34;)/i 1 //New eBooks 8 June 2013 - "Melody Carlson - [Carter House Girls 08] - Last Dance (mobi).rar" 80 -229 ^alt\\.binaries\\.e-book$ /^\\(Nora Roberts\\)"(?P.+?)\\.(?Pepub|mobi|html|pdf|azw)" yEnc$/ 1 //(Nora Roberts)"Black Rose - Nora Roberts.epub" yEnc 85 -230 ^alt\\.binaries\\.e-book$ /town\\.ag.+?download all our files with.+?www\\..+?\\.info.+? \\[\\d+(?P\\/\\d+\\] - ".+?)(-sample)?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/i 1 // >> www.ssl-news.info <<< > [02/19] - "2013.AUG.non-fiction.NEW.releases.part.1.(PDF)-MiMESiS.part01.rar" - 1,31 GB yEnc 90 -231 ^alt\\.binaries\\.e-book$ /^Doctor Who - Target Books \\[\\d+\\/(?P\\d+\\]) - "DW[0-9]{0,3}[-_ ]{0,3}(?P.+?)\\.(txt|pdf|mobi|epub|azw)" yEnc$/ 1 //Doctor Who - Target Books [128/175] - "DW125_ Terror of the Vervoids - Pip Baker.mobi" yEnc 95 -232 ^alt\\.binaries\\.e-book$ /^\\((?P[a-zA-Z0-9 -]+)\\) \\[\\d+\\/(?P\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(American Curves - Summer 2012) [01/10] - "AMECURSUM12.par2" yEnc 100 -233 ^alt\\.binaries\\.e-book$ /(?P.+)[-_ ]{0,3}[\\(\\[]\\d+\\/(?P\\d+[\\)\\]][-_ ]{0,3}".+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}").+?yEnc$/i 1 //(NordicAlbino) [01/10] - "SWHQ_NA_675qe0033102suSmzSE.sfv" yEnc ::: //365 Sex Positions A New Way Every Day for a Steamy Erotic Year [eBook] - (1/5) "365.Sex.Positions.A.New.Way.Every.Day.for.a.Steamy.Erotic.Year.eBook.nfo" - yenc yEnc 105 -234 ^alt\\.binaries\\.e-book$ /^[\\(\\[]\\d+\\/(?P\\d+[\\)\\]][-_ ]{0,3}".+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}")([-_ ]{0,3}\\d+[.,]\\d+ [kKmMgG][bB])?[-_ ]{0,3}yEnc$/i 1 //[1/8] - "Robin Lane Fox - Travelling heroes.epub" yEnc ::: //(1/1) "Unintended Consequences - John Ross.nzb" - 8.67 kB - yEnc 110 -235 ^alt\\.binaries\\.e-book$ /^[\\(\\[] .+? [\\)\\][-_ ]{0,3}"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")[-_ ]{0,3}[\\(\\[]\\d+\\/(?P\\d+[\\)\\]])[-_ ]{0,3}yEnc$/ 1 //[ Mega Dating and Sex Advice Ebooks - Tips and Tricks for Men PDF ] - "Vatsyayana - The Kama Sutra.pdf.rar" - (54/58) yEnc 115 -236 ^alt\\.binaries\\.e-book$ /^(?PWWII in Photos)[-_ ]{0,3}"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")[-_ ]{0,3}yEnc$/ 1 //WWII in Photos - "WWII in Photos_05_Conflict Spreads Around the Globe - The Atlantic.epub" yEnc 120 -237 ^alt\\.binaries\\.e-book$ /^.+?"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")[-_ ]{0,3}\\[\\d+ of (?P\\d+\\])[-_ ]{0,3}yEnc$/ 1 //Various ebooks on History pdf format "Chelsea House Publishing Discovering U.S. History Vol. 8, World War I and the Roaring Twenties - 1914-1928 (2010).pdf" [1 of 1] yEnc 125 -238 ^alt\\.binaries\\.e-book$ /.+[\\(\\[]\\d+ of (?P\\d+[\\)\\]] ".+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}") yEnc$/ 1 //A few things - [4 of 13] "Man From U.N.C.L.E. 08 - The Monster Wheel Affair - David McDaniel.epub" yEnc 130 -239 ^alt\\.binaries\\.e-book$ /.+[\\(\\[]\\d+\\/(?P\\d+[\\)\\]] - ".+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}") toby\\d+$/ 1 //DDR Kochbuch 1968-wir kochen gut [1/1] - "DDR Kochbuch 1968-wir kochen gut.pdf" toby042002 135 -240 ^alt\\.binaries\\.e-book$ /^.+?[-_ ]{0,3}"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}") [\\(\\[]\\d+\\/(?P\\d+[\\)\\]]) ([-_ ]{0,3}\\d+[.,]\\d+ [kKmMgG][bB])?[-_ ]{0,3}yEnc$/ 1 //Pottermore UK retail - "Harry Potter and the Goblet of Fire - J.K. Rowling.epub" (05/14) - 907.57 kB - yEnc 140 -241 ^alt\\.binaries\\.e-book$ /^\\[\\d+\\/(?P\\d+\\] .+?) - "(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}") yEnc$/ 1 //[001/125] (NL Epub Wierook Set 49) - "Abulhawa, Susan - Litteken van David_Ochtend in Jenin.epub" yEnc 145 -242 ^alt\\.binaries\\.e-book$ /^\\(\\d+\\/(?P\\d+\\)) "(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //(1/1) "Radiological Imaging of the Kidney - E. Quaia (Springer, 2011) WW.pdf" - 162,82 MB - (Radiological Imaging of the Kidney - E. Quaia (Springer, 2011) WW) yEnc 150 -243 ^alt\\.binaries\\.e-book$ /^\\(\\d+\\/(?P\\d+\\)) "(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //(1/7) "0865779767.epub" - 88,93 MB - "Anatomic Basis of Neurologic Diagnosis - epub" yEnc 155 -244 ^alt\\.binaries\\.e-book$ /^(?PAttn:|Re:|REQ:|New Scan).+?[-_ ]{0,3}"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")[-_ ]{0,3}(\\d+[.,]\\d+ [kKmMgG][bB](ytes)?)? yEnc$/i 1 //Re: REQ: Jay Lake's Mainspring series/trilogy (see titles inside) - "Lake, Jay - Clockwork Earth 03 - Pinion [epub].rar" 405.6 kBytes yEnc ::: //Attn: Brownian - "del Rey, Maria - Paradise Bay (FBS).rar" yEnc ::: //New Scan "Herbert, James - Sepulchre (html).rar" yEnc 160 -245 ^alt\\.binaries\\.e-book$ /.*"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}").+?yEnc$/i 1 //"Gabaldon, Diana - Outlander [5] The Fiery Cross.epub" yEnc ::: //Kiny Friedman "Friedman, Kinky - Prisoner of Vandam Street_ A Novel, The.epub" yEnc 165 -246 ^alt\\.binaries\\.e-book$ /(?P.+?)[-_ ]{0,3}\\d+\\/(?P\\d+[-_ ]{0,3}".+?)\\.(txt|pdf|mobi|epub|azw)"( \\(\\d+\\/\\d+\\))?( )?$/ 1 //Patterson flood - Mobi - 15/45 "James Patterson - AC 13 - Double Cross.mobi" 170 -247 ^alt\\.binaries\\.e-book$ /\\d+\\/(?P\\d+[-_ ]{0,3}.+)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4})[-_ ]{0,3}yEnc$/i 1 //04/63 Brave New World Revisited - Aldous Huxley.mobi yEnc 175 -248 ^alt\\.binaries\\.e-book$ /^- (?P.+?)\\.(par|vol|rar|nfo)[-_ ]{0,3}(?P.+)/ 1 //- Campbell, F.E. - Susan - HIT 125.rar BDSM Themed Adult Erotica - M/F F/F - Rtf & Pdf 180 -249 ^alt\\.binaries\\.e-book$ /^"(?P.+?)\\.(txt|pdf|mobi|epub|azw)" \\(\\d+\\/(?P\\d+\\))/ 1 //"D. F. Jones - 03 - Colossus and The Crab.epub" (1/3) 185 -250 ^alt\\.binaries\\.e-book$ /^"(?P.+?)\\.(txt|pdf|mobi|epub|azw|lit|rar|nfo|par)" $/ 1 //"D. F. Jones - 01 - Colossus.epub" (note the space on the end) 190 -251 ^alt\\.binaries\\.e-book$ /^\\[\\d*+\\/(?P\\d+\\]) - "(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4} "|") yEnc$/i 1 //[01/19] - "13_X_Panzer_Tracts_EBook.nfo " yEnc 195 -252 ^alt\\.binaries\\.e-book$ /^\\[\\d+\\/(?P\\d+\\]) (?P.+?)\\.(txt|pdf|mobi|epub|azw|lit|rar|nfo|par).+?(yEnc)?$/ 1 //[09/14] Sven Hassel - Legion of the Damned 09, Reign of Hell.mobi sven hassel as requested (1/7) yEnc ::: //[1/1] Alex Berenson - John Wells 05, The Secret Soldier.mobi (space at end) 200 -253 ^alt\\.binaries\\.e-book$ /^\\[\\d+\\/(?P\\d+\\]) - "(?P.+?)\\.(txt|pdf|mobi|epub|azw|lit|rar|nfo|par)"( \\d+K)?( )?$/ 1 //[1/1] - "Die Kunst der Fotografie Lehrbuch und Bildband f r ambitionierte Fotografen.rar" ::: //[1/1] - "Demonic_ How the Liberal Mob Is Endanger - Coulter, Ann.mobi" (note space at end) ::: //[1/1] - "Paris in Love_ A Memoir - Eloisa James.mobi" 1861K 205 -254 ^alt\\.binaries\\.e-book$ /^\\d+\\/(?P\\d+)[-_ ]{0,3}(?P.+?)\\.(txt|pdf|mobi|epub|azw|lit|rar|nfo|par)$/ 1 //002/240 Swordships.of.Scorpio.(Dray.Prescot).-.Alan.Burt.Akers.epub 210 -255 ^alt\\.binaries\\.e-book$ /^(?P[a-zA-Z0-9. ].+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|) yEnc$/i 1 //Akers Alan Burt - Dray Prescot Saga 14 - Krozair von Kregen.rar yEnc 215 -256 ^alt\\.binaries\\.e-book.flood$ /^New eBooks.+[ _-]{0,3}("|#34;)(?P.+?.+)\\.(par|vol|rar|nfo).*?("|#34;)/i 1 //New eBooks 8 June 2013 - "Melody Carlson - [Carter House Girls 08] - Last Dance (mobi).rar" 220 -257 ^alt\\.binaries\\.e-book.flood$ /town\\.ag.+?download all our files with.+?www\\..+?\\.info.+? \\[\\d+(?P\\/\\d+\\] - ".+?)(-sample)?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/i 1 // >> www.ssl-news.info <<< > [02/19] - "2013.AUG.non-fiction.NEW.releases.part.1.(PDF)-MiMESiS.part01.rar" - 1,31 GB yEnc 225 -258 ^alt\\.binaries\\.e-book.flood$ /^[A-Za-z ]+[-_ ]{0,3}"(?P.+?)\\.(txt|pdf|mobi|epub|azw)"[-_ ]{0,3}yEnc$/ 1 //World War II History - "Spies of the Balkans - Alan Furst.mobi" yEnc ::: //True Crime "T. J. English - Havana Nocturne (v5.0).mobi" yEnc ::: //E C Tubb Flood - "E C Tubb - Dumarest 31 The Temple of Truth.epub" - yEnc 230 -259 ^alt\\.binaries\\.e-book.flood$ /^SFF Dump - "(?P.+?)\\.(txt|pdf|mobi|epub|azw)" \\(\\d+\\/\\d+\\) - \\d+[.,]\\d+ [kKmMgG][bB] - yEnc$/ 1 //SFF Dump - "Thomas M. Disch - Camp Concentration.epub" (1033/1217) - 226.47 kB - yEnc 235 -260 ^alt\\.binaries\\.e-book.flood$ /^\\((?P[a-zA-Z0-9 -]+)\\) \\[\\d+\\/(?P\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(American Curves - Summer 2012) [01/10] - "AMECURSUM12.par2" yEnc 240 -261 ^alt\\.binaries\\.e-book.flood$ /(?P.+?)[-_ ]{0,3}\\d+\\/(?P\\d+[-_ ]{0,3}".+?)\\.(txt|pdf|mobi|epub|azw)"( \\(\\d+\\/\\d+\\))?( )?$/ 1 //Patterson flood - Mobi - 15/45 "James Patterson - AC 13 - Double Cross.mobi" 245 -262 ^alt\\.binaries\\.e-book.flood$ /^\\[\\d+\\/(?P\\d+\\] .+?) - "(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}") yEnc$/ 1 //[001/125] (NL Epub Wierook Set 49) - "Abulhawa, Susan - Litteken van David_Ochtend in Jenin.epub" yEnc 250 -263 ^alt\\.binaries\\.e-book.flood$ /^\\(\\d+\\/(?P\\d+\\)) "(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //(1/1) "Radiological Imaging of the Kidney - E. Quaia (Springer, 2011) WW.pdf" - 162,82 MB - (Radiological Imaging of the Kidney - E. Quaia (Springer, 2011) WW) yEnc 255 -264 ^alt\\.binaries\\.e-book.flood$ /^\\(\\d+\\/(?P\\d+\\)) "(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //(1/7) "0865779767.epub" - 88,93 MB - "Anatomic Basis of Neurologic Diagnosis - epub" yEnc 260 -265 ^alt\\.binaries\\.e-book.flood$ /^(?PAttn:|Re:|REQ:|New Scan).+?[-_ ]{0,3}"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")[-_ ]{0,3}(\\d+[.,]\\d+ [kKmMgG][bB](ytes)?)? yEnc$/i 1 //Re: REQ: Jay Lake's Mainspring series/trilogy (see titles inside) - "Lake, Jay - Clockwork Earth 03 - Pinion [epub].rar" 405.6 kBytes yEnc ::: //Attn: Brownian - "del Rey, Maria - Paradise Bay (FBS).rar" yEnc ::: //New Scan "Herbert, James - Sepulchre (html).rar" yEnc 265 -266 ^alt\\.binaries\\.e-book.flood$ /^\\*(FULL )?REPOST\\* New eBooks.+[-_ ]{0,3}"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}")$/i 1 //*FULL REPOST* New eBooks 26 Nov 2012 & 20% PAR2 Set - "Elisabeth Kyle - The Captain's House (siPDF).rar" ::: //*REPOST* New eBooks 23 Nov 2012 - "Charles Culver - [The 11th Floor 02] - Awakening (mobi).rar" 270 -267 ^alt\\.binaries\\.e-book.flood$ /^.+?Search (for|4) (number|Numeric String) at end of (title|Subject)[-_ ]{0,3}(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4})[-\\=_ ]{0,3}\\d+[-_ ]{0,3}.+?yEnc$/i 1 //1 - 5 July 2013 - Search for number at end of title - Bevin Alexander - How Hitler Could Have Won World War II- The Fatal Errors That Lead to Nazi Defeat (epub).rar - 14418-25255-6053.rar.txt yEnc ::: //10 July 2013 - Search 4 Numeric String at End of Subject - Andew Hodges - Alan Turing- The Enigma (Centenary Edition) (kf8 mobi).rar = 21317-25234-21710.rar.txt yEnc 275 -268 ^alt\\.binaries\\.e-book.flood$ /.*"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}").+?yEnc$/i 1 //"Gabaldon, Diana - Outlander [5] The Fiery Cross.epub" yEnc ::: //Kiny Friedman "Friedman, Kinky - Prisoner of Vandam Street_ A Novel, The.epub" yEnc 280 -269 ^alt\\.binaries\\.e-book.flood$ /^"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}")[-_ ]{0,3}\\d+[kKmMgG]$/i 1 //"Back to Pakistan_ A Fifty-Year Journey - Leslie Noyes Mass.pdf" 2778K 285 -270 ^alt\\.binaries\\.e-book.flood$ /^\\[\\d+\\/(?P\\d+\\][-_ ]{0,3}.+)\\.(txt|pdf|mobi|epub|azw)[-_ ]{0,3}.+flood( )?$/ 1 //[002/182] A. E. Van Vogt - The Anarchistic Colossus.mobi mobi flood ::: //[002/115] Alan Dean Foster - Alien.mobi sf single author flood 290 -271 ^alt\\.binaries\\.e-book.flood$ /^\\[\\d+\\/(?P\\d+\\]) (?P.+?)\\.(txt|pdf|mobi|epub|azw)/ 1 //[2/4] Graham Masterton - Descendant.mobi 295 -272 ^alt\\.binaries\\.e-book\\.magazines$ /^(?P\\[.+?\\] - ").+?" yEnc$/ 1 // e-book.magazines has really only header we care about in the form ::: // [Top.Gear.South.Africa-February.2014] - "Top.Gear.South.Africa-February.2014.pdf.vol00+1.par2" yEnc - 809.32 KB 5 -273 ^alt\\.binaries\\.e-book\\.rpg$ /^.+?\\[\\d+\\/(?P\\d+\\]) - "(?P.+?)\\.(txt|pdf|mobi|epub|azw)" yEnc$/ 1 //ATTN: falsifies RE: REQ:-Pathfinder RPG anything at all TIA [362/408] - "Pathfinder_-_PZO1110B_-_Pathfinder_RPG_-_Beta_Playtest_-_Prestige_Enhancement.pdf" yEnc 10 -274 ^alt\\.binaries\\.erotica$ /(?P\\[[\\d]+\\]-\\[FULL\\]-\\[#a\\.b\\.erotica@EFNet\\]-\\[) \\d{2,3}_.+? \\][- ]\\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 // SPECIAL CASE FOR XXX PACKS ::: //[398342]-[FULL]-[#a.b.erotica@EFNet]-[ 02_18onlygirls.com.a.golden.lady..12.10.12.stephanie ]-[04/16] - "02_18onlygirls.com.a.golden.lady..12.10.12.stephanie.part03.rar" yEnc 5 -275 ^alt\\.binaries\\.erotica$ /\\[(?P[a-fA-F0-9]+)][-_ ]{0,3}.+?[-_ ]{0,3}[\\(\\[]\\d+\\/(?P\\d+[\\)\\]])[-_ ]{0,3}"(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}") yEnc$/ 1 //[f3a543495657d38c361dbe767a8506df] - sandramilka01-casting [10/25] - "sandramilka01-casting.part08.rar" yEnc 10 -276 ^alt\\.binaries\\.erotica$ /^(?P\\w+)\\[\\d+\\/(?P\\d+)\\] - ".+?" yEnc$/ 1 //ECG190215XUTFQI4JB[34/37] - "ECG190215XUTFQI4JB.vol03+04.par2" yEnc 15 -277 ^alt\\.binaries\\.erotica$ /(?P\\[[\\d#]+\\]-\\[.+?\\]-\\[.+?\\])-\\[ (?P.+?) \\][- ]\\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //[278997]-[FULL]-[#a.b.erotica]-[ chi-the.walking.dead.xxx ]-[06/51] - "chi-the.walking.dead.xxx-s.mp4" yEnc ::: //[######]-[FULL]-[#a.b.teevee@EFNet]-[ Misfits.S01.SUBPACK.DVDRip.XviD-P0W4DVD ] [1/5] - "Misfits.S01.SUBPACK.DVDRip.XviD-P0W4DVD.nfo" yEnc ::: //Re: [147053]-[FULL]-[#a.b.teevee]-[ Top_Gear.20x04.HDTV_x264-FoV ]-[11/59] - "top_gear.20x04.hdtv_x264-fov.r00" yEnc (01/20) 20 -278 ^alt\\.binaries\\.erotica$ /\\[.+?\\] - \\[\\d+\\/(?P\\d+\\]) - "(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}") yEnc$/i 1 //[U4A] - [11/12] - "yyf535864ky3btdmeq3bvh1y089v0bsw44oukp15fxtnqiu4wi.vol062+64.par2" yEnc ::: //[Art-of-Usenet] - [21/31] - "XxX2015PeHo02AoU15XxX.part20.rar" yEnc 25 -279 ^alt\\.binaries\\.erotica$ /\\w+ - \\[\\d+\\/(?P\\d+\\]) - "(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}") yEnc$/i 1 //999akilina88cast77 - [06/27] - "999akilina88cast77.part05.rar" yEnc 30 -280 ^alt\\.binaries\\.erotica$ /^ >> www\\.ssl-news\\.info <<< > \\[\\d+(?P\\/\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - /i 1 // >> www.ssl-news.info <<< > [01/28] - "TayTO-heyzo_hd_0317_full.par2" - 2,17 GB yEnc 35 -281 ^alt\\.binaries\\.erotica$ /^NihilCumsteR \\[\\d+\\/\\d+\\] - "(?P.+?NihilCumsteR\\.)/ 1 //NihilCumsteR [1/8] - "Conysgirls.cumpilation.xxx.NihilCumsteR.par2" yEnc 40 -282 ^alt\\.binaries\\.erotica$ /^(?P[a-zA-Z0-9._-]+)[-_ ]{0,3}[\\(\\[]\\d+ of (?P\\d+[\\)\\]])[-_ ]{0,3}"(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //Brazilian.Transsexuals.SR.UD.12.28.13.HD.720p.HDL [19 of 24] "JhoanyWilkerXmasLD_1_hdmp4.mp4.vol00+1.par2" yEnc 45 -283 ^alt\\.binaries\\.erotica$ /^(?P".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //"Lesbian seductions 26.part.nzb" yEnc 50 -284 ^alt\\.binaries\\.erotica$ /(.+)[-_ ]{0,3}[\\(\\[]\\d+\\/(?P\\d+[\\)\\]][-_ ]{0,3}("|#34;).+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4})("|#34;)(.+?)yEnc$/i 1 //..::kleverig.eu::.. [001/141] - "ZYGBUTD5TPgMdjjxnvrl.par2" - 13,28 GB yEnc 55 -285 ^alt\\.binaries\\.erotica$ /.*"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}") - \\(\\d+ - (?P\\d+\\)) yEnc$/i 1 //Whornitas 3 (2015) XXX DVDRiP x264-DivXfacTory - "Whornitas.3.XXX.DVDRiP.x264-DivXfacTory.part40.rar" - (42 - 50) yEnc 60 -286 ^alt\\.binaries\\.erotica$ /.*"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}")(?P.+?)yEnc$/i 1 //"Babysitters_a_Slut_4_Scene_4.part01.rar"_SpotBots yEnc ::: //- "JH2U0H5FIK8TO7YK3Q.part12.rar" yEnc 65 -287 ^alt\\.binaries\\.erotica$ /^(?P.+?usenet-space.+?Powered by.+? ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|").+? \\d+\\/(\\d+.+?)$/i 1 //<<<>>CowboyUp2012 XXX><<>>usenet-space-cowboys.info<<< "Is.Not.Force.It.My.Younger.SOE-806.Jav.Censored.DVDRip.XviD-MotTto.part01.rar" >< 01/15 (1,39 70 -288 ^alt\\.binaries\\.erotica$ /^"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")(?P_SpotBots)[-_\\s]{0,3}yEnc$/iu 1 //"HD_1110.part01.rar"_SpotBots yEnc 75 -289 ^alt\\.binaries\\.erotica$ /\\((?P[\\w\\s-]{8,})\\)[-_\\s]{0,3}\\[\\d+\\/(?P\\d+)\\][-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(Czech Amateurs 01) [30/43] - "CZEAMA01.part29.rar" yEnc 80 -290 ^alt\\.binaries\\.etc$ /^(?P\\d+ - \\[)\\d+\\/\\d+\\] - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //7000999555666777123754 - [334/389] - "The Secret of Bible & Jesus. Beyond The Da Vinci Code - YouTube.3gp" yEnc 5 -291 ^alt\\.binaries\\.etc$ /^\\[\\s*#?scnzb@?efnet\\s*\\] (?P.+?) \\[\\d+\\/(?P\\d+\\]) - ".+?" yEnc$/ 1 //[scnzbefnet] Were.the.Millers.2013.EXTENDED.720p.BluRay.x264-SPARKS [01/61] - "were.the.millers.2013.extended.720p.bluray.x264-sparks.nfo" yEnc 10 -292 ^alt\\.binaries\\.font$ /^(?P[a-zA-Z0-9]{5,}\\[)\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //RWlgVffClWxD0vXT1peIwb9DubTLMiYm3nvD1aMMDe[04/16] - "A9jFik7Fk4hCG4GWuxAg.r02" yEnc 5 -293 ^alt\\.binaries\\.fz$ /^(?P>ghost-of-usenet\\.org>.+?<.+?> ").+?" yEnc$/ 1 //>ghost-of-usenet.org>Monte.Cristo.GERMAN.2002.AC3.DVDRiP.XviD.iNTERNAL-HACO "haco-montecristo-xvid-a.par2" yEnc 5 -294 ^alt\\.binaries\\.game$ /(?P\\[[\\d#]+\\]-\\[.+?\\]-\\[.+?\\])-\\[ (?P.+?) \\][- ]\\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //[192474]-[MP3]-[a.b.inner-sanctumEFNET]-[ Newbie_Nerdz_-_I_Cant_Forget_that_Girl_EP-(IM005)-WEB-2012-YOU ] [17/17] - "newbie_nerdz_-_i_cant_forget_that_girl_ep-(im005)-web-2012-you.nfo" yEnc 5 -295 ^alt\\.binaries\\.games$ /^(?P>ghost-of-usenet\\.org>.+?<.+?> ").+?" yEnc$/ 1 //>ghost-of-usenet.org>Monte.Cristo.GERMAN.2002.AC3.DVDRiP.XviD.iNTERNAL-HACO "haco-montecristo-xvid-a.par2" yEnc 5 -296 ^alt\\.binaries\\.games$ /^\\( (?P[\\w. -]{8,}) \\)[-_ ]{0,3}\\[\\d+\\/(?P\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //( Overlord II RELOADED ) - [013/112] - "rld-olii.part001.rar" yEnc 10 -297 ^alt\\.binaries\\.games$ /^(?P.+? \\[)\\d+\\/\\d+\\] - ".+?" .+? yEnc$/ 1 //XCOM.Enemy.Unknown.Deutsch.Patch.TokZic [0/9] - "XCOM Deutsch.nzb" ein CrazyUpp yEnc 15 -298 ^alt\\.binaries\\.games$ /^(?P\\[ [-.a-zA-Z0-9]+ \\] - \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //[ Dawn.of.Fantasy.Kingdom.Wars-PROPHET ] - [12/52] - "ppt-dfkw.part04.rar" yEnc 20 -299 ^alt\\.binaries\\.games$ /\\.net <<>> - \\[\\d+\\/\\d+\\] - "(?P.+?)(?P[-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //brothers-of-usenet.info/.net <<>> - [11/17] - "Reload.Outdoor.Action.Target.Down.GERMAN-0x0007.vol003+004.PAR2" yEnc 25 -300 ^alt\\.binaries\\.games$ /(?P\\[[\\d#]+\\]-\\[.+?\\]-\\[.+?\\])-\\[ (?P.+?) \\][- ]\\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //[162198]-[FULL]-[a.b.teevee]-[ MasterChef.Junior.S01E07.720p.HDTV.X264-DIMENSION ]-[09/54] - "masterchef.junior.107.720p-dimension.nfo" yEnc 30 -301 ^alt\\.binaries\\.games$ /^"(?P.+)__www.realmom.info__.+" \\(\\d+\\/(?P\\d+\\)) \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/ 1 //"A.Stroke.of.Fate.Operation.Valkyrie-SKIDROW__www.realmom.info__.nfo" (02/38) 1,34 GB yEnc 35 -302 ^alt\\.binaries\\.games$ /^"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //"Mad.Men.S06E11.HDTV.x264-2HD.par2" yEnc 40 -303 ^alt\\.binaries\\.games$ /^"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\[\\d+\\/(?P\\d+\\])[ _-]{0,3}yEnc$/i 1 //"Marvels.Agents.of.S.H.I.E.L.D.S01E07.HDTV.XviD-FUM.avi.nfo" [09/16] yEnc 45 -304 ^alt\\.binaries\\.games$ /^\\(\\?+\\) \\[\\d+\\/(?P\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(????) [03/20] - "Weblinger - The.Haunted.House.Mysteries.v1.0-ZEKE.part01.rar" yEnc 50 -305 ^alt\\.binaries\\.games$ /^\\(\\d+\\/\\d+\\)(?P - Description)?[-_ ]{0,5}"(.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")( - \\d+([.,]\\d+ [kKmMgG])?[bB])? - \\d+([.,]\\d+ [kKmMgG])?[bB][-_ ]{0,3}(\\[REPOST\\] )?yEnc$/i 1 //(001/132) "Harry.Potter.And.The.Goblet.Of.Fire.2005.810p.BluRay.x264.DTS.PRoDJi.nfo" - 8,71 GB - yEnc ::: //(01/11) - Description - "ba588f108dbd068dc93e4b0182de652d.par2" - 696,63 MB - yEnc ::: //(01/11) "Microsoft Games for Windows 8 v1.2.par2" - 189,87 MB - [REPOST] yEnc ::: //(01/24) "ExBrULlNjyRPMdxqSlJKEtAYSncStZs3.nfo" - 3.96 kB - 404.55 MB - yEnc ::: //(01/44) - - "Wii_2688_R_Knorloading.par2" - 1,81 GB - yEnc 55 -306 ^alt\\.binaries\\.games$ /^\\(\\d+\\/(?P\\d+\\)) - \\[Lords-of-Usenet\\] presents (?P.+?)[-_ ]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - yEnc$/i 1 //(01/59) - [Lords-of-Usenet] presents Sins.of.a.Solar.Empire.Rebellion.Forbidden.Worlds-RELOADED - "rld-soaserfw.nfo" - yEnc 60 -307 ^alt\\.binaries\\.games$ /^\\(\\d+\\/(?P\\d+\\))[-_ ]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d+([.,]\\d+ [kKmMgG])?[bB] -(?P[a-zA-Z0-9-_\\.]+) yEnc$/i 1 //(19/28) "sr-joedanger.rar" - 816,05 MB -Joe.Danger-SKIDROW yEnc ::: //(39/40) "flt-ts31554.vol061+57.PAR2" - 1,43 GB -The_Sims_3_v1.55.4-FLTDOX yEnc 65 -308 ^alt\\.binaries\\.games$ /^[\\(\\[]\\d+\\/(?P\\d+[\\)\\]][-_ ]{0,3}".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[02/17] - "Castle.Of.Illusion.Starring.Mickey.Mouse.PSN.PS3-DUPLEX.nfo" yEnc 70 -309 ^alt\\.binaries\\.games$ /^\\[PROPER\\] (?P[a-zA-Z0-9-_\\.]+) [\\(\\[]\\d+\\/(?P\\d+[\\)\\]])[-_ ]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[PROPER] F 75 -310 ^alt\\.binaries\\.games$ /^<<<< (?P[a-zA-Z0-9-_ ]+) >>>> < USC> <".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")>\\[\\d+\\/(?P\\d+\\]) \\d+([.,]\\d+ [kKmMgG])?[bB] yEnc$/i 1 //<<<< Alien Zombie Death v2 EUR PSN PSP-PLAYASiA >>>> < USC> <"Alien Zombie Death v2 EUR PSN PSP-PLAYASiA.part4.rar">[06/16] 153,78 MB yEnc 80 -311 ^alt\\.binaries\\.games$ /^<<<.+\\.info>>> fuzzy <<<(?P[a-zA-Z0-9-_ ]+)>< ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") >< \\d+\\/(?P\\d+) \\(\\d+([.,]\\d+ [kKmMgG])?[bB]\\) >< \\d+([.,]\\d+ [kKmMgG])?[bB] > yEnc$/i 1 //<<>> fuzzy <<< "Adventures To Go EUR PSP-ZER0.nfo" >< 2/6 (195,70 MB) >< 10,70 kB > yEnc 85 -312 ^alt\\.binaries\\.games$ /^(?P[a-zA-Z0-9 -\\._]+) - \\[\\d+\\/(?P\\d+\\])[-_ ]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Baku.No.JAP.Working.PSP-PaL - [1/7] - "Baku.No.JAP.Working.PSP-PaL.rar" yEnc 90 -313 ^alt\\.binaries\\.games$ /^.+?town\\.ag.+?(www\\..+?|news)\\.[iI]nfo.+? \\(\\d+\\/(?P\\d+\\)) "(?P.+?)(-sample)?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB]? - yEnc$/i 1 // www.town.ag > sponsored by www.ssl-news.info > (53/86) "Afro_Samurai_NTSC_PROPER_XBOX360-GameStop.part51.rar" - 7.74 GB - yEnc 95 -314 ^alt\\.binaries\\.games$ /^FTDWORLD\\.NET\\| (?P[a-zA-Z0-9 -_\\.]+) \\[\\d+\\/(?P\\d+\\])- ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //FTDWORLD.NET| Grand.Theft.Auto.V.XBOX360-QUACK [020/195]- "gtavdisc1.r17" yEnc 100 -315 ^alt\\.binaries\\.games$ /^\\((?P[a-zA-Z0-9 -_\\.]+)\\) \\[\\d+\\/(?P\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(F 105 -316 ^alt\\.binaries\\.games$ /^\\[\\d+\\/(?P\\d+\\]) \\((?P[a-zA-Z0-9 -_\\.]+)\\) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[16/62] (CastleStorm.XBLA.XBOX360-MoNGoLS) - "mgl-cast.part15.rar" yEnc 110 -317 ^alt\\.binaries\\.games$ /^GOGDump (?P.+) \\[\\d+\\/(?P\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //GOGDump Wing Commander - Privateer (1993) [GOG] [03/14] - "Wing Commander - Privateer (1993) [GOG].part2.rar" yEnc 115 -318 ^alt\\.binaries\\.games$ /^(?PUploader.Presents)[- ](?P.+?)[\\(\\[]\\d+\\/\\d+\\]".+?" yEnc$/ 1 //Uploader.Presents-Need.For.Speed.Rivals.XBOX360-PROTOCOL[10/94]"nfs.r-ptc.r07" yEnc 120 -319 ^alt\\.binaries\\.games$ /^\\(\\d+\\/(?P\\d+\\))[-_ ]{0,3}Description[-_ ]{0,3}"\\w+(?P[-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 // (1/8) - Description - "90b66b2e31053401d808cf413b28f2f0.par2" - 698,44 MB - yEnc 125 -320 ^alt\\.binaries\\.games\\.dox$ /(?P\\[[\\d#]+\\]-\\[.+?\\]-\\[.+?\\])-\\[ (?P.+?) \\][- ]\\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //[142961]-[MP3]-[a.b.inner-sanctumEFNET]-[ Pascal_and_Pearce-Passport-CDJUST477-2CD-2011-1REAL ] [28/36] - "Pascal_and_Pearce-Passport-CDJUST477-2CD-2011-1REAL.par2" yEnc 5 -321 ^alt\\.binaries\\.games\\.dox$ /^\\[NEW DOX\\][ _-]{0,3}(?P.+?)[ _-]{0,3}\\[\\d+\\/\\d+\\][ _-]{0,3}"(.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_ ]{0,3}yEnc$/i 1 //[NEW DOX] The.King.of.Fighters.XIII.Update.v1.1c-RELOADED [1/6] - "The.King.of.Fighters.XIII.Update.v1.1c-RELOADED.par2" yEnc ::: //[NEW DOX] Crysis.3.Crackfix.3.INTERNAL-RELOADED [00/12] ".nzb" yEnc 10 -322 ^alt\\.binaries\\.games\\.dox$ /^\\[NEW DOX\\][ _-]{0,3}(?P.+?)[ _-]{0,3}"(.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_ ]{0,3}yEnc$/i 1 // for some reason the nzb is posted separately with d 15 -323 ^alt\\.binaries\\.games\\.dox$ /^\\[ (?P[a-zA-Z0-9-\\._ ]+) \\d+\\/(?P\\d+ \\]) ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[ Assassins.Creed.3.UPDATE 1.01.CRACK.READNFO-P2P 00/17 ] "Assassins.Creed.3.UPDATE 1.01.nzb" yEnc 20 -324 ^alt\\.binaries\\.games\\.dox$ /^\\[\\d+\\/(?P\\d+\\]) - (?P[a-zA-Z0-9-\\.\\&_ ]+) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")( - PC)? - yEnc$/i 1 //[01/16] - GRID.2.Update.v1.0.83.1050.Incl.DLC-RELOADED - "reloaded.nfo" - yEnc ::: //[12/17] - Call.of.Juarez.Gunslinger.Update.v1.03-FTS - "fts-cojgsu103.vol00+01.PAR2" - PC - yEnc ::: //[4/5] - Dungeons.&.Dragons.HD.Chronicles.of.Mystara.Update.2-FTS - "fts-ddcomu2.vol0+1.PAR2" - PC - yEnc 25 -325 ^alt\\.binaries\\.games\\.dox$ /^\\[\\d+\\/(?P\\d+\\]) (?P[a-zA-Z0-9-\\._ ]+) ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[36/48] NASCAR.The.Game.2013.Update.2-SKIDROW - "sr-nascarthegame2013u2.r33" yEnc 30 -326 ^alt\\.binaries\\.games\\.dox$ /^\\[(?P[a-zA-Z0-9-\\._ ]+)\\]- ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[Grand_Theft_Auto_Vice_City_1.1_Blood_NoCD_Patch-gimpsRus]- "grugtavc11bcd.nfo" yEnc 35 -327 ^alt\\.binaries\\.games\\.dox$ /^\\[OLD DOX\\][ _-]{0,3}\\(\\d+\\/(?P\\d+\\)[ _-]{0,3}".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_ ]{0,3}\\d+[,.]\\d+ [mMkKgG][bB][-_ ]{0,3}yEnc$/i 1 //[OLD DOX] (0001/2018) - "18.Wheels.of.Steel.American.Long.Haul.CHEAT.CODES-RETARDS.7z" - 1,44 GB - yEnc 40 -328 ^alt\\.binaries\\.games\\.dox$ /^(?P[a-zA-Z0-9-\\._ ]+) - \\[\\d+\\/(?P\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|"){0,3}yEnc$/i 1 //Endless.Space.Disharmony.v1.1.1.Update-SKIDROW - [1/6] - "Endless.Space.Disharmony.v1.1.1.Update-SKIDROW.nfo" - yEnc 45 -329 ^alt\\.binaries\\.games\\.dox$ /^\\((?P[a-zA-Z0-9-\\._ ]+)\\) \\[\\d+\\/(?P\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|"){0,3}yEnc$/i 1 //(F.E.A.R.3.Update.1-SKIDROW) [01/12] - "F.E.A.R.3.Update.1-SKIDROW.par2" yEnc 50 -330 ^alt\\.binaries\\.games\\.dox$ /^\\((?P[a-zA-Z0-9-\\._ ]+)\\) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(Company.of.Heroes.2.Update.v3.0.0.9704.Incl.DLC.GERMAN-0x0007) - "0x0007.nfo" yEnc 55 -331 ^alt\\.binaries\\.games\\.xbox360$ /^(?PUploader.Presents)[- ](?P.+?)[\\(\\[]\\d+\\/\\d+\\]".+?" yEnc$/ 1 //Uploader.Presents-Injustice.Gods.Among.Us.Ultimate.Edition.XBOX360-COMPLEX(02/92]"complex-injustice.ultimate.nfo" yEnc ::: //Uploader.Presents-Need.For.Speed.Rivals.XBOX360-PROTOCOL[10/94]"nfs.r-ptc.r07" yEnc 5 -332 ^alt\\.binaries\\.games\\.xbox360$ /^place2home\\.net - (?P.*?) - (\\[\\d+\\/\\d+\\] - )?".+?" yEnc$/i 1 //place2home.net - Call.of.Duty.Ghosts.XBOX360-iMARS - [095/101] - "imars-codghosts-360b.vol049+33.par2" yEnc ::: //Place2home.net - Diablo_III_USA_RF_XBOX360-PROTOCOL - "d3-ptc.r34" yEnc 10 -333 ^alt\\.binaries\\.games\\.xbox360$ /^"(?P.+)(__www\\.realmom\\.info__)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}") [\\[\\(]\\d+\\/(?P\\d+[\\]\\)]) \\d+[,.]\\d+ [mMkKgG][bB] yEnc$/ 1 //"Arcana_Heart_3_PAL_XBOX360-ZER0__www.realmom.info__.nfo" (02/89) 7,58 GB yEnc 15 -334 ^alt\\.binaries\\.games\\.xbox360$ /^[\\[\\(]\\d+\\/(?P\\d+[\\)\\]])[-_ ]{0,3}"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //(01/15) "Mass.Effect.3.Collectors.Edition.DLC.JTAG-XPG.par2" - 747.42 MB - yEnc 20 -335 ^alt\\.binaries\\.games\\.xbox360$ /^\\(.+\\)[-_ ]{0,3}[\\(\\[]\\d+\\/(?P\\d+[\\)\\]])[-_ ]{0,3}"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //(????) [00/28] - "Farming.Simulator.XBOX360.JTAG.RGH.nzb" yEnc 25 -336 ^alt\\.binaries\\.games\\.xbox360$ /^\\(\\d+\\)[-_ ]{0,3}(?P.+)[-_ ]{0,3}[\\(\\[]\\d+\\/(?P\\d+[\\)\\]])[-_ ]{0,3}"(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //(14227) BloodRayne_Betrayal_XBLA_XBOX360-XBLAplus [01/25] - "xp-blobe.nfo" yEnc 30 -337 ^alt\\.binaries\\.games\\.xbox360$ /^(?P\\(\\d+\\))[-_ ]{0,3}\\[.+EFNet\\][-_ ]{0,3}\\[(?P.+)\\][-_ ]{0,3}\\[\\][-_ ]{0,3}"(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //(14811) [#alt.binaries.games.xbox360@EFNet]-[AMY_XBLA_XBOX360-XBLAplus]-[]- "xp-amyxb.nfo" yEnc 35 -338 ^alt\\.binaries\\.games\\.xbox360$ /^(?P\\(\\d+\\))[-_ ]{0,3}\\[.+EFNet\\][-_ ]{0,3}\\[(?P.+)\\][-_ ]{0,3}"(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //(14872) [#alt.binaries.games.xbox360@EFNet]-[BlazBlue_CS_System_Version_Data_Pack_1.03-DLC_XBOX360]- "xp-bbcssvdp103.nfo" yEnc 40 -339 ^alt\\.binaries\\.games\\.xbox360$ /^\\(\\d+\\/(?P\\d+\\))[-_ ]{0,3}(?P.+?)[-_ ]{0,3}"(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //(44/82) - Fuzion_Frenzy_2_REPACK-USA-XBOX360-DAGGER - "ff2r-dgr.041" - 6.84 GB - yEnc 45 -340 ^alt\\.binaries\\.games\\.xbox360$ /^\\[[-_ ]{0,3}(?P\\d+)[-_ ]{0,3}\\][-_ ]{0,3}\\[ ABGX.+\\][-_ ]{0,3}\\[[-_ ]{0,3}(?P.+)[-_ ]{0,4}\\][-_ ]{0,4}\\(\\d+\\/\\d+\\)[-_ ]{0,3}"(.+?)(\\.part\\d*|\\.rar)?(\\.vol.+\\(\\d+\\\\d+\\)"|\\.[A-Za-z0-9]{2,4}")[-_ ]{0,3}\\d+[,.]\\d+ [mMkKgG][bB][-_ ]{0,3}yEnc$/i 1 //[ 14047 ] - [ ABGX@EFNET ] - [ Rock.Band.Pearl.Jam.Ten.DLC.XBOX360-FYK ALL DLC ] - (01/46) "rbpjtdlc-fyk.nfo" - 526,92 MB - yEnc ::: //[ 14046 ] - [ ABGX@EFNET ] - [ Rock_Band-2011-07-19-DLC_XBOX360-XBLAplus ALL ] - (01/12) "xp-rb-2011-07-19.nfo" - 198,70 MB - yEnc ::: //[ 14102 ] -[ ABGX.NET ] - [ F1.2010.XBOX360-COMPLEX NTSC DVD9 ] - (01/79) "cpx-f12010.nfo" - 6,57 GB - yEnc 50 -341 ^alt\\.binaries\\.games\\.xbox360$ /^\\[[-_ ]{0,3}(?P\\d+)[-_ ]{0,3}\\][-_ ]{0,3}\\[FULL\\][-_ ]{0,3}\\[ (abgx360EFNet|#abgx360@EFNet) \\][-_ ]{0,3}\\[[-_ ]{0,3}(?P.+)[-_ ]{0,3}\\][-_ ]{0,3}\\[\\d+\\/\\d+\\][-_ ]{0,3}"(.+?)(\\.part\\d*|\\.rar)?(\\.vol.+\\(\\d+\\\\d+\\)"|\\.[A-Za-z0-9]{2,4}")[-_ ]{0,3}yEnc$/i 1 //[ 17956]-[FULL]-[ abgx360EFNet ]-[ F1_2012_JPN_XBOX360-Caravan ]-[78/99] - "cvn-f12012j.r75" yEnc ::: //[ 17827]-[FULL]-[ #abgx360@EFNet ]-[ Capcom_Arcade_Cabinet_XBLA_XBOX360-XBLAplus ]-[01/34] - "xp-capac.nfo" yEnc 55 -342 ^alt\\.binaries\\.games\\.xbox360$ /^\\[(?P\\d+)\\][-_ ]{0,3}\\[FULL\\][-_ ]{0,3}\\[(abgx360EFNet|#abgx360@EFNet)\\][-_ ]{0,3}\\[\\d+\\/\\d+\\][-_ ]{0,3}"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/i 1 //[19672]-[FULL]-[abgx360EFNet]-[01/29] "mgl-cont.par2" yEnc 60 -343 ^alt\\.binaries\\.games\\.xbox360$ /^\\[[-_ ]{0,3}GAMERZZ[-_ ]{0,3}\\][-_ ]{0,3}\\[[-_ ]{0,3}(?P.+)[-_ ]{0,3}\\][-_ ]{0,3}\\[\\d+\\/(?P\\d+\\])[-_ ]{0,3}"(.+?)(\\.part\\d*|\\.rar)?(\\.vol.+\\(\\d+\\\\d+\\)"|\\.[A-Za-z0-9]{2,4}")[-_ ]{0,3}yEnc$/i 1 //[ GAMERZZ ] - [ Grand.Theft.Auto.V.XBOX360-COMPLEX ] [159/170] - "complex-gta5.vol000+18.par2" yEnc 65 -344 ^alt\\.binaries\\.games\\.xbox360$ /^\\[ TOWN \\][ _-]{0,3}\\[ www\\.town\\.ag \\][ _-]{0,3}\\[ (?P.+?) \\][ _-]{0,3}\\[ partner of www\\.ssl-news\\.info \\][ _-]{0,3}\\[\\d+\\/(?P\\d+\\])[ _-]{0,3}"(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")[ _-]{0,3}yEnc$/i 1 //[ TOWN ]-[ www.town.ag ]-[ Assassins.Creed.IV.Black.Flag.XBOX360-COMPLEX ]-[ partner of www.ssl-news.info ] [074/195]- "complex-ac4.bf.d1.r71" yEnc 70 -345 ^alt\\.binaries\\.german\\.movies$ /^(?P>ghost-of-usenet\\.org>.+?<.+?> ").+?" yEnc$/ 1 //>ghost-of-usenet.org>Monte.Cristo.GERMAN.2002.AC3.DVDRiP.XviD.iNTERNAL-HACO "haco-montecristo-xvid-a.par2" yEnc 5 -346 ^alt\\.binaries\\.german\\.movies$ /^\\( (?P[\\w. -]{8,}) \\)[-_ ]{0,3}\\[\\d+\\/(?P\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //( Overlord II RELOADED ) - [013/112] - "rld-olii.part001.rar" yEnc 10 -347 ^alt\\.binaries\\.german\\.movies$ /^(?P.+? \\[)\\d+\\/\\d+\\] - ".+?" .+? yEnc$/ 1 //XCOM.Enemy.Unknown.Deutsch.Patch.TokZic [0/9] - "XCOM Deutsch.nzb" ein CrazyUpp yEnc 15 -348 ^alt\\.binaries\\.ghosts$ /^(?P.+? \\[)\\d+\\/\\d+\\] - ".+?" .+? yEnc$/ 1 //XCOM.Enemy.Unknown.Deutsch.Patch.TokZic [0/9] - "XCOM Deutsch.nzb" ein CrazyUpp yEnc 5 -349 ^alt\\.binaries\\.ghosts$ /^\\(\\d+\\/(?P\\d+\\)) ("|#34;)(?P.+)(\\.[vol|part].+)?\\.(par2|nfo|rar|nzb)("|#34;) - \\d+[.,]\\d+ [kKmMgG][bB] - yEnc$/i 1 //(14/20) "Jack.the.Giant.Slayer.2013.AC3.192Kbps.23fps.2ch.TR.Audio.BluRay-Demuxed.by.par2" - 173,15 MB - yEnc 10 -350 ^alt\\.binaries\\.hdtv$ /^(\\[ TrollHD \\] - )?[\\[\\(][-_ ]{0,3}\\d+\\/(?P\\d+[-_ ]{0,3}[\\)\\]]) - "(?P.+?) MPEG2-(DON|TrollHD)\\..+?" yEnc$/ 1 //[ TrollHD ] - [ 0270/2688 ] - "Tour De France 2013 1080i HDTV MPA 2.0 MPEG2-TrollHD.part0269.rar" yEnc ::: //[17/48] - "Oprah's Next Chapter S02E37 Lindsay Lohan 1080i HDTV DD5.1 MPEG2-TrollHD.part16.rar" yEnc ::: //[02/29] - "Fox Sports 1 on 1 - Tom Brady 720p HDTV DD5.1 MPEG2-DON.part01.rar" yEnc 5 -351 ^alt\\.binaries\\.hdtv$ /.* - \\[\\d+\\/(?P\\d+\\]) - "(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}").+?yEnc$/i 1 //Covert.Affairs.S05E06.Embassy.Row.1080p.WEB-DL.DD5.1.H.264-NTb.vol093+82.par2 - [41/42] - "Covert.Affairs.S05E06.Embassy.Row.1080p.WEB-DL.DD5.1.H.264-NTb.vol093+82.par2" yEnc 10 -352 ^alt\\.binaries\\.hdtv$ /.*"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}(\\.txt)?").+?yEnc$/i 1 //"bhuhirawniowrj3io2o34.vol061+4.par2" yEnc 15 -353 ^alt\\.binaries\\.hdtv\\.x264$ /(?P\\[\\d+\\]-\\[.+?\\]-\\[.+?\\]-\\[ .+? \\](-| ))\\[\\d+\\/\\d+\\][ -]* ".+?" yEnc$/ 1 //[133170]-[FULL]-[#a.b.moovee]-[ Hansel.And.Gretel.Witch.Hunters.DVDR-iGNiTiON ]-[032/117] "ign-witchhunters.r24" yEnc ::: //Re: [133388]-[FULL]-[#a.b.moovee]-[ Familiar.Grounds.2011.DVDRip.XViD-TWiST ]-[01/59] - "twist-xvid-terrainsconus.nfo" yEnc ::: //[134212]-[FULL]-[#a.b.moovee]-[ Monsters.Inc.2001.1080p.BluRay.x264-CiNEFiLE ] [80/83] - "monsters.inc.2001.1080p.bluray.x264-cinefile.vol015+16.par2" yEnc ::: //[134912]-[FULL]-[#a.b.moovee]-[ Epic.2013.DVDRip.X264-SPARKS ]-[01/70]- "epic.2013.dvdrip.x264-sparks.nfo" yEnc 5 -354 ^alt\\.binaries\\.hdtv\\.x264$ /^\\(\\d+(?P\\/\\d+\\) ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/i 1 //(23/36) "Love.Is.In.The.Meadow.S08E08.HDTV.720p.x264.ac3.part22.rar" - 2,80 GB - yEnc 10 -355 ^alt\\.binaries\\.hdtv\\.x264$ /^\\[ (?P.+) \\][-_ ]{0,3}\\[\\d+(?P\\/\\d+)\\][-_ ]{0,3}".+?" yEnc$/ 1 //[ House.of.Lies.S03E05.1080p.WEB-DL.DD5.1.H.264-NTb ] - [01/35] - "House.of.Lies.S03E05.Soldiers.1080p.WEB-DL.DD5.1.H.264-NTb.nfo" yEnc 15 -356 ^alt\\.binaries\\.hdtv\\.x264$ /^(?P[A-Z0-9a-z][A-Za-z0-9.-]+ -? \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //Hard.Target.1993.1080p.Bluray.X264-BARC0DE - [36/68] - "BARC0DE1080pHTAR.r22" yEnc ::: //Goddess.2013.720p.BDRip.x264.AC3-noOne [086/100] - "Goddess.2013.720p.BDRip.x264.AC3-noOne.part84.rar" yEnc 20 -357 ^alt\\.binaries\\.hdtv\\.x264$ /(?P.+?\\s+by Waldorf\\s+-\\s+\\[)\\d+\\/\\d+\\]\\s+-\\s+".+?"\\s+yEnc$/ 1 //I Love Democracy - Norwegen - Doku - 2012 - (German) - AC3 HD720p Avi by Waldorf - [02/71] - "Waldorf.jpg" yEnc 25 -358 ^alt\\.binaries\\.hdtv\\.x264$ /^-{NR\\.C}- - \\[\\d+\\/(?P\\d+\\]) - ("|#34;)(?P.+)(\\.[vol|part].+)?\\.(par2|nfo|rar|nzb)("|#34;) yEnc$/ 1 //-{NR.C}- - [00/96] - "Being.Liverpool.S01.720p.HDTV.x264-DHD.nzb" yEnc 30 -359 ^alt\\.binaries\\.hdtv\\.x264$ /^- \\[\\d+\\/(?P\\d+\\]) - "(?P.+?)(\\.part\\d*|\\.rar|\\.pdf)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/i 1 //- [34/69] - "Zero.Charisma.2013.WEB-DL.DD5.1.H.264-HaB.part33.rar" yEnc 35 -360 ^alt\\.binaries\\.hdtv\\.x264$ /.+www\\.hotrodpage\\.info.+\\[\\d+\\/(?P\\d+\\]) - "(?P.+?)(\\.part\\d*|\\.rar|\\.pdf)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/i 1 //-=www.hotrodpage.info=- Makaveli -=HoTCreWTeam=- Post: - [000/192] - "Hop (2011) 1080p AVCHD.nzb" yEnc 40 -361 ^alt\\.binaries\\.hdtv\\.x264$ /^.+?\\[(?P\\d+[.,]\\d+ [kKmMgG][bB])\\] \\[\\d+\\/(?P\\d+\\][-_ ]{0,3}.+?)[-_ ]{0,3}"(?P.+?)(\\.part\\d*|\\.rar|\\.pdf)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/i 1 //-4y (PW) [ usenet-4all.info - powered by ssl.news -] [12,40 GB] [49/57] "43842168c542ed3.vol000+01.par2" yEnc 45 -362 ^alt\\.binaries\\.hdtv\\.x264$ /.*[\\(\\[]\\d+\\/(?P\\d+[\\)\\]])[-_ ]{0,3}("|#34;)(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4})("|#34;)(.+?)yEnc$/i 1 //!MR [01/49] - "Persuasion 2007.par2" EN MKV yEnc 50 -363 ^alt\\.binaries\\.hdtv\\.x264$ /^.+ ?\\[\\d+( of |\\/)(?P\\d+\\] ("|#34;).+?)(\\.part\\d*|\\.rar)?(\\.[A-Za-z0-9]{2,4})?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4})("|#34;)(.+?)yEnc$/i 1 //Wonders.of.the.Universe.S02E03.1080p.HDTV.x264.AC3.mp4 [1 of 54] "Wonders.of.the.Universe.S02E03.The.Known.and.the.Unknown.1080p.HDTV.x264.AC3-tNe.mp4.001" yEnc ::: //Wilfred Season 2 - US - 720p WEB-DL [28 of 43] "Wilfred.US.S02E01.Progress.720p.WEB-DL.DD5.1.H264-NTb.mkv.001" yEnc 55 -364 ^alt\\.binaries\\.hdtv\\.x264$ /^.+ ?\\d+( of |\\/)(?P\\d+ - ("|#34;).+?)(\\.part\\d*|\\.rar)?(\\.[A-Za-z0-9]{2,4})?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4})("|#34;)(.+?)yEnc$/i 1 //The.Walking.Dead.S02E13.720p.WEB-DL.AAC2.0.H.264-CtrlHD -Kopimi- - 01/37 - "The.Walking.Dead.S02E13.Beside.the.Dying.Fire.720p.WEB-DL.AAC2.0.H.264-CtrlHD.nfo" yEnc 60 -365 ^alt\\.binaries\\.hdtv\\.x264$ /.*"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}").+?yEnc$/i 1 //The.Guild.S05E12.Grande.Finale.1080p.WEB-DL.x264.AC3.PSIV - "The.Guild.S05E12.Grande.Finale.1080p.WEB-DL.x264.AC3.PSIV.nfo" yEnc 65 -366 ^alt\\.binaries\\.highspeed$ /^(?POld\\s+Dad\\s+uppt?.+?)( mp4| )?\\[?\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //Old Dad uppt 18 und immer (noch) Jungfrau DvD Rip AC3 XviD German 02/34] - "18 und immer (noch) Jungfrau.part01.rar" yEnc ::: //Old Dad uppt In ihrem Haus DVD Ripp AC3 German Xvid [01/31] - "In ihrem Haus.par2" yEnc ::: //Old Dad uppt Eine offene Rechnung XviD German DVd Rip[02/41] - "Eine offene Rechnung.part01.rar" yEnc ::: //Old Dad uppMiss Marple: Der Wachsblumenstrauß , Wunschpost Xvid German10/29] - "Miss Marple Der Wachsblumenstrauß.part09.rar" yEnc 5 -367 ^alt\\.binaries\\.highspeed$ /^\\[\\d+(?P\\/\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/i 1 //[03/61] - "www.realmom.info - xvid - xf-fatalmovecd1.r00" - 773,34 MB - yEnc 10 -368 ^alt\\.binaries\\.highspeed$ /^www\\..+? \\[Sponsored.+?\\] \\(\\d+(?P\\/\\d+\\) ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //www.usenet-town.com [Sponsored by Astinews] (103/103) "Intimate.Enemies.German.2007.AC3.[passwort protect].vol60+21.PAR2" yEnc 15 -369 ^alt\\.binaries\\.highspeed$ /^\\(\\?{4}\\) \\[\\d+\\/\\d+\\] - "(?P.+?)(\\.part\\d*|\\.rar|\\.pdf)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/i 1 //(????) [3/4] - "0024456.pdf.par2" yEnc 20 -370 ^alt\\.binaries\\.inner-sanctum$ /\\[ (?P.+) \\][-_ ]{0,3}[\\(\\[]\\d+\\/(?P\\d+[\\)\\]])[-_ ]{0,3}"(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //[ 9970e7535ccc06155129f5971ff575e2 ] [23/30] - "19-sub6_-_blox_loggers_(mr.what_remix)-psycz_int.mp3" yEnc 25 -371 ^alt\\.binaries\\.inner-sanctum$ /(?P.+)[-_ ]{0,3}[\\(\\[]\\d+\\/(?P\\d+[\\)\\]])[-_ ]{0,3}"(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 ////ea17079f47de702eead5114038355a70 [1/9] - "00-da_morty_-_boondock_sampler_02-(tbr002)-web-2013-srg.m3u" yEnc 30 -372 ^alt\\.binaries\\.inner-sanctum$ /^\\[ (?P[a-fA-F0-9]+) \\] \\[\\d+\\/\\d+\\] - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[ 9970e7535ccc06155129f5971ff575e2 ] [23/30] - "19-sub6_-_blox_loggers_(mr.what_remix)-psycz_int.mp3" yEnc 35 -373 ^alt\\.binaries\\.inner-sanctum$ /^(?P\\[\\d+\\]-\\[.+?\\]-\\[ .+? \\] \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //[30762]-[android]-[ Fairway.Solitaire.v1.91.1-AnDrOiD ] [01/10] - "AnDrOiD.nfo" yEnc 40 -374 ^alt\\.binaries\\.inner-sanctum$ /^\\[ nEwZ\\[NZB\\]\\.iNFO( \\])?[-_ ]{0,3}\\[ (?P.+?) \\][-_ ]{0,3}(File )?[\\(\\[]\\d+\\/(?P\\d+[\\)\\]]): "(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?(yEnc)?$/ 1 //[ nEwZ[NZB].iNFO - [ Zed--The_Invitation-WEB-2010-WUS ] - File [12/13]: "08-zed--the_river.mp3" yEnc 45 -375 ^alt\\.binaries\\.inner-sanctum$ /^nEwZ\\[NZB\\]\\.iNFO[-_ ]{0,3} (?P.+?) [-_ ]{0,3}(File )?[\\(\\[]\\d+\\/(?P\\d+[\\)\\]]): "(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")$/ 1 //nEwZ[NZB].iNFO - VA-Universal_Music_Sampler_07_February-PROMO-CDR-FLAC-2013-WRE - File [6/9]: "01-alesso-years_(hard_rock_sofa_remix).flac" 50 -376 ^alt\\.binaries\\.inner-sanctum$ /.+[DoAsYouLike\\].?[ _-]{0,3}\\d+[,.]\\d+ [mMkKgG][bB][-_ ]{0,3}"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")[ _-]{0,3}\\d+([,.]\\d+ [mMkKgG])? [bB][-_ ]{0,3}yEnc$/ 1 //..:[DoAsYouLike]:.. 1,11 GB "KGMmDSSHBWnxV4g7Vbq5.part01.rar" 47,68 MB yEnc 55 -378 ^alt\\.binaries\\.inner-sanctum$ /^\\(\\d+\\/(?P\\d+\\))( - Description -)? "(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")( - \\d+[,.]\\d+ [mMkKgG][bB])? - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/i 1 //(01/10) "LeeDrOiD HD V3.3.2-Port-R4-A2SD.par2" - 357.92 MB - yEnc 65 -379 ^alt\\.binaries\\.inner-sanctum$ /^\\((?P[a-zA-Z0-9._-]+)\\) \\[\\d+\\/(?P\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/i 1 //(VA-I_Love_Yaiza_Vol.1-WEB-2012-ServerLab) [01/11] - ".sfv" yEnc 70 -380 ^alt\\.binaries\\.inner-sanctum$ /^[\\[\\(]\\d+( of |\\/)(?P\\d+[\\]\\)])[-_ ]{0,3}"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(17/41) - "3-8139g0m530.017" yEnc 75 -381 ^alt\\.binaries\\.inner-sanctum$ /^\\[\\d+\\]-\\[.+?\\]-\\[(?P.+?)\\][-_ ]{0,3}\\[\\d+\\/(?P\\d+\\]) - .+? yEnc$/ 1 //[153618]-[#a.b.inner-sanctum@EFNET]-[MetaProducts.DiskWatchman.v2.0.240.Incl.Keygen.And.Patch.REPACK-Lz0]-[0/6] - MetaProducts.DiskWatchman.v2.0.240.Incl.Keygen.And.Patch.REPACK-Lz0.nzb yEnc 80 -382 ^alt\\.binaries\\.milo$ /^(?P[a-zA-Z0-9]{5,} ?\\[)\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //RWlgVffClWxD0vXT1peIwb9DubTLMiYm3nvD1aMMDe[04/16] - "A9jFik7Fk4hCG4GWuxAg.r02" yEnc ::: //H8XxBd44qXBGk [05/15] - "H8XxBd44qXBGk.part5.rar" yEnc 5 -383 ^alt\\.binaries\\.mojo$ /^\\[\\d+(?P\\/\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/i 1 //[17/61] - "www.realmom.info - xvid - xf-devilstomb.r14" - 773,11 MB - yEnc 5 -384 ^alt\\.binaries\\.mojo$ /^(?P[a-zA-Z0-9]{5,} ?\\[)\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //RWlgVffClWxD0vXT1peIwb9DubTLMiYm3nvD1aMMDe[04/16] - "A9jFik7Fk4hCG4GWuxAg.r02" yEnc ::: //3JgtmNAbZbJ6Q [14/21] - "parfile.par2" yEnc 10 -385 ^alt\\.binaries\\.mom$ /^(?P\\[usenet4ever\\.info\\] und \\[SecretUsenet\\.com\\] - .+?-u4e - ").+?" yEnc$/ 1 //[usenet4ever.info] und [SecretUsenet.com] - 96e323468c5a8a7b948c06ec84511839-u4e - "96e323468c5a8a7b948c06ec84511839-u4e.par2" yEnc 5 -386 ^alt\\.binaries\\.mom$ /(?P.+?\\.net <<>> - \\[)\\d+(?P\\/\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //brothers-of-usenet.info/.net <<>> - [01/26] - "Be.Cool.German.AC3.HDRip.x264-FuN.par2" yEnc 10 -387 ^alt\\.binaries\\.mom$ /^(?P\\d+-\\d)\\[\\d+\\/(?P\\d+\\])[-_\\s]{0,3}"\\d+-\\d.+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //62544-8[30/78] - "62544-0.35" yEnc 15 -388 ^alt\\.binaries\\.mom$ /^\\[Art-of-Usenet\\] ([a-fA-F0-9]+) \\[\\d+\\/(?P\\d+\\][-_ ]{0,3}".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[Art-of-Usenet] dea75eb65e65c56197d749d57919806d [01/19] - "dea75eb65e65c56197d749d57919806d.par2" yEnc 20 -389 ^alt\\.binaries\\.mom$ /^(?P.+? \\[)\\d+\\/\\d+\\] - ".+?" .+? yEnc$/ 1 //XCOM.Enemy.Unknown.Deutsch.Patch.TokZic [0/9] - "XCOM Deutsch.nzb" ein CrazyUpp yEnc 25 -390 ^alt\\.binaries\\.mom$ /^brothers-of-usenet.info\\/\\.net <<>> - \\[\\d+\\/\\d+\\] - "(?P.+?)(\\.vol|\\.par).+?" yEnc$/ 1 //brothers-of-usenet.info/.net <<>> - [21/22] - "e4e4ztb54238ibftu.vol127+128.par2" yEnc 30 -391 ^alt\\.binaries\\.mom$ /^(?P\\d+)\\-\\d+\\s?\\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //58600-0[51/51] - "58600-0.vol0+1.par2" yEnc 35 -392 ^alt\\.binaries\\.mom$ /^\\[ TOWN \\][ _-]{0,3}\\[ www\\.town\\.ag \\][ _-]{0,3}\\[ partner of www\\.ssl-news\\.info \\][ _-]{0,3}\\[\\d+\\/(?P\\d+\\][ _-]{0,3}".+)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i 1 //[ TOWN ]-[ www.town.ag ]-[ partner of www.ssl-news.info ]-[ MOVIE ] [14/19] - "Night.Vision.2011.DVDRip.x264-IGUANA.part12.rar" - 660,80 MB yEnc 40 -393 ^alt\\.binaries\\.mom$ /^\\[(?P.+?)\\][ _-]{0,3}\\[www\\.usenet4ever\\.info by Secretusenet][ _-]{0,3} ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[A_New_Found_Glory-Its_All_About_The_Girls-Reissue-CDEP-FLAC-2003-JLM] [www.usenet4ever.info by Secretusenet] - "00-a_new_found_glory-its_all_about_the_girls-reissue-cdep-flac-2003.jpg" yEnc 45 -394 ^alt\\.binaries\\.mom$ /^(Mom\\d+[ _-]{0,3})?"(?P.+?)__www\\.realmom\\.info__([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}[\\(\\[]\\d+\\/(?P\\d+[\\)\\]]) \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/i 1 //MoM100060 - "Florian_Arndt-Trix-(BBM36)-WEB-2012-UKHx__www.realmom.info__.nfo" [2/7] 29,04 MB yEnc ::: //"Alan.Wake.v1.02.16.4261.Update-SKIDROW__www.realmom.info__.nfo" (02/17) 138,07 MB yEnc 50 -395 ^alt\\.binaries\\.mom$ /^"(?P.+?)"\\(\\d+\\/(?P\\d+\\))[ _-]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB] yEnc$/i 1 //"The.Draughtsmans.Contract.1982.576p.BluRay.DD2.0.x264-EA"(15/56) "The.Draughtsmans.Contract.1982.576p.BluRay.DD2.0.x264-EA.part13.rar" - 2.37 GB yEnc 55 -396 ^alt\\.binaries\\.mom$ /^\\(\\d+\\/(?P\\d+\\))[ _-]{0,3}Description[ _-]{0,3}"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i 1 //(01/29) - Description - "Revolution.2012.S01E06.HDTV.x264-LOL.nfo" - 317.24 MB - yEnc 60 -397 ^alt\\.binaries\\.mom$ /^\\(\\d+\\/(?P\\d+\\))[ _-]{0,3}\\[Lords-of-Usenet\\][ _-]{0,3}<>[ _-]{0,3}(?P.+?)[ _-]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i 1 //(02/17) - [Lords-of-Usenet] <> i8dewFjzft94BW71EI0s -"19913.r00" - 928,75 MB - yEnc 65 -398 ^alt\\.binaries\\.mom$ /^\\[\\d+\\/(?P\\d+\\][ _-]{0,3}".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[002/161] - "Rayman_Legends_USA_PS3-CLANDESTiNE.nfo" yEnc 70 -399 ^alt\\.binaries\\.mom$ /^\\((?P\\w+?)\\d{3}\\.[A-Za-z0-9]{3,4}\\)[-_\\s]{0,3}\\[\\d+\\/(?P\\d+\\])[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(4n4o8xq59kxq40bk8ukf3o4d163.163) [162/282] - "4n4o8xq59kxq40bk8ukf3o4d163.163" yEnc 75 -400 ^alt\\.binaries\\.mom$ /^<-{Retrouvez-nous sur NextDownload}-> > >"(?P\\w+)"\\[\\d+\\/(?P\\d+\\])[ _-]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //<-{Retrouvez-nous sur NextDownload}-> > >"Next1023"[15/24] - "Next1023.9.vol001+001.par2" yEnc 80 -401 ^alt\\.binaries\\.mom$ /^\\[\\d+\\/(?P\\d+\\][ _-]{0,3}".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+[.,]\\d+ [kKmMgG][bB].+UpperTeam.+ Secretusenet\\.com.+yEnc$/i 1 //[28/55] - "XzrgzBWoRqtcuBF.part27.rar" - 4,78 GB >>>UpperTeam for Usenet-Space-Cowboys.info and Secretusenet.com<<< yEnc 85 -402 ^alt\\.binaries\\.mom$ /^\\(\\d+(?P\\/\\d+\\))[-_\\s]{0,3}[|][-_\\s]{0,3}"(?P[\\w\\säöüÄÖܖ¤ß¶!.,&_\\()\\[\\]\\'\\`-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}[|] yEnc$/iu 1 //(38/55) | "Apocalypse.La.premiere.guerre.mondiale.e02.Peur.HDTV.1080p-STL.7z.037" | yEnc 90 -403 ^alt\\.binaries\\.mom$ /NextDownload.+"\\w+"\\[\\d+\\/(?P\\d+)\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖܖ¤ß¶!.,&_\\()\\[\\]\\'\\`-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //<-{NextDownload}->"Next2163"[21/22] - "Next2163.6.vol127+128.par2" yEnc 95 -404 ^alt\\.binaries\\.mom$ /^(?PSecretUsenet\\.com.+)[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //SecretUsenet.com _98iu89iujh_4312 225bea29_87db55d2_b9f1844e_7842adb-u4e - "225bea29_87db55d2_b9f1844e_7842adb-u4e.par2" yEnc 100 -405 ^alt\\.binaries\\.moovee$ /(?P\\[\\d+\\]-\\[.+?\\]-\\[.+?\\]-\\[ .+? \\](-| ))\\[\\d+\\/\\d+\\][ -]* ".+?" yEnc$/ 1 //[133170]-[FULL]-[#a.b.moovee]-[ Hansel.And.Gretel.Witch.Hunters.DVDR-iGNiTiON ]-[032/117] "ign-witchhunters.r24" yEnc ::: //Re: [133388]-[FULL]-[#a.b.moovee]-[ Familiar.Grounds.2011.DVDRip.XViD-TWiST ]-[01/59] - "twist-xvid-terrainsconus.nfo" yEnc ::: //[134212]-[FULL]-[#a.b.moovee]-[ Monsters.Inc.2001.1080p.BluRay.x264-CiNEFiLE ] [80/83] - "monsters.inc.2001.1080p.bluray.x264-cinefile.vol015+16.par2" yEnc ::: //[134912]-[FULL]-[#a.b.moovee]-[ Epic.2013.DVDRip.X264-SPARKS ]-[01/70]- "epic.2013.dvdrip.x264-sparks.nfo" yEnc 5 -406 ^alt\\.binaries\\.moovee$ /^(?P\\[\\d+\\]-\\[.+?\\]-\\[.+?\\]- ").+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[42788]-[#altbin@EFNet]-[Full]- "margin-themasterb-xvid.par2" yEnc 10 -407 ^alt\\.binaries\\.moovee$ /^(?P\\[ [a-zA-Z0-9.-]+ \\] ?- ?\\[)\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //[ Hammer.of.the.Gods.2013.720p.WEB-DL.DD5.1.H.264-ELiTE ]-[01/44] - "Hammer.of.the.Gods.2013.720p.WEB-DL.DD5.1.H.264-ELiTE.par2" yEnc ::: //[ Admission.2013.720p.WEB-DL.DD5.1.H.264-HD4FUN ] - [01/82] - "Admission.2013.720p.WEB-DL.DD5.1.H.264-HD4FUN.nfo" yEnc 15 -408 ^alt\\.binaries\\.moovee$ /^\\(\\?{4}\\) \\[\\d+(?P\\/\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(????) [0/1] - "A.Good.Day.to.Die.Hard.2013.nzb" yEnc 20 -409 ^alt\\.binaries\\.moovee$ /^\\[x+\\]-\\[.+?\\]-\\[ x+ \\]-\\[\\d+(?P\\/\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[xxxxx]-[#a.b.moovee@EFNet]-[ xxxxx ]-[02/66] - "tulob88.part01.rar" yEnc 25 -410 ^alt\\.binaries\\.moovee$ /^(?P[a-zA-Z0-9._-]+ - ?\\[)\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //Groove.2000.iNTERNAL.DVDRip.XviD-UBiK - [001/111] - "ubik-groove-cd1.par2" yEnc ::: //Antony.and.Cleopatra.1972.720p.WEB-DL.H264-brento -[35/57] - "Antony.and.Cleopatra.1972.720p.WEB-DL.AAC2.0.H.264-brento.part34.rar" yEnc 30 -411 ^alt\\.binaries\\.moovee$ /^(?P\\[\\d+\\] - [a-z0-9]+.+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2|\\.[A-Za-z0-9]{2,4}) - \\[\\d+\\/\\d+\\]\\s+yEnc$/ 1 //[133668] - p00okjiue34635xxzx$$££zll-b.vol3+2.PAR2 - [005/118] yEnc 35 -412 ^alt\\.binaries\\.moovee$ /^(?P(\\[\\d+\\])?-(\\[REPOST\\])?\\[)\\d+(?P\\/\\d+\\] - "\\d+-)\\d\\..+?" yEnc$/ 1 //-[004/115] - "134218-0.par2" yEnc ::: //[134824]-[001/117] - "134824-0.0" yEnc ::: //[134510]-[REPOST]-[001/110] - "134510-rp-0.0" yEnc 40 -413 ^alt\\.binaries\\.moovee$ /^\\[\\d+\\]-\\[\\d+(?P\\/\\d+\\] - ".+?)([-_](proof|sample|subs|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[134517]-[01/76] - "Lara Croft Tomb Raider 2001 720p BluRay DTS x264-RightSiZE.nfo" yEnc 45 -414 ^alt\\.binaries\\.moovee$ /^(?P\\([a-zA-Z0-9.-]+\\) \\()\\d+\\/\\d+\\) - ".+?" yEnc$/ 1 //(Iron.Man.3.2013.R5.DVDRip.XviD-AsA) (01/26) - "Iron.Man.3.2013.R5.DVDRip.XviD-AsA.part01.part.sfv" yEnc 50 -415 ^alt\\.binaries\\.moovee$ /^(?P\\([a-zA-Z0-9].+?\\) [a-zA-Z0-9.-]+ \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //(Classic Surf) Morning.Of.The.Earth.1971 [03/29] - "Morning.Of.The.Earth.1971.part02.rar" yEnc 55 -416 ^alt\\.binaries\\.moovee$ /^(?P\\[\\d+\\]-\\[.+?\\]-\\[)\\d+\\/\\d+\\] - "\\d+-.+?" yEnc$/ 1 // No example????? Probably : [32432]-[Something]-[4/24] - "02312-1.nzb" yEnc 60 -417 ^alt\\.binaries\\.moovee$ /^\\((?P[\\w.-]+)\\)\\[\\d+\\/(?P\\d+\\])[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(Ringside.The.Best.of.Mike.Tyson.DVDRip.x264.AC3-FCZ)[01/68] - "Ringside.The.Best.of.Mike.Tyson.DVDRip.1.of.2.x264.AC3-FCZ.nfo" yEnc 65 -418 ^alt\\.binaries\\.movies$ /^(?P[a-z].+) - \\[\\d+\\/(?P\\d+\\])[ _-]{0,3}("|#34;).+("|#34;) yEnc$/i 1 //Underworld.Evolution.2006.480p.BDRip.XviD.AC3-AsA - [000/143] - "asa.nzb" yEnc 5 -419 ^alt\\.binaries\\.movies$ /^Have Fun - ("|#34;)(?P.+)\\.nfo("|#34;) Ph4let0ast3r yEnc$/i 1 ///^Have Fun - ("|#34;)(.+)\.nfo("|#34;) Ph4let0ast3r yEnc$/i 10 -420 ^alt\\.binaries\\.movies$ /^\\(\\d+\\/\\d+\\) (?P"|#34;)(.+)\\.(?Ppar2|nfo|rar|nzb)("|#34;) - \\d+[.,]\\d+ [kKmMgG][bB] - yEnc$/i 1 //(01/34) "Sniper.Reloaded.2011.BluRay.810p.DTS.x264-PRoDJi.Turkish.Audio.par2" - 139,30 MB - yEnc 15 -421 ^alt\\.binaries\\.movies$ /^("|#34;)(?P.+)\\.rar("|#34;)$/i 1 //"Discovery.Channel.Tsunami.Facing.The.Wave.720p.HDTV.x264-PiX.rar" 20 -422 ^alt\\.binaries\\.movies$ /^(?P[a-z].+) .+\\.(par2|nfo|rar|nzb)$/i 1 //Saw.VII.2010.720p.Bluray.x264.DTS-HDChina Saw.VII.2010.720p.Bluray.x264.DTS-HDChina.nzb 25 -423 ^alt\\.binaries\\.movies$ /^\\(\\?+\\) \\[\\d+\\/(?P\\d+\\])[-_ ]{0,3}"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(????) [1/1] - "The Secret L 30 -424 ^alt\\.binaries\\.movies$ /^\\(\\d+\\/(?P\\d+\\))[-_ ]{0,3}Description[-_ ]{0,3}"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //(001/114) - Description - "The.Chronicles.of.Riddick.2004.DC.BluRay.1080p.DTS.par2" - 10,50 GB - yEnc 35 -425 ^alt\\.binaries\\.movies$ /^\\[\\d+\\/(?P\\d+\\])[-_ ]{0,3}"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[00/56] - "The.Last.Days.On.Mars.720p.BluRay.x264-DR.nzb" yEnc 40 -426 ^alt\\.binaries\\.movies$ /^\\[REUP\\]( )?(?P.+?) - \\[\\d+\\/(?P\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[REUP] 6.Degress.of.Hell.2012.1080p.BluRay.DTS-HD.x264-BARC0DE - [03/50] - "BARC0DE.vol00+1.PAR2" yEnc ::: //[REUP]Home.Of.The.Brave.2006.1080p.BluRay.DTS-HD.x264-BARC0DE - [03/38] - "BARC0DE.vol00+1.PAR2" yEnc 45 -427 ^alt\\.binaries\\.movies$ /^.+\\[\\d+\\/(?P\\d+\\]) - "(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //22.Jump.Street.2014.720p.BluRay.x264-tpU.vol000+01.PAR2 [73/84] - "22.Jump.Street.2014.720p.BluRay.x264-tpU.vol000+01.PAR2" yEnc 50 -428 ^alt\\.binaries\\.movies$ /^- Description - "(?P[\\w. -]{8,}?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")(?P[-_\\s]{0,3}\\d+[.,]\\d+ [kKmMgG][bB])[- ]{0,4}yEnc$/i 1 //- Description - "The.Legend.of.Hercules.2014.720p.BluRay.x264.Y 55 -429 ^alt\\.binaries\\.movies\\.divx$ /^(?P\\(www\\.Thunder-News\\.org\\) .+? - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(www.Thunder-News.org) >CD2< - "exvid-emma-cd2.par2" yEnc 5 -430 ^alt\\.binaries\\.movies\\.divx$ /^(?P[a-zA-Z ]+Post Voor FTN - \\[\\d+\\/\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Movieland Post Voor FTN - [01/43] - "movieland0560.par2" yEnc 10 -431 ^alt\\.binaries\\.movies\\.divx$ /(?P.+?by mayhem masta".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Disney short films collection by mayhem masta"1923 - Alice's Wonderland.vol15+7.par2" yEnc 15 -432 ^alt\\.binaries\\.movies\\.x264$ /^http:\\/\\/nzbroyalty\\.com - (?P.+?) - \\[\\d+\\/(?P\\d+\\]) - ".+?" yEnc$/ 1 //http://nzbroyalty.com - House.of.The.Rising.sun.2011.BluRay.720p.DTS.x264-CHD - [00/48] - "House.of.The.Rising.sun.2011.BluRay.720p.DTS.x264-CHD.nzb" yEnc 5 -433 ^alt\\.binaries\\.movies\\.x264$ /^(?P[a-zA-Z0-9._-]+ - ?\\[)\\d+\\/(?P\\d+\\]) - "(.+?)\\.(nzb|rar|par2)" yEnc$/ 1 //Scream.4.2011.WS.720p.BluRay.X264-AMIABLE - [000/106] - "Scream.4.2011.WS.720p.BluRay.X264-AMIABLE.nzb" yEnc 10 -434 ^alt\\.binaries\\.movies\\.x264$ /^(?P[a-zA-Z0-9].+?)(?P - )\\[\\d+(?P\\/\\d+\\] - ").+?" yEnc$/ 1 //The Beaver 2011 720p BluRay DD5.1 x264-CtrlHD - [00/65] - "The Beaver 2011 720p BluRay DD5.1 x264-CtrlHD.nzb" yEnc 15 -435 ^alt\\.binaries\\.movies\\.x264$ /("|#34;)(?P.+)("|#34;)[-_ ]{0,3}[\\(\\[]\\d+\\/(?P\\d+[\\)\\]])[-_ ]{0,3}("|#34;).+?(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4})("|#34;)[-_ ]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][-_ ]{0,3}yEnc$/i 1 //"The.Hudsucker.Proxy.1994.1080p.Blu-ray.Remux.AVC.DTS.HD.MA.2.0-KRaLiMaRKo"(127/132) "The.Hudsucker.Proxy.1994.1080p.Blu-ray.Remux.AVC.DTS.HD.MA.2.0-KRaLiMaRKo.vol379+20.par2" - 24.61 GB - yEnc 20 -436 ^alt\\.binaries\\.movies\\.x264$ /^(?P[\\w.-]+)[-_\\s]{0,3}\\[\\d+\\/(?P\\d+\\])[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Fly.With.The.Gold.2012.720p.BluRay.x264-WiKi [03/73] - "wiki-fwtg.par2" yEnc 25 -437 ^alt\\.binaries\\.mp3$ /"(?P.+)"[-_ ]{0,3}[\\(\\[]\\d+\\/(?P\\d+[\\)\\]])[-_ ]{0,3}".+(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //"The Absence - Riders Of The Plague" [00/14] - "the_absence-riders_of_the_plague.nzb" yEnc 5 -438 ^alt\\.binaries\\.mp3$ /(?P.+)[-_ ]{0,3}[\\(\\[]\\d+\\/(?P\\d+[\\)\\]])[-_ ]{0,3}".+(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //( Albert Cummings Albums 6x By Dready Niek (1999-2012) ) ( ** By Dready Niek ** ) [11/20] - "Albert Cummings Albums 6x By Dready Niek (1999-2012).part10.rar" yEnc ::: //( Fat Freddy's Drop - Blackbird (2013) -- By Dready Niek ) -- By Dready Niek ) [01/15] - "Fat Freddy's Drop - Blackbird (2013) -- By Dready Niek.par2" yEnc 10 -439 ^alt\\.binaries\\.mp3$ /^(?P.+?)[-_ ]{0,3}("|#34;)(.+?)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}("|#34;))[-_ ]{0,3}yEnc$/ 1 //Metallica - Ride The Lightning "01 - Fight Fire With Fire.mp3" yEnc 15 -440 ^alt\\.binaries\\.mp3\\.complete_cd$ /^(?P\\[\\d+\\]-\\[.+?\\]-\\[.+?\\]-\\[)\\d+\\/\\d+\\] ".+?" yEnc$/ 1 //[052713]-[#eos@EFNet]-[All_Shall_Perish-Montreal_QUE_0628-2007-EOS]-[09/14] "06-all_shall_perish-deconstruction-eos.mp3" yEnc 5 -441 ^alt\\.binaries\\.mp3\\.complete_cd$ /^\\(\\d+\\/(?P\\d+\\))[ _-]{0,3}\\[Lords-of-usenet\\][ _-]{0,3}<>[ _-]{0,3}"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i 1 //(05/10) - [Lords-of-usenet] <> "Wynardtage Praise The Fallen(2007).vol00+01.PAR2" - 132,64 MB - yEnc 10 -442 ^alt\\.binaries\\.mp3\\.complete_cd$ /^\\(\\d+\\/(?P\\d+\\))[ _-]{0,3}[ _-]{0,3}"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i 1 //(06/11) - - "Diens - Schwarzmale.vol00+01.PAR2" - 141,07 MB - yEnc 15 -443 ^alt\\.binaries\\.mp3\\.complete_cd$ /^[ _-]{0,3}\\(\\d+\\/(?P\\d+\\))[ _-]{0,3}"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i 1 // (09/18) - "Mantus - Fatum (2013) [2CD].FH.vol00+2.PAR2" - 336,39 MB - yEnc 20 -444 ^alt\\.binaries\\.mp3\\.complete_cd$ /^\\(\\d+\\/(?P\\d+\\))[ _-]{0,3}"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i 1 //(08/15) "Noemi-Red.(Unreleased).2006.by.NYCrules.vol000+01.PAR2" - 179,66 MB - yEnc 25 -445 ^alt\\.binaries\\.mp3\\.complete_cd$ /^\\[(?P[a-zA-Z0-9-_\\\\(\\)\\.]+)\\] \\[www\\.usenet4ever\\.info by Secretusenet\\] - "(.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[16_Bit_Lolitas-Warung_Brazil_002-2CD-2012-iHF] [www.usenet4ever.info by Secretusenet] - "000-16_bit_lolitas-warung_brazil_002-2cd-2012-ihf.sfv" yEnc ::: //[3RD_Prototype_-_On_My_Way-(TB7368)-WEB-2013-FMC] [www.usenet4ever.info by Secretusenet] - "01-3rd_prototype_-_deafback-when_you_are_in_the_dark_(deafback_remix).mp3" yEnc ::: //[Armin_Van_Buuren_Feat._Fiora-Waiting_For_The_Night-(ARMD1140)-WEB-2013-UKHx] [www.usenet4ever.info by Secretusenet] - "00-armin_van_buuren_feat._fiora-waiting_for_the_night-(armd1140)-web-2013-ukhx.m3u" yEnc 30 -446 ^alt\\.binaries\\.mp3\\.complete_cd$ /^>ghost-of-usenet\\.org<< (?P[a-zA-Z0-9-_\\\\(\\)\\.]+) >>www\\.SSL-News\\.info> - "(.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //>ghost-of-usenet.org<< 16_Bit_Lolitas-Warung_Brazil_002-2CD-2012-iHF >>www.SSL-News.info> - "101-16_bit_lolitas-warung_brazil_002_cd1.mp3" yEnc 35 -447 ^alt\\.binaries\\.mp3\\.complete_cd$ /^(?P[a-zA-Z0-9 -_\\\\(\\)\\.]+) \\[\\d+(\\/| of )(?P\\d+\\])[-_ ]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Blok_B-Bienvenue_Dans_Mon_Blok_Vol.1-2005-BZ_INT [20 of 27] "01-gangsta.mp3" yEnc ::: //DJ Neev - HedKandi_2013-06-08 (Ministry of Sound Radio) [01/13] - "DJ Neev - HedKandi_2013-06-08 (Ministry of Sound Radio).par2" yEnc 40 -448 ^alt\\.binaries\\.mp3\\.complete_cd$ /^\\(www\\.Thunder-News\\.org\\) >(?P.+?)< - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(www.Thunder-News.org) >Dee_And_Crane-Let_The_Music_Play-WEB-2012-UKHx< - "05-dee_and_crane-let_the_music_play_(jay_frogs_keep_the_groove_remix_edit).mp3" yEnc 45 -449 ^alt\\.binaries\\.mp3\\.complete_cd$ /^.+\\[\\d+\\/(?P\\d+\\].+)"(.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/i 1 //VA 200 NRJ 2014 CD2 mp3_320kbps[18/27]VA 200 NRJ 2014 CD2 mp3_320kbps"(217) [Capital Cities] Safe And Sound.mp3" yEnc 50 -450 ^alt\\.binaries\\.mp3\\.full_albums$ /^\\. - \\[\\d+\\/(?P\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //. - [05/10] - "Blues 'N Trouble - With Friends Like These [1989].vol00+01.par2" yEnc 5 -451 ^alt\\.binaries\\.mp3\\.full_albums$ /^\\(\\d+\\/(?P\\d+\\)) "\\[www\\.Lords-of-Usenet\\.org\\]_\\[Partner von SSL-News\\]_(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i 1 //(001/122) "[www.Lords-of-Usenet.org]_[Partner von SSL-News]_Blind_Guardian-Discographie.par2" - 2,20 GB - yEnc 10 -452 ^alt\\.binaries\\.mp3\\.full_albums$ /^\\(\\d+\\/(?P\\d+\\)) "(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,4}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}.+?yEnc$/i 1 //(06/10) "Pink Floyd - Dark Side Of The Moon [MFSL UDCD 517].vol00+01.PAR2"- - 67,88 MB - Pink Floyd - Dark Side Of The Moon [MFSL UDCD 517] yEnc ::: //(07/11) "VA - Twilight - New Moon - Ost.vol00+01.PAR2"- - 93,69 MB - VA - Twilight - New Moon - Ost yEnc 15 -453 ^alt\\.binaries\\.mp3\\.full_albums$ /^\\(.+\\) \\[\\d+\\/(?P\\d+\\]) - "(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol\\d+\\+\\d+\\.par2|\\.[A-Za-z0-9]{2,4}) . http:\\/\\/usenet4ever\\.info_Sponsored by www\\.Secretusenet\\.com " yEnc$/ 1 //(Kitty Samtpfote) [01/12] - "Electronic Music of the 80s.Michael Garrison - In The Regions Of Sunreturn and beyond 1991.par2 . http://usenet4ever.info_Sponsored by www.Secretusenet.com " yEnc 20 -454 ^alt\\.binaries\\.mp3\\.full_albums$ /^\\(.+\\) >(?P.+?)< - \\(\\d+\\/(?P\\d+\\)) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(www.Thunder-News.org) >Boehse Onkelz - Discography< - (113/145) - "Boehse Onkelz - Discography.s10" yEnc 25 -455 ^alt\\.binaries\\.mp3\\.full_albums$ /^\\[(?P\\d+\\]-\\[".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")\\[ yEnc$/i 1 //[00021]-["1999 Alphaville - Dreamscapes.part069.rar"[ yEnc 30 -456 ^alt\\.binaries\\.mp3\\.full_albums$ /^\\(.+\\) \\[\\d+\\/(?P\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(nzbDMZ) [0/2] - "Miles Crossing - Miles Crossing (2011).nzb" yEnc 35 -457 ^alt\\.binaries\\.mp3\\.full_albums$ /^\\[\\d+\\/(?P\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[06/10] - "Jeff Healey - Legacy Volume One [The Singles].vol00+01.PAR2" yEnc 40 -458 ^alt\\.binaries\\.mp3\\.full_albums$ /^(?P\\d+ ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //00008 "2003 Camouflage - Sensor.par2" yEnc 45 -459 ^alt\\.binaries\\.mp3\\.full_albums$ /^(?P[a-zA-Z0-9 -_\\\\(\\)\\.]+) \\[\\d+(\\/| of )(?P\\d+\\])[-_ ]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Alex Oriental Experience_-_Live II (Live II) [1/9] - "01_Red_Dress.mp3" yEnc 50 -460 ^alt\\.binaries\\.multimedia$ /^(?P[A-Z0-9a-z.-]{10,}\\s+(- )?\\[)\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //Escort.2006.DUTCH.WEB-RiP.x264-DLH - [01/23] - "Escort.2006.DUTCH.WEB-RiP.x264-DLH.par2" yEnc ::: //Tusenbroder.S01E05.PDTV.XViD.SWEDiSH-NTV [01/69] - "ntv-tusenbroder.s01e05.nfo" yEnc 5 -461 ^alt\\.binaries\\.multimedia$ /.*"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}").+?yEnc$/i 1 //- "Auction Hunters S04E04.HDTV.x264-StarryNights1.nzb" yEnc 10 -462 ^alt\\.binaries\\.multimedia$ /^(?P.+?)\\.[A-Za-z0-9]{2,4} - \\[\\d+\\/(?P\\d+\\]) yEnc$/ 1 //homeland.s02e12.1080p.bluray-bia.r08 - [011/111] yEnc 15 -463 ^alt\\.binaries\\.multimedia$ /^\\(TOWN\\)\\(www\\.town\\.ag \\)[ _-]{0,3}\\(partner of www\\.ssl-news\\.info \\)[ _-]{0,3} (.+?) \\[\\d+\\/(?P\\d+\\][ _-]{0,3}("|#34;).+?)\\.(par2|rar|nfo|nzb)("|#34;)[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/ 1 //(TOWN)(www.town.ag ) (partner of www.ssl-news.info ) Twinz-Conversation-CD-FLAC-1995-CUSTODES [01/23] - #34;Twinz-Conversation-CD-FLAC-1995-CUSTODES.par2#34; - 266,00 MB - yEnc 20 -464 ^alt\\.binaries\\.multimedia\\.anime$ /(?P.+? \\((360|480|720|1080)p\\|.+? ~bY .+? \\[)\\d+\\/\\d+\\] - ".+?\\[[A-F0-9]+\\].+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //High School DxD New 01 (480p|.avi|xvid|mp3) ~bY Hatsuyuki [01/18] - "[Hatsuyuki]_High_School_DxD_New_01_[848x480][76B2BB8C].avi.001" yEnc 5 -465 ^alt\\.binaries\\.multimedia\\.anime$ #\\[(?P[\\w-]+\\][\\w-]+_\\d+_\\[\\d{3,4}[ip])\\]\\s*\\[([0-9A-Fa-f]{8})\\]\\s*\\[\\d+/(\\d+)\\].*#i 1 //[Hatsuyuki]_Seirei_Tsukai_no_Blade_Dance_-_03_[720p] [E18FCA59] [01/18] 10 -466 ^alt\\.binaries\\.multimedia\\.anime\\.highspeed$ /(.+? \\((?P360|480|720|1080)p\\|.+?\\s*~bY\\s*.+?\\s*\\[)\\d+\\/\\d+\\]\\s*-\\s*".+?\\[[A-Z0-9\\[\\]\\.]+.*([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //High School DxD New 01 (480p|.avi|xvid|mp3) ~bY Hatsuyuki [01/18] - "[Hatsuyuki]_High_School_DxD_New_01_[848x480][76B2BB8C].avi.001" yEnc 5 -467 ^alt\\.binaries\\.multimedia\\.documentaries$ /^(?P".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\[\\d+ of \\d+ - \\d+ [kKmMgG][bB]\\] yEnc$/i 1 //"Universe S4E08.part40.rar" - [41 of 76 - 10013 kb] yEnc 5 -468 ^alt\\.binaries\\.multimedia\\.scifi$ /^(?Psome m4vs - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //some m4vs - "SilverHawks_v1eps01_The Origin Story.par2" yEnc 5 -469 ^alt\\.binaries\\.music$ /^\\[ TOWN \\][ _-]{0,3}\\[ www\\.town\\.ag \\][ _-]{0,3}\\[ partner of www\\.ssl-news\\.info \\][ _-]{0,3}\\[ .* \\] \\[\\d+\\/(?P\\d+\\][ _-]{0,3}("|#34;).+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i 1 //[ TOWN ]-[ www.town.ag ]-[ partner of www.ssl-news.info ]-[ MOVIE ] [14/19] - "Night.Vision.2011.DVDRip.x264-IGUANA.part12.rar" - 660,80 MB yEnc 5 -470 ^alt\\.binaries\\.music$ /^.+By Dready Niek \\) \\[\\d+\\/(?P\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //( 80's Giga Hits Collection (32 CDs) By Dready Niek ) By Dready Niek ) [44/54] - "80's Giga Hits Collection (32 CDs) By Dready Niek.part43.rar" yEnc 10 -471 ^alt\\.binaries\\.music$ /^\\(\\d+\\/(?P\\d+\\] .+?) ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - nightsteff yEnc$/i 1 //(00/24] Marco Mengoni - Prontoacorrere (2013) "Marco Mengoni - Prontoacorrere (2013).nzb" - nightsteff yEnc 15 -472 ^alt\\.binaries\\.music$ /^\\((?P.+)\\) \\[\\d+\\/(?P\\d+\\]) - \\[".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")\\] yEnc$/i 1 //(80's Disco-Soul-Funk) [136/426] - ["Level 42 - Lessons In Love.mp3"] yEnc 20 -473 ^alt\\.binaries\\.music$ /^\\((?P.+)\\) \\[\\d+\\/(?P\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(Jungle Fever Tapepacks) [67/79] - "Jungle Fever Tapepacks.part65.rar" yEnc 25 -474 ^alt\\.binaries\\.music$ /^\\[\\d+\\/(?P\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[1/8] - "Black Market Flowers - Bind (1993).sfv" yEnc 30 -475 ^alt\\.binaries\\.music$ /^\\[DreamPieter\\] \\((?P.+)\\) \\[\\d+\\/(?P\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[DreamPieter] (Glen Tipton - Two solo albums) [04/23] - "Glenn Tipton - Baptizm of Fire - 04 - Fuel Me Up.mp3" yEnc 35 -476 ^alt\\.binaries\\.music$ /^\\(\\d+\\/(?P\\d+\\)[ -]{0,3}".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //(01/10) "Mylène Farmer - Monkey me (2012 Bluray Audio).rar" - 1,56 GB - yEnc 40 -477 ^alt\\.binaries\\.music\\.mp3$ /^[\\(\\[]\\d+\\/(?P\\d+[\\]\\)][ -]{0,3}.+) ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[ -]{0,3}nightsteff yEnc$/i 1 //(00/20] Nomadi - Terzo Tempo (2012) "Nomadi - Terzo Tempo (2012).nzb" - nightsteff yEnc 5 -478 ^alt\\.binaries\\.music\\.mp3$ /^\\(\\?+\\) \\[\\d+\\/(?P\\d+\\][ -]{0,3}.+) ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(????) [19/22] - C.K.N. Demo 85 "19-rotten system.mp3" yEnc 10 -479 ^alt\\.binaries\\.music\\.mp3$ /^\\((?P.+)\\) \\[\\d+\\/(?P\\d+\\])[ -]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(BierbauchFreddy Quwinn seine größten Coversongs Vol2) [22/60] - "040c - Freddy Quinn - Don't Forbid Me (1957) (NH 22 639, EPH 20 575).mp3" yEnc 15 -480 ^alt\\.binaries\\.music\\.mp3$ /^\\[ (?P.+) \\] - \\[\\d+\\] - \\[\\d+ Kbps MP3\\] \\[\\d+ of (?P\\d+\\]) ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[ Spectrum (ft. Matthew Koma) (Extended Mix) - Zedd ] - [2012] - [256 Kbps MP3] [1 of 7] "Spectrum (ft. Matthew Koma) [Extended Mix].mp3" yEnc 20 -481 ^alt\\.binaries\\.music\\.mp3$ /^\\[\\d+\\/(?P\\d+\\][ -]{0,3}\\(((Top)?\\d+ )?(MP3 )?(Album )?Charts\\)[ -]{0,3}".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/i 1 //[1/1] - (150 MP3 Album Charts) - "Atlantean Kodex - The White Goddess.rar" yEnc ::: //[1/1] - (MP3 Album Charts) - "Black Sabbath - 13.rar" yEnc ::: //[1/1] - (Top100 Album Charts) - "Bastille - Pompeii.rar" yEnc ::: //[1/1] - (Top100 Charts) - "Beatrice Egli - Gluecksgefuehle.rar" yEnc 25 -482 ^alt\\.binaries\\.music\\.mp3$ /^\\[\\d+\\/(?P\\d+\\][ -]{0,3}(Album )?Top \\d+( Album Charts \\d+)?[ -]{0,3}".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/i 1 //[1/1] - Album Top 100 - "Amy MacDonald - L 30 -483 ^alt\\.binaries\\.music\\.mp3$ /^\\[\\d+\\/(?P\\d+\\][ -]{0,3}\\(Album Top \\d+(( -)? \\d+)?\\)[ -]{0,3}".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/i 1 //[1/1] (Album Top 100 - 2012) - "Cro - Einmal Um Die Welt.rar" yEnc ::: //[1/1] (Album Top 100 2012) - "Cro - Einmal Um Die Welt.rar" yEnc ::: //[1/1] (Album Top 100) - "Cro - Raop.rar" yEnc 35 -484 ^alt\\.binaries\\.music\\.mp3$ /^\\[ech0park\\]-\\[spotnet\\]-\\[(?P.+?)\\] \\[\\d+\\/(?P\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[ech0park]-[spotnet]-[Snow Patrol 2012 Tour Sampler - 2012-iND] [02/20] - "02-snow_patrol-ill_never_let_go.mp3" yEnc 40 -485 ^alt\\.binaries\\.music\\.mp3$ /^(?P.+?)[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\[\\d+\\/ (?P\\d+\\]) nightsteff[-_\\s]{0,3}yEnc$/i 1 //40 Italo Dance Tunes (2CD) - "00. 40 Italo Dance Tunes 2011.nfo" [02/ 50] nightsteff yEnc 45 -486 ^alt\\.binaries\\.music\\.mp3$ /^(?P.+?) ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[ -]{0,3}nightsteff yEnc$/i 1 //Bud Spencer & Terence Hill - Greatest Hits Vol 1 (1995) "04 - Just A Good Boy.mp3" nightsteff yEnc 50 -487 ^alt\\.binaries\\.music\\.mp3$ /^Attn: \\w+ - (?P.+?)\\[\\d+\\/(?P\\d+\\]) - .+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol\\d+\\+\\d+\\.par2|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}\\d+[.,]\\d+[kKmMgG][bB][-_\\s]{0,3}yEnc$/ 1 //Attn: bearcat - Avenged Sevenfold - Avenged Sevenfold 320[17/18] - .vol15+16.par2 5.9Mb yEnc 55 -488 ^alt\\.binaries\\.nl$ /\\((\\d+|\\?+)\\) \\[\\d+\\/(?P\\d+\\]).*"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //(????) [01/46] - "NCIS.S11E02.Past.Present.and.Future.1080p.WEB-DL.DD5.1.H.264-CtrlHD.par2" yEnc 5 -489 ^alt\\.binaries\\.nl$ /^\\w+[-_ ]{0,3}[\\[\\(]\\d+\\/(?P\\d+[\\]\\)])[-_ ]{0,3}"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //JN - [1/3] - "Operatie Teheran-Joel C Rosenberg JN.par2" yEnc 10 -490 ^alt\\.binaries\\.nl$ /^\\( (?P[\\w. -]{8,}) \\)[-_ ]{0,3}\\[\\d+\\/(?P\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //( Overlord II RELOADED ) - [013/112] - "rld-olii.part001.rar" yEnc 15 -491 ^alt\\.binaries\\.nl$ /^(?P[\\w. &\\()-]{8,}?\\b)[-_\\s]{0,3}\\[\\d+\\/(?P\\d+\\])[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Batman.Arkham-Origins.Initiation-RELOADED - [006/296] - "r.vol010+08.PAR2" yEnc 20 -492 ^alt\\.binaries\\.ps3$ /^\\[\\d+\\] \\[\\d+(?P\\/\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[4197] [036/103] - "ant-mgstlcd2.r34" yEnc 5 -493 ^alt\\.binaries\\.pwp$ /^\\(\\d+\\/(?P\\d+\\)[-_ ]{0,4}"Giggi.+)[A-Z]\\d([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //(620/899) - "Giggi_9M05YD32TO4.part147.rar" - 252,53 GB - yEnc 5 -494 ^alt\\.binaries\\.pwp$ /^\\(\\d+\\/(?P\\d+\\)[-_ ]{0,4}".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //(300/454) "James_Bond_You_Only_Live_Twice_bd25.part300.rar" - 22,22 GB - yEnc 10 -495 ^alt\\.binaries\\.series\\.tv\\.french$ /^\\(\\d+\\/(?P\\d+\\)) "(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB]( -)? yEnc$/i 1 //(01/34) "Merlin.2008.1x04.la.vengeance.de.nimue.par2" - 388,38 MB - yEnc 5 -496 ^alt\\.binaries\\.series\\.tv\\.french$ /^(?P[a-zA-Z0-9._-]+)[-_ ]{0,3}[\\(\\[]\\d+\\/(?P\\d+[\\)\\]])[-_ ]{0,3}"(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //Breaking.Bad.S02.MULTi.720p.BluRay.AC3.x264-BoO [749/883] - "212ACS3517.part01.rar" yEnc 10 -497 ^alt\\.binaries\\.series\\.tv\\.french$ /^(?P[a-zA-Z0-9._-]+)[-_ ]{0,3}[\\(\\[]\\d+ of (?P\\d+[\\)\\]])[-_ ]{0,3}"(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //Dawson.Saison2.DVDRIP.x264.FRENCH [111 of 196] "Dawson.S2.E22.Tout feu, tout flambe.m4v.003" yEnc 15 -498 ^alt\\.binaries\\.series\\.tv\\.french$ /^[\\(\\[]\\d+\\/(?P\\d+[\\)\\]])[-_ ]{0,3}"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //[01/22] - "Unnatural.History.1x03.Espion.En.Sommeil.FR.LD.par2" yEnc 20 -499 ^alt\\.binaries\\.series\\.tv\\.french$ /^\\[(?P.+?)\\][-_ ]{0,3}[\\(\\[]\\d+\\/(?P\\d+[\\)\\]])[-_ ]{0,3}"(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //[MagNeum 3.14 S1 D.V.D + par2][1148/1167] - "ZDFRIKK8470DO776.D7P" yEnc 25 -500 ^alt\\.binaries\\.sony\\.psp$ /^\\(\\d+\\/(?P\\d+\\) ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d+([.,]\\d+ [kKmMgG])?[bB] yEnc$/i 1 //(01/10) "Assassins Creed - Bloodlines [EUR].par2" - 408,46 MB yEnc 5 -501 ^alt\\.binaries\\.sony\\.psp$ /^\\(\\d+\\) (?P[a-zA-Z0-9 -_\\.]+) \\[\\d+\\/(?P\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(20444) F 10 -502 ^alt\\.binaries\\.sound\\.mp3$ /.+[-_ ]{0,3}[\\(\\[]\\d+\\/(?P\\d+[\\)\\]][-_ ]{0,3}".+)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i 1 //- codari_4_usenetrevolution.info-Partner of SSL-News UK.Single.Charts.Top.40 [01/25] - "UK.Single.Charts.Top.40.par2" - 301,70 MB - yEnc 5 -503 ^alt\\.binaries\\.sound\\.mp3$ /^"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}\\(\\d+\\/(?P\\d+\\))[ _-]{0,3}yEnc$/i 1 //"Terraplane Sun - Funnel of Love.mp3" - 21.55 MB - (1/6) - yEnc 10 -504 ^alt\\.binaries\\.sound\\.mp3$ /^(?P.+? meil29) ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //jean ferrat année 1967 à 1969 meil29 "17 Rien à voir.mp3" yEnc 15 -505 ^alt\\.binaries\\.sounds\\.flac$ /^(?P\\[\\d+\\]-\\[.+?\\]-\\[.+?\\]-\\[.+?\\]-\\[)\\d+\\/\\d+] - ".+?" yEnc$/ 1 //[32974]-[FULL]-[#a.b.flac]-[ Tenniscoats-Tokinouta-JP-CD-FLAC-2011-BCC ]-[04/28] - "00-tenniscoats-tokinouta-jp-cd-flac-2011.nfo" yEnc 5 -506 ^alt\\.binaries\\.sounds\\.lossless$ /^http:\\/\\/dream-of-usenet\\.org .+? - \\[\\d+(?P\\/\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //http://dream-of-usenet.org empfehlen newsconnection.eu - [02/32] - "Adam_Ant-Manners_and_Physique-(MCAD-6315)-CD-FLAC-1989-2Eleven.par2" yEnc 5 -507 ^alt\\.binaries\\.sounds\\.lossless$ /^(?P[A-Z0-9].+? - \\d{4} - .+? - )\\d+ of \\d+ - \\d+ - .+? yEnc$/ 1 //Sonny Landreth - 2010 - Mississippi Blues - 04 of 29 - 00 - Mississippi Blues.sfv yEnc ::: //Fruteland Jackson - 1996 - ... Is All I Crave - 08 of 20 - 00 - Fruteland Jackson - ... Is All I Crave.log yEnc 10 -508 ^alt\\.binaries\\.sounds\\.lossless$ /^(?P.+?[a-zA-Z0-9][^\\[(?P ])\\d{2,}(\\/\\d+\\] - ").+?" yEnc$/ 1 //Restless Breed00/27] - ".nzb" yEnc 15 -509 ^alt\\.binaries\\.sounds\\.lossless$ /^\\([A-Z0-9][a-zA-Z0-9 ]+\\) \\[\\d+(?P\\/\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(Rolling Stones) [01/28] - "Bell Center, Montreal, QC - 09-06-2013 (alt source sb remaster).par2" yEnc 20 -510 ^alt\\.binaries\\.sounds\\.lossless$ /^.:[-_ ]{0,3}(?P.+?)[-_ ]{0,3}:..+?thunder-news\\.org.+?secretusenet\\.com:. - "(.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //.: VA-Liquid_Music-The_Future_House_Compilation-CD-FLAC-1993-WRS :. - .:www.thunder-news.org:. - .:sponsored by secretusenet.com:. - "00-va-liquid_music-the_future_house_compilation-cd-flac-1993-wrs.nfo" yEnc ::: //.:Bruce_BecVar-Arriba-CD-FLAC-1993-JLM:. - .:thunder-news.org:. - .:sponsored by secretusenet.com:. - "00-bruce_becvar-arriba-cd-flac-1993.m3u" yEnc 25 -511 ^alt\\.binaries\\.sounds\\.lossless$ /^[-_ ]{0,3}"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //_ "CARUSO & GIGLI - O Sole Mio - The Unknown.nzb" yEnc 30 -512 ^alt\\.binaries\\.sounds\\.lossless$ /^[-_ ]{0,3}"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_ ]{0,3}\\d+ (?Pof \\d+)( \\(\\d+\\/\\d+\\)){1,2} (yEnc)?$/i 1 //"Art Tatum - The Complete Trio Sessions with Tiny Grimes & Slam Stewart - Vol 1.NFO" - 1 of 6 (1/1) ::: //"Galen Jeter and the Dallas Jazz Orchestra - Thank You, Leon.NFO" - 1 of 5 (1/1) (1/1) 35 -513 ^alt\\.binaries\\.sounds\\.lossless$ /^[-_ ]{0,3}"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i 1 //"Doc Watson - 1973 - The Essential Doc Watson - 01 - Tom Dooley.flac" - 406.64 MB - yEnc 40 -514 ^alt\\.binaries\\.sounds\\.mp3\\.audiobooks$ /^\\(dream-of-usenet\\.info\\) - \\[\\d+(?P\\/\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 // currently these are teh same as mp3, but in the future these should be mod 5 -515 ^alt\\.binaries\\.sounds\\.mp3\\.audiobooks$ /^http:\\/\\/dream-of-usenet\\.org .+? - \\[\\d+(?P\\/\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //http://dream-of-usenet.org empfehlen newsconnection.eu - [02/32] - "Adam_Ant-Manners_and_Physique-(MCAD-6315)-CD-FLAC-1989-2Eleven.par2" yEnc 10 -516 ^alt\\.binaries\\.sounds\\.mp3\\.audiobooks$ /^(?P>>> CREATIVE COMMONS NZB <<< ".+?" - File )\\d+ of \\d+: ".+?" yEnc$/ 1 //>>> CREATIVE COMMONS NZB <<< "dexter romweber duo-lookout" - File 1 of 9: "creative_commons_nzb_dexter_romweber_duo-lookout.rar" yEnc 15 -517 ^alt\\.binaries\\.sounds\\.mp3\\.audiobooks$ /^(?P.+?usenet-space.+?Powered by.+? ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|").+? \\d+\\/\\d+ \\(\\d+[.,]\\d+ [kKmMgG][bB]\\) .+? \\d+[.,]\\d+ [kKmMgG][bB] .+?yEnc$/i 1 //<<>> <<< "Justin_Bieber-Believe_Acoustic-2013-pLAN9_usenet-space-cowbys.info.rar" >< 4/6 (78.65 MB) >< 60.84 MB > yEnc 20 -518 ^alt\\.binaries\\.sounds\\.mp3$ /^\\(dream-of-usenet\\.info\\) - \\[\\d+(?P\\/\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(dream-of-usenet.info) - [04/15] - "Enya-And_Winter_Came...-2008.part2.rar" yEnc 5 -519 ^alt\\.binaries\\.sounds\\.mp3$ /^http:\\/\\/dream-of-usenet\\.org .+? - \\[\\d+(?P\\/\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //http://dream-of-usenet.org empfehlen newsconnection.eu - [02/32] - "Adam_Ant-Manners_and_Physique-(MCAD-6315)-CD-FLAC-1989-2Eleven.par2" yEnc 10 -520 ^alt\\.binaries\\.sounds\\.mp3$ /^(?P>>> CREATIVE COMMONS NZB <<< ".+?" - File )\\d+ of \\d+: ".+?" yEnc$/ 1 //>>> CREATIVE COMMONS NZB <<< "dexter romweber duo-lookout" - File 1 of 9: "creative_commons_nzb_dexter_romweber_duo-lookout.rar" yEnc 15 -521 ^alt\\.binaries\\.sounds\\.mp3$ /^(?P.+?usenet-space.+?Powered by.+? ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|").+? \\d+\\/\\d+ \\(\\d+[.,]\\d+ [kKmMgG][bB]\\) .+? \\d+[.,]\\d+ [kKmMgG][bB] .+?yEnc$/i 1 //<<>> <<< "Justin_Bieber-Believe_Acoustic-2013-pLAN9_usenet-space-cowbys.info.rar" >< 4/6 (78.65 MB) >< 60.84 MB > yEnc 20 -522 ^alt\\.binaries\\.sounds\\.mp3$ /"(?P.+)"[-_ ]{0,3}[\\(\\[]\\d+\\/(?P\\d+[\\)\\]])[-_ ]{0,3}".+(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //"The Absence - Riders Of The Plague" [00/14] - "the_absence-riders_of_the_plague.nzb" yEnc 25 -523 ^alt\\.binaries\\.sounds\\.mp3$ /\\( (?P.+?)\\)[-_ ]{0,3}( |\\().+\\)[-_ ]{0,3}[\\(\\[]\\d+\\/(?P\\d+[\\)\\]])[-_ ]{0,3}".+(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //( Albert Cummings Albums 6x By Dready Niek (1999-2012) ) ( ** By Dready Niek ** ) [11/20] - "Albert Cummings Albums 6x By Dready Niek (1999-2012).part10.rar" yEnc ::: //( Fat Freddy's Drop - Blackbird (2013) -- By Dready Niek ) -- By Dready Niek ) [01/15] - "Fat Freddy's Drop - Blackbird (2013) -- By Dready Niek.par2" yEnc 30 -524 ^alt\\.binaries\\.sounds\\.mp3$ /\\( (?P.+?) \\)[-_ ]{0,3}[\\(\\[]\\d+\\/(?P\\d+[\\)\\]])[-_ ]{0,3}".+(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //( Addison_Road-Addison_Road-2008 ) [01/10] - "01. Addison Road - This Could Be Our Day.mp3" yEnc 35 -525 ^alt\\.binaries\\.sounds\\.mp3$ /^.+?\\[\\d+\\/(?P\\d+\\][-_ ]{0,3}.+?)[-_ ]{0,3}("|#34;)(.+?)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}("|#34;))[-_ ]{0,3}yEnc$/ 1 //(????) [0/8] - Crionics Post - Alice In Chains - Dirt REPOST"Alice In Chains - Dirt.nzb" yEnc 40 -526 ^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$ /(?P.+)[-_ ]{0,3}[\\(\\[]\\d+\\/(?P\\d+[\\)\\]][-_ ]{0,3}".+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //The Refreshments - [1/9] - "The Refreshments - Rock´n Roll Christmas [2003].par2" yEnc 5 -527 ^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$ /^\\[(?P.+?)\\][-_ ]{0,3}\\[(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}\\])[-_ ]{0,3}[\\(\\[]\\d+\\/(?P\\d+[\\)\\]])[-_ ]{0,3}yEnc$/ 1 //[BFMP3] [Barrelhouse_Time Frames.nzb] [00/18] yEnc 10 -528 ^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$ /^(?P.+?)[-_ ]{0,3}("|#34;)(.+?)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}("|#34;))[-_ ]{0,3}yEnc$/ 1 //Metallica - Ride The Lightning "01 - Fight Fire With Fire.mp3" yEnc 15 -529 ^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$ /^\\(\\d+\\/(?P\\d+\\) ".+?) www\\.brothers-of-usenet\\.org - empfehlen - Newsconnection(\\.eu)?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(01/11) "Der Kleine Vampir Komplett - Folge 01 bis 18 www.brothers-of-usenet.org - empfehlen - Newsconnection.eu.nfo" yEnc 20 -530 ^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$ /^\\(D(\\))? (?P.+) {1,2}\\[\\d+\\/(?P\\d+\\]) - .+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol\\d+\\+\\d+\\.par2|\\.[A-Za-z0-9]{2,4}) {1,2}yEnc$/ 1 //(D The Best Of Leon Russell [23/28] - The Best Of Leon Russell.vol00+01.PAR2 yEnc 25 -531 ^alt\\.binaries\\.sounds\\.mp3\\.dance$ /^\\[\\d+\\](?P.+?)[-_ ]{0,3}("|#34;)(.+?)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}("|#34;))[-_ ]{0,3}yEnc$/ 1 //[2707]Solarstone-Solarstone_Collected_Vol_1-ARDI3177-WEB-2012-TraX "02-solarstone_feat_kym_marsh-day_by_day_(red_jerry_smackthe_bigot_up_remix).mp3" - yEnc 5 -532 ^alt\\.binaries\\.sounds\\.mp3\\.electronic$ /^\\(\\d+\\/(?P\\d+\\))[ -]{0,3}"(?P[\\w. &\\()\\[\\]\\'-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //(03/10) "Washing Machines - Planet-E CH-Basel Ultimate Hardcore - 4.9.1993.vol00+01.PAR2" - 232.39 MB - yEnc 5 -533 ^alt\\.binaries\\.sounds\\.mp3\\.electronic$ /^\\(\\d+\\/(?P\\d+\\))[ -]{0,3}"(?P[\\w. &\\()\\[\\]\\'-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+ [bB][-_\\s]{0,3}yEnc$/i 1 //(2/7) "Cosmic Baby live at Energy 1995.vol00+01.PAR2" - 0 B - yEnc 10 -534 ^alt\\.binaries\\.sounds\\.mp3\\.electronic$ /^\\[0sk\\]-\\[\\d+-\\d+-\\d+\\]-\\[.+\\]-\\[.+\\]-\\[\\d+\\/(?P\\d+\\])-\\[(?P[\\w. &\\()\\[\\]\\'-]{8,})\\]--.+? yEnc$/ 1 //[0sk]-[2002-12-06]-[idm]-[vinyl]-[4/5]-[Maps_And_Diagrams_-_Ti_Sta_Bene_Marone-(cact_001)-Vinyl-2002]--cact 001.sfv yEnc 15 -535 ^alt\\.binaries\\.sounds\\.mp3\\.electronic$ /^\\[.+\\]-\\[.+\\]-\\[\\d+\\/(?P\\d+\\])-\\[(?P[\\w. &\\()\\[\\]\\'-]{8,})\\]-.+? yEnc$/ 1 //[10_years---happy_bday_absme]-[cd]-[04/15]-[va_-_spacewars_01-(plkcd003)-cd-1996-nwd]-01-Nuw Idol - Union Of Ilk -nwd-.mp3 yEnc 20 -536 ^alt\\.binaries\\.sounds\\.mp3\\.electronic$ /^(?P[\\w. &\\()\\[\\]\\'-]{8,}?)[ -]{0,3}\\d+[ -]{0,3}[\\w., &\\()\\[\\]\\'-]{8,}?\\b.?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev|\\.vol\\d+\\+\\d+\\.par2|\\.[A-Za-z0-9]{2,4})[ -]{0,3}yEnc$/ 1 //Alec Empire - Low On Ice 06 - Untitled.mp3 yEnc 25 -537 ^alt\\.binaries\\.teevee$ /^\\(\\d+(?P\\/\\d+\\) ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d.+?B - (\\d.+?B -)? yEnc$/i 1 //(01/37) "Entourage S08E08.part01.rar" - 349,20 MB - yEnc ::: //(01/24) "EGtnu7OrLNQMO2pDbgpDrBL8SnjZDpab.nfo" - 686 B - 338.74 MB - yEnc (1/1) 30 -538 ^alt\\.binaries\\.teevee$ /^\\[\\d+(?P\\/\\d+\\] - "[A-Za-z0-9.-]+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[01/42] - "King.And.Maxwell.S01E08.1080p.WEB-DL.DD5.1.H264-Abjex.par2" yEnc 35 -539 ^alt\\.binaries\\.teevee$ /^(?P[a-zA-Z0-9 ]+ \\()\\d+(?P\\/\\d+\\) - ?".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Divers (12/42) -"Juste.Pour.Rire.2013.Gala.JF.Mercier.FRENCH.720p.HDTV.x264-QuebecRules.part11.rar" yEnc ::: //Par le chapeau (06/43) - "8C7D59F472E03.part04.rar" yEnc 40 -540 ^alt\\.binaries\\.teevee$ /^(Re: )?(?P[a-zA-Z0-9._-]+([{}A-Z_]+)?( -)? \\[)\\d+(\\/| of )\\d+\\]( -)? ".+?" yEnc$/ 1 //House.Hunters.International.S05E502.720p.hdtv.x264 [01/27] - "House.Hunters.International.S05E502.720p.hdtv.x264.nfo" yEnc ::: //Criminal.Minds.S03E01.Doubt.PROPER.DVDRip.XviD-SAiNTS - [01/33] - "Criminal.Minds.S03E01.Doubt.PROPER.DVDRip.XviD-SAiNTS.par2" yEnc 45 -541 ^alt\\.binaries\\.teevee$ /^\\[ (?P.+?) \\] .+ \\(\\d+\\/(?P\\d+\\)) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[ Anthony.Bourdain.Parts.Unknown.S01.480p.HDTV.x264-mSD ] MKV.h264 (03/17) - "Anthony.Bourdain.Parts.Unknown.S01E01.480p.HDTV.x264-mSD.mkv" yEnc 50 -542 ^alt\\.binaries\\.teevee$ /^(?P[a-zA-Z0-9 ]+)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2 |\\.[A-Za-z0-9]{2,4} )\\[\\d+(?P\\/\\d+\\] - yEnc)$/ 1 //Silent Witness S15E02 Death has no dominion.par2 [01/44] - yEnc 55 -543 ^alt\\.binaries\\.teevee$ /^\\(bf1\\) \\[\\d+(?P\\/\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(bf1) [03/31] - "The.Block.AU.Sky.High.S07E61.WS.PDTV.XviD.BF1.part01.sfv" yEnc (1/1) 60 -544 ^alt\\.binaries\\.teevee$ /^(?P\\[ [A-Za-z]+ \\] - (\\[\\d+\\/\\d+\\] - )?".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[ TVPower ] - "Dexter.S07E10.720p.HDTV.x264-NLsubs.par2" yEnc ::: //[ TVPower ] - [010/101] - "Desperate.Housewives.S08Disc2.NLsubs.part009.rar" yEnc 65 -545 ^alt\\.binaries\\.teevee$ /^(?P\\[.+?\\]-\\[.+?\\]-\\[)\\d+\\/\\d+\\] ".+?" - \\d+([.,]\\d+ [kKmMgG])?[bB] - yEnc$/ 1 //[www.allyourbasearebelongtous.pw]-[WWE.Monday.Night.Raw.2013.07.22.HDTV.x264-IWStreams]-[03/69] "WWE.Monday.Night.Raw.2013.07.22.HDTV.x264-IWStreams.r00" - 1.58 GB - yEnc 70 -546 ^alt\\.binaries\\.teevee$ /^(?P\\(www\\..+?\\) .+? - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(www.Thunder-News.org) >CD1< - "moovee-fastest.cda.par2" yEnc 75 -547 ^alt\\.binaries\\.teevee$ /(?P\\.info .+?Powered by .+?\\.com ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") .+? \\d+\\/\\d+ \\(\\d+[,.]\\d+ [mMkKgG][bB]\\) .+? yEnc$/i 1 //<<>> usenet-space-cowboys.info <<< "S05E03 Pack die Badehose ein_usenet-space-cowbys.info.par2" >< 01/10 (411,16 MB) >< 3,48 kB > yEnc 80 -548 ^alt\\.binaries\\.teevee$ /^(?P[a-zA-Z0-9]+ .+? - S\\d+E\\d+ - .+? \\[)\\d+\\/\\d+\\] - ".+?\\..+?" yEnc$/ 1 //Newport Harbor The Real Orange County - S01E01 - A Black & White Affair [01/11] - "Newport Harbor The Real Orange County - S01E01 - A Black & White Affair.mkv" yEnc 85 -549 ^alt\\.binaries\\.teevee$ /^"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //"Mad.Men.S06E11.HDTV.x264-2HD.par2" yEnc 90 -550 ^alt\\.binaries\\.teevee$ /^"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\[\\d+\\/(?P\\d+\\])[ _-]{0,3}yEnc$/i 1 //"Marvels.Agents.of.S.H.I.E.L.D.S01E07.HDTV.XviD-FUM.avi.nfo" [09/16] yEnc 95 -551 ^alt\\.binaries\\.teevee$ /^\\[\\d+\\]-\\[ (?P.+?) \\]- ".+?" yEnc$/i 1 //[185891]-[ Suits.S01E01.720p.BluRay.X264-REWARD ]- "Suits.S01E01.720p.BluRay.par2" yEnc 100 -552 ^alt\\.binaries\\.teevee$ /^\\.\\.[-_\\s]{0,3}\\[\\d+\\/(?P\\d+\\])[-_\\s]{0,3}"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //.. - [01/42] - "Under.the.Dome.S01E04.Outbreak.1080p.WEB-DL.DD5.1.H.264-NTb.par2" yEnc 105 -553 ^alt\\.binaries\\.town$ /town\\.ag.+?download all our files with.+?www\\..+?\\.info.+? \\[\\d+(?P\\/\\d+\\] - ".+?)(-sample)?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/i 1 // >> www.ssl-news.info <<< > [05/87] - "Deep.Black.Ass.5.XXX.1080p.WEBRip.x264-TBP.part03.rar" - 7,87 GB yEnc 5 -554 ^alt\\.binaries\\.town$ /^"(?P.+)__www.realmom.info__.+" \\(\\d+\\/(?P\\d+\\)) \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/ 1 //"Armored_Core_V_PS3-ANTiDOTE__www.realmom.info__.r00" (03/78) 3,32 GB yEnc 10 -555 ^alt\\.binaries\\.tun$ /^(?P\\[PRiVATE\\] [a-z0-9A-Z]+=+ \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //[PRiVATE] UmVndWxhci5TaG93LlMwMkUyOC4xMDgwcC5CbHVSYXkueDI2NC1ERWlNT1M= [06/32] - "89769f0736162e1cb113655cb10e42ff.part02.rar" yEnc 5 -556 ^alt\\.binaries\\.tun$ /^\\[ nEwZ\\[NZB\\]\\.iNFO( \\])?[-_ ]{0,3}\\[ (?P.+?) \\][-_ ]{0,3}(File )?[\\(\\[]\\d+\\/(?P\\d+[\\)\\]]): "(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //[ nEwZ[NZB].iNFO - [ Zed--The_Invitation-WEB-2010-WUS ] - File [12/13]: "08-zed--the_river.mp3" yEnc 10 -557 ^alt\\.binaries\\.tun$ /^nEwZ\\[NZB\\]\\.iNFO[-_ ]{0,3} (?P.+?) [-_ ]{0,3}(File )?[\\(\\[]\\d+\\/(?P\\d+[\\)\\]]): "(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")$/ 1 //nEwZ[NZB].iNFO - VA-Universal_Music_Sampler_07_February-PROMO-CDR-FLAC-2013-WRE - File [6/9]: "01-alesso-years_(hard_rock_sofa_remix).flac" 15 -558 ^alt\\.binaries\\.tv$ /^(?P[a-zA-Z0-9.-]+ \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //Borgen.2x02.A.Bruxelles.Non.Ti.Sentono.Urlare.ITA.BDMux.x264-NovaRip [02/22] - "borgen.2x02.ita.bdmux.x264-novarip.par2" yEnc 5 -559 ^alt\\.binaries\\.tv$ /^\\(bf1\\) \\[\\d+(?P\\/\\d+\\] - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(bf1) [03/31] - "The.Block.AU.Sky.High.S07E56.WS.PDTV.XviD.BF1.part01.sfv" yEnc 10 -560 ^alt\\.binaries\\.tv$ /^\\[\\d+\\/(?P\\d+\\])[-_\\s]{0,3}(?P[\\w.\\() -]{8,}?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol\\d+\\+\\d+\\.par2|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/ 1 //[014/144] - The Bible (2013) - S1E01 - In the Beginning AVC 480p.vol31+27.PAR2 yEnc 15 -561 ^alt\\.binaries\\.tv$ /^Saturday Morning Classic (?P[\\w. -]{8,}?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol\\d+\\+\\d+\\.par2|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/ 1 //Saturday Morning Classic Return-to-the-Planet-of-the-Apes-S01E03 - Lagoon of Peril.avi.001 yEnc 20 -562 ^alt\\.binaries\\.tvseries$ /^"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")( - \\d+([.,]\\d+ [kKmMgG])?[bB])? - \\d+([.,]\\d+ [kKmMgG])?[bB] - yEnc$/i 1 //"Forbrydelsen.II.S01E03.2009.DVDRip.MULTi.DD5.1.x264.nzb" - 213.54 kB - yEnc ::: //"Futurama S07E01 The Bots And The Bees.vol26+23.PAR2" - 8.49 MB - 193.51 MB - yEnc 5 -563 ^alt\\.binaries\\.tvseries$ /^"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\[\\d+\\/(?P\\d+\\]) - yEnc$/i 1 //"Rijdende.Rechter.-.19x01.-.Huisbiggen.1080p.MKV-BNABOYZ.part38.rar" - [40/56] - yEnc 10 -564 ^alt\\.binaries\\.tvseries$ /^\\(\\d+\\/(?P\\d+\\) ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB] - yEnc$/i 1 //(003/104) "blackcave1001.part002.rar" - 4,83 GB - yEnc 15 -565 ^alt\\.binaries\\.tvseries$ /^[a-zA-Z0-9 -_\\.]+ \\[\\d+\\/(?P\\d+\\]) - "(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //X-Men Evolution - 2000 - [01/20] - "X-Men Evolution - 3x03 - Mainstream.par2" yEnc 20 -566 ^alt\\.binaries\\.tvseries$ /^(?P[a-zA-Z0-9 -_\\.]+) (RETRY)?[-_ ]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") \\d+(?P\\/\\d+)( {0,2}yEnc)?$/i 1 //'X-Files' Season 1 XviD RETRY "Files101.par2" 004/387 ::: //'X-Files' Season 5 XviD "Files502.par2" 018/321 yEnc ::: //'X-Files' Season 2 XviD "Files223.part2.rar" 356/401 yEnc 25 -567 ^alt\\.binaries\\.tvseries$ /^"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //"the.tudors.s03e03.nfo" yEnc 30 -568 ^alt\\.binaries\\.tvseries$ /^\\(\\d+\\/(?P\\d+\\)) "((BBC|ITV) )?(?P.+?)(\\.part\\d+)?(\\.(par2|(vol.+?))"|\\.[a-z0-9]{3}"|") - \\d.+? - (\\d.+? -)? yEnc$/ 1 //(08/25) "Wild Russia 5 of 6 The Secret Forest 2009.part06.rar" - 47.68 MB - 771.18 MB - yEnc ::: //(01/24) "ITV Wild Britain With Ray Mears 1 of 6 Deciduous Forest 2011.nfo" - 4.34 kB - 770.97 MB - yEnc ::: //(24/24) "BBC Great British Garden Revival 03 of 10 Cottage Gardens And House Plants 2013.vol27+22.PAR2" - 48.39 MB - 808.88 MB - yEnc 35 -569 ^alt\\.binaries\\.tvseries$ /^(?P[a-zA-Z0-9 -_\\.]+) \\(\\d+(?P\\/\\d+\\)) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Chuck - Season2 (015/164) - "2x04.par2" yEnc 40 -570 ^alt\\.binaries\\.tvseries$ /^(?P[a-zA-Z0-9 -_\\.]+) - \\[\\d+(?P\\/\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //FIRST.WAVE.NTSC.DVD.DD2.0 - [121/512] - "FIRST_WAVE_SEASON_1_DVD2.r26" - 44,33 GB - yEnc 45 -571 ^alt\\.binaries\\.tvseries$ /^\\(\\d+(?P\\/\\d+\\)) "(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //(03/19) "Damages S04E02 FR.avi" - 5,49 GB yEnc 50 -572 ^alt\\.binaries\\.u-4all$ /\\[ usenet-4all\\.info - powered by ssl\\.news -\\][-_\\s]{0,3}\\[\\d+([.,]\\d+)? [kKmMgG][bB]\\][-_\\s]{0,3}\\[\\d+\\/(?P\\d+)\\][-_\\s]{0,3}"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //-4y (PW) [ usenet-4all.info - powered by ssl.news -] [1,44 GB] [08/14] "71cc4edc6R08eb7.vol00+01.PAR2" yEnc 55 -573 ^alt\\.binaries\\.warez$ /.*[\\(\\[]\\d+\\/(?P\\d+[\\)\\]][-_ ]{0,3}("|#34;).+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4})("|#34;)(.+?)yEnc$/i 1 //-Panzer.Command.Kharkov-SKIDROW - [1/7] - "-Panzer.Command.Kharkov-SKIDROW.rar" yEnc ::: //-AssMasterpiece.12.07.09.Alexis.Monroe.XXX.1080p.x264-SEXORS - [1/7] - #34;-AssMasterpiece.12.07.09.Alexis.Monroe.XXX.1080p.x264-SEXORS.rar#34; yEnc 5 -574 ^alt\\.binaries\\.warez$ /.*"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}")(?P.+?)yEnc$/i 1 //- "JH2U0H5FIK8TO7YK3Q.part12.rar" yEnc 10 -575 ^alt\\.binaries\\.warez$ /^\\( (?P.+?) \\) - yEnc$/ 1 //( XS Video Converter Ultimate 7.7.0 Build 20121226 ) - yEnc 15 -576 ^alt\\.binaries\\.warez\\.0-day$ /.*[\\(\\[]\\d+\\/(?P\\d+[\\)\\]][-_ ]{0,3}("|#34;).+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4})("|#34;)(.+?)yEnc$/i 1 //-Panzer.Command.Kharkov-SKIDROW - [1/7] - "-Panzer.Command.Kharkov-SKIDROW.rar" yEnc ::: //-AssMasterpiece.12.07.09.Alexis.Monroe.XXX.1080p.x264-SEXORS - [1/7] - #34;-AssMasterpiece.12.07.09.Alexis.Monroe.XXX.1080p.x264-SEXORS.rar#34; yEnc 5 -577 ^alt\\.binaries\\.warez\\.0-day$ /.*"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}")(?P.+?)yEnc$/i 1 //- "JH2U0H5FIK8TO7YK3Q.part12.rar" yEnc 10 -578 ^alt\\.binaries\\.warez\\.0-day$ /^\\( (?P.+?) \\) - yEnc$/ 1 //( XS Video Converter Ultimate 7.7.0 Build 20121226 ) - yEnc 15 -579 ^alt\\.binaries\\.warez\\.0-day$ /^(?P[a-zA-Z].+) - \\[\\d+\\/(?P\\d+\\]) - ".+?" yEnc$/ 1 //BabysitterMovies.13.03.11.Babysitter.Jocelyn.Pink.XXX.HR.WMV-VSEX - [7/7] - "BabysitterMovies.13.03.11.Babysitter.Jocelyn.Pink.XXX.HR.WMV-VSEX.rar.vol15+5.par2" yEnc 20 -580 ^alt\\.binaries\\.worms$ /^(?P\\[U4A]) (?P.+?)\\[\\d+(?P\\/\\d+\\]) - ".+?" yEnc$/ 1 //[U4A] 2 Dudes and a Dream 2009 BRRip XvidHD 720p-NPW[01/36] - "2 Dudes and a Dream 2009 BRRip XvidHD 720p-NPW-Sample.avi" yEnc 5 -581 ^alt\\.binaries\\.worms$ /^\\(\\d+\\/(?P\\d+\\)) ("|#34;)(?P.+)(\\.[vol|part].+)?\\.(par2|nfo|rar|nzb)("|#34;) - \\d+[.,]\\d+ [kKmMgG][bB] - yEnc$/i 1 //(12/57) "Fright.Night.2.New.Blood.2013.UNRATED.BluRay.810p.DTS.x264-PRoDJi.nfo" - 4,81 GB - yEnc ::: //(14/20) "Jack.the.Giant.Slayer.2013.AC3.192Kbps.23fps.2ch.TR.Audio.BluRay-Demuxed.by.par2" - 173,15 MB - yEnc 10 -582 ^alt\\.binaries\\.x264$ /^"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}") \\(\\d+\\/(?P\\d+\\)) yEnc$/i 1 //"Batman-8 TDKR-Pittis AVCHD-ADD.English.dtsHDma.part013.rar" (042/197) yEnc 5 -583 ^alt\\.binaries\\.x264$ /^\\(\\d+\\/(?P\\d+\\)) "(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol\\d+\\+\\d+\\.par2"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB]( -)? yEnc$/i 1 //(001/108) "Wizards.of.Waverly.Place.720p.S04E01.by.sugarr.par2" - 5,15 GB - yEnc 10 -584 ^dk\\.binaer\\.tv$ /^(?P[a-zA-Z0-9].+? - \\[)\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //Store.Boligdroemme.S02E06.DANiS H.HDTV.x264-TVBYEN - [01/28] - "store.boligdroemme.s02e06.danis h.hdtv.x264-tvbyen.nfo" yEnc 5 -585 ^alt\\.binaries\\.fz$ #^(?PUploader\\.Presents-.+?)\\s+\\[\\d{1,3}(?P/\\d{1,3}\\]\\s*").+?"\\s+yEnc$#i 1 Uploader.Presents-Black.Sails.S02E02.Die.schwarze.Flagge.GERMAN.DUBBED.BLURAYRiP.x264-SOF [00/23]"sof-black-sails-s02e02.nzb" yEnc 10 -586 ^alt\\.binaries\\.sounds\\.(flac|lossless)$ /^.+dream-of-usenet.+[-_ ]{0,3}\\[\\d+\\/(?P\\d+\\])[-_ ]{0,3}("|#34;)(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+ (\\d+\\/\\d+) "|\\.[A-Za-z0-9]{2,4}("|#34;))[-_ ]{0,3}yEnc$/i 1 //(dream-of-usenet.info) - [01/21] - "A_Perfect_Circle-aMOTION-CD-FLAC-2004-SCORN.nfo" yEnc 5 -587 ^alt\\.binaries\\.sounds\\.flac$ /^.+www\\.EliteNZB\\.net.+[-_ ]{0,3}\\[\\d+\\/(?P\\d+\\])[-_ ]{0,3}("|#34;)(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+ (\\d+\\/\\d+) "|\\.[A-Za-z0-9]{2,4}("|#34;))[-_ ]{0,3}yEnc$/i 1 //The Elite Team Presents www.EliteNZB.net, Powered by 4UX.NL, Only The Best 4 You!!!! [01/19] - "Habariyaasubuhi_12352_TvPYrS1128.par2" yEnc 15 -588 ^alt\\.binaries\\.sounds\\.flac$ /^("|#34;)(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}("|#34;))[-_ ]{0,3}\\[\\d+\\/(?P\\d+\\]).+www\\.EliteNZB\\.net.+[-_ ]{0,3}yEnc$/i 1 //"Jinsi_12187_v807.par2" [01/13] - The Elite Team Presents www.EliteNZB.net, Powered by 4UX.NL, Only The Best 4 You!!!! yEnc 20 -589 ^alt\\.binaries\\.mp3(\\.full_albums)?$ /^JN Dutplanet.+[-_ ]{0,3}\\[\\d+\\/(?P\\d+\\])[-_ ]{0,3}("|#34;)(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+ (\\d+\\/\\d+) "|\\.[A-Za-z0-9]{2,4}("|#34;))[-_ ]{0,3}yEnc$/i 1 //JN Dutplanet.net - [02/16] - "JN Dutplanet.net Foreigner - I Want To Know What Love Is - The Ballads [2014]FLAC.part1.rar" yEnc 5 -590 (audiobooks|abooks) #^(?P.{8,}? )[\\[)]?\\d+(?P(?:/| of )\\d+[\\[)]?(?:[0-9\\WBKMG]+)?").+?"(?:[0-9\\WBKMG]+)? yEnc$#i 1 As requested Diana Gabaldon 1of 3 parts - [025/356] - "Diana Gabaldon - (Outlander 06) A Breath Of Snow And Ashes - D01.07-18.mp3" yEnc 80 -591 (audiobooks|abooks) #^(?P.{8,}? ").+?" [\\[)]?\\d+(?P/\\d+[\\[)]? yEnc)$#i 1 Dragonlance Second Generation - Dragons of Summer Flame (NMR 32 kbps) "Dragonlance Second Generation - Dragons of Summer Flame.nzb" 000/141 yEnc 85 -592 ^alt\\.binaries\\.multimedia\\.korean$ /^(?P\\[KoreanTV\\]\s.+?\\[)\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 [KoreanTV] The.Village.Achiaras.Secret.E08.151029.HDTV.XviD-WITH [2/18] - "마을.아치아라의.비밀.E08.151029.HDTV.XviD-WITH.part01.rar" yEnc 5 -593 ^korea\\.binaries\\.tv$ /^(?P\\[KoreanTV\\]\s.+?\\[)\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 [KoreanTV] The.Village.Achiaras.Secret.E08.151029.HDTV.XviD-WITH [2/18] - "마을.아치아라의.비밀.E08.151029.HDTV.XviD-WITH.part01.rar" yEnc 5 -594 ^korea\\.binaries\\.music\\.videos$ /^(?P\\[KoreanMusic\\] .+) \\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 [KoreanMusic] 151015.TWTV.MTV.Idols.of.Asia.Lovelyz [2/45] - "151015.TWTV.MTV.Idols.of.Asia.Lovelyz.part01.rar" yEnc 5 -595 ^korea\\.binaries\\.movies$ /^(?P\\[KoreanMovies\\] .+) \\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 [KoreanMovies] Gangnam.Blues.2015.720p.BluRay.x264-WiKi [2/125] - "Gangnam.Blues.2015.720p.BluRay.x264-WiKi.part001.rar" yEnc 5 -596 ^korea\\.binaries\\.tv$ /^(?Parea-11) "(?P.+?)\\.(vol\\d+\\+\\d+\\.par2|part\\d+\\.rar|par2|nzb)" \\[\\d+\\/\\d+\\] yEnc$/i 1 area-11 "Glamorous.Temptation.E01.720p.HDTV.x264-AREA11.nzb" [00/56] yEnc 10 -597 ^alt\\.binaries\\.multimedia\\.korean$ /^(?P.+?(MP3 320K|FLAC)\\[)\\d+\\/\\d+\\] - ".+" yEnc$/ 1 Davichi - Amaranth Repackage MP3 320K[01/21] - ".par2" yEnc 10 -598 ^alt\\.binaries\\.e-book\\.technical$ /^(?P(New )?tech eBooks -=?\\[?\\s?[\\w\\.-]+\\s?\\]?=?- )".+?" yEnc$/i 1 New tech eBooks -[ Springer.Toxic.Trauma.A.Basic.Clinical.Guide.2014.RETAIL.EBOOK-METHLAB ]- "ml-0435a.zip" yEnc 5 -599 ^alt\\.binaries\\.(cores|ath)$ /^(?P\\[(SERIES|MOVIES)\\]-\\[ www\\.vip-lounge\\.me \\]) \\[\\d+\\/\\d+\\] - "(?P.+?)\\.(par2|nfo|rar|part\\d+\\.rar|vol\\d+\\+\\d+\\.par2)" - \\d+\\d+ [MG]B yEnc$/i 1[SERIES]-[ www.vip-lounge.me ] [19/20] - "Wild.World.Africas.Deadly.Eden.480p.x264-mSD.vol03+4.par2" - 44342 MB yEnc 55 -600 ^alt\\.binaries\\.cores$ /^(?P.+?) - \\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 Gracepoint S01E04 Episode Four 1080p WEB-DL DD51 H 264 CtrlHD - [52/52] - "Gracepoint S01E04 Episode Four 1080p WEB-DL DD51 H 264 CtrlHD.vol511+021.par2" yEnc 80 -601 ^alt\\.binaries\\.howard-stern$ /^(?P.+?) \\[\\d+\\/\\d+\\] "(?P.+?)\\.(mp3|nzb).*?" yEnc$/ 1 Artie Lange ArtieQuitter Podcast [2/9] "ArtieQuiterPodcast_2015-11-05_161_CF_128k.mp3.par2" yEnc 5 -602 ^alt\\.binaries\\.howard-stern$ /^(?P.+?) - File \\d+ of \\d+ - yEnc "(?P.+?).mp3" \\d+ bytes$/ 1 Howard Stern 11.04.2015 CF 32K 57.7MB + WUS - File 1 of 1 - yEnc "Howard Stern 11.04.15 (Alanis Morissette Visits).mp3" 60596352 bytes 10 -603 ^alt\\.binaries\\.howard-stern$ /^(?P.+?) \\d (?P\\d+kbps) - \\[\\d+\\/\\d+\\] - "(?P.+?)Part_\\d+\\.(mp3|nzb).*?" yEnc$/ 1 Howard Stern Show Oct 19 2015 Mon Hour 6 96kbps - [1/1] - "Stern-2015_10_19-96k-Part_06.mp3" yEnc 15 diff --git a/resources/db/schema/data/10-content.tsv b/resources/db/schema/data/10-content.tsv deleted file mode 100755 index 628136508..000000000 --- a/resources/db/schema/data/10-content.tsv +++ /dev/null @@ -1,4 +0,0 @@ -id, title, url, body, metadescription, metakeywords, contenttype, showinmenu, status, ordinal, role -1 Welcome to NNTmux. NULL

Since NNTmux is a fork of newznab, the API is compatible with sonarr, sickbeard, couchpotato, etc...

"" "" 3 0 1 0 0 -2 example content /great/seo/content/page/

this is an example content page

"" "" 1 2 1 1 0 -3 another example /another/great/seo/content/page/

this is another example content page

"" "" 1 2 1 0 0 diff --git a/resources/db/schema/data/10-forumpost.tsv b/resources/db/schema/data/10-forumpost.tsv deleted file mode 100755 index 54eef157f..000000000 --- a/resources/db/schema/data/10-forumpost.tsv +++ /dev/null @@ -1,2 +0,0 @@ -forumid, parentid, users_id, subject, message, locked, sticky, replies -1 0 1 Welcome to NNTmux! Feel free to leave a message. 0 0 0 diff --git a/resources/db/schema/data/10-genres.tsv b/resources/db/schema/data/10-genres.tsv deleted file mode 100755 index d5fea0ce3..000000000 --- a/resources/db/schema/data/10-genres.tsv +++ /dev/null @@ -1,150 +0,0 @@ -title, type -Blues 3000 -Classic Rock 3000 -Country 3000 -Dance 3000 -Disco 3000 -Funk 3000 -Grunge 3000 -Hip-Hop 3000 -Jazz 3000 -Metal 3000 -New Age 3000 -Oldies 3000 -Other 3000 -Pop 3000 -R&B 3000 -Rap 3000 -Reggae 3000 -Rock 3000 -Techno 3000 -Industrial 3000 -Alternative 3000 -Ska 3000 -Death Metal 3000 -Pranks 3000 -Soundtrack 3000 -Euro-Techno 3000 -Ambient 3000 -Trip-Hop 3000 -Vocal 3000 -Jazz+Funk 3000 -Fusion 3000 -Trance 3000 -Classical 3000 -Instrumental 3000 -Acid 3000 -House 3000 -Game 3000 -Sound Clip 3000 -Gospel 3000 -Noise 3000 -Alternative Rock 3000 -Bass 3000 -Soul 3000 -Punk 3000 -Space 3000 -Meditative 3000 -Instrumental Pop 3000 -Instrumental Rock 3000 -Ethnic 3000 -Gothic 3000 -Darkwave 3000 -Techno-Industrial 3000 -Electronic 3000 -Pop-Folk 3000 -Eurodance 3000 -Dream 3000 -Southern Rock 3000 -Comedy 3000 -Cult 3000 -Gangsta 3000 -Top 40 3000 -Christian Rap 3000 -Pop/Funk 3000 -Jungle 3000 -Native US 3000 -Cabaret 3000 -New Wave 3000 -Psychadelic 3000 -Rave 3000 -Showtunes 3000 -Trailer 3000 -Lo-Fi 3000 -Tribal 3000 -Acid Punk 3000 -Acid Jazz 3000 -Polka 3000 -Retro 3000 -Musical 3000 -Rock & Roll 3000 -Hard Rock 3000 -Folk 3000 -Folk-Rock 3000 -National Folk 3000 -Swing 3000 -Fast Fusion 3000 -Bebob 3000 -Latin 3000 -Revival 3000 -Celtic 3000 -Bluegrass 3000 -Avantgarde 3000 -Gothic Rock 3000 -Progressive Rock 3000 -Psychedelic Rock 3000 -Symphonic Rock 3000 -Slow Rock 3000 -Big Band 3000 -Chorus 3000 -Easy Listening 3000 -Acoustic 3000 -Humour 3000 -Speech 3000 -Chanson 3000 -Opera 3000 -Chamber Music 3000 -Sonata 3000 -Symphony 3000 -Booty Bass 3000 -Primus 3000 -Porn Groove 3000 -Satire 3000 -Slow Jam 3000 -Club 3000 -Tango 3000 -Samba 3000 -Folklore 3000 -Ballad 3000 -Power Ballad 3000 -Rhytmic Soul 3000 -Freestyle 3000 -Duet 3000 -Punk Rock 3000 -Drum Solo 3000 -Acapella 3000 -Euro-House 3000 -Dance Hall 3000 -Goa 3000 -Drum & Bass 3000 -Club-House 3000 -Hardcore 3000 -Terror 3000 -Indie 3000 -BritPop 3000 -Negerpunk 3000 -Polsk Punk 3000 -Beat 3000 -Christian Gangsta 3000 -Heavy Metal 3000 -Black Metal 3000 -Crossover 3000 -Contemporary C 3000 -Christian Rock 3000 -Merengue 3000 -Salsa 3000 -Thrash Metal 3000 -Anime 3000 -JPop 3000 -SynthPop 3000 -Electronica 3000 diff --git a/resources/db/schema/data/10-groups.tsv b/resources/db/schema/data/10-groups.tsv deleted file mode 100755 index acc3a649f..000000000 --- a/resources/db/schema/data/10-groups.tsv +++ /dev/null @@ -1,204 +0,0 @@ -id, name, description, minfilestoformrelease, minsizetoformrelease -1 alt.binaries.0day.stuffz This group contains mostly 0day software. 2 \N -2 alt.binaries.anime This group contains mostly Anime Television. 5 268435456 -3 alt.binaries.astronomy This group contains mostly movies. 10 \N -4 alt.binaries.ath This group contains a variety of Music. Some Foreign. 8 \N -5 alt.binaries.barbarella This group contains a variety of German content. \N \N -6 alt.binaries.audio.warez There is some old stuff in here, but this group is pretty much dead. \N \N -7 alt.binaries.b4e This group contains 0day and has some foreign. \N \N -8 alt.binaries.big This group contains XVid Movies. Mostly Foreign. \N \N -9 alt.binaries.bloaf This group contains a variety. Mostly Foreign. \N \N -10 alt.binaries.blu-ray This group contains blu-ray movies. \N \N -11 alt.binaries.boneless This group contains XVid and X264 Movies. Some Foreign. \N \N -12 alt.binaries.british.drama This group contains British TV shows. 10 \N -13 alt.binaries.cartoons.french This group contains French cartoons. \N \N -14 alt.binaries.cats This group contains mostly TV. \N \N -15 alt.binaries.cd.image.linux This group contains Linux distributions. \N \N -16 alt.binaries.cd.image This group contains PC-ISO. 4 \N -17 alt.binaries.cd.lossless This group contains a variety of lossless Music. \N \N -18 alt.binaries.chello This group contains mostly TV. \N \N -19 alt.binaries.classic.tv.shows This group contains Classic TV and Movies. \N \N -20 alt.binaries.comics.dcp This group contains Comic Books \N \N -21 alt.binaries.comp This group contains Warez. Mostly Foreign. \N \N -22 alt.binaries.console.ps3 This group contains PS3 Games. \N \N -23 alt.binaries.cores This group contains a variety including Nintendo DS. Lots of Foreign. \N \N -24 alt.binaries.country.mp3 This group contains Country Music. 5 \N -25 alt.binaries.dc This group contains XVid and X264 Movies and TV. Mostly Foreign. \N \N -26 alt.binaries.dgma This group contains XVid Movies. Mostly Foreign. \N \N -27 alt.binaries.divx.french This group contains French XVid Movies. \N \N -28 alt.binaries.documentaries This group contains Documentaries TV and Movies. 5 \N -29 alt.binaries.documentaries.french This group contains French Documentaries TV and Movies. 5 \N -30 alt.binaries.downunder This group contains mostly TV. \N \N -31 alt.binaries.dvd This group contains DVD Movies. \N \N -32 alt.binaries.dvd.movies This group contains DVDR Movies. \N \N -33 alt.binaries.dvdr This group contains DVD Movies. \N \N -34 alt.binaries.dvd-r This group contains DVD Movies. \N \N -35 alt.binaries.e-book.flood This group contains E-Books. \N \N -36 alt.binaries.e-book.technical This group contains E-Books. \N \N -37 alt.binaries.e-book This group contains E-Books. \N \N -38 alt.binaries.ebook This group contains Ebook's. \N \N -39 alt.binaries.erotica.divx This group contains XXX. \N \N -40 alt.binaries.erotica This group contains XXX. 10 \N -41 alt.binaries.etc This group contains a variety of items. 10 \N -42 alt.binaries.font This group contains mostly TV. \N \N -43 alt.binaries.french-tv This group contains French TV. \N \N -44 alt.binaries.frogs This group contains a variety. \N \N -45 alt.binaries.ftn This group contains a variety of Music and TV. \N \N -46 alt.binaries.games.nintendods This group contains Nintendo DS Games 5 \N -47 alt.binaries.games This group contains PC and Console Games. 5 \N -48 alt.binaries.games.wii This group contains Nintendo WII Games, WII-Ware, and VC. 5 \N -49 alt.binaries.games.xbox360 This group contains XBOX 360 Games and DLC. 4 \N -50 alt.binaries.games.xbox This group contains original XBOX Games. 5 \N -51 alt.binaries.ghosts This group contains XVid TV and Movies. Mostly Foreign. \N \N -52 alt.binaries.hdtv This group contains mostly HDTV 1080i rips. 5 \N -53 alt.binaries.hdtv.german This group contains German HDTV. \N \N -54 alt.binaries.hdtv.x264 This group contains X264 Movies and HDTV. 5 \N -55 alt.binaries.highspeed This group contains XVid Movies. Mostly Foreign. \N \N -56 alt.binaries.hou This group contains a variety of content. Mostly Foreign. \N \N -57 alt.binaries.ijsklontje This group contains XXX. \N \N -58 alt.binaries.inner-sanctum This group contains PC and Music. 10 \N -59 alt.binaries.illuminaten This group contains mostly German. \N \N -60 alt.binaries.ipod.videos This group contains Mobile TV and Movies. \N \N -61 alt.binaries.linux.iso This group contains Linux distributions. 5 100 -62 alt.binaries.lou This group contains mostly german TV. \N \N -63 alt.binaries.mac This group contains MAC/OSX Software. \N \N -64 alt.binaries.mac.applications This group contains MAC/OSX Software. \N \N -65 alt.binaries.milo This group contains mostly TV, some german. \N \N -66 alt.binaries.misc This group contains a variety of items. \N \N -67 alt.binaries.mojo This group contains mostly TV. \N \N -68 alt.binaries.mma This group contains MMA/TNA Sport TV. \N \N -69 alt.binaries.mom This group contains a variety. Mostly Foreign. \N \N -70 alt.binaries.moovee This group contains XVid and X264 Movies. \N \N -71 alt.binaries.movies.divx This group contains XVid Movies 5 \N -72 alt.binaries.movies.erotica This group contains XXX \N \N -73 alt.binaries.movies.french This group contains French Movies. \N \N -74 alt.binaries.movies This group contains an assortment of Movies. 10 \N -75 alt.binaries.movies.xvid This group contains XVid Movies. \N \N -76 alt.binaries.mp3.audiobooks This group contains Audio Books. \N \N -77 alt.binaries.mp3.bootlegs This group contains Bootleg Music. \N \N -78 alt.binaries.mp3.full_albums This group contains a variety of Music. \N \N -79 alt.binaries.mp3 This group contains a variety of Music. 11 \N -80 alt.binaries.mpeg.video.music This group contains a variety of Music Videos. \N \N -81 alt.binaries.multimedia.anime.highspeed This group contains Anime Television. \N \N -82 alt.binaries.multimedia.anime.repost This group contains Anime Television. \N \N -83 alt.binaries.multimedia.anime This group contains Anime TV and Movies. \N \N -84 alt.binaries.multimedia.cartoons This group contains Cartoon TV and Movies. \N \N -85 alt.binaries.multimedia.classic-films This group contains Classic TV and Movies. \N \N -86 alt.binaries.multimedia.comedy.british This group contains British Comedy TV and Movies. \N \N -87 alt.binaries.multimedia.disney This group contains Disney TV and Movies. \N \N -88 alt.binaries.multimedia.documentaries This group contains Documentary Movies and TV. \N \N -89 alt.binaries.multimedia.erotica This group contains XXX. \N \N -90 alt.binaries.multimedia.erotica.amateur This group contains XXX. \N \N -91 alt.binaries.multimedia.scifi This group contains science-fiction TV and movies. \N \N -92 alt.binaries.multimedia.scifi-and-fantasy This group contains science-fiction and fantasy TV and movies. \N \N -93 alt.binaries.multimedia.sitcoms This group contains Sitcom TV. \N \N -94 alt.binaries.multimedia.sports This group contains Sports TV and Movies. \N \N -95 alt.binaries.multimedia This group contains TV, Movies, and Music. \N \N -96 alt.binaries.multimedia.tv This group contains XVid and X264 TV. \N \N -97 alt.binaries.multimedia.vintage-film This group contains Vintage Movies pre 1960. \N \N -98 alt.binaries.multimedia.vintage-film.post-1960 This group contains Vintage Movies post 1960. \N \N -99 alt.binaries.music.flac This group contains a variety of lossless Music. \N \N -100 alt.binaries.music.opera This group contains Opera Music. \N \N -101 alt.binaries.nintendo.ds This group contains Nintendo DS Games. \N \N -102 alt.binaries.nospam.cheerleaders This group contains various. \N \N -103 alt.binaries.pictures.comics.complete This group contains comics. \N \N -104 alt.binaries.pictures.comics.dcp This group contains Comic Books. \N \N -105 alt.binaries.pictures.comics.reposts This group contains Comic Books. \N \N -106 alt.binaries.pictures.comics.repost This group contains Comic Books. \N \N -107 alt.binaries.pro-wrestling This group contains WWE Sport TV. \N \N -108 alt.binaries.scary.exe.files This group contains XVid and X264 Movies. \N \N -109 alt.binaries.series.tv.divx.french This group contains French DIVX TV shows. \N \N -110 alt.binaries.sony.psp This group contains PSP Games. \N \N -111 alt.binaries.sound.audiobooks This group contains Audiobooks. \N \N -112 alt.binaries.sound.mp3 This group contains a variety of Music. \N \N -113 alt.binaries.sounds.1960s.mp3 This group contains Music from the 1960's. \N \N -114 alt.binaries.sounds.1970s.mp3 This group contains Music from the 1970's. \N \N -115 alt.binaries.sounds.audiobooks.repost This group contains Audiobooks. \N \N -116 alt.binaries.sounds.country.mp3 5 \N -117 alt.binaries.sounds.flac This group contains lossless music. 5 \N -118 alt.binaries.sounds.flac.jazz This group contains lossless Jazz Music. 5 \N -119 alt.binaries.sounds.jpop This group contains mostly Jpop music. \N \N -120 alt.binaries.sounds.lossless.1960s This group contains lossless 1960's Music. 5 \N -121 alt.binaries.sounds.lossless.classical This group contains lossless Classical Music. 5 \N -122 alt.binaries.sounds.lossless.country This group contains lossless Country Music. 5 \N -123 alt.binaries.sounds.lossless This group contains a variety of Lossless Music. 5 \N -124 alt.binaries.sounds.mp3.1950s This group contains Music from the 1950's. 5 \N -125 alt.binaries.sounds.mp3.1970s This group contains Music from the 1970's. 5 \N -126 alt.binaries.sounds.mp3.1980s This group contains Music from the 1980's. 5 \N -127 alt.binaries.sounds.mp3.1990s This group contains Music from the 1990's. 5 \N -128 alt.binaries.sounds.mp3.2000s This group contains Music from the 2000's. 5 \N -129 alt.binaries.sounds.mp3.acoustic This group contains Accoustic Music. 5 \N -130 alt.binaries.sounds.mp3.audiobooks This group contains Audiobooks. \N \N -131 alt.binaries.sounds.mp3.bluegrass This group contains Bluegrass Music. 5 \N -132 alt.binaries.sounds.mp3.christian This group contains Christian Music. 5 \N -133 alt.binaries.sounds.mp3.classical This group contains Classical Music. 5 \N -134 alt.binaries.sounds.mp3.comedy This group contains Comedy Audio. 5 \N -135 alt.binaries.sounds.mp3.complete_cd This group contains a variety of Music. 5 \N -136 alt.binaries.sounds.mp3.country This group contains mostly country music. \N \N -137 alt.binaries.sounds.mp3.dance This group contains Dance Music. 5 \N -138 alt.binaries.sounds.mp3.disco This group contains Disco Music. 5 \N -139 alt.binaries.sounds.mp3.emo This group contains Emo Music. 5 \N -140 alt.binaries.sounds.mp3.full_albums This group contains a variety of Music. 5 \N -141 alt.binaries.sounds.mp3.heavy-metal This group contains Heavy Metal Music. 5 \N -142 alt.binaries.sounds.mp3.jazz This group contains Jazz Music. 5 \N -143 alt.binaries.sounds.mp3.jazz.vocals This group contains Jazz Vocal Music. 5 \N -144 alt.binaries.sounds.mp3.musicals This group contains Musicals Music. 5 \N -145 alt.binaries.sounds.mp3.nospam This group contains a variety of Music. 5 \N -146 alt.binaries.sounds.mp3.opera This group contains Opera Music. 5 \N -147 alt.binaries.sounds.mp3.progressive-country This group contains Country Music. 5 \N -148 alt.binaries.sounds.mp3.rap-hiphop.full-albums This group contains Rap and Hip-Hop Music. 5 \N -149 alt.binaries.sounds.mp3.rap-hiphop This group contains Rap and Hip-Hop Music. 5 \N -150 alt.binaries.sounds.mp3.rock This group contains Rock Music. 5 \N -151 alt.binaries.sounds.mp3 This group contains a variety of Music. 5 \N -152 alt.binaries.sounds.radio.bbc This group contains BBC Radio Music \N \N -153 alt.binaries.sounds.radio.british This group contains British Radio Music. \N \N -154 alt.binaries.sounds.whitburn.pop This group contains Pop Music. \N \N -155 alt.binaries.tatu This group contains mostly French TV. \N \N -156 alt.binaries.teevee This group contains X264 and XVid TV. 10 \N -157 alt.binaries.test This group contains a variety of content. \N \N -158 alt.binaries.town This group contains XVid TV and Movies. Mostly Foreign. \N \N -159 alt.binaries.triballs This group contains various. 2 \N -160 alt.binaries.tun This group contains various. \N \N -161 alt.binaries.tvseries This group contains X264 and XVid TV. 5 \N -162 alt.binaries.tv This group contains XVid TV. 5 \N -163 alt.binaries.u-4all This group contains XVid TV and Movies. Mostly Foreign. \N \N -164 alt.binaries.u4e This group contains a variery, mostly German movies. \N \N -165 alt.binaries.ucc This group contains mostly TV. \N \N -166 alt.binaries.ufg This group contains mostly TV. \N \N -167 alt.binaries.uzenet This group contains XXX. Some Foreign. \N \N -168 alt.binaries.warez.ibm-pc.0-day This group contains PC-0Day. \N \N -169 alt.binaries.warez.quebec-hackers This group contains PC-0day. Some Foreign. \N \N -170 alt.binaries.warez.smartphone This group contains Mobile Phone Apps. \N \N -171 alt.binaries.warez This group contains PC 0DAY, PC ISO, and PC PHONE. 5 1000000 -172 alt.binaries.warez.uk.mp3 This group contains a variety of Music. \N \N -173 alt.binaries.wii This group contains Nintendo WII Games, WII-Ware, and VC. \N \N -174 alt.binaries.wmvhd This group contains WMVHD Movies. \N 40000000 -175 alt.binaries.worms I have no idea what this group contains besides a lot of U4ALL which isn't really usable. 2 \N -176 alt.binaries.x264 This group contains X264 Movies and TV. \N \N -177 alt.binaries.x This group contains a variety of content. Some Foreign. \N \N -178 alt.binaries.multimedia.erotica.anime erotica anime \N \N -179 alt.binaries.multimedia.erotica.asian erotica Asian \N \N -180 alt.binaries.mp3.audiobooks.scifi-fantasy Audiobooks \N \N -181 alt.binaries.sounds.audiobooks.scifi-fantasy Audiobooks \N \N -182 alt.binaries.mp3.abooks Audiobooks \N \N -183 alt.binaries.town.xxx XXX videos \N \N -184 alt.binaries.software Software \N \N -185 alt.binaries.nzbpirates Misc, mostly Erotica, and foreign movies \N \N -186 alt.binaries.town.cine Movies \N \N -187 alt.binaries.usenet-space-cowboys Misc, mostly German \N \N -188 alt.binaries.warez.ibm-pc.games misc, mostly games and applications \N \N -189 alt.binaries.warez.games misc, mostly games and applications \N \N -190 alt.binaries.e-book.magazines magazines, mostly english \N \N -191 alt.binaries.sounds.anime music from Anime \N \N -192 alt.binaries.pictures.erotica.anime Anime Manga, Adult \N \N -193 alt.binaries.drama.british 10 0 -194 alt.binaries.emulators.misc 0 0 -195 alt.binaries.erotica.classics 10 0 -196 alt.binaries.old.games 0 0 -197 alt.binaries.dvd.anime 3 0 -198 alt.binaries.dvd.erotica.classics 15 \N -199 alt.binaries.gamecube Added by import predb script \N \N -200 alt.binaries.games.nintendo3ds Added by import predb script \N \N -201 alt.binaries.games.wiiu Added by import predb script \N \N -202 alt.binaries.sony.psvita Added by import predb script \N \N -203 alt.binaries.fz This group contains german Movies and TV. \N \N diff --git a/resources/db/schema/data/10-menu.tsv b/resources/db/schema/data/10-menu.tsv deleted file mode 100755 index 78cb6e29d..000000000 --- a/resources/db/schema/data/10-menu.tsv +++ /dev/null @@ -1,23 +0,0 @@ -href, title, tooltip, role, ordinal, menueval -search Advanced Search Search for releases. 1 10 "" -browsegroup Groups List Browse by Group. 1 25 "" -movies Movies Browse Movies. 1 40 "" -upcoming Theatres Movies currently in theatres. 1 45 "" -series TV Series Browse TV Series. 1 50 "" -predb PreDB Browse PreDB. 1 51 "" -anime Anime Browse Anime 1 55 "" -music Music Browse Music. 1 60 "" -console Console Browse Games. 1 65 "" -books Books Browse Books. 1 67 "" -admin Admin Admin 2 70 "" -cart My Cart Your Nzb cart. 1 75 "" -myshows My Shows Your TV shows. 1 77 "" -mymovies My Movies Your Movie Wishlist. 1 78 "" -apihelp API Information on the API. 1 79 "" -rss RSS RSS Feeds. 1 80 "" -queue My Queue View Your Queue. 1 81 {if !$sabintegrated}-1{/if} -forum Forum Browse Forum. 1 85 "" -login Login Login. 0 100 "" -register Register Register. 0 110 "" -newposterwall New Releases Newest Releases Poster Wall 1 11 "" -content Contents page Administrator messages for users. 1 14 "" diff --git a/resources/db/schema/data/10-release_naming_regexes.tsv b/resources/db/schema/data/10-release_naming_regexes.tsv deleted file mode 100755 index d8b3ea8e0..000000000 --- a/resources/db/schema/data/10-release_naming_regexes.tsv +++ /dev/null @@ -1,1158 +0,0 @@ -id, group_regex, regex, status, description, ordinal -1 ^alt\\.binaries\\.teevee$ /\\[\\d+\\]-\\[.+?\\]-\\[.+?\\]-\\[ (?P.+\\.S\\d\\dE\\d\\d\\..+?) \\][- ]\\[\\d+\\/\\d+\\][ -]{0,3}"[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_()\\[\\]\\\'\\`{}-]{8,}?\\b.?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 rename these teevee releases as the requestid is for the full season ::: [169018]-[FULL]-[a.b.teevee]-[ House.of.Lies.S01E01.720p.WEB-DL.DD5.1.H.264-BS ]-[04/32] - "House.of.Lies.S01E01.The.Gods.of.Dangerous.Financial.Instruments.720p.WEB-DL.DD5.1.H.264-BS.part03.rar" yEnc 5 -2 ^alt\\.binaries\\.teevee$ /\\[\\d+\\]-\\[.+?\\]-\\[.+?\\]-\\[ .+\\.S\\d\\d\\..+? \\][- ]\\[\\d+\\/\\d+\\][ -]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_()\[\]\\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 Season only in 4th block so take filename ::: [169019]-[FULL]-[a.b.teevee]-[ House.of.Lies.S02.720p.WEB-DL.DD5.1.H.264-BS ]-[24/32] - "House.of.Lies.S02E02.When.Dinosaurs.Ruled.the.Planet.720p.WEB-DL.DD5.1.H.264-BS.vol000+01.par2" yEnc 10 -3 ^alt\\.binaries\\.teevee$ /^\\[#+\\]-\\[.+?\\]-\\[.+?\\]-\\[ (?P.+?) \\][- ]\\[\\d+\\/\\d+\\][-_\\s]{0,3}("|#34;).+?("|#34;) yEnc$/ 1 [######]-[FULL]-[#a.b.teevee@EFNet]-[ Misfits.S01.SUBPACK.DVDRip.XviD-P0W4DVD ] [1/5] - "Misfits.S01.SUBPACK.DVDRip.XviD-P0W4DVD.nfo" yEnc 15 -4 ^alt\\.binaries\\.teevee$ /^\\[#+\\]-\\[.+?\\]-\\[.+?\\]-\\[(?P.+?)\\][- ]\\[\\d+\\/\\d+\\][-_\\s]{0,3}".+?" yEnc$/ 1 [34148]-[FULL]-[#a.b.teevee@EFNet]-[Batman.The.Animated.Series.S04E01.DVDRiP.XviD-PyRo]-[00/35] "Batman.The.Animated.Series.S04E01.DVDRiP.XviD-PyRo.nzb" yEnc 20 -5 ^alt\\.binaries\\.teevee$ /^\\[#+\\]-\\[.+?\\]-\\[ (?P.+?) \\][- ]\\[\\d+\\/\\d+\\][-_\\s]{0,3}".+?" yEnc$/ 1 [38722]-[#a.b.foreign@EFNet]-[ Game.Of.Thrones.S01E01.Der.Winter.Naht.GERMAN.DL.WS.1080p.HDTV.x264-MiSFiTS ]-[01/37] - "misfits-gameofthrones1080-s01e01-sample-sample.par2" yEnc 25 -6 ^alt\\.binaries\\.teevee$ /^\\[#+\\]-\\[.+?\\]-\\[.+?\\]-\\[ (?P.+?) \\][- ]\\[\\d+\\/\\d+\\][-_\\s]{0,3}("|#34;).+?("|#34;) yEnc$/ 1 [#a.b.teevee] Parks.and.Recreation.S01E01.720p.WEB-DL.DD5.1.H.264-CtrlHD - [01/24] - "Parks.and.Recreation.S01E01.720p.WEB-DL.DD5.1.H.264-CtrlHD.nfo" yEnc 30 -7 ^alt\\.binaries\\.teevee$ /\\[#+\\]-\\[.+?\\]-\\[.+?\\]-\\[ ?(?P.+?) ?\\][- ]\\[\\d+\\/\\d+\\][-_\\s]{0,3}("|#34;).+?("|#34;) \\(\\d+\\/\\d+\\) \\(\\d+\\/\\d+$/ 1 [17319]-[FULL]-[#a.b.teevee@EFNet]-[ CSI.New.York.S05E22.720p.HDTV.X264-DIMENSION ]-[01/34] "csi.new.york.522.720p-dimension.nfo" (1/1) (1/1 35 -8 ^alt\\.binaries\\.0day\\.stuffz$ /^(?P[a-zA-Z0-9].+?) - \\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //ArcSoft.TotalMedia.Theatre.v5.0.1.87-Lz0 - [08/35] - "ArcSoft.TotalMedia.Theatre.v5.0.1.87-Lz0.vol43+09.par2" yEnc 5 -9 ^alt\\.binaries\\.0day\\.stuffz$ /^(?P[a-zA-Z0-9].+?) \\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //rld-tcavu1 [5/6] - "rld-tcavu1.rar" yEnc 10 -10 ^alt\\.binaries\\.0day\\.stuffz$ /^\\((?P.+?)\\) \\[\\d+(\\/\\d+] - ").+?" yEnc$/ 1 //(DVD Shrink.ss) [1/1] - "DVD Shrink.ss.rar" yEnc 15 -11 ^alt\\.binaries\\.0day\\.stuffz$ /^(?P[a-zA-Z0-9].+?)\\(\\d+\\/\\d+\\) - ".+?" yEnc$/ 1 //WinASO.Registry.Optimizer.4.8.0.0(1/4) - "WinASO_RO_v4.8.0.rar" yEnc 20 -12 ^alt\\.binaries\\.3d$ /^\\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //(084/113) "The Little Mermaid - 3D HSBS (1989) 1080p BluRay - Multi - P3n6u1n.part082.rar" - 10.56 GB - yEnc 5 -13 ^alt\\.binaries\\.3d$ /^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //"pandas.3d.back.to.the.wild.h-sbs.fs-3d.r22" - 1.55 GB - yEnc 10 -14 ^alt\\.binaries\\.amazing$ /^\\(\\?+\\) \\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(???) [1/1] - "Asimov, Isaac - [Foundation 01] - De Foundation_v2.rar" yEnc 5 -15 ^alt\\.binaries\\.amazing$ /^\\([\\w!.,&_ \\()\\[\\]\\'\\`-]{8,}\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(Ass Backwards (2013) WEBrip XviD AC3 (english subs)) [18/35] - "Ass Backwards (2013) WEBrip XviD AC3 (english subs).part17.rar" yEnc 10 -16 ^alt\\.binaries\\.amazing$ /^\\(Angels4Always\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(Angels4Always) [1/1] - "Vermeulen, John - De tweelingparadox.rar" yEnc 15 -17 ^alt\\.binaries\\.amazing$ /^[\\w!.,&_ \\()\\[\\]\\'\\`-]{8,}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Heaven_en_Fayth Presenteren Diana Gabaldon - Reiziger Cyclus 01 - De Reiziger[0/3] - "Diana Gabaldon - Reiziger Cyclus 01 - De Reiziger.nzb" yEnc 20 -18 ^alt\\.binaries\\.amazing$ /^www\\.wolfsteamers\\.info[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //www.wolfsteamers.info [1/6] - "Wohnen Bauen Leben - Sommer 2014.par2" - 16,46 MB yEnc 25 -19 ^alt\\.binaries\\.amazing$ /^\\w+[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //096XZFUPQ0PxH4441H14fU8V - [34/99] - "096XZFUPQ0PxH4441H14fU8V.part033.rar" yEnc 30 -20 ^alt\\.binaries\\.amazing$ /^\\w+[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")\\d+(\\/\\d+)[-_\\s]{0,3}yEnc$/ 1 //05VANmA80DckBho "05VANmA80DckBho.part07.rar"08/94 yEnc 35 -21 ^alt\\.binaries\\.amazing$ /^\\(.+the-ultimate-force\\.org\\.ua\\/\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(Slaapkop post voor http://the-ultimate-force.org.ua/) [0/7] - "Wham - I'm Your Man (1985).nzb" yEnc 40 -22 ^alt\\.binaries\\.amazing$ /^\\(\\d+\\/\\d+\\) - P2H - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}\\w+[-_\\s]{0,3}yEnc$/ 1 //(001/101) - P2H - "L62WD8P4U539A7.par2" - 4,66 GB - Z9F6KN7SXRCY845 yEnc 45 -23 ^alt\\.binaries\\.amazing$ /^\\(\\d+\\/\\d+\\)([-_ ]{0,4}(Description|FTTEAM\\.INFO))?[-_ ]{0,4}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //(001/101) "654258ItB1418pBRDNS264159.par2" - 9,74 GB - yEnc ::: //(001/105) - Description - "oH291TB0bPxf3lqm1P7QQ.par2" - 4,56 GB - yEnc ::: //(03/43) - FTTEAM.INFO - "JDSJ2J4ENASJCKR-FTTEAM.INFO.part02.rar" - 2,04 GB - yEnc 50 -24 ^alt\\.binaries\\.amazing$ /^[-_ .]{0,4}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //- - [001/242] - "C65JuogI92CwfMo2TiX59.par2" yEnc 55 -25 ^alt\\.binaries\\.amazing$ /^[-_ .]{0,4}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //- "5nivJ7V6Q2jqAR34bZ8m.part46.rar" yEnc 60 -26 ^alt\\.binaries\\.amazing$ /^[-_ .]{0,4}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //- "7UAF6LE2PDM38NB.par2" - 8,53 GB - yEnc 65 -27 ^alt\\.binaries\\.amazing$ /^[-_ ]{0,4}\\[\\d+\\/\\d+\\][-_\\s]{0,3}".+" yEnc[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //- [01/10] - "file.xyz" yEnc - [001/107] - "86u1Qr8mm56jGiW7nUPTM.par2" yEnc 70 -28 ^alt\\.binaries\\.anime$ /^\\((?P\\[.+?\\] .+?)\\) \\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //([AST] One Piece Episode 301-350 [720p]) [007/340] - "One Piece episode 301-350.part006.rar" yEnc 20 -29 ^alt\\.binaries\\.anime$ /^\\[.+?\\]\\[ (?P.+?) \\] \\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //[REPOST][ New Doraemon 2013.05.03 Episode 328 (TV Asahi) 1080i HDTV MPEG2 AAC-DoraClub.org ] [35/61] - "doraclub.org-doraemon-20130503-b8de1f8e.r32" yEnc 25 -30 ^alt\\.binaries\\.anime$ /^\\(\\d+\\/\\d+\\) - (?P.+?) - ".+?" - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/ 1 //(01/27) - Maid.Sama.Jap.dubbed.german.english.subbed - "01 Misaki ist eine Maid!.divx" - 6,44 GB - yEnc 30 -31 ^alt\\.binaries\\.anime$ /^\\[ (?P.+?) \\] \\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //[ New Doraemon 2013.06.14 Episode 334 (TV Asahi) 1080i HDTV MPEG2 AAC-DoraClub.org ] [01/60] - "doraclub.org-doraemon-20130614-fae28cec.nfo" yEnc 35 -32 ^alt\\.binaries\\.anime$ /^(?P.+? \\[Dual [aA]udio, EngSub\\] .+?) - \\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //Overman King Gainer [Dual audio, EngSub] Exiled Destiny - [002/149] - "Overman King Gainer.part001.rar" yEnc 40 -33 ^alt\\.binaries\\.(multimedia\\.|)(anime|cartoons)\\.?(highspeed|repost)?$ /^[[(]\d+\/\d+[])] - " ?(?P.+?) ?[. ](7z|avi|md5|mkv|mp4|nzb|par|vol)t?\d+.+yEnc$/ 1 //[01/17] - "[neko-raws] Niji-iro Days 02 [BD][1080p][FLAC][768CC18E]v2.par2" - 590,59 MB yEnc 5 -34 ^alt\\.binaries\\.(multimedia\\.|)(anime|cartoons)\\.?(highspeed|repost)?$ /^.+\" ?[ .-]?(?P.+?) ?[ .](7z|avi|md5|mkv|mp4|nzb|par|vol)t?\d?+.+yEnc$/ 1 //[SpaceFish] Galilei Donna - Batch [BD][720p][MP4][AAC] [1/7] - "[SpaceFish] Galilei Donna - 07 [BD][720p][AAC] mp4" yEnc 10 -35 ^alt\\.binaries\\.(multimedia\\.|)(anime|cartoons)\\.?(highspeed|repost)?$ /^.+\" ?[ .-]?(?P.+?) ?[ .](7z|avi|md5|mkv|mp4|nfo|nzb|par|vol)t?\d?+.+[[(]\d+\/\d+[])]$/ 1 //My Hero Academia Textless Opening Song 'THE DAY' (BD AVC 1080p FLAC) [6D660059] - "My Hero Academia Textless Opening Song 'THE DAY' (BD AVC 1080p FLAC) [6D660059] nfo" yEnc (01/35) 15 -36 ^alt\\.binaries\\.ath$ /^\\[\\d+\\/\\d+ (?P[a-zA-Z0-9]+ .+?)\\..+?" yEnc$/ 1 //[3/3 Karel Gott - Die Biene Maja Original MP3 Karel Gott - Die Biene Maja Original MP3.mp3.vol0+1.PAR2" yEnc 5 -37 ^alt\\.binaries\\.ath$ /^(?P[a-f0-9]{32}) - \\(\\d+\\/\\d+\\) - "[a-f0-9]{32}\\..+" yEnc$/ 1 //8b33bf5960714efbe6cfcf13dd0f618f - (01/55) - "8b33bf5960714efbe6cfcf13dd0f618f.par2" yEnc 10 -38 ^alt\\.binaries\\.ath$ /^.+Usejunkies.tk.+ \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //::: Usejunkies.tk ::: - [01/11] - "DJ Shog - DNA - HD 720p.par2" - 47,76 MB yEnc 15 -39 ^alt\\.binaries\\.ath$ /^Uploader\\.Presents-(?P.+)[\\(\\[]\\d+\\/\\d+[\\)\\]]".+" yEnc$/ 1 //Uploader.Presents-Mutter.und.Sohn.German.2013.DVDRiP.x264-XFi[01/27]"xf-mutterusohn.nfo" yEnc 20 -40 ^alt\\.binaries\\.ath$ /^.+http:\\/\\/you-need-all\\.tk.+\\[\\d+\\/\\d+\\][\\s-_]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //<->http://you-need-all.tk<-> - [28/32] - "Dirty Minded W 25 -41 ^alt\\.binaries\\.ath$ /^\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB] .+? yEnc$/ 1 //[02/21] - "Staendig Feucht.part01.rar" - 493.38 MB ....::::UR-powered by SecretUsenet.com::::.... yEnc 30 -42 ^alt\\.binaries\\.ath$ /^>+ .+?\\.info [<>+]+ .+?\\.com <+ "(?P.+?)\\s+- .*?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - .+? yEnc$/ 1 //>>> usenet4ever.info <<<+>>> secretusenet.com <<< "Weltnaturerbe USA Grand Canyon Nationalpark 2012 3D Blu-ray untouched - DarKneSS.part039.rar" - DarKneSS yEnc 35 -43 ^alt\\.binaries\\.ath$ /^(?P[a-z]+) - \\[\\d+\\/\\d+\\] - "[a-z]+\\..+?" yEnc$/ 1 //nmlsrgnb - [04/37] - "htwlngmrstdsntdnh.part03.rar" yEnc 40 -44 ^alt\\.binaries\\.ath$ /^>+Hell-of-Usenet(\\.org)?>+( -)? \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")( - \\d+[.,]\\d+ [kKmMgG][bB])? yEnc$/ 1 //>>>>>Hell-of-Usenet>>>>> - [01/33] - "Cassadaga Hier lebt der Teufel 2011 German AC3 DVDRip XViD iNTERNAL-VhV.par2" yEnc 45 -45 ^alt\\.binaries\\.ath$ /^(?P[a-z0-9]{10,}) \\(\\d+\\/\\d+\\) "[a-z0-9]{10,}\\..+?" yEnc$/ 1 //1dbo1u5ce6182436yb2eo (001/105) "1dbo1u5ce6182436yb2eo.par2" yEnc 50 -46 ^alt\\.binaries\\.ath$ /^<<<>>>kosova-shqip\\.eu<<< (?P.+?) >>>kosova-shqip.eu<<<<<< - \\(\\d+\\/\\d+\\) - ".+?" yEnc$/ 1 //<<<>>>kosova-shqip.eu<<< Deep SWG - 90s Club Megamix 2011 >>>kosova-shqip.eu<<<<<< - (2/4) - "Deep SWG - 90s Club Megamix 2011.rar" yEnc 55 -47 ^alt\\.binaries\\.ath$ /^ "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](?Pproof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") SpongeBoZZ yEnc$/ 1 // "Invader.German.2012.PAL.DVDR-MORTAL.nfo" SpongeBoZZ yEnc 60 -48 ^alt\\.binaries\\.ath$ /^([a-zA-Z0-9].+?\\s{2,}|Old Dad uppt\\s+)(?P.+?) \\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //Old Dad uppt Taffe Mädels XivD LD HDTV Rip oben Kleine Einblendug German 01/43] - "Taffe Mädels.par2" yEnc 65 -49 ^alt\\.binaries\\.ath$ /^\\(\\?+\\) (?P.+) .+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})" yEnc$/i 1 //(????) Rom.S02E09.Deus.Impeditio.Esuritori.Nullus Rom.S02E09.Deus.Impeditio.Esuritori.Nullus.avi.vol007+08.PAR2" yEnc 70 -50 ^alt\\.binaries\\.ath$ /^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //"27MZ4CXQ3AN86D95KVHB.part06.rar" - 21,61 GB - yEnc 75 -51 ^alt\\.binaries\\.ath$ /^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //"2EACM94X65NHZ37.par2" yEnc 80 -52 ^alt\\.binaries\\.ath$ /^(?P[^.]{8,})([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[- ]{0,3}yEnc$/u 1 //A7Soft ExamXML v4.37.rar yEnc 85 -53 ^alt\\.binaries\\.audiobooks$ /^(Re: )?(?P[\\w\\s]+ - )\\[\\d+\\/\\d+\\] - "(?P.+)[\\.-]([Pp]art|vol|jpg|sfv|mp3|nzb|nfo|rar).*" yEnc$/ 1 //WEB Griffin - [06/26] - "The Outlaws-Part06.mp3" yEnc ::: //Re: WEB Griffin - [18/26] - "The Outlaws.par2" yEnc 5 -54 ^alt\\.binaries\\.audiobooks$ /^(Re: )?(?P[\\w\\s]+ - )\\[\\d+\\/\\d+\\] - "(?P.+)[\\.-]([Pp]ar2).*" yEnc$/ 1 //WEB Griffin - [06/26] - "The Outlaws-Part06.mp3" yEnc ::: //Re: WEB Griffin - [18/26] - "The Outlaws.par2" yEnc 10 -55 ^alt\\.binaries\\.audiobooks$ /^\\[\\d+\\/\\d+\\] - "(?P.+)-Part\\d+\\..+" yEnc$/ 1 //[05/13] - "Into the Fire-Part03.mp3" yEnc 15 -56 ^alt\\.binaries\\.audiobooks$ /^\\[Repost.+\\]\\s+\\[\\d+\\/\\d+\\] - "(?P.+)\\.(part|vol|jpg|sfv|mp3|nzb|nfo|rar).*" yEnc$/ 1 //[Repost - Original Damaged] [35/86] - "Mark Twain - Personal Recollections of Joan of Arc Vol 1 and Vol 2 - 33 - 32 - Tinsel Trappings of Nobility.mp3" yEnc 20 -57 ^alt\\.binaries\\.audiobooks$ /^\\[Repost.+\\]\\s+\\[\\d+\\/\\d+\\] - "(?P.+)\\.(par2).*" yEnc$/ 1 //[Repost - Original Damaged] [35/86] - "Mark Twain - Personal Recollections of Joan of Arc Vol 1 and Vol 2 - 33 - 32 - Tinsel Trappings of Nobility.mp3" yEnc 25 -58 ^alt\\.binaries\\.audiobooks$ /^\\(\\?+\\) \\[\\d+\\/\\d+\\] - "(?P.+)\\.(part|vol|jpg|sfv|mp3|nzb|nfo|rar).*" yEnc$/ 1 //(????) [12/19] - "Notorious Nineteen.part10.rar" yEnc 30 -59 ^alt\\.binaries\\.audiobooks$ /^\\(\\?+\\) \\[\\d+\\/\\d+\\] - "(?P.+)\\.(par2).*" yEnc$/ 1 //(????) [12/19] - "Notorious Nineteen.part10.rar" yEnc 35 -60 ^alt\\.binaries\\.audiobooks$ /^\\(\\d+\\/\\d+\\) "(?P.+)[\\.-](part|vol|jpg|sfv|mp3|nzb|nfo|rar).*" - \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/ 1 //(08/10) "The Vampire Diaries - Kampen.vol63+15.par2" - 313,91 MB yEnc 40 -61 ^alt\\.binaries\\.audiobooks$ /^(Re: )?\\(\\d+\\/\\d+\\) "(?P.+)[\\.-](par2).*" - \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/ 1 //(01/10) "The Vampire Diaries - Raseriet.par2" - 296,93 MB yEnc 45 -62 ^alt\\.binaries\\.audiobooks$ /^(?P.+) \\[Danish.+\\] \\[\\d+\\/\\d+\\] - ".+" yEnc$/ 1 //Margaret Weis - Dragonlance Kr?niker Bind 1-6 [Danish AudioBook] [02/18] - "DL-CRON.r00" yEnc 50 -63 ^alt\\.binaries\\.audiobooks$ /^(?P[\\w\\s\\d-]+) \\d+ kbps stereo \\[\\d+\\/\\d+\\] - ".+" yEnc$/ 1 //David Baldacci - The Forgotten 128 kbps stereo [03/24] - "The Forgotten 01.m4b" yEnc 55 -64 ^alt\\.binaries\\.audiobooks$ /(?P\\w{4}\\d{4}) [\\[\\(]\\d+\\/\\d+[\\]\\)][ -]+"\\w{4}\\..+" yEnc$/ 1 //ASOS0010 [03/40] - "ASOS.r01" yEnc ::: //FFTT0010 (01/22) "FFTT.r10" yEnc 60 -65 ^alt\\.binaries\\.audiobooks$ /^(?P.+) \\[New Post\\] \\[\\d+\\/\\d+\\] ".+" yEnc$/ 1 //Christopher Moore - Practrcal Demonkeeping (1992) [New Post] [04/15] "Christopher Moore - Practical Demonkeeping 01.mp3" yEnc 65 -66 ^alt\\.binaries\\.audiobooks$ /^(?P.+) NMR \\[\\d+\\/\\d+\\] ".+" yEnc$/ 1 //Christopher Moore - Coyote Blue (1994) NMR [04/17] "Christopher Moore - Coyote Blue 01.mp3" yEnc 70 -67 ^alt\\.binaries\\.audiobooks$ /^(?P.+\\(\\d{4}\\)) \\[\\d+\\/\\d+\\] ".+" yEnc$/ 1 //Christopher Moore - Island of the Sequined Love Nun (1997) [09/19] "Christopher Moore - Island of the Sequined Love Nun 06.mp3" yEnc 75 -68 ^alt\\.binaries\\.audiobooks$ /^NR - (?P.+) - \\[\\d+\\/\\d+\\] - ".+" yEnc$/ 1 //NR - Jonathan Maberry - Extinction Machine - [26/98] - "Extinction Machine - 26-89.mp3" yEnc 80 -69 ^alt\\.binaries\\.audiobooks$ /^\\[(?P.+)\\] - \\[\\d+\\/\\d+\\] - ".+" yEnc$/ 1 //[Seizing the Enigma - David Kahn (Unabridged)(NMR)] - [06/29] - "DKSTE.part03.rar" yEnc 85 -70 ^alt\\.binaries\\.audiobooks$ /\\[\\d+\\/\\d+\\] - "(?P.+) - \\d+ -.+-.+" yEnc$/ 1 //[116/194] - "David Baldacci - SK 03 Simple Genius - 21 - SK 03 Simple Genius - 021.mp3" yEnc 90 -71 ^alt\\.binaries\\.audiobooks$ /^(?P[\\s\\w\\d-]+) \\[\\d+\\/\\d+\\][ -]+".+" yEnc$/ 1 //Michael Moss - Salt Sugar Fat - How the Food Giants Hooked Us [03/20] "Salt Sugar Fat - How the Food Giants Hooked Us 01.mp3" yEnc 95 -72 ^alt\\.binaries\\.audiobooks$ /^\\((?PTTC Audio - .+)\\) \\[\\d+\\/\\d+\\] - ".+" yEnc$/ 1 //(TTC Audio - Impossible - Physics Beyond the Edge) [01/34] - "TTC Audio - Impossible - Physics Beyond the Edge.sfv" yEnc 100 -73 ^alt\\.binaries\\.audiobooks$ /^(?PTTC Audio - .+)\\)\\s\\(.+\\[\\d+\\/\\d+\\] - ".+" yEnc$/ 1 //TTC Audio - Impossible - Physics Beyond the Edge) (proper pars) [0/8] - "(proper par2s) TTC Audio - Impossible - Physics Beyond the Edge.nzb" yEnc 105 -74 ^alt\\.binaries\\.audio\\.warez$ /^(Re: )?\\[.+?\\]-\\[\\d+\\]-\\[(?P.+?)\\]-\\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //[#nzbx.audio/EFnet]-[1681]-[MagicScore.Note.v7.084-UNION]-[02/12] - "u-msn7.r00" yEnc 5 -75 ^alt\\.binaries\\.audio\\.warez$ /^(?P[\\w.-]+) ?\\[\\d+( of |\\/)\\d+\\] ".+?" yEnc$/ 1 //MacProVideo.com.Pro.Tools8.101.Core.Pro.Tools8.TUTORiAL-DYNAMiCS [2 of 50] "dyn-mpvprtls101.sfv" yEnc ::: //Native.Instruments.Komplete.7.VSTi.RTAS.AU.DVDR.D02-DYNAMiCS[01/13] - "dyn.par2" yEnc ::: //Native.Instruments.Komplete.7.VSTi.RTAS.AU.DVDR.DYNAMiCS.NZB.ONLY [02/13] - "dyn.vol0000+001.PAR2" yEnc 10 -76 ^alt\\.binaries\\.audio\\.warez$ /^REQ : .+? ~ (?P.+?) \\[\\d+ of \\d+\\] ".+?" yEnc$/ 1 //REQ : VSL Stuff ~ Here's PreSonus Studio One 1.5.2 for OS X [16 of 22] "a-p152x.rar" yEnc 15 -77 ^alt\\.binaries\\.audio\\.warez$ /^(?P[a-zA-Z0-9].+?) - \\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //Eminem - Recovery (2010) - [1/1] - "Eminem - Recovery (2010).rar" yEnc 20 -78 ^alt\\.binaries\\.audio\\.warez$ /^\\(\\?{4}\\) \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(????) [1/1] - "Dust in the Wind - the Violin Solo.rar" yEnc 25 -79 ^alt\\.binaries\\.audio\\.warez$ /^(?P.+?) \\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //Native Instruments Battery 3 incl Library ( VST DX RTA )( windows ) Libraries [1/1] - "Native Instruments Battery 2 + 3 SERIAL KEY KEYGEN.nfo" yEnc 30 -80 ^alt\\.binaries\\.b4e$ /^"(?PB4E-vip\\d+)\\..+?" yEnc$/ 1 //"B4E-vip2851.r83" yEnc 5 -81 ^alt\\.binaries\\.b4e$ /^\\[\\d+\\/\\d+\\] - "(?P.+?) \\(.+?" yEnc$/ 1 //[02/12] - "The.Call.GERMAN.2013.DL.AC3.Dubbed.720p.BluRay.x264 (Avi-RiP ).rar" yEnc 10 -82 ^alt\\.binaries\\.b4e$ /^- "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //- "as-jew3.vol03+3.PAR2" - yEnc 15 -83 ^alt\\.binaries\\.barbarella$ /^(?P[a-zA-Z0-9].+?) - \\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //ACDSee.Video.Converter.Pro.v3.5.41.Incl.Keymaker-CORE - [1/7] - "ACDSee.Video.Converter.Pro.v3.5.41.Incl.Keymaker-CORE.par2" yEnc 5 -84 ^alt\\.binaries\\.barbarella$ /^(?P[\\w.-]+)\\s+-\\s+".+?" yEnc$/ 1 //Die.Nacht.Der.Creeps.THEATRICAL.GERMAN.1986.720p.BluRay.x264-GH - "gh-notcreepskf720.nfo" yEnc ::: //The.Fast.and.the.Furious.Tokyo.Dr 10 -85 ^alt\\.binaries\\.barbarella$ /^(\\[[A-Za-z]+\\]\\.|reup\\.)?(?P[a-zA-Z0-9].+?)([\\^<> ]+give-me-all\\.org[\\^<> ]+|[\\^<> ]+)DRM[\\^<> ]+.+? - \\(\\d+\\/\\d+\\) ".+?" - .+? yEnc$/ 1 //CorelDRAW Technical Suite X6-16.3.0.1114 x32-x64<><>DRM<><> - (10/48) "CorelDRAW Technical Suite X6-16.3.0.1114 x32-x64.part09.rar" - 2,01 GB - yEnc ::: //AnyDVD_7.1.9.3_-_HD-BR - Beta<>give-me-all.org<>DRM<><> - (1/3) "AnyDVD_7.1.9.3_-_HD-BR - Beta.par2" - 14,53 MB - yEnc ::: //Android Softarchive.net Collection Pack 27^^give-me-all.org^^^^DRM^^^^ - (01/26) "Android Softarchive.net Collection Pack 27.par2" - 1,01 GB - yEnc ::: //WIN7_ULT_SP1_x86_x64_IE10_19_05_13_TRIBAL <> give-me-all.org <> DRM <> <> PW <> - (154/155) "WIN7_ULT_SP1_x86_x64_IE10_19_05_13_TRIBAL.vol57+11.par2" - 7,03 GB - yEnc ::: //[Android].Ultimate.iOS7.Apex.Nova.Theme.v1.45 <> DRM <> - (1/3) "[Android].Ultimate.iOS7.Apex.Nova.Theme.v1.45.par2" - 21,14 MB - yEnc 15 -86 ^alt\\.binaries\\.barbarella$ /^\\(\\d+\\/\\d+\\) - .+? - "(?P.+?)( \\(\\d+\\))?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/ 1 //(004/114) - Description - "Pluralsight.net XAML Patterns (10).rar" - 532,92 MB - yEnc 20 -87 ^alt\\.binaries\\.barbarella$ /^\\(\\d+\\/\\d+\\)( -)? ".+?" - \\d+[,.]\\d+ [mMkKgG][bB] - (?P.+?) yEnc$/ 1 //(01/12) - "TransX - Living on a Video 1993.part01.rar" - 561,55 MB - TransX - Living on a Video 1993.[Lossless] Highh Quality yEnc ::: //(59/81) "1973 .Lee.Jun.Fan.DVD9.untouched.z46" - 7,29 GB - Lee.Jun.Fan.sein.Film.DVD9.untouched yEnc 25 -88 ^alt\\.binaries\\.barbarella$ /^>>> www\\.lords-of-usenet\\.org <<<.+? "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") .+? \\[\\d+\\/\\d+\\] - .+? yEnc$/ 1 //>>> www.lords-of-usenet.org <<< "Der Schuh Des Manitu.par2" DVD5 [001/158] - 4,29 GB yEnc 30 -89 ^alt\\.binaries\\.barbarella$ /^.+? (-|\\(PW\\))\\s+\\[.+? -\\] \\[\\d+[,.]\\d+ [mMkKgG][bB]\\] \\[\\d+\\/\\d+\\] "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //NEUES 4y - [@ usenet-4all.info - powered by ssl.news -] [5,58 GB] [002/120] "DovakinPack.part002.rar" yEnc ::: //NEUES 4y (PW) [@ usenet-4all.info - powered by ssl.news -] [7,05 GB] [014/152] "EngelsGleich.part014.rar" yEnc 35 -90 ^alt\\.binaries\\.barbarella$ /^([a-zA-Z0-9].+?\\s{2,}|Old Dad uppt\\s+)(?P.+?) \\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //Old Dad uppt Die Schatzinsel Teil 1+Teil2 AC3 DVD Rip German XviD Wp 01/33] - "upp11.par2" yEnc ::: //Old Dad uppt Scary Movie5 WEB RiP Line XviD German 01/24] - "Scary Movie 5.par2" yEnc 40 -91 ^alt\\.binaries\\.barbarella$ /^.+?\\s{2,}\\d+[,.]\\d+ [mMkKgG][bB]\\s{2,}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")\\s{2,}(\\d+ B|\\d+[,.]\\d+ [mMkKgG][bB]) yEnc$/ 1 //>>> 20,36 MB "Winamp.Pro.v5.70.3392.Incl.Keygen-FFF.par2" 552 B yEnc ::: //..:[DoAsYouLike]:.. 9,64 MB "Snooper 1.39.5.par2" 468 B yEnc 45 -92 ^alt\\.binaries\\.barbarella$ /^\\(.+?\\) - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(MKV - DVD - Rip - German - English - Italiano) - "CALIGULA (1982) UNCUT.sfv" yEnc 50 -93 ^alt\\.binaries\\.barbarella$ /^"(?P[a-z0-9]+)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //"sre56565ztrtzuzi8inzufft.par2" yEnc 55 -94 ^alt\\.binaries\\.big$ /^(?P[\\w.-]+) - ".+?" yEnc$/ 1 //Girls.against.Boys.2012.German.720p.BluRay.x264-ENCOUNTERS - "encounters-giagbo_720p.nfo" yEnc 5 -95 ^alt\\.binaries\\.big$ /^(?P[a-z]{3,}) - \\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //wtvrwschdhfthj - [001/246] - "dtstchhtmrrnvn.par2" yEnc ::: //oijhuiurfjvbklk - [01/18] - "tb5-3ioewr90f.par2" yEnc 10 -96 ^alt\\.binaries\\.big$ /^\\(\\d+\\/\\d+\\) - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(08/22) - "538D7B021B362A4300D1C0D84DD17E6D.r06" yEnc 15 -97 ^alt\\.binaries\\.big$ /^\\(\\?{4}\\) \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(????) [02/71] - "Lasting Weep (1969-1971).part.par2" yEnc 20 -98 ^alt\\.binaries\\.big$ /^\\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB] -(re)? yEnc$/ 1 //(01/59) "ThienSuChungQuy_II_E16.avi.001" - 1,49 GB - yEnc ::: //(058/183) "LS_HoangChui_2xdvd5.part057.rar" - 8,36 GB -re yEnc 25 -99 ^alt\\.binaries\\.big$ /^(?P\\[[a-zA-Z]+\\] .+?) - \\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //[AoU] Upload#00287 - [04/43] - "Upload-ZGT1-20130525.part03.rar" yEnc 30 -100 ^alt\\.binaries\\.big$ /^\\([a-z]+\\) \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(nate) [01/27] - "nate_light_13.05.23.par2" yEnc 35 -101 ^alt\\.binaries\\.big$ /^""(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")" yEnc$/ 1 //""Absolute Database Component for BCBuilder 4-6 MultiUser Edit 4.85.rar"" yEnc 40 -102 ^alt\\.binaries\\.big$ /^(?P[a-f0-9]{32}) - \\(\\d+\\/\\d+\\) - "[a-f0-9]{32}.+?" yEnc$/ 1 //781e1d8dccc641e8df6530edb7679a0e - (26/30) - "781e1d8dccc641e8df6530edb7679a0e.rar" yEnc 45 -103 ^alt\\.binaries\\.bloaf$ /^(?P[a-f0-9]{32}) - \\(\\d+\\/\\d+\\) - "[a-f0-9]{32}.+?" yEnc$/ 1 //36c1d5d4eaf558126c67f00be46f77b6 - (01/22) - "36c1d5d4eaf558126c67f00be46f77b6.par2" yEnc 5 -104 ^alt\\.binaries\\.bloaf$ /^\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB] .+? usenet-space.+?yEnc$/ 1 //[10/17] - "EGk13kQ1c8.part09.rar" - 372.48 MB <-> usenet-space-cowboys.info <-> powered by secretusenet.com <-> yEnc 10 -105 ^alt\\.binaries\\.bloaf$ /^\\((?P.+?)\\) - ".+?" yEnc$/ 1 //(Neu bei Bitfighter vom 23-07-2013) - "01 - Sido - Bilder Im Kopf.mp3" yEnc 15 -106 ^alt\\.binaries\\.bloaf$ /^\\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/ 1 //(2/8) "Mike.und.Molly.S01E22.Maennergespraeche.GERMAN.DL.DUBBED.720p.BluRay.x264-TVP.part1.rar" - 1023,92 MB - yEnc 20 -107 ^alt\\.binaries\\.bloaf$ /^.+? (?P-|\\(PW\\))\\s+\\[.+? -\\] \\[\\d+[,.]\\d+ [mMkKgG][bB]\\] \\[\\d+\\/\\d+\\] "([\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //4y (PW) [@ usenet-4all.info - powered by ssl.news -] [27,35 GB] [001/118] "1f8867bb6f89491793d3.part001.rar" yEnc 25 -108 ^alt\\.binaries\\.bloaf$ /^(\\[[A-Za-z]+\\]\\.)?(?P[a-zA-Z0-9].+?)([\\^<> ]+give-me-all\\.org[\\^<> ]+|[\\^<> ]+)DRM[\\^<> ]+.+? - \\(\\d+\\/\\d+\\)\\s+".+?" - .+? yEnc$/ 1 //Bennos Special Tools DVD - Die Letzte <> DRM <><> PW <> - (002/183) "Bennos Special Tools DVD - Die Letzte.nfo" - 8,28 GB - yEnc 30 -109 ^alt\\.binaries\\.bloaf$ /^\\(\\d+\\/\\d+\\) - (?P.+?) ?- ".+?" - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/ 1 //(1/9) - CyberLink.PhotoDirector.4.Ultra.4.0.3306.Multilingual - "CyberLink.PhotoDirector.4.Ultra.4.0.3306.Multilingual.par2" - 154,07 MB - yEnc ::: //(1/5) - Mac.DVDRipper.Pro.4.0.8.Mac.OS.X- "Mac.DVDRipper.Pro.4.0.8.Mac.OS.X.rar" - 24,12 MB - yEnc 35 -110 ^alt\\.binaries\\.bloaf$ /^\\[\\d+\\/\\d+ (?P.+?)\\..+?" yEnc$/ 1 //[3/3 Helene Fischer - Die Biene Maja 2013 MP3 Helene Fischer - Die Biene Maja 2013 MP3.mp3.vol0+1.PAR2" yEnc 40 -111 ^alt\\.binaries\\.bloaf$ /^Uploader\\.Presents-(?P.+)[\\(\\[]\\d+\\/\\d+[\\)\\]]".+" yEnc$/ 1 //Uploader.Presents-Mutter.und.Sohn.German.2013.DVDRiP.x264-XFi[01/27]"xf-mutterusohn.nfo" yEnc 45 -112 ^alt\\.binaries\\.blu-ray$ /^"(?P\\d+\\.MK\\.[A-Z])\\..+?" yEnc$/ 1 //"786936833607.MK.A.part086.rar" yEnc 5 -113 ^alt\\.binaries\\.blu-ray$ /^\\(\\?{4}\\) \\[\\d+\\/\\d+\\] - "(?P[a-z0-9]+)\\..+?" yEnc$/ 1 //(????) [001/107] - "260713thbldnstnsclw.par2" yEnc 10 -114 ^alt\\.binaries\\.blu-ray$ /^\\[www\\..+?\\]-\\[(?P.+?)\\]-\\[\\d+\\/\\d+\\] ".+?" - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/ 1 //[www.allyourbasearebelongtous.pw]-[The Place Beyond the Pines 2012 1080p US Blu-ray AVC DTS-HD MA 5.1-HDWinG]-[03/97] "tt1817273-us-hdwing-bd.r00" - 46.51 GB - yEnc 15 -115 ^alt\\.binaries\\.blu-ray$ /^\\(\\d+\\/\\d+\\)(\\s+ -)? "(?P[a-zA-Z0-9]+?)\\d*\\..+?" - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/ 1 //(01/71) - "EwRQCtU4BnaeXmT48hbg7bCn.par2" - 54,15 GB - yEnc ::: //(63/63) "dfbgfdgtghtghthgGPGEIBPBrwg34t05.rev" - 10.67 GB - yEnc 20 -116 ^alt\\.binaries\\.blu-ray$ /^\\[\\d+\\/\\d+\\] - "(?P[a-zA-Z0-9]+)\\..+?" yEnc$/ 1 //[01/67] - "O3tk4u681gd767Y.par2" yEnc 25 -117 ^alt\\.binaries\\.blu-ray$ /^(?P[a-z0-9]+) \\[.+?\\] \\[.+?\\] \\[\\d+[,.]\\d+ [mMkKgG][bB]\\] \\[\\d+\\/\\d+\\] ".+?" yEnc$/ 1 //209a212675ba31ca24a8 [usenet-4all.info] [powered by ssl-news] [21,59 GB] [002/223] "209a212675ba31ca24a8.part001.rar" yEnc 30 -118 ^alt\\.binaries\\.blu-ray$ /^(?P[A-Z0-9]+) - "[a-z0-9]+\\..+?" yEnc$/ 1 //TIS97CC - "tis97cc.par2" yEnc 35 -119 ^alt\\.binaries\\.blu-ray$ /^AsianDVDClub\\.org - (?P.+) \\[\\d+\\/\\d+\\] - ".+" yEnc$/ 1 //AsianDVDClub.org - Sengoku Basara: Season 2 (2010) AVC 1080p BD50+BD25 - Disc 1 of 2 [001/112] - "adc-71029a.nfo" yEnc 40 -120 ^alt\\.binaries\\.blu-ray$ /^AsianDVDClub\\.org - (?P.+) ".+" yEnc$/ 1 //AsianDVDClub.org - Laputa: Castle in the Sky (1986) AVC 1080p BD50 - File 001 of 113: "adc-laputa.nfo" yEnc 45 -121 ^alt\\.binaries\\.blu-ray$ /^[\\w-\\. ]+[ _-]{0,3}[\\(\\[]\\d+\\/\\d+[\\)\\]][ _-]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //THE_PAC 50 -122 ^alt\\.binaries\\.blu-ray$ /^[\\w-\\. ]+[ _-]{0,3}[\\(\\[]\\d+\\/\\d+[\\)\\]][ _-]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //LOST SEASON1 DISC4 REENCODED BD25 DJMASTURBEAT (151/154) "LOST SEASON1 DISC4 BD25 DJMASTURBEAT.vol3312+131.par2" - 26.91 GB - yEnc 55 -123 ^alt\\.binaries\\.boneless$ /^(?P[a-zA-Z0-9]+)\\[\\d+\\/\\d+\\] - "[a-zA-Z0-9]+\\..+?" yEnc$/ 1 //4Etmo7uBeuTW[047/106] - "006dEbPcea29U6K.part046.rar" yEnc 5 -124 ^alt\\.binaries\\.boneless$ /^\\(PC-ISO\\)[-_\\s]{0,3}\\( (?P[\\w.,& \\()\\[\\]\\'\\`-]{8,}?\\b) \\) \\[\\d+\\/\\d+\\][-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(PC-ISO) ( Trials.Fusion.Riders.of.the.Rustlands-SKIDROW ) [10/40] - "sr-tfrotr.part01.rar" yEnc 10 -125 ^alt\\.binaries\\.boneless$ /^\\( (?P[\\w. -]{8,}) \\)[-_\\s]{0,3}\\[\\d+\\/(\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //( Overlord II RELOADED ) - [013/112] - "rld-olii.part001.rar" yEnc 15 -126 ^alt\\.binaries\\.boneless$ /^\\(\\d+\\/\\d+\\)\\s+(- )?"(?P[a-zA-Z0-9]+)\\..+?" - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/ 1 //(68/89) "dz1R2wT8hH1iQEA28gRvm.part67.rar" - 7,91 GB - yEnc ::: //(01/14) - "JrjCY4pUjQ9qUqQ7jx6k2VLF.par2" - 4,39 GB - yEnc 20 -127 ^alt\\.binaries\\.boneless$ /^\\((?P\\d+)\\) \\[\\d+\\/\\d+\\] - "\\d+\\..+?" yEnc$/ 1 //(110320152518519) [22/78] - "110320152518519.part21.rar" yEnc 25 -128 ^alt\\.binaries\\.boneless$ /^(?P[a-zA-Z0-9]+) - \\[\\d+\\/\\d+\\] - "[a-zA-Z0-9]+\\..+?" yEnc$/ 1 //1VSXrAZPD - [123/177] - "1VSXrAZPD.part122.rar" yEnc 30 -129 ^alt\\.binaries\\.boneless$ /^\\( (?P.+?) \\)\\s+\\( .+?\\) \\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //( Peter Gabriel Albums 24x +17 Singles = 71x cd By Dready Niek ) ( ** By Dready Niek ** ) [113/178] - "Peter Gabriel Albums 24x +17 Singles = 71CDs By Dready Niek (1977-2010).part112.rar" yEnc 35 -130 ^alt\\.binaries\\.boneless$ /^(?P[A-Za-z0-9].+? \\((19|20)\\d\\d\\)) "\\d{2}\\. .+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Tarja - Colours In The Dark (2013) "00. Tarja-Colours In The Dark.m3u" yEnc 40 -131 ^alt\\.binaries\\.boneless$ /^"(?P[a-zA-Z0-9]+)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\(\\d+\\/\\d+\\) - yEnc$/ 1 //"BB636.part14.rar" - (15/39) - yEnc 45 -132 ^alt\\.binaries\\.boneless$ /^(?P[-a-zA-Z0-9 ]+) \\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //Lutheria - FC Twente TV Special - Ze wilde op voetbal [16/49] - "Lutheria - FC Twente TV Special - Ze wilde op voetbal.part16.rar" yEnc 50 -133 ^alt\\.binaries\\.boneless$ /^(?P[-a-zA-Z0-9 ]+) - ".+?" yEnc$/ 1 //Pee Mak Prakanong - 2013 - Thailand - ENG Subs - "Pee Mak Prakanong.2013.part22.rar" yEnc 55 -134 ^alt\\.binaries\\.boneless$ /^\\((\\?{4}|[a-zA-Z]+)\\) \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(????) [011/161] - "flynns-image-redux.part010.rar" yEnc ::: //(Dgpc) [000/110] - "Teen Wolf - Seizoen.3 - Dvd.2 (NLsub).nzb" yEnc 60 -135 ^alt\\.binaries\\.boneless$ /^\\("(?P[a-z0-9A-Z]+).+?" - \\d+[,.]\\d+ [mMkKgG][bB] -\\) ".+?" - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/ 1 //("Massaladvd5Kilusadisc4S1.par2" - 4,55 GB -) "Massaladvd5Kilusadisc4S1.par2" - 4,55 GB - yEnc 65 -136 ^alt\\.binaries\\.boneless$ /^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //"par.4kW9beE.1.vol122+21.par2" yEnc 70 -137 ^alt\\.binaries\\.boneless$ /^.+?\\.(info|org)>+ - \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //brothers-of-usenet.info/.net <<>> - [01/19] - "Age.of.Dinosaurs.German.AC3.HDRip.x264-FuN.par2" yEnc ::: //>>>>>Hell-of-Usenet.org>>>>> - [01/35] - "Female.Agents.German.2008.AC3.DVDRip.XviD.iNTERNAL-VideoStar.par2" yEnc 75 -138 ^alt\\.binaries\\.boneless$ /^\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[010/101] - "Bf56a8aR-20743f8D-Vf7a11fD-d7c6c0.part09.rar" yEnc ::: //[1/9] - "fdbvgdfbdfb.part.par2" yEnc 80 -139 ^alt\\.binaries\\.boneless$ /^\\[[A-Z]+\\] - \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[LB] - [063/112] - "RVL-GISSFBD.part063.rar" yEnc 85 -140 ^alt\\.binaries\\.boneless$ /^!!www\\.usenet4all\\.eu!![ _-]{0,3}(?P.+)\\[\\d+\\/\\d+\\][ _-]{0,3}("|#34;).+("|#34;) yEnc$/i 1 //!!www.usenet4all.eu!! - Acceptance.2009.COMPLETE.NTSC.DVDR-D0PE[001/100] - #34;d0pe-a.nfo#34; yEnc 90 -141 ^alt\\.binaries\\.boneless$ /^(?P[A-Za-z0-9][a-zA-Z0-9.-]{6,})\\s+- ".+" yEnc$/ 1 //NCIS.S11E03.HDTV.x264-LOL - "NCIS.S11E03.HDTV.x264-LOL.part.par2" yEnc 95 -142 ^alt\\.binaries\\.boneless$ /^place2home\\.net - (?P.*?) - (\\[\\d+\\/\\d+\\] - )?".+?" yEnc$/i 1 //place2home.net - Call.of.Duty.Ghosts.XBOX360-iMARS - [095/101] - "imars-codghosts-360b.vol049+33.par2" yEnc ::: //Place2home.net - Diablo_III_USA_RF_XBOX360-PROTOCOL - "d3-ptc.r34" yEnc 100 -143 ^alt\\.binaries\\.boneless$ /^(REPOST: )?\\[scnzbefnet\\]\\[(\\d+)\\] (?P.+?) \\[\\d+\\/(\\d+\\]) - ".+?" yEnc$/ 1 //[scnzbefnet][500934] Super.Fun.Night.S01E09.720p.HDTV.X264-DIMENSION [1/19] - "bieber.109.720p-dimension.sfv" yEnc ::: //REPOST: [scnzbefnet][500025] Major.Crimes.S02E13.720p.HDTV.x264-IMMERSE [16/33] - "major.crimes.s02e13.720p.hdtv.x264-immerse.r24" yEnc 105 -144 ^alt\\.binaries\\.boneless$ /^\\[scnzbefnet\\] (?P.+?) \\[\\d+\\/(\\d+\\]) - ".+?" yEnc$/ 1 //[scnzbefnet] Murdoch.Mysteries.S07E09.HDTV.x264-KILLERS [1/20] - "murdoch.mysteries.s07e09.hdtv.x264-killers.r13" yEnc 110 -145 ^alt\\.binaries\\.boneless$ /^(\\((?P.+?)\\) \\[)\\d+(\\/\\d+] - ").+?" yEnc$/ 1 //(Ancient.Aliens.S03E05.Aliens.and.Mysterious.Rituals.720p.HDTV.x264.AC3.2Ch.REPOST) [41/42] - "Ancient.Aliens.S03E05.Aliens.and.Mysterious.Rituals.720p.HDTV.x264.AC3.2Ch.REPOST.vol071+66.PAR2" yEnc 115 -146 ^alt\\.binaries\\.boneless$ /^\\(\\d+\\/\\d+\\) - \\[Lords-of-Usenet\\] <> presents (?P.+) -".+" - .+ yEnc$/i 1 //(01/48) - [Lords-of-Usenet] <> presents Sons.of.Anarchy.S02E03.Unten.am.Fluss.GERMAN.DUBBED.720p.BLURAY.x264-ZZGtv -"zzgtv-soa-s02e03.par2" - 1,84 GB 120 -147 ^alt\\.binaries\\.boneless$ /^Doobz (?P[a-zA-z-_]+) \\[\\d+\\/(\\d+\\]) - ".+([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Doobz Europa_Universalis_IV_Conquest_of_Paradise-FLT [10/54] - "flt-eucp.001" yEnc 125 -148 ^alt\\.binaries\\.boneless$ /^\\(aangemeld bij usenet collector\\) \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(aangemeld bij usenet collector) [001/125] - "Northern_Exposure_Season_1_dvd_1.par2" yEnc 130 -149 ^alt\\.binaries\\.boneless$ /^\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB] .+usenet-space-cowboys\\.info.+ yEnc$/ 1 //[15/16] - "Person.of.Interest.S03E09.480p.HDTV.x264-mSD.vol0+1.par2" - 177,28 MB <-> usenet-space-cowboys.info <-> powered by secretusenet.com <-> yEnc 135 -150 ^alt\\.binaries\\.boneless$ /^brothers-of-usenet\\.info.+ - \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //brothers-of-usenet.info&net-empfehlen-ssl-news.info Black Mirror s01e01 - Der wille des volkes - [09/15] - "Black Mirror - S01E01 - Der Wille des Volkes.vol00+01.par2" yEnc 140 -151 ^alt\\.binaries\\.boneless$ /^\\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB] .+yEnc$/ 1 //(024/264) "Enf.S04E02.G.D.H.X-M.vol51+46.PAR2" - 8,27 GB -Enf.S04.G.D.H.X yEnc 145 -152 ^alt\\.binaries\\.boneless$ /.*"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //- "Auction Hunters S04E04.HDTV.x264-StarryNights1.nzb" yEnc 150 -153 ^alt\\.binaries\\.british\\.drama$ /^(?P[a-zA-Z0-9].+? \\[XviD\\]) \\[\\d\\/\\d+\\] - ".+?" yEnc$/ 1 //Coronation Street 03.05.2012 [XviD] [01/23] - "coronation.street.03.05.12.[ws.pdtv].par2" yEnc ::: //Coronation Street 04.05.2012 - Part 1 [XviD] [01/23] - "coronation.street.04.05.12.part.1.[ws.pdtv].par2" yEnc 5 -154 ^alt\\.binaries\\.british\\.drama$ /^(?P[a-zA-Z0-9]+ .+? (S\\d+)?E\\d+-\\d\\d) \\[\\d+\\/\\d+\\] - "\\d(\\d |\\.).+?" yEnc$/ 1 //The Prisoner E06-09 [001/152] - "06 The General.mkv.001" yEnc ::: //Danger Man S2E05-08 [075/149] - "7.The colonel's daughter.avi.001" yEnc 10 -155 ^alt\\.binaries\\.british\\.drama$ /^.+?[-_\\s]{0,3}\\d+[xX]\\d+[-_\\s]{0,3}.+?\\[\\d+\\/\\d+\\][-_\\s]{0,3}.+?"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Wizards Vs Aliens - 1x06 - Rebel Magic, Part Two [XviD][00/27] - "wizards.vs.aliens.106.rebel.magic.part.two.[ws.pdtv].nzb" yEnc 15 -156 ^alt\\.binaries\\.british\\.drama$ /^[a-zA-Z0-9-\\.]+ - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Vera.3x03.Young.Gods.720p.HDTV.x264-FoV - "vera.3x03.young_gods.720p_hdtv_x264-fov.r00" yEnc 20 -157 ^alt\\.binaries\\.british\\.drama$ /^(?P.+ \\d+x\\d+.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) yEnc$/ 1 //Heartbeat 9x23 Wise Guys.avi.015 yEnc 25 -158 ^alt\\.binaries\\.british\\.drama$ /^(?P.+ S\\d+E\\d+)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"([\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Minder S10E10 [00/52] - "S10E10.nzb" yEnc 30 -159 ^alt\\.binaries\\.british\\.drama$ /^.+File \\d+ of \\d+ - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Rosemary & Thyme.106..The Tree of Death....Read txt file for more info about this posting - File 03 of 51 - "Rosemary & Thyme.106.The Tree of Death.part01.rar" yEnc 35 -160 ^alt\\.binaries\\.british\\.drama$ /^.+\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //The.Tudors.S01E04.2007.720p[33/57] - "The.Tudors.S01E04.2007.720p.part31.rar" yEnc 40 -161 ^alt\\.binaries\\.british\\.drama$ /^(?P[\\w. &\\()-]{8,}?\\b)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) yEnc$/ 1 //Happy_Halloween_The Ice House (1978).par2 yEnc 45 -162 ^alt\\.binaries\\.british\\.drama$ /^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //"Rosemary & Thyme - 2x02 Orpheus In The Undergrowth.par2" yEnc 50 -163 ^alt\\.binaries\\.british\\.drama$ /^\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[01/45] - "Minder S01E08.sfv" yEnc 55 -164 ^alt\\.binaries\\.bungabunga$ /^[\\[(?P]\\d+\\/\\d+[\\])] - "([A-Z0-9].{2,}?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB]( -)? yEnc$/ 1 //[01/29] - "Bellflower.2011.German.AC3.BDRip.XviD-EPHEMERiD.par2" - 1,01 GB yEnc ::: //(3/9) - "Microsoft Frontpage 2003 - 4 Town-Up from Kraenk.rar.par2" - 181,98 MB - yEnc 5 -165 ^alt\\.binaries\\.cavebox$ /^\\(www\\.Thunder-News\\.org\\) ?\\)(?P.+)\\( \\(Sponsored.+\\)[ _-]{0,3}\\(\\d+\\/\\d+\\)[ _-]{0,3}("|#34;).+("|#34;) yEnc$/i 1 //(www.Thunder-News.org) )Panamericana.E02.Von.Alaska.nach.Feuerland.GERMAN.DOKU.WS.dTV.XViD-SiTiN( (Sponsored by AstiNews) - (05/34) - #34;sitin-panamericanae02-xvid.r00#34; yEnc 5 -166 ^alt\\.binaries\\.cats$ /^(?P[a-zA-Z0-9]{5,}) ?\\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //Pb7cvL3YiiOu06dsYPzEfpSvvTul[02/37] - "Fkq33mlTVyHHJLm0gJNU.par2" yEnc ::: //DLJorQ37rMDvc [01/16] - "DLJorQ37rMDvc.part1.rar" yEnc 5 -167 ^alt\\.binaries\\.cbt$ /^\\((?P[a-zA-Z0-9-\\.\\&_ ]+)\\) \\[\\d+\\/(\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(WinEdt.v8.0.Build.20130513.Cracked-EAT) [01/10] - "eatwedt8.nfo" yEnc 5 -168 ^alt\\.binaries\\.cbt$ /^\\[ (?P[a-zA-Z0-9-\\.\\&\\\\(\\)\\,_ ]+) \\] [a-zA-Z0-9]{3,4}\\.[a-zA-Z0-9]{3,4} \\(\\d+\\/(\\d+\\)) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[ ABCAsiaPac 10 -169 ^alt\\.binaries\\.cbt$ /^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") {1,2}yEnc$/ 1 //"MythBusters S10E02 720p HDTV x264-DHD.rar" yEnc 15 -170 ^alt\\.binaries\\.cbt$ /^(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) {1,2}yEnc$/ 1 //2nd Annual American CountryMusicAwards 2011 HDTV XviD 2HD.rar yEnc 20 -171 ^alt\\.binaries\\.cbt$ /^\\(\\?+\\) \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") Sayco yEnc$/ 1 //(????) [005/358] - "WLAN - professionell absichern.rar" Sayco yEnc 25 -172 ^alt\\.binaries\\.cbts$ /"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //"softWoRx.Suite.2.0.0.25.x32-TFT.rar" yEnc 5 -173 ^alt\\.binaries\\.cd\\.image$ /^\\[www\\..+?\\]-\\[(?P.+?)\\]-\\[\\d+\\/\\d+\\] ".+?" - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/ 1 //[www.drlecter.tk]-[The_Night_of_the_Rabbit-FLT]-[01/67] "Dr.Lecter.nfo" - 5.61 GB - yEnc 5 -174 ^alt\\.binaries\\.cd\\.image$ /^(?P[a-zA-Z0-9.-]{10,}) -( PC GAME -| [A-Z0-9\\[\\]]+ -)? \\[\\d+\\/\\d+\\] - ".+?" - (.+? - (\\d+[,.]\\d+ [mMkKgG][bB] - )?)?yEnc$/ 1 //Slender.The.Arrival-WaLMaRT.PC - [01/26] - "wmt-stal.nfo" - yEnc ::: //The.Night.of.the.Rabbit-FLT - [03/66] - "flt-notr.r00" - FAiRLIGHT - 5,10 GB - yEnc ::: //Resident.Evil.Revelations-FLT - PC GAME - [03/97] - "Resident.Evil.Revelations-FLT.r00" - FAiRLIGHT - yEnc ::: //Afterfall.Insanity.Dirty.Arena.Edition-WaLMaRT - [MULTI6][PCDVD] - [02/45] - "wmt-adae.r00" - PC GAME - yEnc 10 -175 ^alt\\.binaries\\.cd\\.image$ /^(PC Game - )?\\[\\d+\\/\\d+\\] - (?P.+?) - ".+?" -( .+? -)? yEnc$/ 1 //[01/46] - Crashtime 5 Undercover RELOADED - "rld-ct5u.nfo" - PC - yEnc ::: //[01/76] - Of.Orcs.And.Men-SKIDROW - "sr-oforcsandmen.nfo" - yEnc ::: //PC Game - [01/71] - MotoGP 13-RELOADED Including NoDVD Fix - "MotoGP 13-RELOADED Including NoDVD Fix nfo" - yEnc 15 -176 ^alt\\.binaries\\.cd\\.image$ /^(?P[A-Za-z0-9][a-zA-Z0-9: ]{8,}(-[a-zA-Z]+)?)( \\(.+?\\)| - [\\[A-Z0-9\\]]+)? - \\[\\d+\\/\\d+\\] - ".+?" - .+? - yEnc$/ 1 //Magrunner Dark Pulse FLT (FAiRLIGHT) - [02/70] - "flt-madp par2" - PC - yEnc ::: //MotoGP 13 RELOADED - [01/71] - "rld-motogp13 nfo" - PC - yEnc ::: //Dracula 4: Shadow of the Dragon FAiRLIGHT - [01/36] - "flt-drc4 nfo" - PC - yEnc 20 -177 ^alt\\.binaries\\.cd\\.image$ /^(\\[[A-Z ]+\\] - )?(?P[a-zA-Z0-9.-]{10,}) - ".+?" - \\[\\d+\\/\\d+\\] - yEnc$/ 1 //[NEW PC GAME] - Lumber.island-WaLMaRT - "wmt-lisd.nfo" - [01/18] - yEnc ::: //Trine.2.Complete.Story-SKIDROW - "sr-trine2completestory.nfo" - [01/78] - yEnc 25 -178 ^alt\\.binaries\\.cd\\.image$ /^Uploader\\.Presents-(?P.+)[\\(\\[]\\d+\\/\\d+\\]".+" yEnc$/ 1 //Uploader.Presents-Metal.Gear.Rising.Revengeance-RELOADED(51/65]"rld-megerire.r48" yEnc 30 -179 ^alt\\.binaries\\.cd\\.lossless$ /^Flac Flood( -)? (?P.+?) - ".+?" \\(\\d+\\/\\d+\\) .+? yEnc$/ 1 //Flac Flood - Modern Talking - China In Her Eyes (CDM) - "1 - Modern Talking - China In Her Eyes (feat. Eric Singleton) (Video Version).flac" (01/14) (23,64 MB) 136,66 MB yEnc ::: ////Flac Flood Modern Talking - America - "1 - Modern Talking - Win The Race.flac" (01/18) (29,12 MB) 549,35 MB yEnc 5 -180 ^alt\\.binaries\\.cd\\.lossless$ /^(?P[a-zA-Z0-9].+?) \\[\\d+\\/\\d+\\]( -)? "\\d{2,} - .+?" yEnc$/ 1 //Cannonball Adderley - Nippon Soul [01/17] "00 - Cannonball Adderley - Nippon Soul.nfo" yEnc ::: //Black Tie White Noise [01/24] - "00 - David Bowie - Black Tie White Noise.nfo" yEnc 10 -181 ^alt\\.binaries\\.cd\\.lossless$ /^(?P(\\[\\d{4}\\] )?[a-zA-Z0-9].+?) - File \\d+ of \\d+: .+? yEnc$/ 1 //The Allman Brothers Band - Statesboro Blues [Swingin' Pig - Bootleg] [1970 April 4] - File 09 of 19: Statesboro Blues.cue yEnc ::: //[1977] Joan Armatrading - Show Some Emotion - File 15 of 20: 06 Joan Armatrading - Opportunity.flac yEnc 15 -182 ^alt\\.binaries\\.cd\\.lossless$ /^(?P[A-Z0-9].+? - [A-Z0-9].+? \\[\\d{4}\\]) - \\d{2,} .+? yEnc$/ 1 //The Allman Brothers Band - The Fillmore Concerts [1971] - 06 The Allman Brothers Band - Done Somebody Wrong.flac yEnc 20 -183 ^alt\\.binaries\\.cd\\.lossless$ /^(?P[A-Z0-9].+? - [A-Z0-9].+? Disc \\d+ of \\d+) - [A-Z0-9].+?\\..+? yEnc$/ 1 //The Velvet Underground - Peel Slow And See (Box Set) Disc 5 of 5 - 13 The Velvet Underground - Oh Gin.flac yEnc 25 -184 ^alt\\.binaries\\.cd\\.lossless$ /^\\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/ 1 //(28/55) "Ivan Neville - 30 -185 ^alt\\.binaries\\.chello$ /^(?P[A-Za-z0-9]{5,}) ?\\[\\d+\\/\\d+\\] - "[A-Za-z0-9]{3,}.+?" yEnc$/ 1 //0F623Uv71RHKt0jzA7inbGZLk00[2/5] - "l2iOkRvy80bgLrZm1xxw.par2" yEnc ::: //GMC2G8KixJKy [01/15] - "GMC2G8KixJKy.part1.rar" yEnc 5 -186 ^alt\\.binaries\\.chello$ /^(?P[a-zA-Z0-9][a-zA-Z0-9.-]+) \\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //Imactools.Cefipx.v3.20.MacOSX.Incl.Keyfilemaker-NOY [03/10] - "parfile.vol000+01.par2" yEnc 10 -187 ^alt\\.binaries\\.chello$ /^(?P[A-Za-z0-9-]+ .+?)[. ]\\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //Siberian Mouses LS, BD models and special... [150/152] - "Xlola - Luba, Sasha & Vika.avi.jpg" yEnc 15 -188 ^alt\\.binaries\\.classic\\.tv\\.shows$ /^Re: REQ: (?P.+? - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Re: REQ: All In The Family - "Archie Bunkers Place 1x01 Archies New Partner part 1.nzb" yEnc 5 -189 ^alt\\.binaries\\.classic\\.tv\\.shows$ /^Per REQ - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") .+? \\[\\d+\\/\\d+\\] yEnc$/ 1 //Per REQ - "The.Wild.Wild.West.S03E11.The.Night.of.the.Cut-Throats.DVDRip.XVID-tz.par2" 512x384 [01/40] yEnc 10 -190 ^alt\\.binaries\\.classic\\.tv\\.shows$ /^By req: "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //By req: "Dennis The Menace - 4x25 - Dennis and the Homing Pigeons.part05.rar" yEnc 15 -191 ^alt\\.binaries\\.classic\\.tv\\.shows$ /^[a-zA-Z ]+HQ DVDRips "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") \\[\\d+\\/\\d+\\] yEnc$/ 1 //I Spy HQ DVDRips "I Spy - 3x26 Pinwheel.part10.rar" [13/22] yEnc 20 -192 ^alt\\.binaries\\.classic\\.tv\\.shows$ /^(?P[a-zA-Z0-9].+? (S\\d+D\\d+|- Season \\d+))( -)? \\[\\d+\\/\\d+\\] - ".+?"? yEnc$/ 1 //Sledge Hammer! S2D2 [016/138] - "SH! S2 D2.ISO.016" yEnc ::: //Sledge Hammer! S2D2 [113/138] - "SH! S2 D2.ISO.1132 yEnc ::: //Lost In Space - Season 1 - [13/40] - "S1E02 - The Derelict.avi" yEnc 25 -193 ^alt\\.binaries\\.classic\\.tv\\.shows$ /^(?P[a-zA-Z0-9].+? \\d{4}-\\d\\d-\\d\\d)( \\[.+?\\])? \\(\\d+\\/\\d+\\) - ".+?" yEnc$/ 1 //Night Flight TV Show rec 1991-01-12 (02/54) - "night flight rec 1991-01-12.nfo" yEnc ::: //Night Flight TV Show rec 1991-05-05 [NEW PAR SET] (1/9) - "night flight rec 1991-05-05.par2" yEnc 30 -194 ^alt\\.binaries\\.classic\\.tv\\.shows$ /^[a-zA-Z0-9][a-zA-Z0-9.-]+S\\d+E\\d+([a-zA-Z0-9.]+)? \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //The.Love.Boat.S05E08 [01/31] - "The.Love.Boat.S05E08.Chefs.Special.Kleinschmidt.New.Beginnings.par2" yEnc ::: //Barney.Miller.S08E05.Stress.Analyzer [01/18] - "Barney.Miller.S08E05.Stress.Analyzer.VHSTVRip.DivX.par2" yEnc 35 -195 ^alt\\.binaries\\.classic\\.tv\\.shows$ /^(Re: )?"(?P.+?)(\\.avi|\\.mkv)?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")( HQ DVDRip\\[\\d+\\/\\d+\\])? yEnc$/ 1 //"Batman - S1E13-The Thirteenth Hat.par2" yEnc ::: //"The Munsters - 1x01 Munster Masquerade.part.par" HQ DVDRip[02/16] yEnc 40 -196 ^alt\\.binaries\\.classic\\.tv\\.shows$ /^(Re: )?[a-zA-Z0-9]+.+? (series|Season) \\d+ (- )?\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Re: Outside Edge series 1 - [01/20] - "Outside Edge S01.nfo" yEnc ::: //Green Acres Season 1 [01/87] - "Green Acres Season 1.par2" yEnc ::: //MASH Season 1 - [01/54] - "MASH - Season 01.par2" yEnc 45 -197 ^alt\\.binaries\\.classic\\.tv\\.shows$ /^(REQ - )?[A-Z0-9a-z][A-Z0-9a-z.]+ - \\d+x\\d+ (- [A-Z0-9a-z.]+ )?- \\[\\d+\\/\\d+\\] - "(?P.+?)(\\.avi|\\.mkv)?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Rich.Little.Show - 1x12 - Season.and.Series.Finale - [02/33] - "Rich Little Show - 1x12 - Bill Bixby.avi.002" yEnc ::: //Rich.Little.Show - 1x11 - [01/33] - "Rich Little Show - 1x11 - Jessica Walter.avi.001" yEnc ::: //REQ - Banacek - 2x07 - [02/61] - "Banacek - 2x07 - Fly Me - 50 -198 ^alt\\.binaries\\.classic\\.tv\\.shows$ /^Handyman Shows-(?P.+) - File \\d+ of \\d+ - yEnc$/ 1 //Handyman Shows-TOH-S32E10 - File 01 of 32 - yEnc 55 -199 ^alt\\.binaries\\.classic\\.tv\\.shows$ /^(?P[a-zA-Z0-9 -_\\.:]+) - \\d+( of \\d+)[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") (\\(\\d+\\/\\d+\\) )?(yEnc)?$/ 1 //'Mission: Impossible' - 1x09 - NTSC - DivX - 28 of 48 - "MI-S01E09.r23" yEnc ::: //'Mission: Impossible' - 1x09 - NTSC - DivX - 01 of 48 - "MI-S01E09.nfo" (1/1) 60 -200 ^alt\\.binaries\\.classic\\.tv\\.shows$ /^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")(yEnc)?( )?$/ 1 //"Batman - S2E58-Ice Spy.par2"yEnc ::: //"Black Sheep Squadron 1x03 Best Three Out of Five.par2" 65 -201 ^alt\\.binaries\\.classic\\.tv\\.shows$ /^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") \\(Not My Rip\\).+ \\d+ (- \\d+) .+ yEnc$/ 1 //"Guns of Will Sonnett - 1x04.mp4" (Not My Rip)Guns Of Will Sonnett Season 1 1 - 26 Mp4 With Pars yEnc 70 -202 ^alt\\.binaries\\.classic\\.tv\\.shows$ /^\\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB] - yEnc$/ 1 //(01/10) "Watch_With_Mother-Bill_And_Ben-1953_02_12-Scarecrow-VHSRip-XviD.avi" - 162.20 MB - yEnc 75 -203 ^alt\\.binaries\\.classic\\.tv\\.shows$ /^\\(.+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") \\[\\d+\\/(\\d+\\]) (Last One I Have! )?yEnc$/ 1 //(Our Gang - Little Rascals DVDRips) "Our Gang - The Lucky Corner (1936).part0.sfv" [01/19] yEnc ::: //(Our Gang - Little Rascals DVDRips) "Our Gang - Wild Poses (1933).part.par" [02/20] Last One I Have! yEnc 80 -204 ^alt\\.binaries\\.classic\\.tv\\.shows$ /^.+ Usenet Past .+\\[\\d+\\/(\\d+\\]) - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[EnJoY] =>A Blast from Usenet Past (1/3)<= [00/14] - "Mcdonalds Training Film - 1972 (Vhs-Mpg).part.nzb" yEnc 85 -205 ^alt\\.binaries\\.classic\\.tv\\.shows$ /^ \\[\\d+\\/(\\d+\\]) - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 // [01/12] - "Yancy Derringer - 03 - Geheime Fracht.par2" yEnc 90 -206 ^alt\\.binaries\\.classic\\.tv\\.shows$ /^.+ [\\[\\(]\\d+( of |\\/)(\\d+[\\]\\)])[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //77 Sunset Strip 409 [1 of 23] "77 Sunset Strip 409 The Missing Daddy Caper.avi.vol63+34.par2" yEnc ::: //Barney.Miller.NZBs [001/170] - "Barney.Miller.S01E01.Ramon.nzb" yEnc 95 -207 ^alt\\.binaries\\.classic\\.tv\\.shows$ /^.+[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") [\\[\\(]\\d+\\/(\\d+[\\]\\)]) yEnc$/ 1 //All in the Family - missing eps - DVDRips "All in the Family - 6x23 Gloria & Mike's House Guests.part5.rar" [08/16] yEnc ::: //Amos 'n' Andy - more shows---read info.txt "Amos 'n' Andy S01E00 Introduction of the Cast.mkv.001" (002/773) yEnc 100 -208 ^alt\\.binaries\\.classic\\.tv\\.shows$ /^(?P.+\\d+x\\d+.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})( yEnc)?( (Series|Season) Finale)?$/ 1 //Andy Gr 105 -209 ^alt\\.binaries\\.comics$ /^\\((?P.+)\\)[ -]+\\[\\d+\\/\\d+\\][ -]+".+"[ -]+yEnc$/ 1 //(The Walking Dead Comics Volume 1) [10/18] - "walking dead 002.cbr" yEnc 5 -210 ^alt\\.binaries\\.comics$ /^(?P.+)[ -]+\\[COMIC\\][ -]+\\[\\d+\\/\\d+\\][ -]+".+"[ -]+yEnc$/i 1 //The Strain -1-9 [Comic] [1/2] - "TSC.nfo" yEnc 10 -211 ^alt\\.binaries\\.comics$ /.*"(?P.{7,}?)(\\.part\\d*|\\.rar)?(\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 // Return anything between the quotes. 15 -212 ^alt\\.binaries\\.comics\\.dcp$ /\\d{4}\\.(\\d{2}\\.){2} - "(?P.+?)\\.cb[rz]" yEnc$/i 1 //New Releases 2014.3.20 - "The Silver Surfer 012 (1970-01) (digital) (milton19-Empire).cbr" yEnc 5 -213 ^alt\\.binaries\\.comics\\.dcp$ /(Req?: )+(?P.+?) - File \\d+ of \\d+ - yEnc$/i 1 //Re: Req: Dark Tower - The Battle of Jericho Hill 05 (of 05) TIA - File 1 of 1 - yEnc 10 -214 ^alt\\.binaries\\.comics\\.dcp$ /\\|\\| \\d{4} \\|\\| - "(?P.+?)\\.cb[rz]" \\[\\d+\\/\\d+\\] yEnc$/i 1 //Amazing Spider-man 306 || FB-DCP scan || 1988 || - "Amazing Spider-man 306 (1988)(FB-DCP)(C2C).CBR" [3/7] yEnc 15 -215 ^alt\\.binaries\\.comics\\.dcp$ /\\s+\\[\\d+\\/\\d+\\]\\s+(-\\s+)?(?P[A-Z0-9].+?)(\\[.*?(starv|RexTyler).*?\\])?\\.cb[rz](\\.par2)?\\s+yEnc$/i 1 //All-Star Squadron Preview 00 (1981) [HQ rescan] [1/5] - All-Star Squadron Preview 00 (Aug 1981) [HQ rescan] [RexTyler].cbr yEnc ::: //Mad Color Classics (1st time as true CBR) - [1/1] Mad Color Classics 04 {FIXED} (c2c) [True CBR by RexTyler].cbr yEnc ::: //Comico Christmas Special (1988) - [1/5] Comico Christmas Special (1988) [starv].cbr.par2 yEnc 20 -216 ^alt\\.binaries\\.comics\\.dcp$ /\\s+-\\s+File \\d+ of \\d+\\s+-\\s+(?P[A-Z0-9].+?)\\.(cb[rz]|rar)\\s+yEnc$/i 1 //0-Day 2013.8.28 - "Ultimate Comics Spider-Man 026 (2013) complete/unbroken - File 1 of 1 - Ultimate Comics Spider-Man 026 (2013) (Digital) (Zone-Empire).cbr yEnc ::: //Ultimate Comics Spider-Man 026 - File 1 of 1 - Ultimate Comics Spider-Man 026 (2013) (Digital) (Zone-Empire).rar yEnc 25 -217 ^alt\\.binaries\\.comics\\.dcp$ /^(?P[a-z0-9].+?)\\s+-\\s+File \\d+ of \\d+\\s+-\\s+yEnc$/i 1 //Grimm Fairy Tales Myths & Legends 12 - File 1 of 1 - yEnc 30 -218 ^alt\\.binaries\\.comics\\.dcp$ /.*"(?P.{7,}?)(\\.part\\d*|\\.rar)?(\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 // Return anything between the quotes. 35 -219 ^alt\\.binaries\\.comp$ /^\\(\\d+\\/\\d+\\) .+? post (?P.+?) ".+?" yEnc$/ 1 //(45/74) NikJosuf post Magento tutorials "43 - Theming Magento 19 - Adding a Responsive Slideshow.mp4" yEnc 5 -220 ^alt\\.binaries\\.comp$ /^(?P.{5,}?) \\(\\d+\\/\\d+\\) ".+?" - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/ 1 //Photo Mechanic 5.0 build 13915 (1/6) "Photo Mechanic 5.0 build 13915 (1).par2" - 32,97 MB - yEnc 10 -221 ^alt\\.binaries\\.comp$ /^\\((?P[a-zA-Z0-9. ]{10,}?)\\) \\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //(Advanced SystemCare Pro 6.3.0.269 Final ML Incl Serial) [01/10] - "Advanced SystemCare Pro 6.3.0.269 Final ML Incl Serial.nfo" yEnc 15 -222 ^alt\\.binaries\\.comp$ /^\\[\\d+\\/\\d+ (?P.+?)(\\.(part\\d*|rar|avi|iso|mp4|mkv|mpg))?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/ 1 //[01/21 Geroellheimer - S01E03 - Swimming Pool Geroellheimer - S01E03 - Swimming Pool.mp4.001" yEnc 20 -223 ^alt\\.binaries\\.console\\.ps3$ /^(?P[\\w.]+?-?PS3-[a-zA-Z0-9]+) \\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //Railfan_JPN_JB_PS3-Caravan [02/88] - "cvn-railfjb.par2" yEnc ::: //Madagascar.Kartz.German.JB.PS3-ATAX [01/40] - "atax-mkgjp.nfo" ::: //Saints_Row_The_Third_The_Full_Package_EUR-PS3-SPLiT [61/87] - "split-sr3fullpps3.r58" yEnc 5 -224 ^alt\\.binaries\\.console\\.ps3$ /^\\(\\d+\\) \\[\\d+\\/\\d+\\] - "(?P[\\w.]{10,}?PS3-[A-Za-z0-9]+?)\\..+?" yEnc$/ 1 //(4168) [00/24] - "Legend.Of.The.Guardians.Owls.GaHoole.USA.JB.PS3-PSFR33.nzb" yEnc 10 -225 ^alt\\.binaries\\.console\\.ps3$ /^\\[\\d+\\]-\\[.+?\\]-\\[ (?P.+?) \\] \\(\\d+\\/\\d+\\) ".+?" yEnc$/ 1 //[4230]-[ABGX.net]-[ Air_Conflicts_Pac 15 -226 ^alt\\.binaries\\.console\\.ps3$ /\\.: (?P.+):. - .:www\\.thunder-news\\.org:. - .:sponsored by secretusenet\\.com:\\. - ("|#34;).+("|#34;).+yEnc$/ 1 //.: Birds_of_Steel_PS3-ABSTRAKT :. - .:www.thunder-news.org:. - .:sponsored by secretusenet.com:. - "as-bos.r39" yEnc 20 -227 ^alt\\.binaries\\.console\\.ps3$ /^"(?P.+)__www.realmom.info__.+" \\(\\d+\\/(\\d+\\)) \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/ 1 //"Armored_Core_V_PS3-ANTiDOTE__www.realmom.info__.r00" (03/78) 3,32 GB yEnc 25 -228 ^alt\\.binaries\\.console\\.ps3$ /^"(?P.+)__www.realmom.info__.+" (\\d+[.,]\\d+ [kKmMgG][bB]) yEnc$/ 1 //"Ace.Combat.Assault.Horizon.PS3-DUPLEX__www.realmom.info__.nfo" 7,14 GB yEnc 30 -229 ^alt\\.binaries\\.console\\.ps3$ /^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //"Angry Birds USA PSN PSP-NRP.exe" yEnc 35 -230 ^alt\\.binaries\\.cores$ /^Film - (\\[\\d+\\/\\d+\\] - )?"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Film - [13/59] - "Jerry Maguire (1996) 1080p DTS multisub HUN HighCode-PHD.part13.rar" yEnc ::: //Film - "Phone.booth.2003.RERIP.Bluray.1080p.DTS-HD.x264-Grym.part001.rar" yEnc 5 -231 ^alt\\.binaries\\.cores$ /^\\[Art-Of-Use\\.Net\\] :: \\[.+?\\] :: - \\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[Art-Of-Use.Net] :: [AUTO] :: - [34/36] - "ImmoralLive.13.11.10.Immoral.Orgies.Rikki.Six.Carmen.Callaway.And.Amanda.Tate.XXX.1080p.MP4-KTR.vol15+16.par2" yEnc 10 -232 ^alt\\.binaries\\.cores$ /^brothers-of-usenet\\.info\\.net.+SSL-News\\.info-----(?P.+) - "([\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //brothers-of-usenet.info.net Partner von---- SSL-News.info----- brothers-of-usenet.info.net Partner von---- SSL-News.info-----AVG.Internet.Security.2014.Build.4335.x86.x64 - "AVG.Internet.Security.2014.Build.4335.vol00+01.PAR2" - 315,68 MB - yEnc 15 -233 ^alt\\.binaries\\.cores$ /^>+GOU<+ (?P.+?) >+www\\..+?<+ - \\(\\d+\\/\\d+\\) - ".+?" yEnc$/ 1 //>GOU<< ZDF.History.Das.Geiseldrama.von.Gladbeck.GERMAN.DOKU.720p.HDTV.x264-TVP >>www.SSL-News.info< - (02/35) - "tvp-gladbeck-720p.nfo" yEnc 20 -234 ^alt\\.binaries\\.cores$ /^<<>> \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //<<>> USC <<>> [22/26] - "Zombie.Tycoon.2.Brainhovs.Revenge-SKIDROW.vol00+1.par2" - 1,85 GB yEnc 25 -235 ^alt\\.binaries\\.cores$ /^.+Usejunkies.tk.+ \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //::: Usejunkies.tk ::: - [01/11] - "DJ Shog - DNA - HD 720p.par2" - 47,76 MB yEnc 30 -236 ^alt\\.binaries\\.cores$ /^\\(\\d+\\/\\d+\\).+Usejunkies.tk.+"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //(5/9) :...Usejunkies.tk...:----"Leawo.Blu-ray.Ripper.v4.4.0.rar.vol003+04.par2" - 30.94 MB - yEnc 35 -237 ^alt\\.binaries\\.cores$ /^\\(.+s\\d+e\\d+\\) \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/ 1 //(Grimms03e10) [6/9] - "Grimm_S03E10_Eyes_of_the_Beholder.avi.vol007+08.PAR2"Grimm S03E10 yEnc 40 -238 ^alt\\.binaries\\.cores$ /^[a-zA-Z0-9]+ post voor u op www\\..+? - \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Jipejans post voor u op www.Dreamplace.biz - [010/568] - "Alien-Antology-DC-Special-Edition-1979-1997-1080p-GER-HUN-HighCode.part009.rar" yEnc ::: //Egbert47 post voor u op www.nzbworld.me - [01/21] - "100 Hits - Lady Sings The Blues 2006 (5cd's).par2" yEnc 45 -239 ^alt\\.binaries\\.cores$ /^>+ .+?\\.info [<>+]+ .+?\\.com <+ "(?P.+?)\\s+- .*?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - .+? yEnc$/ 1 //>>> usenet4ever.info <<<+>>> secretusenet.com <<< "Weltnaturerbe USA Grand Canyon Nationalpark 2012 3D Blu-ray untouched - DarKneSS.part039.rar" - DarKneSS yEnc 50 -240 ^alt\\.binaries\\.cores$ /^Old\\s+Dad\\s+uppt?\\s*?(?P.+?)( mp4| )?\\[?\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //Old Dad uppt Der gro?e Gatsby BD Rip AC3 Line XvidD German 01/57] - "Der gro?e Gatsby.par2" yEnc 55 -241 ^alt\\.binaries\\.cores$ /^[A-Za-z]+ - \\[\\d+\\/\\d+\\] - "\\d+-(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //panter - [46/60] - "68645-Busty Beauties Car Wash XXX 3D BD26.part45.rar" yEnc ::: //Wildrose - [01/57] - "49567-Kleine Rode Tractor Buitenpret.par2" yEnc 60 -242 ^alt\\.binaries\\.cores$ /^[ _-]{0,3}\\w+(-\\w+)?[ _-]{0,3}\\d+[ _-]{0,3}(?P.+) - \\[\\d+\\/\\d+\\][ _-]{0,3}("|#34;).+?("|#34;) yEnc$/i 1 // - FLAC - 1330543524 - Keziah_Jones-Femiliarise-PROMO_CDS-FLAC-2003-oNePiEcE - [01/11] - "00-keziah_jones-femiliarise-promo_cds-flac-2003-1.jpg" yEnc 65 -243 ^alt\\.binaries\\.cores$ /^Doobz (?P[a-zA-z-_]+) \\[\\d+\\/(\\d+\\]) - ".+([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Doobz Europa_Universalis_IV_Conquest_of_Paradise-FLT [10/54] - "flt-eucp.001" yEnc 70 -244 ^alt\\.binaries\\.cores$ /^\\(aangemeld bij usenet collector\\) \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(aangemeld bij usenet collector) [001/125] - "Northern_Exposure_Season_1_dvd_1.par2" yEnc 75 -245 ^alt\\.binaries\\.cores$ /^\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB] .+usenet-space-cowboys\\.info.+ yEnc$/ 1 //[15/16] - "Person.of.Interest.S03E09.480p.HDTV.x264-mSD.vol0+1.par2" - 177,28 MB <-> usenet-space-cowboys.info <-> powered by secretusenet.com <-> yEnc 80 -246 ^alt\\.binaries\\.cores$ /^brothers-of-usenet\\.info.+ - \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //brothers-of-usenet.info&net-empfehlen-ssl-news.info Black Mirror s01e01 - Der wille des volkes - [09/15] - "Black Mirror - S01E01 - Der Wille des Volkes.vol00+01.par2" yEnc 85 -247 ^alt\\.binaries\\.cores$ /^\\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB] .+yEnc$/ 1 //(024/264) "Enf.S04E02.G.D.H.X-M.vol51+46.PAR2" - 8,27 GB -Enf.S04.G.D.H.X yEnc 90 -248 ^alt\\.binaries\\.cores$ /^\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/i 1 //[01/10] - "Wondershare.Video.Converter.Ultimate.v6.7.1.0.Multilanguage.par2" - 45,44 MB yEnc 95 -249 ^alt\\.binaries\\.cores$ /^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/ 1 //"8 Wenn ich einmal gross bin .mp3" Koelschefetz postet.Die Filue -Immer Wigger yEnc 100 -250 ^alt\\.binaries\\.cores$ /^(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) {0,3}yEnc$/ 1 //Adobe Photoshop Lightroom v5.2 - FiNaL - Multilingual [WIN].vol037+32.PAR2 yEnc 105 -251 ^alt\\.binaries\\.dc$ /^brothers-of-usenet.+? \\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB] yEnc$/ 1 //brothers-of-usenet.info&net-empfehlen-ssl-news.info (02/51) "Paul.Panzer.-.Hart.Backbord.2012.German.PAL.DVDR-icq4711.part01.rar" - 4,33 GB yEnc 5 -252 ^alt\\.binaries\\.dc$ /^"(?P[\\w.]{10,}-[a-zA-Z0-9]+)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //"The.Crow.1994.German.DL.PAL.HD2DVD.DVDR-Braunbaer.par2" yEnc 10 -253 ^alt\\.binaries\\.dc$ /^[A-Z0-9].+? postet\\s+.+?\\s+\\[\\d+\\/\\d+\\] - "(?P[\\w.-]{10,}?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Eragon postet The Secret of Crickley Hall S01E02 german Sub hardcodet [02/28] - "the_secret_of_crickley_hall.1x02.hdtv_x264-fov_arc.par2" yEnc 15 -254 ^alt\\.binaries\\.dc$ /^[A-Z0-9].+? postet\\s+(?P.+?)\\.?\\s+\\[\\d+\\/\\d+\\] - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Eragon postet Hart of Dixie S02E13 german Sub hardcodet. [02/21] - "hart of dixie S02E13.par2" yEnc 20 -255 ^alt\\.binaries\\.dc$ /^>GOU<< - "(?P.+?)\\.rar" yEnc$/ 1 //>GOU<< - "Internet Download Manager 6.15 Build 1.rar" yEnc 25 -256 ^alt\\.binaries\\.dc$ /^(?P[\\w.]{8,}-[a-zA-Z0-9]+) - ".+?" yEnc$/ 1 //Die.wahren.Faelle.des.NCIS.S01E06.Mord.ohne.Skrupel.GERMAN.DOKU.WS.BDRip.XviD-MiSFiTS - "misfits-therealnciss01e06-xvid.par2" yEnc 30 -257 ^alt\\.binaries\\.dc$ /^(?P[\\w.]{10,})".+?" yEnc$/ 1 //Double.Team.1997.German.FSK18.AC3.DVDRiP.XViD"team-xvid.oppo.par2" yEnc 35 -258 ^alt\\.binaries\\.divx\\.french$ /^\\.oO "(?P.+)__www.realmom.info__.+" Oo. \\[\\d+\\/\\d+\\] \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/ 1 //.oO "20.Years.After.German.2008.AC3.BDRip.XviD.INTERNAL-ARC__www.realmom.info__.nfo" Oo. [02/39] 1,43 GB yEnc 5 -259 ^alt\\.binaries\\.documentaries$ /^#sterntuary - (?P.+? - ".+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //#sterntuary - Alex Jones Radio Show - "05-03-2009_INFO_BAK_ALJ.nfo" yEnc 5 -260 ^alt\\.binaries\\.documentaries$ /^\\(\\d+\\/(\\d+\\)) "((BBC|ITV) )?(?P.+?)(\\.part\\d+)?(\\.(par2|(vol.+?))"|\\.[a-z0-9]{3}"|") - \\d.+? - (\\d.+? -)? yEnc$/ 1 //(08/25) "Wild Russia 5 of 6 The Secret Forest 2009.part06.rar" - 47.68 MB - 771.18 MB - yEnc ::: //(01/24) "ITV Wild Britain With Ray Mears 1 of 6 Deciduous Forest 2011.nfo" - 4.34 kB - 770.97 MB - yEnc ::: //(24/24) "BBC Great British Garden Revival 03 of 10 Cottage Gardens And House Plants 2013.vol27+22.PAR2" - 48.39 MB - 808.88 MB - yEnc 10 -261 ^alt\\.binaries\\.documentaries$ /^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") \\(\\d+\\/\\d+\\).+yEnc$/ 1 //"Fat Head 2009 Tom Naughton (why we get fat documentary) XVID.par2" (01/66) Paleo Low Carb Gluten-Free Diet yEnc 15 -262 ^alt\\.binaries\\.documentaries$ /^\\[(?P.+?MVGroup)\\]-\\[\\d+\\/\\d+\\] - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[David.Attenboroughs.Natural.Curiosities.2013.5of5.Seeing.the.Pattern.720p.HDTV.x264.AAC-MVGroup]-[03/21] - "danc-e05.r00" yEnc 20 -263 ^alt\\.binaries\\.documentaries$ /^Battlefield S\\d S\\d+E\\d+ "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Battlefield S1 S01E04 "Battlefield.104.The.Battle.of.Stalingrad.nfo" yEnc 25 -264 ^alt\\.binaries\\.documentaries$ /^(?P.+?) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //BBC The Space Race 1to4of4 (2005) - "BBC.SR01.par2" yEnc 30 -265 ^alt\\.binaries\\.documentaries$ /^\\[ (?P.+?) \\] \\[\\d+\\/\\d+\\] - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[ BBC.Time.Machine.Part.1.of.3.2004.DVDRip.x264.AAC.Cht-Eng-Sub.D5799E84-GFC ] [01/17] - "gfc-tm1.sfv" yEnc ::: //[ Discovery.Channel.Discovery.Atlantis.1996.DVDRip.X264.AC3-xslidian ] [01/12] - "d-da.sfv" yEnc ::: //[ Mount.Fuji.2008.blu-ray.x264.720p.AC3-CHD ] [01/48] - "chd-mfj.sfv" yEnc 35 -266 ^alt\\.binaries\\.documentaries$ /.*[\\(\\[]\\d+-(\\d+[\\)\\]])[-_\\s]{0,3}("|#34;)(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4}("|#34;)).+?yEnc$/ 1 //Rough Cut - Woodworking with Tommy Mac - Pilgrim Blanket Chest (1600s) DVDrip DivX - (02-17) "Rough.Cut-Woodworking.with.Tommy.Mac-Pilgrim.Blanket.Chest.1600s-DVDrip.DivX.2010.par2" - yEnc yEnc 40 -267 ^alt\\.binaries\\.documentaries$ /(?PAsia.+) - [\\(\\[]\\d+(\\|\\d+[\\)\\]])[-_\\s]{0,3}("|#34;).+?(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4}("|#34;)).+?yEnc$/ 1 //Asia This Week (NHK World, 19 & 20 July 2013) - 'Malala's movement for girls' education + Japan seeks imports from Southeast Asia - soccer players' - (02|14) - "ATW-2013-07-20.par2" yEnc ::: //Asia Biz Forecast (NHK World, 6 & 7 July 2013) - 'China: limits of growth + Japan: remote access' - (05|14) - "ABF-2013-07-07.part3.rar" yEnc 45 -268 ^alt\\.binaries\\.documentaries$ /(?PAsia.+) - File \\d+ of (\\d+)[-_\\s]{0,3}.+?(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4}).+?yEnc$/ 1 //Asia Biz Forecast (NHK World, 16-17 June 2012) - "Japan seeks energy options" - File 01 of 14 - ABF-2012-06-16.nfo (yEnc 50 -269 ^alt\\.binaries\\.documentaries$ /^.+? S\\d+E\\d+ - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") (\\d+[,.]\\d+ [kKmMgG][bB]ytes) yEnc$/ 1 //Dark MatterDark Energy S02E06 - "Dark Matter_Dark Energy S02E06 - The Universe - History Channel.part1.rar" 51.0 MBytes yEnc 55 -270 ^alt\\.binaries\\.documentaries$ /^.+Doc2011.+ \\d+\\/\\d+ - (?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) yEnc$/ 1 //-'- Doc2011 -'- 01/16 - Glorious.Accidents.2011.par2 yEnc 60 -271 ^alt\\.binaries\\.documentaries$ /^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") {1,2}yEnc$/ 1 //"BBC.The.Treasures.of.Ancient.Rome.1of3.Warts.n.All.720p.HDTV.x264.AAC.MVGroup.org.mkv.025" yEnc 65 -272 ^alt\\.binaries\\.documentaries$ /^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\[\\d+ of \\d+ - \\d+([,.]\\d+)? [kKmMgG][bB]\\] yEnc$/ 1 //"Time Team - 2012 - 05 - Beadnell, Northumbria.par2" - [01 of 84 - 64 kb] yEnc 70 -273 ^alt\\.binaries\\.documentaries$ /^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}yEnc$/ 1 //"Lang Lang - Mendelssohn.m4v" [2/9] yEnc 75 -274 ^alt\\.binaries\\.documentaries$ /^\\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB] .+yEnc$/ 1 //(06/24) "BBC Upgrade Me 2009.part04.rar" - 47.68 MB - 807.79 MB - yEnc 80 -275 ^alt\\.binaries\\.documentaries$ /\\(\\d+\\/(\\d+\\) - .+) - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB] - yEnc$/ 1 //(35/45) - Keating Pt4 - "Keating Pt4.part34.rar" - 1.77 GB - yEnc 85 -276 ^alt\\.binaries\\.documentaries$ /^\\(.+?\\)\\[\\d+\\/(\\d+\\][-_\\s]{0,3}.+?)[-_\\s]{0,3}("|#34;)(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}("|#34;))[-_\\s]{0,3}yEnc$/ 1 //(World Air Routes - WESTJET - B737-700) [028/109] - "World Air Routes - WESTJET - B737-700.part027.rar" yEnc 90 -277 ^alt\\.binaries\\.documentaries$ /(?P.+?) - [\\(\\[]\\d+\\/(\\d+[\\)\\]])[-_\\s]{0,3}("|#34;).+?(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4})("|#34;)(.+?)yEnc$/ 1 //Beyond Vanilla (2010) Documentary DVDrip XviD-Uncut - (02/22) "Beyond.Vanilla.2010.Documentary.DVDrip.XviD-Uncut.par2" - yenc yEnc 95 -278 ^alt\\.binaries\\.documentaries$ /^(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) - \\[\\d+\\/\\d+\\] yEnc$/ 1 //Michael Woods, The Story Of India - Beginnings 1of6.avi.013 - [14/62] yEnc 100 -279 ^alt\\.binaries\\.documentaries$ /^PBS.+\\(\\d+\\/\\d+\\) - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //PBS Nature The Private L 105 -280 ^alt\\.binaries\\.documentaries$ /^PBS.+\\[\\d+ of \\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //PBS - Inside Nature's Giants - Big Cats [100 of 101] "PBS - Inside Nature's Giants - Big Cats.m4v.vol970+143.par2" yEnc 110 -281 ^alt\\.binaries\\.documentaries$ /^\\d+\\/\\d+ "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //59/63 "Gates Of Heaven.vol023+19.PAR2" yEnc 115 -282 ^alt\\.binaries\\.documentaries$ /^(?P.+?) \\(\\d+\\|\\d+\\) - "([\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Asia Biz Forecast (NHK World, 9 & 10 November 2013) - 'Mizuho: Shadow banking' (01|14) - "ABF-2013-11-09.nfo" yEnc 120 -283 ^alt\\.binaries\\.documentaries$ /^[\\w ]+"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")(.+[\\(\\[]\\d+\\/\\d+[\\)\\]])?[-_\\s]{0,3}yEnc$/ 1 //TG1 "Top.gear.the.perfect.road.trip.2013.vol0000+128.PAR2" :: [01/10] yEnc 125 -284 ^alt\\.binaries\\.documentaries$ /^\\[(?P[\\w- ]+)\\]-\\[\\d+\\/\\d+\\] - "([\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[Walmart - The High Cost of Low Prices]-[28/59] - "wthcolp.part26.rar" yEnc 130 -285 ^alt\\.binaries\\.documentaries$ /^\\[[\\w- ]+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[SR09-0013] - "America Revealed E02 Nation On The Move (2012) x264 720p AC3 5.1.nfo" yEnc 135 -286 ^alt\\.binaries\\.documentaries$ /^(?P[\\w- ]+.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Panzer III - Medium Tank The German War Files - Panzer III - Germany's WWII Medium Tank.part05.rar" yEnc 140 -287 ^alt\\.binaries\\.documentaries$ /^\\(World Air Routes.+\\) \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(World Air Routes - Turkish Airlines B777-300ER) [001/114] - "World Air Routes - Turkish Airlines B777-300ER.par2" yEnc 145 -288 ^alt\\.binaries\\.documentaries$ /\\(\\?+\\) \\[\\d+\\/\\d+\\] - "(?P.+)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(????) [001/137] - "BBC.Attenborough.Zoo.Quest.Assorted.WebRips.par2" yEnc 150 -289 ^alt\\.binaries\\.documentaries$ /^dokus4alle presents \\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //dokus4alle presents (01/52) "BBC.Tweed.1of3.Trouble.Looms.H264.AAC.nfo" - 603.24 MB - yEnc 155 -290 ^alt\\.binaries\\.documentaries$ /^\\[U4A\\]-\\[(?P.+)\\]-\\[\\d+\\/\\d+\\] - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[U4A]-[After Porn Ends DOCU WEBRip X264 AAC]-[01/65] - "after.porn.ends.par2" yEnc 160 -291 ^alt\\.binaries\\.dvd$ /^thnx to original poster \\[\\d+(?P\\/\\d+\\] - ".+?)(\\.part\\d*|\\.rar)?(\\.vol.+?|\\.[A-Za-z0-9]{2,4})("| `).+? yEnc$/ 1 //thnx to original poster [00/98] - "2669DFKKFD2008.nzb ` 2669DFKKFD2008 " yEnc 5 -292 ^alt\\.binaries\\.dvd\\.movies$ /^Skata - (?P.+) \\(\\d+ \\/ \\d+\\) - ".+" yEnc$/ 1 //Skata - Clouzot - Messa Da Requiem (49 / 79) - "Skata - Clouzot - MDR.part47.rar" yEnc 5 -293 ^alt\\.binaries\\.dvd\\.movies$ /\\(\\?+\\) \\[\\d+\\/\\d+\\] - "(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //(????) [02361/43619] - "18j Amy-superlange Beine.exe" yEnc 10 -294 ^alt\\.binaries\\.dvd\\.movies$ /.*"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //Mutant.Chronicles.German.2008.AC3.DVDRip.XviD.(01/40) "Mutant.Chronicles.German.2008.AC3.DVDRip.XviD.nfo" yEnc 15 -295 ^alt\\.binaries\\.dvdr$ /^(?P[a-zA-Z].+) \\[\\d+\\/\\d+\\] - ("|#34;).+("|#34;) yEnc$/ 1 //Golem.The.Petr 5 -296 ^alt\\.binaries\\.dvd-german$ /^\\.oO "(?P.+)__www.realmom.info__.+" Oo. \\[\\d+\\/\\d+\\] \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/ 1 //.oO "20.Years.After.German.2008.AC3.BDRip.XviD.INTERNAL-ARC__www.realmom.info__.nfo" Oo. [02/39] 1,43 GB yEnc 5 -297 ^alt\\.binaries\\.dvd-r$ /^katanxya "(?Pkatanxya\\d+)/ 1 //katanxya "katanxya7221.par2" yEnc 5 -298 ^alt\\.binaries\\.dvd-r$ /^\\[\\d+\\/\\d+\\] - "(?P[A-Z0-9](19|20)\\d\\d[01]\\d[123]\\d_\\d+\\.).+?" - \\d+[,.]\\d+ [mMkKgG][bB] yEnc$/ 1 //[01/52] - "H1F3E_20130715_005.par2" - 4.59 GB yEnc 10 -299 ^alt\\.binaries\\.ebook$ /^New eBooks.+[ _-]{0,3}("|#34;)(?P[\\w., &\\'\\()-]{8,}?\\b)\\.(par|vol|rar|nfo).*?("|#34;)/i 1 //New eBooks 8 June 2013 - "Melody Carlson - [Carter House Girls 08] - Last Dance (mobi).rar" 5 -300 ^alt\\.binaries\\.ebook$ /www.nzbworld.me - \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") yEnc/ 1 //Rowwendees post voor u op www.nzbworld.me - [0/6] - "Animaniacs - Lights, Camera, Action!.nzb" yEnc (1/1) 10 -301 ^alt\\.binaries\\.ebook$ /^Re:(Req:)? [\\w:\\()\\?\\' -]+ - (?P[\\w ,.\\()\\[\\]-]{8,}?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/i 1 //Re: Tune In: The Beatles: All These Years (Mark Lewisohn) - Lewisohn, Mark - Tune In- the Beatles- All These Years, Volume 01 - [epub].rar yEnc ::: //Re: REQ: Robert Edsel The Monuments Men - Edsel, Robert M - The Monuments Men- Allied Heroes, Nazi Thieves, and the Greatest Treasure Hunt in History (Retail) [epub].rar yEnc 15 -302 ^alt\\.binaries\\.ebook$ /\\((.+works)\\) \\[\\d+\\/(\\d+\\]) - (?P[\\w., &\\'\\()-]{8,}?\\b)\\.(mobi|pdf|epub|html|azw)" yEnc$/ 1 //(Zelazny works) [36/39] - "Roger Zelazny - The Furies.mobi" yEnc 20 -303 ^alt\\.binaries\\.ebook$ /^\\([a-zA-Z ]+ sampler\\) \\[\\d+(\\/\\d+\\]) - "(?P[\\w., &\\'\\()-]{8,}?\\b)\\.(txt|pdf|mobi|epub|azw)" yEnc$/ 1 //(Joan D Vinge sampler) [17/17] - "Joan D Vinge - World's End.txt" yEnc 25 -304 ^alt\\.binaries\\.ebook$ /^New - Retail -( Juvenile Fiction -)? "(?P[\\w., &\\'\\()-]{8,}?\\b)\\.(txt|pdf|mobi|epub|azw)" yEnc$/ 1 //New - Retail - Juvenile Fiction - "Magic Tree House #47_ Abe Lincoln at Last! - Mary Pope Osborne & Sal Murdocca.epub" yEnc ::: //New - Retail - "Linda Howard - Cover of Night.epub" yEnc ::: //New - Retail - "Kylie Logan_Button Box Mystery 01 - Button Holed.epub" yEnc 30 -305 ^alt\\.binaries\\.ebook$ /^\\(No\\. 1 Ladies Detective Agency\\) \\[\\d+(\\/\\d+\\]) - "(?P[\\w., &\\'\\()-]{8,}?\\b)\\.(txt|pdf|mobi|epub|azw)" yEnc$/ 1 //(No. 1 Ladies Detective Agency) [04/13] - "Alexander McCall Smith - No 1-12 - The Saturday Big Tent Wedding Party.mobi" yEnc 35 -306 ^alt\\.binaries\\.ebook$ /^\\[\\d+\\/(\\d+\\]) (?P[\\w., &\\'\\()-]{8,}?\\b)\\.(txt|pdf|mobi|epub|azw)/ 1 //[25/33] Philip Jose Farmer - Toward the Beloved City [ss].mobi ::: //[2/4] Graham Masterton - Descendant.mobi 40 -307 ^alt\\.binaries\\.ebook$ /(.+)[-_\\s]{0,3}[\\(\\[]\\d+\\/\\d+[\\)\\]][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")([-_\\s]{0,3}yEnc){1,2}$/i 1 //(NordicAlbino) [01/10] - "SWHQ_NA_675qe0033102suSmzSE.sfv" yEnc ::: //365 Sex Positions A New Way Every Day for a Steamy Erotic Year [eBook] - (1/5) "365.Sex.Positions.A.New.Way.Every.Day.for.a.Steamy.Erotic.Year.eBook.nfo" - yenc yEnc 45 -308 ^alt\\.binaries\\.ebook$ /^\\[\\d+\\/\\d+\\] .+? - "(?P[\\w., &\\'\\()-]{8,}?\\b)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}") yEnc$/ 1 //[001/125] (NL Epub Wierook Set 49) - "Abulhawa, Susan - Litteken van David_Ochtend in Jenin.epub" yEnc 50 -309 ^alt\\.binaries\\.ebook$ /^\\(\\d+\\/\\d+\\) "(?P[\\w., &\\'\\()-]{8,}?\\b)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //(1/1) "Radiological Imaging of the Kidney - E. Quaia (Springer, 2011) WW.pdf" - 162,82 MB - (Radiological Imaging of the Kidney - E. Quaia (Springer, 2011) WW) yEnc 55 -310 ^alt\\.binaries\\.ebook$ /^\\(\\d+\\/\\d+\\) ".+(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")([-_\\s]{0,3}\\d+[.,]\\d+ [kKmMgG][bB])?[-_\\s]{0,3}"(?P[\\w., &\\'\\()-]{8,}?\\b)" yEnc$/ 1 //(1/7) "0865779767.epub" - 88,93 MB - "Anatomic Basis of Neurologic Diagnosis - epub" yEnc 60 -311 ^alt\\.binaries\\.ebook$ /^(Attn:|Re: REQ:|New Scan).+?[-_\\s]{0,3}"(?P[\\w., &\\'\\()-]{8,}?\\b)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")[-_\\s]{0,3}(\\d+[.,]\\d+ [kKmMgG][bB](ytes)?)? yEnc$/i 1 //Re: REQ: Jay Lake's Mainspring series/trilogy (see titles inside) - "Lake, Jay - Clockwork Earth 03 - Pinion [epub].rar" 405.6 kBytes yEnc ::: //Attn: Brownian - "del Rey, Maria - Paradise Bay (FBS).rar" yEnc ::: //New Scan "Herbert, James - Sepulchre (html).rar" yEnc 65 -312 ^alt\\.binaries\\.ebook$ /.*"(?P[\\w., &\\'\\()-]{8,}?\\b)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //"Gabaldon, Diana - Outlander [5] The Fiery Cross.epub" yEnc ::: //Kiny Friedman "Friedman, Kinky - Prisoner of Vandam Street_ A Novel, The.epub" yEnc 70 -313 ^alt\\.binaries\\.ebook$ /(.+?)[-_ ]{0,4}\\d+\\/\\d+[-_\\s]{0,3}(?P[\\w. &\\'\\()\\[\\]-]{8,}?\\b.?)\\.(txt|pdf|mobi|epub|azw)"( \\(\\d+\\/\\d+\\))?( )?$/ 1 //Patterson flood - Mobi - 15/45 "James Patterson - AC 13 - Double Cross.mobi" 75 -314 ^alt\\.binaries\\.ebook$ /^--- (?P[\\w., &\\'\\()-]{8,}?\\b)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/ 1 //--- Michael Dobbs - House of Cards.mobi yEnc 80 -315 ^alt\\.binaries\\.ebook$ /^\\'(?P[\\w. &\\'\\()\\[\\]-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})\\'[-_\\s]{0,3}yEnc$/ 1 //'Steel's Edge - Ilona Andrews.epub' yEnc 85 -316 ^alt\\.binaries\\.ebook$ /^\\[\\d+ of \\d+\\][-_\\s]{0,3}(?P[\\w. &\\'\\()\\[\\]-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/ 1 //[1 of 1] - Howard Gordon - Gideon's War & Hard Target.epub yEnc 90 -317 ^alt\\.binaries\\.ebook$ /^(?P[\\w. &\\'\\[\\]-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/ 1 //1 Playboy-Ausgabe vom Jnner 1953 [RARITT].rar yEnc 95 -318 ^alt\\.binaries\\.ebook$ /^.+ - (?P[^.]{8,})\\.[A-Za-z0-9]{2,4}[-_\\s]{0,3}yEnc$/ 1 //Re: Req: Please, does anyone have Scott Berg's Wilson biography? MTIA... - A. Scott Berg - Wilson.epub yEnc 100 -319 ^alt\\.binaries\\.ebook$ /.*"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)\\.[A-Za-z0-9]{2,4}"[-_\\s]{0,3}yEnc$/ 1 //REQ: "Keep it Pithy" by Bill O'Reilly "Keep It Pithy - Bill O'Reilly.epub"yEnc 105 -320 ^alt\\.binaries\\.ebook$ /^(?P[^.]{8,})\\.[A-Za-z0-9]{2,4}.+[-_\\s]{0,3}yEnc$/ 1 //For Your Eyes Only - Ian Fleming.epub - answering my own request yEnc 110 -321 ^alt\\.binaries\\.e-book$ /^New eBooks.+[ _-]{0,3}("|#34;)(?P.+?.+)\\.(par|vol|rar|nfo).*?("|#34;)/i 1 //New eBooks 8 June 2013 - "Melody Carlson - [Carter House Girls 08] - Last Dance (mobi).rar" 5 -322 ^alt\\.binaries\\.e-book$ /^Doctor Who - Target Books \\[\\d+\\/(\\d+\\]) - "DW[0-9]{0,3}[-_\\s]{0,3}(?P.+?)\\.(txt|pdf|mobi|epub|azw)" yEnc$/ 1 //Doctor Who - Target Books [128/175] - "DW125_ Terror of the Vervoids - Pip Baker.mobi" yEnc 10 -323 ^alt\\.binaries\\.e-book$ /^\\((?P[a-zA-Z0-9 -]+)\\) \\[\\d+\\/(\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(American Curves - Summer 2012) [01/10] - "AMECURSUM12.par2" yEnc 15 -324 ^alt\\.binaries\\.e-book$ /(.+)[-_\\s]{0,3}[\\(\\[]\\d+\\/\\d+[\\)\\]][-_\\s]{0,3}"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //(NordicAlbino) [01/10] - "SWHQ_NA_675qe0033102suSmzSE.sfv" yEnc ::: //365 Sex Positions A New Way Every Day for a Steamy Erotic Year [eBook] - (1/5) "365.Sex.Positions.A.New.Way.Every.Day.for.a.Steamy.Erotic.Year.eBook.nfo" - yenc yEnc 20 -325 ^alt\\.binaries\\.e-book$ /^[\\(\\[]\\d+\\/\\d+[\\)\\]][-_\\s]{0,3}"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4}")([-_\\s]{0,3}\\d+[.,]\\d+ [kKmMgG][bB])?[-_\\s]{0,3}yEnc$/ 1 //[1/8] - "Robin Lane Fox - Travelling heroes.epub" yEnc ::: //(1/1) "Unintended Consequences - John Ross.nzb" - 8.67 kB - yEnc 25 -326 ^alt\\.binaries\\.e-book$ /^[\\(\\[] .+? [\\)\\][-_\\s]{0,3}"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")[-_\\s]{0,3}[\\(\\[]\\d+\\/(\\d+[\\)\\]])[-_\\s]{0,3}yEnc$/ 1 //[ Mega Dating and Sex Advice Ebooks - Tips and Tricks for Men PDF ] - "Vatsyayana - The Kama Sutra.pdf.rar" - (54/58) yEnc 30 -327 ^alt\\.binaries\\.e-book$ /^(WWII in Photos)[-_\\s]{0,3}"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")[-_\\s]{0,3}yEnc$/ 1 //WWII in Photos - "WWII in Photos_05_Conflict Spreads Around the Globe - The Atlantic.epub" yEnc 35 -328 ^alt\\.binaries\\.e-book$ /^.+?"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")[-_\\s]{0,3}\\[\\d+ of (\\d+\\])[-_\\s]{0,3}yEnc$/ 1 //Various ebooks on History pdf format "Chelsea House Publishing Discovering U.S. History Vol. 8, World War I and the Roaring Twenties - 1914-1928 (2010).pdf" [1 of 1] yEnc 40 -329 ^alt\\.binaries\\.e-book$ /.+[\\(\\[]\\d+ of \\d+[\\)\\]] "(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //A few things - [4 of 13] "Man From U.N.C.L.E. 08 - The Monster Wheel Affair - David McDaniel.epub" yEnc 45 -330 ^alt\\.binaries\\.e-book$ /.+[\\(\\[]\\d+\\/\\d+[\\)\\]] - "(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}") toby\\d+$/ 1 //DDR Kochbuch 1968-wir kochen gut [1/1] - "DDR Kochbuch 1968-wir kochen gut.pdf" toby042002 50 -331 ^alt\\.binaries\\.e-book$ /^.+?[-_\\s]{0,3}"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}") [\\(\\[]\\d+\\/\\d+[\\)\\]] ([-_\\s]{0,3}\\d+[.,]\\d+ [kKmMgG][bB])?[-_\\s]{0,3}yEnc$/ 1 //Pottermore UK retail - "Harry Potter and the Goblet of Fire - J.K. Rowling.epub" (05/14) - 907.57 kB - yEnc 55 -332 ^alt\\.binaries\\.e-book$ /^\\[\\d+\\/\\d+\\] .+? - "(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}") yEnc$/ 1 //[001/125] (NL Epub Wierook Set 49) - "Abulhawa, Susan - Litteken van David_Ochtend in Jenin.epub" yEnc 60 -333 ^alt\\.binaries\\.e-book$ /^\\(\\d+\\/\\d+\\) "(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //(1/1) "Radiological Imaging of the Kidney - E. Quaia (Springer, 2011) WW.pdf" - 162,82 MB - (Radiological Imaging of the Kidney - E. Quaia (Springer, 2011) WW) yEnc 65 -334 ^alt\\.binaries\\.e-book$ /^\\(\\d+\\/\\d+\\) ".+(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")([-_\\s]{0,3}\\d+[.,]\\d+ [kKmMgG][bB])?[-_\\s]{0,3}"(?P.+?)" yEnc$/ 1 //(1/7) "0865779767.epub" - 88,93 MB - "Anatomic Basis of Neurologic Diagnosis - epub" yEnc 70 -335 ^alt\\.binaries\\.e-book$ /^(Attn:|Re: REQ:|New Scan).+?[-_\\s]{0,3}"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")[-_\\s]{0,3}(\\d+[.,]\\d+ [kKmMgG][bB](ytes)?)? yEnc$/i 1 //Re: REQ: Jay Lake's Mainspring series/trilogy (see titles inside) - "Lake, Jay - Clockwork Earth 03 - Pinion [epub].rar" 405.6 kBytes yEnc ::: //Attn: Brownian - "del Rey, Maria - Paradise Bay (FBS).rar" yEnc ::: //New Scan "Herbert, James - Sepulchre (html).rar" yEnc 75 -336 ^alt\\.binaries\\.e-book$ /.*"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //"Gabaldon, Diana - Outlander [5] The Fiery Cross.epub" yEnc ::: //Kiny Friedman "Friedman, Kinky - Prisoner of Vandam Street_ A Novel, The.epub" yEnc 80 -337 ^alt\\.binaries\\.e-book$ /(.+?)[-_\\s]{0,3}\\d+\\/(?P\\d+[-_\\s]{0,3}".+?)\\.(txt|pdf|mobi|epub|azw)"( \\(\\d+\\/\\d+\\))?( )?$/ 1 //Patterson flood - Mobi - 15/45 "James Patterson - AC 13 - Double Cross.mobi" 85 -338 ^alt\\.binaries\\.e-book$ /\\d+\\/\\d+[-_\\s]{0,3}(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/ 1 //04/63 Brave New World Revisited - Aldous Huxley.mobi yEnc 90 -339 ^alt\\.binaries\\.e-book$ /^- (?P.+?)\\.(par|vol|rar|nfo)[-_\\s]{0,3}(.+)/ 1 //- Campbell, F.E. - Susan - HIT 125.rar BDSM Themed Adult Erotica - M/F F/F - Rtf & Pdf 95 -340 ^alt\\.binaries\\.e-book$ /^"(?P.+?)\\.(txt|pdf|mobi|epub|azw)" \\(\\d+\\/(\\d+\\))/ 1 //"D. F. Jones - 03 - Colossus and The Crab.epub" (1/3) 100 -341 ^alt\\.binaries\\.e-book$ /^"(?P.+?)\\.(txt|pdf|mobi|epub|azw|lit|rar|nfo|par)" $/ 1 //"D. F. Jones - 01 - Colossus.epub" (note the space on the end) 105 -342 ^alt\\.binaries\\.e-book$ /^\\[\\d*+\\/(\\d+\\]) - "(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4} "|") yEnc$/ 1 //[01/19] - "13_X_Panzer_Tracts_EBook.nfo " yEnc 110 -343 ^alt\\.binaries\\.e-book$ /^\\[\\d+\\/(\\d+\\]) (?P.+?)\\.(txt|pdf|mobi|epub|azw|lit|rar|nfo|par).+?(yEnc)?$/ 1 //[09/14] Sven Hassel - Legion of the Damned 09, Reign of Hell.mobi sven hassel as requested (1/7) yEnc ::: //[1/1] Alex Berenson - John Wells 05, The Secret Soldier.mobi (space at end) 115 -344 ^alt\\.binaries\\.e-book$ /^\\[\\d+\\/(\\d+\\]) - "(?P.+?)\\.(txt|pdf|mobi|epub|azw|lit|rar|nfo|par)"( \\d+K)?( )?$/ 1 //[1/1] - "Die Kunst der Fotografie Lehrbuch und Bildband f r ambitionierte Fotografen.rar" ::: //[1/1] - "Demonic_ How the Liberal Mob Is Endanger - Coulter, Ann.mobi" (note space at end) ::: //[1/1] - "Paris in Love_ A Memoir - Eloisa James.mobi" 1861K 120 -345 ^alt\\.binaries\\.e-book$ /^\\d+\\/(\\d+)[-_\\s]{0,3}(?P.+?)\\.(txt|pdf|mobi|epub|azw|lit|rar|nfo|par)$/ 1 //002/240 Swordships.of.Scorpio.(Dray.Prescot).-.Alan.Burt.Akers.epub 125 -346 ^alt\\.binaries\\.e-book$ /^(?P[a-zA-Z0-9. ].+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|) yEnc$/ 1 //Akers Alan Burt - Dray Prescot Saga 14 - Krozair von Kregen.rar yEnc 130 -347 ^alt\\.binaries\\.e-book\\.flood$ /^New eBooks.+[ _-]{0,3}("|#34;)(?P.+?.+)\\.(par|vol|rar|nfo).*?("|#34;)/i 1 //New eBooks 8 June 2013 - "Melody Carlson - [Carter House Girls 08] - Last Dance (mobi).rar" 5 -348 ^alt\\.binaries\\.e-book\\.flood$ /^[A-Za-z ]+[-_\\s]{0,3}"(?P.+?)\\.(txt|pdf|mobi|epub|azw)"[-_\\s]{0,3}yEnc$/ 1 //World War II History - "Spies of the Balkans - Alan Furst.mobi" yEnc ::: //True Crime "T. J. English - Havana Nocturne (v5.0).mobi" yEnc ::: //E C Tubb Flood - "E C Tubb - Dumarest 31 The Temple of Truth.epub" - yEnc 10 -349 ^alt\\.binaries\\.e-book\\.flood$ /^SFF Dump - "(?P.+?)\\.(txt|pdf|mobi|epub|azw)" \\(\\d+\\/\\d+\\) - \\d+[.,]\\d+ [kKmMgG][bB] - yEnc$/ 1 //SFF Dump - "Thomas M. Disch - Camp Concentration.epub" (1033/1217) - 226.47 kB - yEnc 15 -350 ^alt\\.binaries\\.e-book\\.flood$ /^\\((?P[a-zA-Z0-9 -]+)\\) \\[\\d+\\/(\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(American Curves - Summer 2012) [01/10] - "AMECURSUM12.par2" yEnc 20 -351 ^alt\\.binaries\\.e-book\\.flood$ /(.+?)[-_\\s]{0,3}\\d+\\/(?P\\d+[-_\\s]{0,3}".+?)\\.(txt|pdf|mobi|epub|azw)"( \\(\\d+\\/\\d+\\))?( )?$/ 1 //Patterson flood - Mobi - 15/45 "James Patterson - AC 13 - Double Cross.mobi" 25 -352 ^alt\\.binaries\\.e-book\\.flood$ /^(Attn:|Re: REQ:|New Scan).+?[-_\\s]{0,3}"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")[-_\\s]{0,3}(\\d+[.,]\\d+ [kKmMgG][bB](ytes)?)? yEnc$/i 1 //Re: REQ: Jay Lake's Mainspring series/trilogy (see titles inside) - "Lake, Jay - Clockwork Earth 03 - Pinion [epub].rar" 405.6 kBytes yEnc ::: //Attn: Brownian - "del Rey, Maria - Paradise Bay (FBS).rar" yEnc ::: //New Scan "Herbert, James - Sepulchre (html).rar" yEnc 30 -353 ^alt\\.binaries\\.e-book\\.flood$ /.*"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //"Gabaldon, Diana - Outlander [5] The Fiery Cross.epub" yEnc ::: //Kiny Friedman "Friedman, Kinky - Prisoner of Vandam Street_ A Novel, The.epub" yEnc 35 -354 ^alt\\.binaries\\.e-book\\.flood$ /^\\[\\d+\\/\\d+\\] .+? - "(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}") yEnc$/ 1 //[001/125] (NL Epub Wierook Set 49) - "Abulhawa, Susan - Litteken van David_Ochtend in Jenin.epub" yEnc 40 -355 ^alt\\.binaries\\.e-book\\.flood$ /^\\(\\d+\\/\\d+\\) "(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //(1/1) "Radiological Imaging of the Kidney - E. Quaia (Springer, 2011) WW.pdf" - 162,82 MB - (Radiological Imaging of the Kidney - E. Quaia (Springer, 2011) WW) yEnc 45 -356 ^alt\\.binaries\\.e-book\\.flood$ /^\\(\\d+\\/\\d+\\) ".+(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")([-_\\s]{0,3}\\d+[.,]\\d+ [kKmMgG][bB])?[-_\\s]{0,3}"(?P.+?)" yEnc$/ 1 //(1/7) "0865779767.epub" - 88,93 MB - "Anatomic Basis of Neurologic Diagnosis - epub" yEnc 50 -357 ^alt\\.binaries\\.e-book\\.flood$ /^(Attn:|Re: REQ:|New Scan).+?[-_\\s]{0,3}"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")[-_\\s]{0,3}(\\d+[.,]\\d+ [kKmMgG][bB](ytes)?)? yEnc$/i 1 //Re: REQ: Jay Lake's Mainspring series/trilogy (see titles inside) - "Lake, Jay - Clockwork Earth 03 - Pinion [epub].rar" 405.6 kBytes yEnc ::: //Attn: Brownian - "del Rey, Maria - Paradise Bay (FBS).rar" yEnc ::: //New Scan "Herbert, James - Sepulchre (html).rar" yEnc 55 -358 ^alt\\.binaries\\.e-book\\.flood$ /^\\*(FULL )?REPOST\\* New eBooks.+[-_\\s]{0,3}"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4}")$/ 1 //*FULL REPOST* New eBooks 26 Nov 2012 & 20% PAR2 Set - "Elisabeth Kyle - The Captain's House (siPDF).rar" ::: //*REPOST* New eBooks 23 Nov 2012 - "Charles Culver - [The 11th Floor 02] - Awakening (mobi).rar" 60 -359 ^alt\\.binaries\\.e-book\\.flood$ /^.+?Search (for|4) (number|Numeric String) at end of (title|Subject)[-_\\s]{0,3}(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4})[-\\=_ ]{0,3}\\d+[-_\\s]{0,3}.+?yEnc$/i 1 //1 - 5 July 2013 - Search for number at end of title - Bevin Alexander - How Hitler Could Have Won World War II- The Fatal Errors That Lead to Nazi Defeat (epub).rar - 14418-25255-6053.rar.txt yEnc ::: //10 July 2013 - Search 4 Numeric String at End of Subject - Andew Hodges - Alan Turing- The Enigma (Centenary Edition) (kf8 mobi).rar = 21317-25234-21710.rar.txt yEnc 65 -360 ^alt\\.binaries\\.e-book\\.flood$ /^"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4}")[-_\\s]{0,3}\\d+[kKmMgG]$/ 1 //"Back to Pakistan_ A F 70 -361 ^alt\\.binaries\\.e-book\\.flood$ /^\\[\\d+\\/\\d+\\][-_\\s]{0,3}(?P.+)\\.(txt|pdf|mobi|epub|azw)[-_\\s]{0,3}.+flood( )?$/ 1 //[002/182] A. E. Van Vogt - The Anarchistic Colossus.mobi mobi flood ::: //[002/115] Alan Dean Foster - Alien.mobi sf single author flood 75 -362 ^alt\\.binaries\\.e-book\\.flood$ /^\\[\\d+\\/(\\d+\\]) (?P.+?)\\.(txt|pdf|mobi|epub|azw)/ 1 //[2/4] Graham Masterton - Descendant.mobi 80 -363 ^alt\\.binaries\\.e-book\\.flood$ /^\\d+\\. {0,1}(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})As Req.+yEnc$/i 1 //14. Alexander Kent - [Bolitho 12] - Signal Close Action (v2.0) (epub).epubAs Req Alexander Kent yEnc ::: //22.The Darkening Sea - Alexander Kent.epubAs Req Alexander Kent yEnc 85 -364 ^alt\\.binaries\\.e-book\\.flood$ /^reposting \\d+-\\d+-\\d+ new ebooks.+ pars[-_\\s]{0,3}(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) yEnc$/i 1 //reposting 2012-10-31 new ebooks with 35.74 pars - AD&D - [Tomes] - The Rod of Seven Parts - Douglas Niles (mobi).rar yEnc 90 -365 ^alt\\.binaries\\.e-book\\.flood$ /^\\d+ - (?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) yEnc$/i 1 //15 - Men at Arms.pdf yEnc 95 -366 ^alt\\.binaries\\.e-book\\.flood$ /^Filling Req(uest)?( for \\w+)?[-_\\s]{0,3}(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) \\[\\d+\\/\\d+\\] - yEnc$/i 1 //Filling Req for Delderfield- To Serve Them All My Days - R F Delderfield.mobi [6/6] - yEnc ::: //Filling Request - Armistead Maupin - 1 - Tales of the City.mobi [1/8] - yEnc 100 -367 ^alt\\.binaries\\.e-book\\.flood$ /^ATTN:Fozz E Bear (?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) yEnc$/i 1 //ATTN:Fozz E Bear Rogue - Danielle Steel.epub yEnc 105 -368 ^alt\\.binaries\\.e-book\\.flood$ /^As Requested - (?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) \\[\\d+\\/\\d+\\] - yEnc$/i 1 //As Requested - Silent Spring - Rachel Carson.epub [1/2] - yEnc 110 -369 ^alt\\.binaries\\.e-book\\.flood$ /^Attn: fastpiety - your requests[-_\\s]{0,3}(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) \\[\\d+\\/\\d+\\] - yEnc$/i 1 //Attn: fastpiety - your requests - Countess of Carnarvon - Lady Almina and the Real Downton Abbey- The Lost Legacy of Highclere Castle (epub).epub [1/1] - yEnc 115 -370 ^alt\\.binaries\\.e-book\\.flood$ /^(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) yEnc$/i 1 //Amanda Ashley - [Night 02] - Night's Touch (v5.0) (epub).epub yEnc 120 -371 ^alt\\.binaries\\.e-book\\.flood$ /^(?P[^.]{8,})\\.[A-Za-z0-9]{2,4}_as found[-_\\s]{0,3}yEnc$/ 1 //A Game of Thrones 01- George R. R. Martin.mobi_as found yEnc 125 -372 ^alt\\.binaries\\.e-book\\.flood$ /^(?P[^.]{8,})\\.[A-Za-z0-9]{2,4}[-_\\s]{0,3}File \\d+ of \\d+[-_\\s]{0,3}yEnc$/ 1 //Ben Carson - America the Beaut 130 -373 ^alt\\.binaries\\.e-book\\.flood$ /^Re: Attn Reg143- (?P[^.]{8,})\\.[A-Za-z0-9]{2,4}[-_\\s]{0,3}\\[\\d+\\/\\d+\\][- ]{0,4}yEnc$/ 1 //Re: Attn Reg143- (Morse 7) The Secret of Annexe 3 - Colin Dexter.mobi [11/14] - yEnc 135 -374 ^alt\\.binaries\\.e-book\\.flood$ /^(?P[\\w.,& \\()\\[\\]\\'\\`-]{8,}?)[-_\\s]{0,3}File \\d+ of \\d+[-_\\s]{0,3}yEnc$/ 1 //New eBooks 20 Aug 2012 - File 001 of 409 - yEnc 140 -375 ^alt\\.binaries\\.e-book\\.flood$ /^Re: Request[- ]{0,4}\\d+[-_\\s]{0,3}(?P[^.]{8,})([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}\\[\\d+\\/\\d+\\][- ]{0,4}yEnc$/ 1 //Re: Request - 05 L. E. Modesitt - Princeps.mobi [5/7] - yEnc 145 -376 ^alt\\.binaries\\.e-book\\.flood$ /^\\(.+\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(Bighathi) [4/4] - "Letters to Penthouse XXiLetters to Penthouse XXI - The Editors of Penthouse Magazine.epub" yEnc 150 -377 ^alt\\.binaries\\.e-book\\.flood$ /^\\(.+\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+REPOST.+[-_\\s]{0,3}yEnc$/ui 1 //(HUMAN BIO & MED 207) [02/39] - "Organic Chemistry 6th ed - L. Wade {SOLUTIONS MANUAL - J. Simek] (Pearson, 2006) WW.pdf" *REPOST* yEnc 155 -378 ^alt\\.binaries\\.e-book\\.flood$ /^\\d+[-_\\s]{0,3}(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/ui 1 //01 - The Colour of Magic.pdf yEnc 160 -379 ^alt\\.binaries\\.e-book\\.flood$ /^\\(.+\\)[-_\\s]{0,3}(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/ui 1 //(Esperanto novel) - H.A. Luyken - Pro ICtar.epub yEnc 165 -380 ^alt\\.binaries\\.e-book\\.flood$ /^All I have - not checked[-_\\s]{0,3}(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/ui 1 //All I have - not checked John D MacDonald - April Evil.epub yEnc 170 -381 ^alt\\.binaries\\.e-book\\.flood$ /^As req[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc.+$/ui 1 //As req "Aftermath - Peter Robinson.mobi" yEnc Peter Robinson - Inspector Banks 12 175 -382 ^alt\\.binaries\\.e-book\\.flood$ /^Attn.+\\[\\d+-\\d+\\][-_\\s]{0,3}(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/ui 1 //As req "Aftermath - Peter Robinson.mobi" yEnc Peter Robinson - Inspector Banks 12 180 -383 ^alt\\.binaries\\.e-book\\.flood$ /^Attn:[-_\\s]{0,3}(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/ui 1 //ATTN: Robert A. Ely - Wilde, Lori - Zero Control [html].rar yEnc 185 -384 ^alt\\.binaries\\.e-book\\.flood$ /^Attn:.+\\.com[-_\\s]{0,3}(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/ui 1 //ATTN: Drake@Darkest air.com - Kurtz, Katherine - Heirs of Saint Camber 03 - The Bastard Prince [txt].zip yEnc 190 -385 ^alt\\.binaries\\.e-book\\.flood$ /^reposting.+pars[-_\\s]{0,3}(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/ui 1 //reposting 2012-10-27 new ebooks with 35.74 pars - M William Phelps - Sleep In Heavenly Peace (mobi).rar yEnc 195 -386 ^alt\\.binaries\\.e-book\\.flood$ /^(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/ui 1 //A Tradition of Victory - Alexander Kent.epub yEnc 200 -387 ^alt\\.binaries\\.e-book\\.flood$ /.*"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //"Gabaldon, Diana - Outlander [5] The Fiery Cross.epub" yEnc ::: //Kiny Friedman "Friedman, Kinky - Prisoner of Vandam Street_ A Novel, The.epub" yEnc 205 -388 ^alt\\.binaries\\.e-book\\.german$ /^.+\\(eBook\\).+?\\[\\d+\\/\\d+\\] - "(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //.::::(eBook)::::. [01/10] - "Althaus modernisieren Magazin 08 09 2013.par2" - 65,71 MB yEnc 5 -389 ^alt\\.binaries\\.e-book\\.german$ /^.+?\\[\\d+\\/(\\d+\\]) - "(?P.+?)\\.(txt|pdf|mobi|epub|azw)" yEnc$/ 1 //ATTN: fals 10 -390 ^alt\\.binaries\\.e-book\\.german$ /^"(?P.+?)\\.(txt|pdf|mobi|epub|azw)" yEnc$/ 1 //"Abe, Shana - Der träumende Diamant 2 - Erdmagie.epub" yEnc 15 -391 ^alt\\.binaries\\.e-book\\.german$ /^\\(\\d+\\/\\d+\\) "(?P.+?)\\.(txt|pdf|mobi|epub|azw)"[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //(1/1) "B rse Online - No 30 2013.pdf" - 4,03 MB - yEnc 20 -392 ^alt\\.binaries\\.e-book\\.rpg$ /^.+?\\[\\d+\\/(\\d+\\]) - "(?P.+?)\\.(txt|pdf|mobi|epub|azw)" yEnc$/ 1 //ATTN: fals 5 -393 ^alt\\.binaries\\.e-book\\.magazines$ /^\\[(?P.+?)\\] - ".+?" yEnc$/ 1 // [Top.Gear.South.Africa-February.2014] - "Top.Gear.South.Africa-February.2014.pdf.vol00+1.par2" yEnc - 809.32 KB 5 -394 ^alt\\.binaries\\.e-book\\.technical$ /ASST (NEW|OLD) MTLS.*"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //ASST NEW MTLS 13 MAR 2012 A - [106/116] - "The Elements of Style, Illus. - W. Strunk Jr., E. White, M. Kalman (Penguin, 2005) WW.pdf" yEnc 5 -395 ^alt\\.binaries\\.e-book\\.technical$ /^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}yEnc$/ui 1 //"ASTG TRANSMISSON REBUILD MANUALS FOR BMW.rar.par2" [07/73] yEnc 10 -396 ^alt\\.binaries\\.e-book\\.technical$ /^\\(\\?+\\) \\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(???) [1/1] - "Asimov, Isaac - [Foundation 01] - De Foundation_v2.rar" yEnc 15 -397 ^alt\\.binaries\\.e-book\\.technical$ /^\\(\\d+\\/\\d+\\)[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //(07/14) "NS120107 07Jan12.pdf" - 238.80 MB - yEnc 20 -398 ^alt\\.binaries\\.e-book\\.technical$ /^\\(.+\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(103 eBooks On Music Production) [071/111] - "Pro Enginner School Vol. 1 + 2 By Record-Producer.com PDF.rar" yEnc 25 -399 ^alt\\.binaries\\.e-book\\.technical$ /^\\(.+\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+REPOST.+[-_\\s]{0,3}yEnc$/ui 1 //((BIO & MED 008) [29/64] - "Acupuncture Therapy for Neurological Diseases - Y. Xia, et al., (Springer, 2010) WW.pdf" *REPOST* yEnc 30 -400 ^alt\\.binaries\\.e-book\\.technical$ /^\\(.+\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(Bighathi) [4/4] - "Letters to Penthouse XXiLetters to Penthouse XXI - The Editors of Penthouse Magazine.epub" yEnc 35 -401 ^alt\\.binaries\\.e-book\\.technical$ /^\\(.+\\)[-_\\s]{0,3}[\\w]+[-_\\s]{0,3}\\(.+\\)[-_\\s]{0,3}\\[\\d+ of \\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(Repost) Computing (Recent) [32 of 44] "Professional XMPP Programming (Wrox, 2010).pdf" yEnc 40 -402 ^alt\\.binaries\\.e-book\\.technical$ /^\\d+.+E-books[-_\\s]{0,3}.+[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //48 Unsorted E-books (03-12-2010) [49/52] - "Zend Framework 1.8 Web Application Development.pdf" yEnc 45 -403 ^alt\\.binaries\\.e-book\\.technical$ /^A large collection of programming ebooks [-_\\s]{0,3}\\[\\d+ of \\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //A large collection of programming ebooks [128 of 527] "Eckel - Thinking in C++ - Volume II - 2e (Prentice, 2000).pdf" yEnc 50 -404 ^alt\\.binaries\\.e-book\\.technical$ /^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //"Make Magazine - Volume 03.pdf" yEnc 55 -405 ^alt\\.binaries\\.e-book\\.technical$ /"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //ADVANCES in CHEMICAL ENGINEERING 22aug11 [8 of 30] "Advances in Chemical Engineering Vol 20 Kwauk (AP 1994).pdf" yEnc 60 -406 ^alt\\.binaries\\.e-book\\.technical$ /"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Arduino Books by Request [9/9] - "iOS Sensor Apps with Arduino - A. Allan (O'Reilly, 2011) WW.pdf" (1/114) yEnc 65 -407 ^alt\\.binaries\\.erotica$ /\\[#+\\]-\\[.+?\\]-\\[.+?\\]-\\[ (?P.+?) \\][- ]\\[\\d+\\/\\d+\\] - "([\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[######]-[FULL]-[#a.b.teevee@EFNet]-[ Misfits.S01.SUBPACK.DVDRip.XviD-P0W4DVD ] [1/5] - "Misfits.S01.SUBPACK.DVDRip.XviD-P0W4DVD.nfo" yEnc 5 -408 ^alt\\.binaries\\.erotica$ /^NihilCumsteR \\[\\d+\\/\\d+\\] - "(?P.+?)NihilCumsteR\\./ 1 //NihilCumsteR [1/8] - "Conysgirls.cumpilation.xxx.NihilCumsteR.par2" yEnc 10 -409 ^alt\\.binaries\\.erotica$ /^\\[\\s?\\d+\\/\\d+\\s?\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[01/13] - "Mahina.Zaltana.14.01.17.720p.x264-DFury.7z.001" yEnc 15 -410 ^alt\\.binaries\\.erotica$ /^[><]+Hell-of-Usenet\\.org[<>]+ - \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //>>>>>Hell-of-Usenet.org>>>>> - [01/23] - "Cum Hunters 3 XXX.par2" yEnc 20 -411 ^alt\\.binaries\\.erotica$ /^[A-Z0-9][a-zA-Z0-9 -]{8,}? - \\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - yenc yEnc$/ 1 //Lesbian Crush Diaries 5 XXX DVDRip x264-Pr0nStarS - (01/26) "Lesbian.Crush.Diaries.5.XXX.DVDRip.x264-Pr0nStarS.nfo" - yenc 25 -412 ^alt\\.binaries\\.erotica$ /^(?P[A-Z0-9][a-zA-Z0-9 ]{8,}?) - File \\d+ of \\d+ - "([\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Megan Coxxx Takes Out Her Favourite Strap On Dildos And Plays With Her Girlfriend Re - File 01 of 67 - "Toy_Stories.r00.par2" yEnc 30 -413 ^alt\\.binaries\\.erotica$ /^\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB] .+? yEnc$/ 1 //[02/21] - "Staendig Feucht.part01.rar" - 493.38 MB ....::::UR-powered by SecretUsenet.com::::.... yEnc 35 -414 ^alt\\.binaries\\.erotica$ /^[A-Z0-9].{8,}? - \\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - yenc yEnc$/ 1 //Big Tits in Sport 12 (2013) XXX DVDRip x264-CHiKANi - (03/39) "Big.Tits.in.Sport.12.XXX.DVDRip.x264-CHiKANi.part01.rar" - yenc yEnc 40 -415 ^alt\\.binaries\\.erotica$ /^"(?P[\\w\\säöüÄÖÜߤƒ„¶!.,&;_\\()\\[\\]\\'\\`-]{8,})([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")_SpotBots yEnc$/ 1 //"Babysitters_a_Slut_4_Scene_4.part01.rar"_SpotBots yEnc 45 -416 ^alt\\.binaries\\.erotica$ /^.+?usenet-space.+?Powered by.+? "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+? \\d+\\/(\\d+.+?)$/ 1 //<<<>>CowboyUp2012 XXX><<>>usenet-space-cowboys.info<<< "Is.Not.Force.It.My.Younger.SOE-806.Jav.Censored.DVDRip.XviD-MotTto.part01.rar" >< 01/15 (1,39 50 -417 ^alt\\.binaries\\.erotica$ /^(?PFake Taxi E\\d+.+?)\\[\\d+\\/\\d+\\] - "([\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Fake Taxi E58 - Taylor[01/23] - "faket.e58.taylor.part01.rar" yEnc 55 -418 ^alt\\.binaries\\.erotica$ /^Flapdrol mp4 - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Flapdrol mp4 - "HotKinkyJo - 2013-12-28 - Pink Leopard toys sex movie.part5.rar" yEnc 60 -419 ^alt\\.binaries\\.erotica$ /^\\[U4A\\]\\[.+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[U4A][-always take the post from the first and original poster!-] - "VIDEOOT-10VSN01.vol27+23.PAR2" yEnc 65 -420 ^alt\\.binaries\\.erotica$ /^VolSpuitenMetBud - - \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //VolSpuitenMetBud - - [14/26] - "SexuallyBroken - 2013-12-30 - Stunning Cherie DeVille turned into blowjob device, hardcore deepthroating, relentless pounding! Cherie DeVille & Matt Williams.part13.rar" yEnc 70 -421 ^alt\\.binaries\\.erotica$ /^.+[Kk]leverig\\.eu.+\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //..::kleverig.eu::.. [01/18] - "CQVNAj4WLDW_7Bm8Ax6J.par2" - 686,38 MB yEnc 75 -422 ^alt\\.binaries\\.erotica$ /^(?P[\\w\\säöüÄÖÜߤƒ„¶!.,&;_\\()\\[\\]\\'\\`-]{8,})[-_\\s]{0,3}[\\(\\[]\\d+ of (\\d+[\\)\\]])[-_\\s]{0,3}"([\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Brazilian.Transsexuals.SR.UD.12.28.13.HD.720p.HDL [19 of 24] "JhoanyWilkerXmasLD_1_hdmp4.mp4.vol00+1.par2" yEnc 80 -423 ^alt\\.binaries\\.erotica$ /^\\(\\?+\\) \\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/ 1 //(????) [01/18] - "Blonde Cutie Seduces Her Step Dad Black Market.rar" yEnc 85 -424 ^alt\\.binaries\\.erotica$ /^[-_\\s]{0,4}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //- - [001/202] - "epAgY717nUChOeWswZR4.par2" yEnc 90 -425 ^alt\\.binaries\\.erotica$ /^[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //- "ADJG3HG2H1U9YHDGHD5GA8H.par2" yEnc 95 -426 ^alt\\.binaries\\.erotica$ /^[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/u 1 //- "dvd_10-96CEA81F.part1.rar" - [3/9] - 1,21 GB - yEnc 100 -427 ^alt\\.binaries\\.erotica$ /^[-_\\s]{0,3}\\(\\d+\\/\\d+\\)[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //- (01/74) - "50.Shades.Of.Dylan.Ryan.DVDRip.AVC.par2" yEnc 105 -428 ^alt\\.binaries\\.erotica$ /^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")_SpotBots[-_\\s]{0,3}yEnc$/u 1 //"HD_1110.part01.rar"_SpotBots yEnc 110 -429 ^alt\\.binaries\\.erotica$ /^\\(\\s*.+\\s*\\)\\s*.+By Dready Niek.+\\s*\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"Dreadys(?P[^.]{8,})([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //( DreadysCEMPenetrationshumides(1977) ) ** By Dready Niek** ) [11/25] - "DreadysCEMPenetrationshumides(1977).part10.rar" yEnc 115 -430 ^alt\\.binaries\\.erotica$ /^\\(\\s*\\[\\s*[Mm]agma classic[-_\\s]{0,3}(?P[\\w\\säöüÄÖÜߤƒ„¶!.,&;_\\()\\[\\]\\'\\`-]{8,})\\s*\\]\\s*\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //( [ Magma classic - Tyra Misoux-Schwere Jungs Und Leichte Madchen ] ) [01/16] - ".par2" yEnc 120 -431 ^alt\\.binaries\\.erotica$ /^\\(\\d+\\/\\d+\\)[-_\\s]{0,3}New\\.Nippi.+[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //(01/21) - New.Nippi.Video.The.Artist - "Next.Door.Nikki.Sims.2013-05-03_the_artist.jpeg" - 574.84 MB - yEnc 125 -432 ^alt\\.binaries\\.erotica$ /^VolSpuitenMetBud[-_\\s]{0,5}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //VolSpuitenMetBud - - [42/59] - "SexuallyBroken - 2012-11-19 - Apartment 345; A Feature Presentation of Real l 130 -433 ^alt\\.binaries\\.erotica$ /^[\\w]+\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //PNG170514XW042SOE9[01/35] - "PNG170514XW042SOE9.jpg" yEnc 135 -434 ^alt\\.binaries\\.erotica$ /^\\(\\d+\\/\\d+\\)[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}.+yEnc$/i 1 //(31/31) "Sex And Submission 2009 - 08.vol134+128.PAR2" - 2,05 GB -==UR-powered by SecretUsenet.com==- yEnc 140 -435 ^alt\\.binaries\\.erotica$ /^\\[http:\\/\\/www\\.hillysex\\.nl\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[http://www.hillysex.nl] - "H9DR3647K8V2Z5CG.par2" yEnc 145 -436 ^alt\\.binaries\\.erotica$ /\\w+\\(\\?+\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //klokhuis(????) [01/28] - "Klokhuis-Hello-Titty-06.par2" yEnc 150 -437 ^alt\\.binaries\\.erotica$ /\\(\\d+\\/\\d+\\)[-_\\s]{0,3}v(2v)?[-_\\s]{0,4}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //(011/107) - v2v - "0203114movie-eng-a.part10.rar" - 1,26 GB - yEnc 155 -438 ^alt\\.binaries\\.erotica$ /\\(\\?+\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(????) [01/15] - "MRGVGoVNJ3_hc.par2" yEnc 160 -439 ^alt\\.binaries\\.erotica$ /\\((?P[\\w\\s-]{8,})\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(Czech Amateurs 01) [30/43] - "CZEAMA01.part29.rar" yEnc 165 -440 ^alt\\.binaries\\.erotica$ /\\(\\?+\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc $/iu 1 //(????) [01/15] - "PMRJDNN.par2" yEnc ::: // *Note space after yEnc 170 -441 ^alt\\.binaries\\.erotica$ /^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //"Cuties 6.part.vol551+106.par2" yEnc 175 -442 ^alt\\.binaries\\.erotica\\.divx$ /^\\w+\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 // BBC190215XPLPU31SW[02/28] - "BBC190215XPLPU31SW.par2" yEnc 5 -443 ^alt\\.binaries\\.etc$ /^\\[scnzbefnet\\] (?P.+?) \\[\\d+\\/(\\d+\\]) - ".+?" yEnc$/ 1 //[scnzbefnet] Were.the.Millers.2013.EXTENDED.720p.BluRay.x264-SPARKS [01/61] - "were.the.millers.2013.extended.720p.bluray.x264-sparks.nfo" yEnc 5 -444 ^alt\\.binaries\\.etc$ /^.+\\[DoAsYouLike\\].+\\d+[.,]\\d+ [kKmMgG][bB].+"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") (\\d+[.,])?\\d+ ([kKmMgG])?[bB][-_\\s]{0,3}yEnc$/ 1 //..:[DoAsYouLike]:.. 116,12 MB "Graphite v8.9.17 SP4R4.nfo" 3,00 kB yEnc 10 -445 ^alt\\.binaries\\.etc$ /^[\\(\\[]\\d+\\/\\d+[\\)\\]][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/ 1 //(047/550) "Enf.S02E02.G.D.D.W.7.H.x2-e.vol105+99.PAR2" - 36,13 GB -Enf.S02.G.D.D.W.7.H.x2-e yEnc ::: //[3/3] - "Mayle Peter - Der Coup von Marseille.epub.vol0+1.par2" - 956,83 kB {UR} yEnc 15 -446 ^alt\\.binaries\\.etc$ /^.+Old but Sold.+>< "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") >< \\d+\\/\\d+ \\(\\d+[.,]\\d+ [kKmMgG][bB]\\).+ yEnc$/ 1 //<<>> <<< >< >< "German Top 50 ODC - 12.08.2013.nfo" >< 02/33 (541,61 MB) >< 10,93 kB > yEnc 20 -447 ^alt\\.binaries\\.etc$ /^.+Usenet-Space-Cowboys.+> - (?P[A-Z0-9][a-zA-Z0-9\\. ]{6,})([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}).+ yEnc$/ 1 //<<>> - 1Password V1.0.9.236 Setup Key.PAR2 yEnc 25 -448 ^alt\\.binaries\\.etc$ /^\\d+[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //704900999555666777123978 - [398/415] - "Jormungand Complete [720p] mHD.part31.rar" yEnc 30 -449 ^alt\\.binaries\\.etc$ /^[\\w. -]+[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w.\\()-]{8,}?\\b)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Man.Of.Steel.2013.BRRip.x264.AC3-UNiQUE - [02/38] - "Man.Of.Steel.2013.BRRip.x264.AC3-UNiQUE.part01.rar" yEnc 35 -450 ^alt\\.binaries\\.etc$ /^.+old but sold.+(?P[\\w. \\()-]{8,}?\\b)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")>\\[\\d+\\/\\d+\\][-_\\s]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][-_\\s]{0,3}yEnc$/ 1 //<<<< old but sold >>>> < USC> <"K11 - Kommissare im Einsatz (DE) NDS.part3.rar">[04/11] 74,54 MB yEnc 40 -451 ^alt\\.binaries\\.etc$ /^Uploader\\.Presents-(?P[\\w. \\()-]{8,}?\\b)[\\(\\[]\\d+\\/\\d+\\]".+?" yEnc$/ 1 //Uploader.Presents-ACDC.Let.There.Be.Rock.1980.720p.BluRay.DD5.1.x264-DON(00/47]"rock.ac3.720p.nzb" yEnc 45 -452 ^alt\\.binaries\\.etc$ /^(?P[\\w.\\()-]{8,})[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Bitsum.Technologies.Process.Lasso.Pro.v6.5.00.Cracked-EAT - [3/4] - "eat.vol0+1.par2" yEnc 50 -453 ^alt\\.binaries\\.etc$ /^.+?usenet-space.+?Powered by.+? "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+? \\d+\\/(\\d+.+?)$/ 1 //<<>> USC <<< "Medieval Wii Pal.vol108+29.par2" >< 60/60 (4,82 GB) >< 95,77 MB > yEnc 55 -454 ^alt\\.binaries\\.etc$ /^Uploader\\.Presents-(?P[\\w. \\()-]{8,}?\\b)[\\(\\[]\\d+\\/\\d+\\]".+?" yEnc$/ 1 //Uploader.Presents-ACDC.Let.There.Be.Rock.1980.720p.BluRay.DD5.1.x264-DON(00/47]"rock.ac3.720p.nzb" yEnc 60 -455 ^alt\\.binaries\\.etc$ /^(?P[\\w.\\()-]{8,})[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Bitsum.Technologies.Process.Lasso.Pro.v6.5.00.Cracked-EAT - [3/4] - "eat.vol0+1.par2" yEnc 65 -456 ^alt\\.binaries\\.etc$ /^.+?usenet-space.+?Powered by.+? (?P[\\w. \\()-]{8,}?\\b)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+? \\d+\\/(\\d+.+?)$/ 1 //<<>> USC <<< "Medieval Wii Pal.vol108+29.par2" >< 60/60 (4,82 GB) >< 95,77 MB > yEnc 70 -457 ^alt\\.binaries\\.etc$ /^[\\w. -]+[-_\\s]{0,3}"(?P[\\w.\\()-]{8,}?\\b)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //W33d5.S01.720p.BluRay.x264 - "W33d5.S01.720p.BluRay.x264.part63.rar" yEnc 75 -458 ^alt\\.binaries\\.etc$ /^[\\w. -]+[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w.\\()-]{8,}?\\b)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Man.Of.Steel.2013.BRRip.x264.AC3-UNiQUE - [02/38] - "Man.Of.Steel.2013.BRRip.x264.AC3-UNiQUE.part01.rar" yEnc 80 -459 ^alt\\.binaries\\.etc$ /^>GOU<< (?P[\\w.\\[\\]\\() -]{8,}?\\b)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rarr|\\.7z)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}).+www\\.SSL-News\\.info<[-_\\s]{0,3}yEnc$/ 1 //>GOU<< XUS Clock Plus v1.5.0 with Key [TorDigger].PAR2 >>www.SSL-News.info< yEnc 85 -460 ^alt\\.binaries\\.etc$ /^[\\w. -]+[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w.\\()-]{8,}?\\b)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Man.Of.Steel.2013.BRRip.x264.AC3-UNiQUE - [02/38] - "Man.Of.Steel.2013.BRRip.x264.AC3-UNiQUE.part01.rar" yEnc 90 -461 ^alt\\.binaries\\.etc$ /^>GOU<< (?P[\\w.\\[\\]\\() -]{8,}?\\b)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rarr|\\.7z)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}).+www\\.SSL-News\\.info<[-_\\s]{0,3}yEnc$/ 1 //>GOU<< XUS Clock Plus v1.5.0 with Key [TorDigger].PAR2 >>www.SSL-News.info< yEnc 95 -462 ^alt\\.binaries\\.etc$ /^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //"Drains_READNFO-VACE.nfo" yEnc 100 -463 ^alt\\.binaries\\.frogs$ /\\[\\.in\\][-_\\s]{0,3}.*[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[.in] X-Art.13.03.08.Angelica.Spilled.Milk.XXX.540p-WMV [02/23] - "X-Art.13.03.08.Angelica.Spilled.Milk.XXX.540p-WMV.r00" yEnc 5 -464 ^alt\\.binaries\\.frogs$ /\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Beachbody.ShaunT.Focus.T25 [01/39] - "Beachbody.ShaunT.Focus.T25.DVD3.Ab.Intervals.par2" yEnc 10 -465 ^alt\\.binaries\\.ftn$ /^(Usenet collector)?\\(aangemeld.+\\) \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(aangemeld bij usenet collector) [181/190] - "Ally_McBeal_Season_3_Dvd_4.vol0176+176.par2" yEnc ::: //Usenet collector(aangemeld bij usenet collector) [001/124] - "Northern_Exposure_Season_4_dvd_2.par2" yEnc 5 -466 ^alt\\.binaries\\.ftn$ /^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //"Family Games-OUTLAWS.nfo" yEnc 10 -467 ^alt\\.binaries\\.ftn$ /^(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) {0,3}yEnc$/ 1 //Adobe Photoshop Lightroom v5.2 - FiNaL - Multilingual [WIN].vol037+32.PAR2 yEnc 15 -468 ^alt\\.binaries\\.ftn$ /^\\((?P[\\w+ .\\()-]{8,})\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(Wondershare AllMyTube 3.8.0.4 + Patch) [01/12] - "Wondershare AllMyTube 3.8.0.4 + Patch.nfo" yEnc 20 -469 ^alt\\.binaries\\.ftn$ /^\\(\\?+\\) \\[\\d+\\/\\d+\\] - ".+?(?P[-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(????) [10/26] - "The.Young.Riders.S01E02.480pWEB-DL.AAC2.0.H.264-AJP69.part09.rar" yEnc 25 -470 ^alt\\.binaries\\.fz$ /^>ghost-of-usenet\\.org>(?P.+?)<.+?> ".+?" yEnc$/ 1 //>ghost-of-usenet.org>Monte.Cristo.GERMAN.2002.AC3.DVDRiP.XviD.iNTERNAL-HACO "haco-montecristo-xvid-a.par2" yEnc 5 -471 ^alt\\.binaries\\.game$ /(\\[[\\d#]+\\]-\\[.+?\\]-\\[.+?\\]-)\\[ (?P.+?) \\][- ]\\[\\d+\\/\\d+\\] - "(.+?)" yEnc$/ 1 //[192474]-[MP3]-[a.b.inner-sanctumEFNET]-[ Newbie_Nerdz_-_I_Cant_Forget_that_Girl_EP-(IM005)-WEB-2012-YOU ] [17/17] - "newbie_nerdz_-_i_cant_forget_that_girl_ep-(im005)-web-2012-you.nfo" yEnc 5 -472 ^alt\\.binaries\\.games$ /^>ghost-of-usenet\\.org>(?P.+?)<.+?> ".+?" yEnc$/ 1 //>ghost-of-usenet.org>Monte.Cristo.GERMAN.2002.AC3.DVDRiP.XviD.iNTERNAL-HACO "haco-montecristo-xvid-a.par2" yEnc 5 -473 ^alt\\.binaries\\.games$ /^(?P.+?) \\[\\d+\\/\\d+\\] - ".+?" .+? yEnc$/ 1 //XCOM.Enemy.Unknown.Deutsch.Patch.TokZic [0/9] - "XCOM Deutsch.nzb" ein CrazyUpp yEnc 10 -474 ^alt\\.binaries\\.games$ /^\\[ (?P[-.a-zA-Z0-9]+) \\] - \\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //[ Dawn.of.Fantasy.Kingdom.Wars-PROPHET ] - [12/52] - "ppt-dfkw.part04.rar" yEnc 15 -475 ^alt\\.binaries\\.games$ /\\.net <<>> - \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //brothers-of-usenet.info/.net <<>> - [11/17] - "Reload.Outdoor.Action.Target.Down.GERMAN-0x0007.vol003+004.PAR2" yEnc 20 -476 ^alt\\.binaries\\.games$ /\\[[\\d#]+\\]-\\[.+?\\]-\\[.+?\\]-\\[ (?P.+?) \\][- ]\\[\\d+\\/(\\d+\\])[-_\\s]{0,3}("|#34;).+?/ 1 //[162198]-[FULL]-[a.b.teevee]-[ MasterChef.Junior.S01E07.720p.HDTV.X264-DIMENSION ]-[09/54] - "masterchef.junior.107.720p-dimension.nfo" yEnc 25 -477 ^alt\\.binaries\\.games$ /^"(?P.+)__www.realmom.info__.+" \\(\\d+\\/\\d+\\) \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/ 1 //"A.Stroke.of.Fate.Operation.Valkyrie-SKIDROW__www.realmom.info__.nfo" (02/38) 1,34 GB yEnc 30 -478 ^alt\\.binaries\\.games$ /^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //"Mad.Men.S06E11.HDTV.x264-2HD.par2" yEnc 35 -479 ^alt\\.binaries\\.games$ /^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\[\\d+\\/(\\d+\\])[ _-]{0,3}yEnc$/ 1 //"Marvels.Agents.of.S.H.I.E.L.D.S01E07.HDTV.XviD-FUM.avi.nfo" [09/16] yEnc 40 -480 ^alt\\.binaries\\.games$ /^\\(\\?+\\) \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(????) [03/20] - "Weblinger - The.Haunted.House.Mysteries.v1.0-ZEKE.part01.rar" yEnc 45 -481 ^alt\\.binaries\\.games$ /^\\(\\d+\\/\\d+\\)( - Description)?[-_ ]{0,5}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")( - \\d+([.,]\\d+ [kKmMgG])?[bB])? - \\d+([.,]\\d+ [kKmMgG])?[bB][-_\\s]{0,3}(\\[REPOST\\] )?yEnc$/ 1 //(001/132) "Harry.Potter.And.The.Goblet.Of.Fire.2005.810p.BluRay.x264.DTS.PRoDJi.nfo" - 8,71 GB - yEnc ::: //(01/11) - Description - "ba588f108dbd068dc93e4b0182de652d.par2" - 696,63 MB - yEnc ::: //(01/11) "Microsoft Games for Windows 8 v1.2.par2" - 189,87 MB - [REPOST] yEnc ::: //(01/24) "ExBrULlNjyRPMdxqSlJKEtAYSncStZs3.nfo" - 3.96 kB - 404.55 MB - yEnc ::: //(01/44) - - "Wii_2688_R_Knorloading.par2" - 1,81 GB - yEnc 50 -482 ^alt\\.binaries\\.games$ /^\\(\\d+\\/\\d+\\) - \\[Lords-of-Usenet\\] presents (?P.+?)[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - yEnc$/ 1 //(01/59) - [Lords-of-Usenet] presents Sins.of.a.Solar.Empire.Rebellion.Forbidden.Worlds-RELOADED - "rld-soaserfw.nfo" - yEnc 55 -483 ^alt\\.binaries\\.games$ /^\\(\\d+\\/(\\d+\\))[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+([.,]\\d+ [kKmMgG])?[bB] -(?P[a-zA-Z0-9-_\\.]+) yEnc$/ 1 //(19/28) "sr-joedanger.rar" - 816,05 MB -Joe.Danger-SKIDROW yEnc ::: //(39/40) "flt-ts31554.vol061+57.PAR2" - 1,43 GB -The_Sims_3_v1.55.4-FLTDOX yEnc 60 -484 ^alt\\.binaries\\.games$ /^[\\(\\[]\\d+\\/\\d+[\\)\\]][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[02/17] - "Castle.Of.Illusion.Starring.Mickey.Mouse.PSN.PS3-DUPLEX.nfo" yEnc 65 -485 ^alt\\.binaries\\.games$ /^\\[PROPER\\] (?P[a-zA-Z0-9-_\\.]+) [\\(\\[]\\d+\\/\\d+[\\)\\]][-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[PROPER] F 70 -486 ^alt\\.binaries\\.games$ /^<<<< (?P[a-zA-Z0-9-_ ]+) >>>> < USC> <".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")>\\[\\d+\\/(\\d+\\]) \\d+([.,]\\d+ [kKmMgG])?[bB] yEnc$/ 1 //<<<< Alien Zombie Death v2 EUR PSN PSP-PLAYASiA >>>> < USC> <"Alien Zombie Death v2 EUR PSN PSP-PLAYASiA.part4.rar">[06/16] 153,78 MB yEnc 75 -487 ^alt\\.binaries\\.games$ /^<<<.+\\.info>>> fuzzy <<<(?P[a-zA-Z0-9-_ ]+)>< ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") >< \\d+\\/(\\d+) \\(\\d+([.,]\\d+ [kKmMgG])?[bB]\\) >< \\d+([.,]\\d+ [kKmMgG])?[bB] > yEnc$/ 1 //<<>> fuzzy <<< "Adventures To Go EUR PSP-ZER0.nfo" >< 2/6 (195,70 MB) >< 10,70 kB > yEnc 80 -488 ^alt\\.binaries\\.games$ /^FTDWORLD\\.NET\\| (?P[a-zA-Z0-9 -_\\.]+) \\[\\d+\\/(\\d+\\])- ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //FTDWORLD.NET| Grand.Theft.Auto.V.XBOX360-QUACK [020/195]- "gtavdisc1.r17" yEnc 85 -489 ^alt\\.binaries\\.games$ /^\\((?P[a-zA-Z0-9 -_\\.]+)\\) \\[\\d+\\/(\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(F 90 -490 ^alt\\.binaries\\.games$ /^\\[\\d+\\/(\\d+\\]) \\((?P[a-zA-Z0-9 -_\\.]+)\\) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[16/62] (CastleStorm.XBLA.XBOX360-MoNGoLS) - "mgl-cast.part15.rar" yEnc 95 -491 ^alt\\.binaries\\.games$ /^GOGDump (?P.+) \\[\\d+\\/(\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //GOGDump Wing Commander - Privateer (1993) [GOG] [03/14] - "Wing Commander - Privateer (1993) [GOG].part2.rar" yEnc 100 -492 ^alt\\.binaries\\.games$ /^Uploader\\.Presents-(?P.+)[\\(\\[]\\d+\\/\\d+\\]".+" yEnc$/ 1 //Uploader.Presents-Metal.Gear.Rising.Revengeance-RELOADED(51/65]"rld-megerire.r48" yEnc 105 -493 ^alt\\.binaries\\.games$ /^Uploader\\.Presents-(?P.+?) \\(\\?+\\) \\[\\d+\\/\\d+\\] - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Uploader.Presents-LEGO.The.Hobbit-RELOADED (????) [01/90] - "rld-legoho.nfo" yEnc 110 -494 ^alt\\.binaries\\.games$ /^\\( (?P[\\w. -]{8,}) \\)[-_\\s]{0,3}\\[\\d+\\/(\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //( Overlord II RELOADED ) - [013/112] - "rld-olii.part001.rar" yEnc 115 -495 ^alt\\.binaries\\.games$ /^(?P[a-zA-Z0-9 -\\._]+) - \\[\\d+\\/(\\d+\\])[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Baku.No.JAP.Working.PSP-PaL - [1/7] - "Baku.No.JAP.Working.PSP-PaL.rar" yEnc 120 -496 ^alt\\.binaries\\.games$ /^.+old but sold.+"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") >< \\d+\\/\\d+[-_\\s]{0,3}\\(\\d+[.,]\\d+ [kKmMgG][bB]\\) >< \\d+[.,]\\d+ [kKmMgG][bB] >[-_\\s]{0,3}yEnc$/ui 1 // <<>> USC <<< "Flatout WII Format WBFS.part20.rar" >< 21/35 (1,39 GB) >< 47,68 MB > yEnc 125 -497 ^alt\\.binaries\\.games$ /^(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}-]{8,}?)[-_\\s]{4,10}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Tiny Toon Adventures Buster & The Beanstalk PSX2PSP - "EBOOT.nzb" yEnc 130 -498 ^alt\\.binaries\\.games$ /^>>> www\\.lords-of-usenet\\.org <<< "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")(?P \\(PS2 Game\\)) \\[\\d+\\/\\d+\\] - \\[\\d+([.,]\\d+ [kKmMgG])?[bB]\\] yEnc$/ui 1 //>>> www.lords-of-usenet.org <<< "SpongeBob & Freunde - Schlacht um die Vulkaninsel.part21.rar" (PS2 Game) [22/33] - [1,15 GB] yEnc 135 -499 ^alt\\.binaries\\.games\\.dox$ /(\\[[\\d#]+\\]-\\[.+?\\]-\\[.+?\\]-)\\[ (?P.+?) \\][- ]\\[\\d+\\/\\d+\\] - "(.+?)" yEnc$/ 1 //[142961]-[MP3]-[a.b.inner-sanctumEFNET]-[ Pascal_and_Pearce-Passport-CDJUST477-2CD-2011-1REAL ] [28/36] - "Pascal_and_Pearce-Passport-CDJUST477-2CD-2011-1REAL.par2" yEnc 5 -500 ^alt\\.binaries\\.games\\.dox$ /^\\[NEW DOX\\][ _-]{0,3}(?P.+?)[ _-]{0,3}\\[\\d+\\/\\d+\\][ _-]{0,3}"([\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[NEW DOX] The.King.of.Fighters.XIII.Update.v1.1c-RELOADED [1/6] - "The.King.of.Fighters.XIII.Update.v1.1c-RELOADED.par2" yEnc ::: //[NEW DOX] Crysis.3.Crackfix.3.INTERNAL-RELOADED [00/12] ".nzb" yEnc 10 -501 ^alt\\.binaries\\.games\\.dox$ /^\\[NEW DOX\\][ _-]{0,3}(?P.+?)[ _-]{0,3}"([\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[NEW DOX] Minecraft.1.6.2.Installer.Updated.Server.List - "Minecraft 1 6 2 Cracked Installer Updater Serverlist.nfo" - yEnc 15 -502 ^alt\\.binaries\\.games\\.dox$ /^\\[ (?P[a-zA-Z0-9-\\._ ]+) \\d+\\/(\\d+ \\]) ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[ Assassins.Creed.3.UPDATE 1.01.CRACK.READNFO-P2P 00/17 ] "Assassins.Creed.3.UPDATE 1.01.nzb" yEnc 20 -503 ^alt\\.binaries\\.games\\.dox$ /^\\[\\d+\\/(\\d+\\]) - (?P[a-zA-Z0-9-\\.\\&_ ]+) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")( - PC)? - yEnc$/ 1 //[01/16] - GRID.2.Update.v1.0.83.1050.Incl.DLC-RELOADED - "reloaded.nfo" - yEnc ::: //[12/17] - Call.of.Juarez.Gunslinger.Update.v1.03-FTS - "fts-cojgsu103.vol00+01.PAR2" - PC - yEnc 25 -504 ^alt\\.binaries\\.games\\.dox$ /^\\[\\d+\\/(\\d+\\]) (?P[a-zA-Z0-9-\\._ ]+) ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[36/48] NASCAR.The.Game.2013.Update.2-SKIDROW - "sr-nascarthegame2013u2.r33" yEnc 30 -505 ^alt\\.binaries\\.games\\.dox$ /^\\[(?P[a-zA-Z0-9-\\._ ]+)\\]- ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[Grand_Theft_Auto_Vice_City_1.1_Blood_NoCD_Patch-gimpsRus]- "grugtavc11bcd.nfo" yEnc 35 -506 ^alt\\.binaries\\.games\\.dox$ /^\\[OLD DOX\\][ _-]{0,3}\\(\\d+\\/\\d+\\)[ _-]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+[,.]\\d+ [mMkKgG][bB][-_\\s]{0,3}yEnc$/ 1 //[OLD DOX] (0001/2018) - "18.Wheels.of.Steel.American.Long.Haul.CHEAT.CODES-RETARDS.7z" - 1,44 GB - yEnc 40 -507 ^alt\\.binaries\\.games\\.dox$ /^(?P[a-zA-Z0-9-\\._ ]+) - \\[\\d+\\/(\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|"){0,3}yEnc$/ 1 //Endless.Space.Disharmony.v1.1.1.Update-SKIDROW - [1/6] - "Endless.Space.Disharmony.v1.1.1.Update-SKIDROW.nfo" - yEnc 45 -508 ^alt\\.binaries\\.games\\.dox$ /^\\((?P[a-zA-Z0-9-\\._ ]+)\\) \\[\\d+\\/(\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|"){0,3}yEnc$/ 1 //(F.E.A.R.3.Update.1-SKIDROW) [01/12] - "F.E.A.R.3.Update.1-SKIDROW.par2" yEnc 50 -509 ^alt\\.binaries\\.games\\.dox$ /^\\((?P[a-zA-Z0-9-\\._ ]+)\\) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(Company.of.Heroes.2.Update.v3.0.0.9704.Incl.DLC.GERMAN-0x0007) - "0x0007.nfo" yEnc 55 -510 ^alt\\.binaries\\.games\\.wii$ /^"(?P.+)__www.realmom.info__.+" \\(\\d+\\/\\d+\\) \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/ 1 //"National.Geographic.Challenge.USA.WII-dumpTruck__www.realmom.info__.jpg" (003/111) 4,81 GB yEnc 5 -511 ^alt\\.binaries\\.games\\.wii$ /^\\[(?P.+)\\]-\\[#a.b.g.w@efnet\\]-\\[www.abgx.net\\]-\\[\\d+\\/\\d+\\] - ("|#34;).+("|#34;) yEnc$/ 1 //[Cabelas_North_American_Adventure_USA_WII-ZRY-Scrubbed-xeroxmalf]-[#a.b.g.w@efnet]-[www.abgx.net]-[01/27] - "Cabelas_North_American_Adventure_USA_WII-ZRY-Scrubbed-xeroxmalf.par2" yEnc 10 -512 ^alt\\.binaries\\.games\\.wii$ /^\\d+ (\\d+\\.)?(?P.+-OneUp).+ \\[\\d+\\/\\d+\\] - ("|#34;).+("|#34;) yEnc$/ 1 //4300 World.Sports.Competition.USA.VC.Wii-OneUp....... AmigaOS4.1 RULEZ [0/9] - "4300.nzb" yEnc ::: //4300 1695.World.Sports.Competition.USA.VC.Wii-OneUp....... AmigaOS4.1 RULEZ [0/9] - "4300.nzb" yEnc 15 -513 ^alt\\.binaries\\.games\\.wii$ /^\\d+ - (?P.+-OneUp).+ \\d+\\/\\d+ - ("|#34;).+("|#34;) yEnc$/ 1 //6717 - Baseball.Stars.2.PAL.VC.NG.Wii-OneUp - 01/11 - "1u-baseball-stars-2-pal.nfo" yEnc 20 -514 ^alt\\.binaries\\.games\\.wii$ /^\\[\\d+\\]-\\[abgx.net\\] (?P.+) \\[\\d+\\/\\d+\\] - ("|#34;).+("|#34;) yEnc$/ 1 //[2103]-[abgx.net] Harvey_Birdman_Attorney_At_Law-USA-WII [000/104] - "Harvey_Birdman_Attorney_At_Law-USA-WII.nzb" yEnc 25 -515 ^alt\\.binaries\\.games\\.wii$ /^\\(\\d+\\)-\\[abgx.net\\]-(?P.+)-\\[\\d+\\/\\d+\\] - ("|#34;).+("|#34;) yEnc$/ 1 //(3790)-[abgx.net]-[Samurai_Warriors_Katana_USA-WII]-[000/105] - "3790.nzb" yEnc 30 -516 ^alt\\.binaries\\.games\\.wii$ /^\\[REQ# \\d+\\] Full \\d+ (?P.+) PAL ("|#34;).+("|#34;) \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/ 1 //[REQ# 7134] Full 105 Cocoto_Magic_Circus_PAL_Wii-OE PAL "oe-magic.r00" 4.57 GB yEnc 35 -517 ^alt\\.binaries\\.games\\.wii$ /\\[[\\d#]+\\]-\\[.+?\\]-\\[ (?P.+?) \\][- ]\\[\\d+\\/\\d+\\][-_\\s]{0,3}".+?" yEnc$/ 1 //[11614]-[#a.b.g.wii@efnet]-[ EA.Sports.Active.NFL.Training.Camp.USA.WII-ProCiSiON ]-[01/95] - "xxx-nflt.nfo" yEnc 40 -518 ^alt\\.binaries\\.games\\.wii$ /\\[[\\d#]+\\]-\\[.+?\\]-\\[.+?\\]-\\[(?P.+?)\\][- ]\\[\\d+\\/\\d+\\][-_\\s]{0,3}".+?" yEnc$/ 1 //[8524]-[#a.b.g.wii@EFNet]-[FULL]-[Fantastic_Four_Rise_Of_The_Silver_Surfer_NTSC_Wii-VORTEX]-[001/104] - "vortex-ffrotss.wii.nfo" yEnc 45 -519 ^alt\\.binaries\\.games\\.wii$ /^\\[\\d+]-\\[abgx\\]-\\[FULL\\]-\\[(?P.+)-PLAYME\\]-po0p.+-\\[\\d+\\/\\d+\\] - ("|#34;).+("|#34;) yEnc$/ 1 //[13118]-[abgx]-[FULL]-[Doods_Big_Adventure_PAL_WII-PLAYME]-po0p?!-[000/103] - "13118.nzb" yEnc 50 -520 ^alt\\.binaries\\.games\\.wii$ /^\\[\\d+]-\\[#ab@EFNet\\]-\\[FULL\\]-\\[(?P.+)-WiiERD\\]-po0p.+-\\[\\d+\\/\\d+\\] - ("|#34;).+("|#34;) yEnc$/ 1 //[13208]-[#ab@EFNet]-[FULL]-[Calvin_Tuckers_Farm_Animal_Racing_PAL_Wii-WiiERD]-po0p!-[072/112] - "w-ctfar.r68" yEnc 55 -521 ^alt\\.binaries\\.games\\.wii$ /^\\(www\\.Thunder-News\\.org\\) ?>(?P.+)< ?[ _-]{0,3}(\\(\\d+\\/\\d+\\)|\\[\\d+\\/\\d+\\])?[ _-]{0,5}("|#34;).+("|#34;) yEnc$/i 1 //(www.Thunder-News.org) >Winter.Stars.USA.WII-dumpTruck< - (001/112) - "dumptruck-winterstars.par2" yEnc 60 -522 ^alt\\.binaries\\.games\\.wii$ /^\\[\\d+]-\\[#a\\.b\\.g\\.wii@efnet\\]-\\[ ?(?P.+) ?\\]-\\[\\d+\\/\\d+\\] - ("|#34;).+("|#34;) yEnc$/ 1 //[9987]-[#a.b.g.wii@efnet]-[ Tales.of.Elastic.Boy.Mission.1.USA.WiiWare.Wii-OneUp ]-[01/12] - #34;1u-tales-of-elastic-boy-mission-1.nfo#34; yEnc 65 -523 ^alt\\.binaries\\.games\\.wii$ /^\\[\\d+\\] (?P.+) NTSC-J DVD5 \\[\\d+\\/\\d+\\] - ("|#34;).+("|#34;) yEnc$/ 1 //[2207] Swing_Golf_Pangya_JPN_Wii-Caravan NTSC-J DVD5 [001/102] - "cvn-sgp.nfo" yEnc 70 -524 ^alt\\.binaries\\.games\\.wii$ /^\\[\\d+\\] (?P.+) <>\\d+\\/\\d+<> ("|#34;).+("|#34;) yEnc$/ 1 //[3867] FaceBreaker.K.O.Party.PAL.Wii-RANT <>000/110<> "3867.nzb" yEnc 75 -525 ^alt\\.binaries\\.games\\.wii$ /^\\[COMPRESSED\\] (?P.+) \\[\\d+\\/\\d+\\] - ("|#34;).+("|#34;) yEnc$/ 1 //[COMPRESSED] Family_Feud_2010_Edition_USA_Wii-Qwi 80 -526 ^alt\\.binaries\\.games\\.wii$ /^\\[COMPRESSED\\] (?P.+) - .+ \\[\\d+\\/\\d+\\] .+ yEnc$/ 1 //[COMPRESSED] Rooms.The.Main.Building.USA.WII-SUSHi - su-rousa.par2 [01/18] (1/1) (1/1) yEnc 85 -527 ^alt\\.binaries\\.games\\.wii$ /^WII4U - (?P.+) - \\[\\d+\\/\\d+\\] - ("|#34;).+("|#34;) yEnc$/ 1 //WII4U - thinkSMART.Family.USA.WII-dumpTruck - [01/15] - "dumptruck-tf.par2" yEnc 90 -528 ^alt\\.binaries\\.games\\.wii$ /^<<>> <<< >< >< ("|#34;)(?P.+)("|#34;) >< \\d+\\/\\d+ \\(\\) >< > yEnc$/ 1 //<<>> <<< >< >< "Rogue Trooper The Quartz Zone Massacre (2009)PAL Wii" >< 037/131 () >< > yEnc 95 -529 ^alt\\.binaries\\.games\\.wii$ /^\\[\\d+\\]-\\[abgx@Efnet\\]-\\[(?P.+)\\] - \\(\\d+\\/\\d+\\) ".+".+yEnc$/ 1 //[6840]-[abgx@Efnet]-[My.Fitness.Coach.NTSC-WII-ProCiSiON] - (001/110) "xxx-mfc.par2" - 4.76 GB yEnc 100 -530 ^alt\\.binaries\\.games\\.wii$ /^\\[\\d+\\]-\\[abgx@Efnet\\]-\\[Full\\]-\\[(?P.+)\\][ -]+\\[\\d+\\/\\d+\\] .+ yEnc$/ 1 //[6820]-[abgx@Efnet]-[Full]-[Cotton_Fantastic_Night_Dreams_NTSC_RF_TG16-CD.iNJECT_iNTERNAL_VC_Wii-0RANGECHiCKEN]- [01/16] - 0c-cotton-rf.nfo (1/1) (1/1) yEnc 105 -531 ^alt\\.binaries\\.games\\.wii$ /^\\[\\d+\\] \\[#alt\\.binaries\\.games\\.wii@efnet\\] \\[(?P.+)\\] \\[\\d+\\/\\d+\\].+yEnc$/ 1 //[3488] [#alt.binaries.games.wii@efnet] [Blades.Of.Steel.USA.VC.Wii-DiPLODOCUS] [0/8] 3488.nzb (1/1) (1/1) yEnc 110 -532 ^alt\\.binaries\\.games\\.wii$ /^<(?P.+)> \\[\\d+\\/\\d+\\] - ".+" yEnc$/ 1 // [001/110] - "Little.League.World.Series.Double.Play.USA.WII-dumpTruck.par2" yEnc 115 -533 ^alt\\.binaries\\.games\\.xbox360$ /^Uploader.Presents-(?P.+?)[\\(\\[]\\d+\\/\\d+\\]".+?" yEnc$/ 1 //Uploader.Presents-Injustice.Gods.Among.Us.Ultimate.Edition.XBOX360-COMPLEX(02/92]"complex-injustice.ultimate.nfo" yEnc ::: //Uploader.Presents-Need.For.Speed.Rivals.XBOX360-PROTOCOL[10/94]"nfs.r-ptc.r07" yEnc 5 -534 ^alt\\.binaries\\.games\\.xbox360$ /^place2home\\.net - (?P.*?) - (\\[\\d+\\/\\d+\\] - )?".+?" yEnc$/i 1 //place2home.net - Call.of.Duty.Ghosts.XBOX360-iMARS - [095/101] - "imars-codghosts-360b.vol049+33.par2" yEnc ::: //Place2home.net - Diablo_III_USA_RF_XBOX360-PROTOCOL - "d3-ptc.r34" yEnc 10 -535 ^alt\\.binaries\\.games\\.xbox360$ /^"(?P.+)(__www\\.realmom\\.info__)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}") [\\[\\(]\\d+\\/(\\d+[\\]\\)]) \\d+[,.]\\d+ [mMkKgG][bB] yEnc$/ 1 //"Arcana_Heart_3_PAL_XBOX360-ZER0__www.realmom.info__.nfo" (02/89) 7,58 GB yEnc 15 -536 ^alt\\.binaries\\.games\\.xbox360$ /^[\\[\\(]\\d+\\/(\\d+[\\)\\]])[-_\\s]{0,3}"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //(01/15) "Mass.Effect.3.Collectors.Edition.DLC.JTAG-XPG.par2" - 747.42 MB - yEnc 20 -537 ^alt\\.binaries\\.games\\.xbox360$ /^\\(.+\\)[-_\\s]{0,3}[\\(\\[]\\d+\\/(\\d+[\\)\\]])[-_\\s]{0,3}"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //(????) [00/28] - "Farming.Simulator.XBOX360.JTAG.RGH.nzb" yEnc 25 -538 ^alt\\.binaries\\.games\\.xbox360$ /^\\(\\d+\\)[-_\\s]{0,3}(.+)[-_\\s]{0,3}[\\(\\[]\\d+\\/(?P\\d+[\\)\\]])[-_\\s]{0,3}"(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //(14227) BloodRayne_Betrayal_XBLA_XBOX360-XBLAplus [01/25] - "xp-blobe.nfo" yEnc 30 -539 ^alt\\.binaries\\.games\\.xbox360$ /^(\\(\\d+\\))[-_\\s]{0,3}\\[.+EFNet\\][-_\\s]{0,3}\\[(?P.+)\\][-_\\s]{0,3}\\[\\][-_\\s]{0,3}"(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //(14811) [#alt.binaries.games.xbox360@EFNet]-[AMY_XBLA_XBOX360-XBLAplus]-[]- "xp-amyxb.nfo" yEnc 35 -540 ^alt\\.binaries\\.games\\.xbox360$ /^(\\(\\d+\\))[-_\\s]{0,3}\\[.+EFNet\\][-_\\s]{0,3}\\[(?P.+)\\][-_\\s]{0,3}"(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //(14872) [#alt.binaries.games.xbox360@EFNet]-[BlazBlue_CS_System_Version_Data_Pack_1.03-DLC_XBOX360]- "xp-bbcssvdp103.nfo" yEnc 40 -541 ^alt\\.binaries\\.games\\.xbox360$ /^\\(\\d+\\/(\\d+\\))[-_\\s]{0,3}(?P.+?)[-_\\s]{0,3}"(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //(44/82) - Fuzion_Frenzy_2_REPACK-USA-XBOX360-DAGGER - "ff2r-dgr.041" - 6.84 GB - yEnc 45 -542 ^alt\\.binaries\\.games\\.xbox360$ /^\\[[-_\\s]{0,3}(\\d+)[-_\\s]{0,3}\\][-_\\s]{0,3}\\[ ABGX.+\\][-_\\s]{0,3}\\[[-_\\s]{0,3}(?P.+)[-_ ]{0,4}\\][-_ ]{0,4}\\(\\d+\\/\\d+\\)[-_\\s]{0,3}"(.+?)(\\.part\\d*|\\.rar)?(\\.vol.+\\(\\d+\\\\d+\\)"|\\.[A-Za-z0-9]{2,4}")[-_\\s]{0,3}\\d+[,.]\\d+ [mMkKgG][bB][-_\\s]{0,3}yEnc$/i 1 //[ 14047 ] - [ ABGX@EFNET ] - [ Rock.Band.Pearl.Jam.Ten.DLC.XBOX360-FYK ALL DLC ] - (01/46) "rbpjtdlc-fyk.nfo" - 526,92 MB - yEnc ::: //[ 14046 ] - [ ABGX@EFNET ] - [ Rock_Band-2011-07-19-DLC_XBOX360-XBLAplus ALL ] - (01/12) "xp-rb-2011-07-19.nfo" - 198,70 MB - yEnc ::: //[ 14102 ] -[ ABGX.NET ] - [ F1.2010.XBOX360-COMPLEX NTSC DVD9 ] - (01/79) "cpx-f12010.nfo" - 6,57 GB - yEnc 50 -543 ^alt\\.binaries\\.games\\.xbox360$ /^\\[[-_\\s]{0,3}(\\d+)[-_\\s]{0,3}\\][-_\\s]{0,3}\\[FULL\\][-_\\s]{0,3}\\[ (abgx360EFNet|#abgx360@EFNet) \\][-_\\s]{0,3}\\[[-_\\s]{0,3}(?P.+)[-_\\s]{0,3}\\][-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(.+?)(\\.part\\d*|\\.rar)?(\\.vol.+\\(\\d+\\\\d+\\)"|\\.[A-Za-z0-9]{2,4}")[-_\\s]{0,3}yEnc$/i 1 //[ 17956]-[FULL]-[ abgx360EFNet ]-[ F1_2012_JPN_XBOX360-Caravan ]-[78/99] - "cvn-f12012j.r75" yEnc ::: //[ 17827]-[FULL]-[ #abgx360@EFNet ]-[ Capcom_Arcade_Cabinet_XBLA_XBOX360-XBLAplus ]-[01/34] - "xp-capac.nfo" yEnc 55 -544 ^alt\\.binaries\\.games\\.xbox360$ /^\\[[-_\\s]{0,3}GAMERZZ[-_\\s]{0,3}\\][-_\\s]{0,3}\\[[-_\\s]{0,3}(?P.+)[-_\\s]{0,3}\\][-_\\s]{0,3}\\[\\d+\\/(\\d+\\])[-_\\s]{0,3}"(.+?)(\\.part\\d*|\\.rar)?(\\.vol.+\\(\\d+\\\\d+\\)"|\\.[A-Za-z0-9]{2,4}")[-_\\s]{0,3}yEnc$/i 1 //[ GAMERZZ ] - [ Grand.Theft.Auto.V.XBOX360-COMPLEX ] [159/170] - "complex-gta5.vol000+18.par2" yEnc 60 -545 ^alt\\.binaries\\.games\\.xbox360$ /.*"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //"Mass.Effect.3.From.Ashes.DLC.XBOX360-MoNGoLS.nfo" yEnc 65 -546 ^alt\\.binaries\\.german\\.movies$ /^>ghost-of-usenet\\.org>(?P.+?)<.+?> ".+?" yEnc$/ 1 //>ghost-of-usenet.org>Monte.Cristo.GERMAN.2002.AC3.DVDRiP.XviD.iNTERNAL-HACO "haco-montecristo-xvid-a.par2" yEnc 5 -547 ^alt\\.binaries\\.german\\.movies$ /^(?P.+?) \\[\\d+\\/\\d+\\] - ".+?" .+? yEnc$/ 1 //XCOM.Enemy.Unknown.Deutsch.Patch.TokZic [0/9] - "XCOM Deutsch.nzb" ein CrazyUpp yEnc 10 -548 ^alt\\.binaries\\.ghosts$ /^(?P.+?) \\[\\d+\\/\\d+\\] - ".+?" .+? yEnc$/ 1 //XCOM.Enemy.Unknown.Deutsch.Patch.TokZic [0/9] - "XCOM Deutsch.nzb" ein CrazyUpp yEnc 5 -549 ^alt\\.binaries\\.ghosts$ /^\\(\\d+\\/(\\d+\\)) ("|#34;)(?P.+)(\\.[vol|part].+)?\\.(par2|nfo|rar|nzb)("|#34;) - \\d+[.,]\\d+ [kKmMgG][bB] - yEnc$/i 1 //(116/175) "Embrace.of.the.Vampire.1995.1080p.BluRay.x264.Y 10 -550 ^alt\\.binaries\\.hdtv$ /^(\\[ TrollHD \\] - )?[\\[\\(][-_\\s]{0,3}\\d+\\/(\\d+[-_\\s]{0,3}[\\)\\]]) - "(?P.+?) MPEG2-(DON|TrollHD)\\..+?" yEnc$/ 1 //[ TrollHD ] - [ 0270/2688 ] - "Tour De France 2013 1080i HDTV MPA 2.0 MPEG2-TrollHD.part0269.rar" yEnc ::: //[17/48] - "Oprah's Next Chapter S02E37 Lindsay Lohan 1080i HDTV DD5.1 MPEG2-TrollHD.part16.rar" yEnc ::: //[02/29] - "Fox Sports 1 on 1 - Tom Brady 720p HDTV DD5.1 MPEG2-DON.part01.rar" yEnc 5 -551 ^alt\\.binaries\\.hdtv$ /^\\.oO "(?P.+)__www.realmom.info__.+" Oo. \\[\\d+\\/\\d+\\] \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/ 1 //.oO "20.Years.After.German.2008.AC3.BDRip.XviD.INTERNAL-ARC__www.realmom.info__.nfo" Oo. [02/39] 1,43 GB yEnc 10 -552 ^alt\\.binaries\\.hdtv$ /^\\[ \\d+ \\] - \\[ TrollHD \\] - \\[ \\d+\\/\\d+ ] - "(?P.+)\\..+" yEnc$/ 1 //[ 09821 ] - [ TrollHD ] - [ 00/54 ] - "Chopped CQ0808H My Way 1080i HDTV DD5.1 MPEG2-TrollHD.nzb" yEnc 15 -553 ^alt\\.binaries\\.hdtv$ /^\\[ TrollHD \\] - \\[ \\d+\\/\\d+ \\] - "(?P.+)\\.par.+" yEnc$/ 1 //[ TrollHD ] - [ 01/19 ] - "America's Test Kitchen From Cook's Illustrated - Ultimate Grilled Turkey Burgers 480i PDTV DD2.0 MPEG2-TrollSD.par2" yEnc 20 -554 ^alt\\.binaries\\.hdtv$ /^NBC.+\\[\\d+\\/\\d+\\] - "(?P.+)\\.vol.+" yEnc$/ 1 //NBC Nightly News - Flash Video - 11-20-2013 [13/15] - "NBC Nightly News 11-20-2013.flv.vol03+04.par2" yEnc 25 -555 ^alt\\.binaries\\.hdtv$ /\\(Newseros\\.com\\) .+? \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(Newseros.com) Cueva 1080p [02/42] - "idonhom-mirc.part01.rar" yEnc 30 -556 ^alt\\.binaries\\.hdtv$ /^.+S\\d+E\\d+.+\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //It's.Always.Sunny.in.Philadelphia.S07E09.The.Gang.Gets.Trapped.BluRay.1080p.Remux.AVC.DTSHD-MA.5.1-PtZ-BeyondHD.me [047/123] - "It's.Always.Sunny.in.Philadelphia.S07E09.The.Gang.Gets.Trapped.BluRay.1080p.Remux.AVC.DTSHD-MA.5.1-PtZ-BeyondHD.me.r44" yEnc 35 -557 ^alt\\.binaries\\.hdtv$ /^\\(.+\\) \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(Alpha.House.S01E08.WEBRip.1080p.x264.DD5.1-Absinth) [14/24] - "Alpha.House.S01E08.WEBRip.1080p.x264.DD5.1-Absinth.part13.rar" yEnc 40 -558 ^alt\\.binaries\\.hdtv$ /^\\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB] .+yEnc$/ 1 //(024/264) "Enf.S04E02.G.D.H.X-M.vol51+46.PAR2" - 8,27 GB -Enf.S04.G.D.H.X yEnc 45 -559 ^alt\\.binaries\\.hdtv$ /^\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/i 1 //[01/10] - "Wondershare.Video.Converter.Ultimate.v6.7.1.0.Multilanguage.par2" - 45,44 MB yEnc 50 -560 ^alt\\.binaries\\.hdtv$ /^[\\(\\[]\\d+\\/\\d+[\\)\\]] "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(01/60) "Micro Monsters With David Attenborough 2013 3D HSBS DTS5.1 EP5 - Family-3D4U.par2" yEnc 55 -561 ^alt\\.binaries\\.hdtv$ /^\\[ TrollHD \\] - [\\(\\[] \\d+\\/\\d+ [\\)\\]] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[ TrollHD ] - [ 01/32 ] - "Demi Lovato - 2vLive Concert 2013-10-28 PROPER [see NFO] 720p WEB-CAP AAC2.0 H.264-TrollHD.nfo" yEnc 60 -562 ^alt\\.binaries\\.hdtv$ /\\[\\d+\\][-_\\s]{0,3}\\[ PPKORE \\][-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[00245] [ PPKORE ] [44/57] - "The L Word S04E08 1080p WEB-DL DD5 1 H 264-PPKORE.vol014+14.par2" yEnc 65 -563 ^alt\\.binaries\\.hdtv$ /^(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) {0,3}yEnc$/ 1 //Adobe Photoshop Lightroom v5.2 - FiNaL - Multilingual [WIN].vol037+32.PAR2 yEnc 70 -564 ^alt\\.binaries\\.hdtv$ /^[\\w-\\.]+ "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Bad.Penny.2013.720p.HDTV.x264-GBL "bad.penny.2013.720p.hdtv.x264-gbl.par2" yEnc 75 -565 ^alt\\.binaries\\.hdtv$ /^[\\w-\\. ]+\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //The.Colbert.Report.2013.07.29.The.Lumineers.WEBRip.AAC2.0.H.264-DCK [01/11] - "The.Colbert.Report.2013.07.29.The.Lumineers.WEBRip.AAC2.0.H.264-DCK.mp4" yEnc 80 -566 ^alt\\.binaries\\.hdtv$ /^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/ 1 //"8 Wenn ich einmal gross bin .mp3" Koelschefetz postet.Die Filue -Immer Wigger yEnc 85 -567 ^alt\\.binaries\\.hdtv$ /^(?P.+?)[-_\\s]{0,3}\\(?[Pp]ostet +by +\\(?Edition50\\)?[- ]{0,4}\\[\\d+\\/\\d+\\][-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/ 1 //Elysium (AVCHD) 2013 (720p) Untouched (Postet by Edition50) [01/169] - "file.xyz" yEnc ::: //Frozen Ground (AVCHD) 2013 (720p) postet by Edition50 - [01/158] - "file.xyz" yEnc - [000/158] - "FROZEN GROUND (AVCHD) 2013 (720p) Untouched.nzb" yEnc ::: //Cabin in the Woods (AVCHD) 2013 (720p) Postet by (Edition50) [01/159] - "file.xyz" yEnc 90 -568 ^alt\\.binaries\\.hdtv$ /^(?P.+?)[-_\\s]{0,3}[\\(\\[]\\d+\\/\\d+[\\)\\]][-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Dark Zero Thirty (2013) AVCHD (720p) Untouched [01/151] - "ZERO DARK THIRTY (2013) AVCHD 720p) Untouched.par2" yEnc 95 -569 ^alt\\.binaries\\.hdtv\\.x264$ /^(AMEa)?\\(\\d+\\/\\d+\\)( - AME-)? "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/ 1 //(23/36) "Love.Is.In.The.Meadow.S08E08.HDTV.720p.x264.ac3.part22.rar" - 2,80 GB - yEnc ::: //AMEa(01/49) - AME- "Arbitrage 2013 DTS HD MSTR 5.1 MKV h264 1080p German by AME.nfo" - 7,87 GB - yEnc 5 -570 ^alt\\.binaries\\.hdtv\\.x264$ /^(?P[A-Z0-9a-z][A-Za-z0-9.-]+) -? \\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //Hard.Target.1993.1080p.Bluray.X264-BARC0DE - [36/68] - "BARC0DE1080pHTAR.r22" yEnc ::: //Goddess.2013.720p.BDRip.x264.AC3-noOne [086/100] - "Goddess.2013.720p.BDRip.x264.AC3-noOne.part84.rar" yEnc 10 -571 ^alt\\.binaries\\.hdtv\\.x264$ /(?P.+?)\\s+(Avi )?by Waldorf\\s+-\\s+\\[\\d+\\/\\d+\\]\\s+-\\s+".+?"\\s+yEnc$/ 1 //I Love Democracy - Norwegen - Doku - 2012 - (German) - AC3 HD720p Avi by Waldorf - [02/71] - "Waldorf.jpg" yEnc 15 -572 ^alt\\.binaries\\.hdtv\\.x264$ /^[A-Z][a-zA-Z0-9 ]+ [- ] "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Season of the Witch 2011 - "Season.of.the.Witch.2011.1080p.BluRay.DTS.x264-CyTSuNee.part005.rar" yEnc ::: //Film - "Alien Antology DC Special Edition 1979-1997 1080p GER HUN HighCode.part001.rar" yEnc ::: //Austex Memorandum "Austex Memorandum 700877270640835.z17" yEnc 20 -573 ^alt\\.binaries\\.hdtv\\.x264$ /^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") \\(\\d+\\/\\d+\\) yEnc$/ 1 //"Ninja-Revenge Will Rise UC-Pittis AVCHD-ADD.English.dtsHR.nfo.txt" (01/55) yEnc 25 -574 ^alt\\.binaries\\.hdtv\\.x264$ /^\\[ (?P[A-Za-z0-9.-]{7,}) \\] - \\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //[ The.Looney.Tunes.Show.S02E20.480p.WEB-DL.AAC2.0.H.264-YFN ] - [01/19] - "The.Looney.Tunes.Show.S02E20.The.Shell.Game.480p.WEB-DL.AAC2.0.H.264-YFN.nfo" yEnc 30 -575 ^alt\\.binaries\\.hdtv\\.x264$ /^\\.oO "(?P.+)__www.realmom.info__.+" Oo. \\[\\d+\\/\\d+\\] \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/ 1 //.oO "20.Years.After.German.2008.AC3.BDRip.XviD.INTERNAL-ARC__www.realmom.info__.nfo" Oo. [02/39] 1,43 GB yEnc 35 -576 ^alt\\.binaries\\.hdtv\\.x264$ /^\\[\\d+\\][ -]\\[#.+\\][ -]\\[(?P.+)\\][ -]\\[\\d+\\/\\d+\\][-_\\s]{0,3}("|#34;).+("|#34;) yEnc$/ 1 //[8370]-[#alt.binaries.hdtv.x264@EFNet]-[Mr.Brooks.2007.720p.BluRay.DTS.x264-ESiR]-[00/86] "Mr.Brooks.2007.720p.BluRay.DTS.x264-ESiR.nzb" yEnc 40 -577 ^alt\\.binaries\\.hdtv\\.x264$ /^\\((?P.+)\\) \\[\\d+\\/\\d+\\] - ".+" yEnc$/ 1 //(The.Ghost.Writer.2010.hd.for.ipad.NLSUB) [01/21] - "The.Ghost.Writer.2010.hd.for.ipad.NLSUB.part01.rar" yEnc 45 -578 ^alt\\.binaries\\.hdtv\\.x264$ /^\\[ (?P[\\w\\s\\.-]+) \\] - \\[\\d+\\/\\d+\\][ -]*".+"\\s*yEnc$/ 1 //[ The Amazing Race S23 720p WEB-DL AAC2.0 H.264 ] - [01/40] - "The.Amazing.Race.S23E08.720p.WEB-DL.AAC2.0.H.264-KiNGS.nfo" yEnc 50 -579 ^alt\\.binaries\\.hdtv\\.x264$ /^Uploader\\.Presents-(?P.+)[\\(\\[]\\d+\\/\\d+[\\)\\]]".+" yEnc$/ 1 //Uploader.Presents-Phantom.2013.German.AC3D.BluRay.1080p.x264-IND[01/62]"phantom.1080p.par2" yEnc 55 -580 ^alt\\.binaries\\.hdtv\\.x264$ /^\\[\\d+\\/\\d+\\] - "(?P.+WEB-DL.+)\\.sfv" yEnc$/ 1 //[01/18] - "ROH.2013.11.16.#113.WEB-DL.h264-COiL.sfv" yEnc 60 -581 ^alt\\.binaries\\.hdtv\\.x264$ /^-{NR\\.C}- - \\[\\d+\\/(\\d+\\]) - ("|#34;)(?P.+)(\\.[vol|part].+)?\\.(par2|nfo|rar|nzb)("|#34;) yEnc$/ 1 //-{NR.C}- - [00/96] - "Being.Liverpool.S01.720p.HDTV.x264-DHD.nzb" yEnc 65 -582 ^alt\\.binaries\\.hdtv\\.x264$ /^- \\[\\d+\\/(\\d+\\]) - "(?P.+?)(\\.part\\d*|\\.rar|\\.pdf)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/ 1 //- [34/69] - "Zero.Charisma.2013.WEB-DL.DD5.1.H.264-HaB.part33.rar" yEnc 70 -583 ^alt\\.binaries\\.hdtv\\.x264$ /.+www\\.hotrodpage\\.info.+\\[\\d+\\/(\\d+\\]) - "(?P.+?)(\\.part\\d*|\\.rar|\\.pdf)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/ 1 //-=www.hotrodpage.info=- Makaveli -=HoTCreWTeam=- Post: - [000/192] - "Hop (2011) 1080p AVCHD.nzb" yEnc 75 -584 ^alt\\.binaries\\.hdtv\\.x264$ /^.+?\\[(\\d+[.,]\\d+ [kKmMgG][bB])\\] \\[\\d+\\/(\\d+\\][-_\\s]{0,3}.+?)[-_\\s]{0,3}"(?P.+?)(\\.part\\d*|\\.rar|\\.pdf)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/ 1 //-4y (PW) [ usenet-4all.info - powered by ssl.news -] [12,40 GB] [49/57] "43842168c542ed3.vol000+01.par2" yEnc 80 -585 ^alt\\.binaries\\.hdtv\\.x264$ /.*[\\(\\[]\\d+\\/(\\d+[\\)\\]])[-_\\s]{0,3}("|#34;)(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4})("|#34;)(.+?)yEnc$/ 1 //!MR [01/49] - "Persuasion 2007.par2" EN MKV yEnc 85 -586 ^alt\\.binaries\\.hdtv\\.x264$ /^.+ ?\\[\\d+( of |\\/)\\d+\\] ("|#34;)(?P.+?)(\\.part\\d*|\\.rar)?(\\.[A-Za-z0-9]{2,4})?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4})("|#34;)(.+?)yEnc$/ 1 //Wonders.of.the.Universe.S02E03.1080p.HDTV.x264.AC3.mp4 [1 of 54] "Wonders.of.the.Universe.S02E03.The.Known.and.the.Unknown.1080p.HDTV.x264.AC3-tNe.mp4.001" yEnc ::: //Wilfred Season 2 - US - 720p WEB-DL [28 of 43] "Wilfred.US.S02E01.Progress.720p.WEB-DL.DD5.1.H264-NTb.mkv.001" yEnc 90 -587 ^alt\\.binaries\\.hdtv\\.x264$ /^.+ ?\\d+( of |\\/)\\d+ - ("|#34;)(?P.+?)(\\.part\\d*|\\.rar)?(\\.[A-Za-z0-9]{2,4})?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4})("|#34;)(.+?)yEnc$/ 1 //The.Walking.Dead.S02E13.720p.WEB-DL.AAC2.0.H.264-CtrlHD -Kopimi- - 01/37 - "The.Walking.Dead.S02E13.Beside.the.Dying.Fire.720p.WEB-DL.AAC2.0.H.264-CtrlHD.nfo" yEnc 95 -588 ^alt\\.binaries\\.hdtv\\.x264$ /.*"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //The.Guild.S05E12.Grande.Finale.1080p.WEB-DL.x264.AC3.PSIV - "The.Guild.S05E12.Grande.Finale.1080p.WEB-DL.x264.AC3.PSIV.nfo" yEnc 100 -589 ^alt\\.binaries\\.highspeed$ /^Old\\s+Dad\\s+uppt? ?(?P.+?)( mp4| )?\\[?\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //Old Dad uppt 18 und immer (noch) Jungfrau DvD Rip AC3 XviD German 02/34] - "18 und immer (noch) Jungfrau.part01.rar" yEnc ::: //Old Dad uppt In ihrem Haus DVD Ripp AC3 German Xvid [01/31] - "In ihrem Haus.par2" yEnc ::: //Old Dad uppt Eine offene Rechnung XviD German DVd Rip[02/41] - "Eine offene Rechnung.part01.rar" yEnc ::: //Old Dad uppMiss Marple: Der Wachsblumenstrauß , Wunschpost Xvid German10/29] - "Miss Marple Der Wachsblumenstrauß.part09.rar" yEnc 5 -590 ^alt\\.binaries\\.highspeed$ /^\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB]( -)? yEnc$/ 1 //[03/61] - "www.realmom.info - xvid - xf-fatalmovecd1.r00" - 773,34 MB - yEnc ::: //[40/54] - "Mankind.Die.Geschichte.der.Menschheit.S01E12.Das.Ende.der.Reise.GERMAN.DUBBED.DL.DOKU.1080p.BluRay.x264-TVP.part39.rar" - 4,79 GB yEnc 10 -591 ^alt\\.binaries\\.highspeed$ /^\\[\\d+\\/\\d+\\] - "(?P.+?) upp.by.+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[02/10] - "Fast.And.Furious.6 (2013).German.720p.CAM.MD-MW upp.by soV1-soko.rar" yEnc 15 -592 ^alt\\.binaries\\.highspeed$ /^>ghost-of-usenet\\.org>(?P.+?)\\(.+?\\).+? \\(\\d+\\/\\d+\\) ".+?" yEnc$/ 1 //>ghost-of-usenet.org>The A-Team S01-S05(Folgen einzelnd ladbar)[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //www.usenet-town.com [Sponsored by Astinews] (103/103) "Intimate.Enemies.German.2007.AC3.[passwort protect].vol60+21.PAR2" yEnc 25 -594 ^alt\\.binaries\\.highspeed$ /^(?P[A-Za-z0-9][a-zA-Z0-9.-]{6,})\\s+- ".+?" yEnc$/ 1 //Das.Schwergewicht.German.DL.720p.BluRay.x264-ETM - "etm-schwergewicht-720p.part20.rar" yEnc 30 -595 ^alt\\.binaries\\.highspeed$ /^\\[ .+? \\] \\[ www\\..+? \\]( \\[.+?\\])? \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[ TiMnZb ] [ www.binnfo.in ] [REPOST] [01/46] - "Columbo - S07 E05 - Des sourires et des armes.nfo" yEnc 35 -596 ^alt\\.binaries\\.highspeed$ /^< "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") >< \\d+\\/\\d+ \\(.+?\\) >< .+? > yEnc$/ 1 //< "Burn.Notice.S04E17.Out.of.the.Fire.GERMAN.DUBBED.DL.720p.WebHD.x264-TVP.par2" >< 01/17 (1.54 GB) >< 11.62 kB > yEnc 40 -597 ^alt\\.binaries\\.highspeed$ /^[A-Za-z0-9]+ postet (?P.+?) \\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //Batman postet 30 Nights of Paranormal Activity with the Devil Inside AC3 XviD German [01/24] - "30 Nights of Paranormal Activity with the Devil Inside.par2" yEnc 45 -598 ^alt\\.binaries\\.highspeed$ /^\\[\\d+\\/\\d+ (?P.+?)(\\.(part\\d*|rar|avi|iso|mp4|mkv|mpg))?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/ 1 //[04/20 Geroellheimer - S03E19 - Freudige ?berraschung Geroellheimer - S03E19 - Freudige ?berraschung.mp4.004" yEnc 50 -599 ^alt\\.binaries\\.highspeed$ /^"(?P.{7,}?)(\\.(part\\d*|rar|avi|mp4|mkv|mpg))?(\\d{1,3}\\.rev"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/ 1 //"Homeland.S01.Complete.German.WS.DVDRiP.XViD-ETM.part001.rar" yEnc 55 -600 ^alt\\.binaries\\.inner-sanctum$ /^\\[ nEwZ\\[NZB\\]\\.iNFO( \\])?[-_\\s]{0,3}\\[ (\\d+[-_])?(?P.+?) \\][-_\\s]{0,3}(File )?[\\(\\[]\\d+\\/(\\d+[\\)\\]]): "(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?(yEnc)?$/ 1 //[ nEwZ[NZB].iNFO - [ Zed--The_Invitation-WEB-2010-WUS ] - File [12/13]: "08-zed--the_river.mp3" yEnc 5 -601 ^alt\\.binaries\\.inner-sanctum$ /^nEwZ\\[NZB\\]\\.iNFO[-_\\s]{0,3} (?P.+?) [-_\\s]{0,3}(File )?[\\(\\[]\\d+\\/(\\d+[\\)\\]]): "(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")$/ 1 //nEwZ[NZB].iNFO - VA-Universal_Music_Sampler_07_February-PROMO-CDR-FLAC-2013-WRE - File [6/9]: "01-alesso-years_(hard_rock_sofa_remix).flac" 10 -602 ^alt\\.binaries\\.inner-sanctum$ /.+[DoAsYouLike\\].?[ _-]{0,3}\\d+[,.]\\d+ [mMkKgG][bB][-_\\s]{0,3}"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")[ _-]{0,3}\\d+([,.]\\d+ [mMkKgG])? [bB][-_\\s]{0,3}yEnc$/ 1 //..:[DoAsYouLike]:.. 1,11 GB "KGMmDSSHBWnxV4g7Vbq5.part01.rar" 47,68 MB yEnc 15 -603 ^alt\\.binaries\\.inner-sanctum$ /^\\(\\d+\\/\\d+\\)( - Description -)? "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")( - \\d+[,.]\\d+ [mMkKgG][bB])? - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/ 1 //(01/10) "LeeDrOiD HD V3.3.2-Port-R4-A2SD.par2" - 357.92 MB - yEnc 20 -604 ^alt\\.binaries\\.inner-sanctum$ /^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //"Ashlar-Vellum Graphite v8 2 2 WinAll Incl Keygen-CRD.par2" yEnc 25 -605 ^alt\\.binaries\\.inner-sanctum$ /^\\((?P[a-zA-Z0-9._-]+)\\) \\[\\d+\\/(\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/ 1 //(VA-I_Love_Yaiza_Vol.1-WEB-2012-ServerLab) [01/11] - ".sfv" yEnc 30 -606 ^alt\\.binaries\\.inner-sanctum$ /^[\\[\\(]\\d+( of |\\/)(\\d+[\\]\\)])[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(17/41) - "3-8139g0m530.017" yEnc 35 -607 ^alt\\.binaries\\.inner-sanctum$ /^nEwZNZB\\.wz\\.cz - (?P.+?) - File \\[\\d+\\/\\d+]: ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //nEwZNZB.wz.cz - The.Block.AU.Sky.High.S07E12.WS.PDTV.XviD.BF1 - File [01/22]: "The.Block.AU.Sky.High.S07E12.WS.PDTV.XviD.BF1.part01.rar" yEnc 40 -608 ^alt\\.binaries\\.inner-sanctum$ /^nEwZ\\[NZB\\]_wz_cz - (?P.+?) - File \\[\\d+\\/\\d+]: ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //nEwZ[NZB]_wz_cz - u.s.drug.wars.s02e06.hdtv.x264-mtg - File [02/28]: "eII34BvTxvDMSJZ2ulvh.r00" yEnc 45 -609 ^alt\\.binaries\\.inner-sanctum$ /^nEwZNZB\\.wz\\.cz - (?P.+?) - File \\d+ of \\d+: ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //nEwZNZB.wz.cz - Club_FG-SAT-05-22 - File 4 of 4: "01-jean_jerome-club_fg-05-22-2013-tdmlive.mp3" yEnc 50 -610 ^alt\\.binaries\\.inner-sanctum$ /^[a-zA-Z0-9._-]+ \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Big.Brother.IL.S05E01.WS.PDTV.XviD-Silver007 [1/1] - "Big.Brother.IL.S05E01.WS.PDTV.XviD-Silver007.avi" yEnc 55 -611 ^alt\\.binaries\\.inner-sanctum$ /^\\[ [a-f0-9]{32} \\] \\[\\d+\\/\\d+\\] - "\\d+[-_](?P.+?)\\.[a-z0-9]{3,4}" yEnc$/i 1 //[ f680631754c469e49d3447bf0beadb8e ] [1/8] - "00-chris_carreiro-dirty-web-2014.m3u" yEnc ::: // 60 -612 ^alt\\.binaries\\.inner-sanctum$ /\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 // } ::: return array( ::: "cleansubject" => $this->releaseCleanerHelper($this->subject), "properlynamed" => false ::: ); ::: } ::: // a.b.kenpsx ::: public function kenpsx() ::: { ::: // Beachbody.ShaunT.Focus.T25 [01/39] - "Beachbody.ShaunT.Focus.T25.DVD3.Ab.Intervals.par2" yEnc 65 -613 ^alt\\.binaries\\.inner-sanctum$ /^(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 // 8rg5f9v7yba9ll2ny4z8vvh5exddygh2.par2" yEnc 70 -614 ^alt\\.binaries\\.mojo$ /^\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/ 1 //[17/61] - "www.realmom.info - xvid - xf-devilstomb.r14" - 773,11 MB - yEnc 5 -615 ^alt\\.binaries\\.mom$ /^\\[usenet4ever\\.info\\] und \\[SecretUsenet\\.com\\] - (?P.+?)-u4e - ".+?" yEnc$/ 1 //[usenet4ever.info] und [SecretUsenet.com] - 96e323468c5a8a7b948c06ec84511839-u4e - "96e323468c5a8a7b948c06ec84511839-u4e.par2" yEnc 5 -616 ^alt\\.binaries\\.mom$ /^\\[Art-of-Usenet\\] ([a-fA-F0-9]+) \\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //brothers-of-usenet.info/.net <<>> - [01/26] - "Be.Cool.German.AC3.HDRip.x264-FuN.par2" yEnc 10 -617 ^alt\\.binaries\\.mom$ /^\\(\\?+\\) \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+?[-_\\s]{0,3}yEnc$/ui 1 //(????) [03/20] - "Weblinger - The.Haunted.House.Mysteries.v1.0-ZEKE.part01.rar" yEnc 15 -618 ^alt\\.binaries\\.mom$ /[\\w.-]{8,}[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //ShesGonnaSquirt.12.12.13.Sindy.Lange.My.Knight.In.Squirting.Armor.XXX.1080p.x264 - [1/1] - "ShesGonnaSquirt.12.12.13.Sindy.Lange.My.Knight.In.Squirting.Armor.XXX.1080p.x264.rar" yEnc 20 -619 ^alt\\.binaries\\.mom$ /^\\[Art-of-Usenet\\] .+? \\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[Art-of-Usenet] dea75eb65e65c56197d749d57919806d [01/19] - "dea75eb65e65c56197d749d57919806d.par2" yEnc 25 -620 ^alt\\.binaries\\.mom$ /^(?P.+?) \\[\\d+\\/\\d+\\] - ".+?" .+? yEnc$/ 1 //XCOM.Enemy.Unknown.Deutsch.Patch.TokZic [0/9] - "XCOM Deutsch.nzb" ein CrazyUpp yEnc 30 -621 ^alt\\.binaries\\.mom$ /^\\.oO "(?P.+)__www.realmom.info__.+" Oo. \\[\\d+\\/\\d+\\] \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/ 1 //.oO "20.Years.After.German.2008.AC3.BDRip.XviD.INTERNAL-ARC__www.realmom.info__.nfo" Oo. [02/39] 1,43 GB yEnc 35 -622 ^alt\\.binaries\\.mom$ /^[ _-]{0,3}\\w+(-\\w+)?[ _-]{0,3}\\d+[ _-]{0,3}(?P.+) - \\[\\d+\\/\\d+\\][ _-]{0,3}("|#34;).+?("|#34;) yEnc$/i 1 // - 0DAY - 1331086126 - Robokill.Rescue.Titan.Prime.v1.1.MacOSX.Cracked-CORE - [1/9] - "Robokill.Rescue.Titan.Prime.v1.1.MacOSX.Cracked-CORE.par2" yEnc 40 -623 ^alt\\.binaries\\.mom$ /^\\[(?P.+?)\\][ _-]{0,3}\\[www\\.usenet4ever\\.info by Secretusenet][ _-]{0,3} ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[A_New_Found_Glory-Its_All_About_The_Girls-Reissue-CDEP-FLAC-2003-JLM] [www.usenet4ever.info by Secretusenet] - "00-a_new_found_glory-its_all_about_the_girls-reissue-cdep-flac-2003.jpg" yEnc 45 -624 ^alt\\.binaries\\.mom$ /^(Mom\\d+[ _-]{0,3})?"(?P.+?)__www\\.realmom\\.info__([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}[\\(\\[]\\d+\\/(\\d+[\\)\\]]) \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/i 1 //MoM100060 - "Florian_Arndt-Trix-(BBM36)-WEB-2012-UKHx__www.realmom.info__.nfo" [2/7] 29,04 MB yEnc ::: //"Alan.Wake.v1.02.16.4261.Update-SKIDROW__www.realmom.info__.nfo" (02/17) 138,07 MB yEnc 50 -625 ^alt\\.binaries\\.mom$ /^"(?P.+?)"\\(\\d+\\/(\\d+\\))[ _-]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB] yEnc$/i 1 //"The.Draughtsmans.Contract.1982.576p.BluRay.DD2.0.x264-EA"(15/56) "The.Draughtsmans.Contract.1982.576p.BluRay.DD2.0.x264-EA.part13.rar" - 2.37 GB yEnc 55 -626 ^alt\\.binaries\\.mom$ /^\\(\\d+\\/(\\d+\\))[ _-]{0,3}Description[ _-]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i 1 //(01/29) - Description - "Revolution.2012.S01E06.HDTV.x264-LOL.nfo" - 317.24 MB - yEnc 60 -627 ^alt\\.binaries\\.mom$ /^\\(\\d+\\/(\\d+\\))[ _-]{0,3}\\[Lords-of-Usenet\\][ _-]{0,3}<>[ _-]{0,3}(?P.+?)[ _-]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i 1 //(02/17) - [Lords-of-Usenet] <> i8dewFjzft94BW71EI0s -"19913.r00" - 928,75 MB - yEnc 65 -628 ^alt\\.binaries\\.mom$ /^\\[\\d+\\/\\d+\\][ _-]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[002/161] - "Rayman_Legends_USA_PS3-CLANDESTiNE.nfo" yEnc 70 -629 ^alt\\.binaries\\.mom$ /^(?P[a-z0-9].+?\\.XXX.*?\\.[a-z0-9]{3,4}-[a-z0-9]+) - \\[\\d+\\/\\d+\\] - ".+?" yEnc$/i 1 //NetVideoGirls.13.08.05.Julia.XXX.MP4-KTR - [1/1] - "NetVideoGirls.13.08.05.Julia.XXX.MP4-KTR.rar" yEnc ::: //FemaleAgent.E136.Rollie.XXX.1080p.MOV-KTR - [1/1] - "FemaleAgent.E136.Rollie.XXX.1080p.MOV-KTR.rar" yEnc ::: //Penthouse.13.07.13.Natalia.Starr.Pet.Of.Month.July.2013.XXX.3D.WMV-TBP - [1/1] - "Penthouse.13.07.13.Natalia.Starr.Pet.Of.Month.July.2013.XXX.3D.WMV-TBP.rar" yEnc 75 -630 ^alt\\.binaries\\.mom$ /brothers-of-usenet\\.info&net-empfehlen-ssl-news.+\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //happy birthday brothers - brothers-of-usenet.info&net-empfehlen-ssl-news - 2brokegirls-s03e12-Die.franzoesische.Versuchung.48 - [01/12] - "2brokegirls-s03e12-Die.franzoesische.Versuchung.480p.par2" yEnc 80 -631 ^alt\\.binaries\\.mom$ /^Eragon postet.+\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Eragon postet Pfeil S01E18 german [01/19] - "Pfeil S01E18.par2" yEnc 85 -632 ^alt\\.binaries\\.mom$ /^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //"[Fansub-Resistance] Naruto Shippuuden 345 xvid (848x480).vol25+15.PAR2" yEnc 90 -633 ^alt\\.binaries\\.mom$ /^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/ 1 //"Die.Sopranos.S05E02.German.AVC-TVS.vol063+60.par2" (repack180414) yEnc 95 -634 ^alt\\.binaries\\.mom$ /^(?P[\\w.-]{8,})[-_\\s]{0,3}\\[\\d+\\/(\\d+\\])[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //LOL.3E05.720p.WEB.DL.nHD.x264-NhaNc3 [64/71] - "LOL.3E05.720p.WEB.DL.nHD.x264-NhaNc3.sfv" yEnc 100 -635 ^alt\\.binaries\\.mom$ /^Uploader\\.Presents-(?P.+)[\\[\\(]\\d+\\/\\d+[\\]\\)]".+" yEnc$/ 1 //Uploader.Presents-LaLa.2014.Englisch.R6.HDCAM.x264.AC3-SmY(06/56]"SmY-I,F.2014.part05.rar" yEnc 105 -636 ^alt\\.binaries\\.mom$ /^\\(\\d+\\/\\d+\\)[-_\\s]{0,3}Description (?P[\\w.,& \\()\\[\\]\\'\\`-]{8,}?)[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //(21/27) - Description Lava.Land.2013.3D.1080p.Bluray.HOU.X264.DL-zman - "Lava.Land.2013.3D.1080.HOU.DL-zman.part20.rar" - 8,85 GB - yEnc 110 -637 ^alt\\.binaries\\.mom$ /^- (Description - )?"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //- "z7QxDdQ5Qs63v8B8.01" - 374,56 MB - yEnc ::: //- Description - "le gars et son arc 2x21.vol06+05.PAR2" - 273,04 MB - yEnc 115 -638 ^alt\\.binaries\\.mom$ /^.+Usejunkies\\.tk.+\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //::: Usejunkies.tk ::: - [11/15] - "Saitenfeuer - Kein Zurueck 2013.vol00+1.par2" - 116,42 MB yEnc 120 -639 ^alt\\.binaries\\.mom$ /^.+Usejunkies\\.tk.+\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //:.Usejunkies.tk.:---- - [4/8] - "MKTO - MKTO.vol00+5.par2" yEnc 125 -640 ^alt\\.binaries\\.mom$ /^"(?P.{8,}?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //"8ÅdTbOMaÃ¥RuieuD4gÃ¥jÅwOÃ¥bmS72ADÅM1b2æefz9q4yW4O7exV.vol037+6.par2" yEnc 130 -641 ^alt\\.binaries\\.mom$ /^\\(\\d+\\/\\d+\\) \\[ArtofUsenet\\].+www\\.art-of-use\\.net.+"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //(08/12) [ArtofUsenet] >>> www.art-of-use.net <<< "Alles Atze - S01E05 - Die Anatolische Fliege.vol01+02.par2" - 245,19 MB - yEnc 135 -642 ^alt\\.binaries\\.mom$ /^\\(\\d+\\/\\d+\\) - \\[Lords-of-Usenet\\].+ presents (?P.+?)[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //(01/10) - [Lords-of-Usenet] <> presents AoA.Audio.Extractor.Platinum.v2.0.Portable.WiNALL.APPZ-NOTRADE -"notrade-aoaextractorplati_portable.par2" - 8,14 MB - yEnc 140 -643 ^alt\\.binaries\\.mom$ /^\\(\\d+\\/\\d+\\) - \\[Lords-of-Usenet\\].+ presents (?P.+?)[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(02/66) - [Lords-of-Usenet] <> presents The_Swapper-FANiSO - "fan-swap.rar" - yEnc 145 -644 ^alt\\.binaries\\.mom$ /^\\(\\d+\\/\\d+\\) - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s].+yEnc$/ui 1 //(1/3) - "Readers Digest Magazin Deutschland Oktober 10-2014.rar" - 10,92 MB - >>brothers-of-usenet.info/net<< empfehlen SSL-News.info yEnc 150 -645 ^alt\\.binaries\\.mom$ /^\\(\\d+\\/\\d+\\)[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //(1/3) "Die drei Fragezeichen - Folge 162 - Der schreiende Nebel.rar" - 121,56 MB - yEnc 155 -646 ^alt\\.binaries\\.mom$ /^brothers-of-usenet.+SSL-News\\.info.+[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖܖ¤ß¶!.,&_\\()\\[\\]\\'\\`-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //brothers-of-usenet.ino/.net<<>> - [05/33] - "oiu78_67O77OuiI_ztRe014.part04.rar" yEnc 160 -647 ^alt\\.binaries\\.mom$ /^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //"Fabulous MP3.v1.10.rar" yEnc 165 -648 ^alt\\.binaries\\.moovee$ /\\[ENJOY\\]-\\[FULL\\]-\\[.+\\]-\\[ (?P.+) \\]-\\[\\d+\\/\\d+\\]-".+" yEnc$/ 1 //\[ENJOY\]-\[FULL\]-\[.+\]-\[ (.+) \]-\[\d+\/\d+\]-".+" yEnc$/ 5 -649 ^alt\\.binaries\\.moovee$ /^(?P.+DVD.*) \\[\\d+\\/\\d+\\] - ".+" yEnc$/ 1 ///PROUT Movie (2010) NTSC DVD [157/15768] - "PROUTmovie_NTSC.part155.rar" yEnc 10 -650 ^alt\\.binaries\\.moovee$ /^(\\[\\d+\\]-)?\\[ ?(?P[a-zA-Z0-9.-]{6,}) ?\\](-\\[REAL\\])? ?- ?\\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //[ Hammer.of.the.Gods.2013.720p.WEB-DL.DD5.1.H.264-ELiTE ]-[01/44] - "Hammer.of.the.Gods.2013.720p.WEB-DL.DD5.1.H.264-ELiTE.par2" yEnc ::: //[134863]-[ Rihanna.No.Regrets.2013.720p.WEB-DL.DD5.1.H.264-PZK ]-[52/52] - "Rihanna.No.Regrets.2013.720p.WEB-DL.DD5.1.H.264-PZK.vol127+76.par2" yEnc ::: //[Hard.Target.1993.UNRATED.720p.BluRay.x264-88keyz] - [001/101] - "Hard.Target.1993.UNRATED.720p.BluRay.x264-88keyz.nfo" ::: //[ Fast.And.Furious.6.2013.720p.WEB-DL.AAC2.0.H.264-HDCLUB ]-[REAL]-[01/54] - "Fast.And.Furious.6.2013.720p.WEB-DL.AAC2.0.H.264-HDCLUB.nfo" yEnc 15 -651 ^alt\\.binaries\\.moovee$ /^"(?P.+(DVD|BluRay|BRRip).+)"\\(\\d+\\/\\d+\\) ".+".+[GMK]B yEnc$/i 1 //"Nights.of.Cabiria.1957.NTSC.DVD.x264-Tree"(23/57) "Nights.of.Cabiria.1957.NTSC.DVD.x264-Tree.part22.rar" - 2.40 GB yEnc 20 -652 ^alt\\.binaries\\.moovee$ /^\\(\\?{4}\\) \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(????) [0/1] - "A.Good.Day.to.Die.Hard.2013.nzb" yEnc 25 -653 ^alt\\.binaries\\.moovee$ /^\\[x+\\]-\\[.+?\\]-\\[ x+ \\]-\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[xxxxx]-[#a.b.moovee@EFNet]-[ xxxxx ]-[02/66] - "tulob88.part01.rar" yEnc 30 -654 ^alt\\.binaries\\.moovee$ /^(?P[a-zA-Z0-9._-]+) - ?\\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //Groove.2000.iNTERNAL.DVDRip.XviD-UBiK - [001/111] - "ubik-groove-cd1.par2" yEnc ::: //Antony.and.Cleopatra.1972.720p.WEB-DL.H264-brento -[35/57] - "Antony.and.Cleopatra.1972.720p.WEB-DL.AAC2.0.H.264-brento.part34.rar" yEnc 35 -655 ^alt\\.binaries\\.moovee$ /^\\((?P[a-zA-Z0-9.-]+)\\) \\(\\d+\\/\\d+\\) - ".+?" yEnc$/ 1 //(Iron.Man.3.2013.R5.DVDRip.XviD-AsA) (01/26) - "Iron.Man.3.2013.R5.DVDRip.XviD-AsA.part01.part.sfv" yEnc 40 -656 ^alt\\.binaries\\.moovee$ /^\\([a-zA-Z0-9].+?\\) (?P[a-zA-Z0-9.-]+) \\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //(Classic Surf) Morning.Of.The.Earth.1971 [03/29] - "Morning.Of.The.Earth.1971.part02.rar" yEnc 45 -657 ^alt\\.binaries\\.moovee$ /^\\[\\d+\\/\\d+\\] (?P.+) - ".+" yEnc$/ 1 //[51/62] Morrissey.25.Live.Concert.2013.BDRip.x264-N0TSC3N3 - "n0tsc3n3-morrissey.25.live.2013.bdrip.x264.rar" yEnc 50 -658 ^alt\\.binaries\\.moovee$ /^\\[\\w+-\\w+\\]-\\[\\w+\\]-\\[\\d+\\] (?P.+) \\[\\d+\\/\\d+\\] - ".+" yEnc$/ 1 //[AD120512-00006]-[UnOFFSc3n4iT]-[0131105] Chloe.Tra.Seduzione.E.Inganno.2009.iTALiAN.DVDRip.XviD-TRL [19/41] - "trl-chltsdzn.part18.rar" yEnc 55 -659 ^alt\\.binaries\\.moovee$ /^(?P.+x264.+) \\[\\d+\\/\\d+\\] - ".+" yEnc$/ 1 //Breathe.In.2013.BRRip.x264-4UN [01/39] - "Breathe.In.2013.BRRip.x264-4UN.nfo" yEnc 60 -660 ^alt\\.binaries\\.moovee$ /^(?P.+) \\[REPACK\\] \\[\\d+\\/\\d+\\] - ".+" yEnc$/ 1 //The.CyB3rMaFiA.PimPs.YouR.RiDE.WiTH [REPACK] [40/42] - "d2p5uypp7yn3drpk1080417.vol255+064.par2" yEnc 65 -661 ^alt\\.binaries\\.moovee$ /\\[ (?P.+WEB-DL.+) \\]-\\[\\d+\\/\\d+\\] - "(.+)\\.(mp4|mkv|ts|rar|par.+)" yEnc$/ 1 //[ Oklahoma\!.1955.720p.WEB-DL.AAC2.0.H.264-CtrlHD ]-[32/55] - "Oklahoma.1955.720p.WEB-DL.AAC2.0.H.264-CtrlHD.part31.rar" yEnc 70 -662 ^alt\\.binaries\\.moovee$ /^REQ:.+".+".+\\(\\d+\\/\\d+\\) ".+" - \\d+[,.]\\d+ [MGK]B - (?P.+) yEnc$/ 1 //REQ: working copy of "That Darn Cat 1997 Xvid-Any grp" Plz Ty (47/60) "geckos-ghr2011-xvid.r44" - 744,19 MB - Gun.Hill.Road.2011.LIMITED.DVDRip.XviD-GECKOS yEnc 75 -663 ^alt\\.binaries\\.moovee$ /^\\(T\\.U\\.F The real thing (?P.+?) T\\.U\\.F\\)/ 1 //(T.U.F The real thing I Frankenstein 2014 NL Subs T.U.F) [01/52] - "I Frankenstein 2014 NL Subs.par2" yEnc 80 -664 ^alt\\.binaries\\.moovee$ /^\\((?P[\\w.-]+)\\)\\[\\d+\\/(\\d+\\])[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(Ringside.The.Best.of.Mike.Tyson.DVDRip.x264.AC3-FCZ)[01/68] - "Ringside.The.Best.of.Mike.Tyson.DVDRip.1.of.2.x264.AC3-FCZ.nfo" yEnc 85 -665 ^alt\\.binaries\\.movies$ /^(?P[a-z].+) - \\[\\d+\\/\\d+\\][ _-]{0,3}("|#34;).+("|#34;) yEnc$/i 1 //Underworld.Evolution.2006.480p.BDRip.XviD.AC3-AsA - [000/143] - "asa.nzb" yEnc 5 -666 ^alt\\.binaries\\.movies$ /^Have Fun - ("|#34;)(?P.+)\\.nfo("|#34;) Ph4let0ast3r yEnc$/i 1 ///^Have Fun - ("|#34;)(.+)\.nfo("|#34;) Ph4let0ast3r yEnc$/i 10 -667 ^alt\\.binaries\\.movies$ /^\\(\\d+\\/\\d+\\) ("|#34;)(?P.+)\\.(par2|nfo|rar|nzb)("|#34;) - \\d+[.,]\\d+ [kKmMgG][bB] - yEnc$/i 1 //(01/34) "Sniper.Reloaded.2011.BluRay.810p.DTS.x264-PRoDJi.Turkish.Audio.par2" - 139,30 MB - yEnc 15 -668 ^alt\\.binaries\\.movies$ /^("|#34;)(?P.+)\\.rar("|#34;)$/i 1 //"Discovery.Channel.Tsunami.Facing.The.Wave.720p.HDTV.x264-PiX.rar" 20 -669 ^alt\\.binaries\\.movies$ /^(?P[a-z].+) .+\\.(par2|nfo|rar|nzb)$/i 1 //Saw.VII.2010.720p.Bluray.x264.DTS-HDChina Saw.VII.2010.720p.Bluray.x264.DTS-HDChina.nzb 25 -670 ^alt\\.binaries\\.movies$ /^\\(\\?+\\) \\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(????) [1/1] - "The Secret L 30 -671 ^alt\\.binaries\\.movies$ /^\\(\\d+\\/\\d+\\)[-_\\s]{0,3}Description[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //(001/114) - Description - "The.Chronicles.of.Riddick.2004.DC.BluRay.1080p.DTS.par2" - 10,50 GB - yEnc 35 -672 ^alt\\.binaries\\.movies$ /^\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[00/56] - "The.Last.Days.On.Mars.720p.BluRay.x264-DR.nzb" yEnc 40 -673 ^alt\\.binaries\\.movies$ /^\\[REUP\\]( )?(?P.+?) - \\[\\d+\\/\\d+\\] - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[REUP] 6.Degress.of.Hell.2012.1080p.BluRay.DTS-HD.x264-BARC0DE - [03/50] - "BARC0DE.vol00+1.PAR2" yEnc ::: //[REUP]Home.Of.The.Brave.2006.1080p.BluRay.DTS-HD.x264-BARC0DE - [03/38] - "BARC0DE.vol00+1.PAR2" yEnc 45 -674 ^alt\\.binaries\\.movies$ /^- Description - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")([-_\\s]{0,3}\\d+[.,]\\d+ [kKmMgG][bB])[- ]{0,4}yEnc$/ 1 //- Description - "The.Legend.of.Hercules.2014.720p.BluRay.x264.Y 50 -675 ^alt\\.binaries\\.movies$ /^(?P[\\w.\\()-]{8,}?)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Star.Trek.Into.Darkness.2013.3D.HOU.BDRip.1080p-FAGGOTS [431/432] - "stid3d.vol124+128.par2" yEnc 55 -676 ^alt\\.binaries\\.movies$ /^\\(\\d+\\/\\d+\\)[-_\\s]{0,3}(?P[\\w.\\() -]{8,}?\\b)[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //(130/138) - Captain America The Winter Soldier 2014 NEW (FIXED) 720p CAM x264 Pimp4003 - "wXZ6LxFt.zip.130" - 2.02 GB - yEnc 60 -677 ^alt\\.binaries\\.movies$ /^.+\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //22.Jump.Street.2014.720p.BluRay.x264-tpU.vol000+01.PAR2 [73/84] - "22.Jump.Street.2014.720p.BluRay.x264-tpU.vol000+01.PAR2" yEnc 65 -678 ^alt\\.binaries\\.movies\\.divx$ /^\\(www\\.Thunder-News\\.org\\) .+? - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(www.Thunder-News.org) >CD2< - "exvid-emma-cd2.par2" yEnc 5 -679 ^alt\\.binaries\\.movies\\.divx$ /^[a-zA-Z ]+Post Voor FTN - \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Movieland Post Voor FTN - [01/43] - "movieland0560.par2" yEnc 10 -680 ^alt\\.binaries\\.movies\\.divx$ /.+?by mayhem masta"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Disney short films collection by mayhem masta"1923 - Alice's Wonderland.vol15+7.par2" yEnc 15 -681 ^alt\\.binaries\\.movies\\.divx$ /^\\(.+usenet\\.info\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //(http://dream-of-usenet.info) - [01/43] - "Nicht.auflegen.2002.German.DL.AC3.BDRip.XviD-iNCEPTiON.nfo" yEnc 20 -682 ^alt\\.binaries\\.movies\\.divx$ /\\[#]+\\]-\\[.+\\]-\\[.+\\]-\\[(?P.+)\\][- ]\\[\\d+\\/\\d+\\][-_\\s]{0,3}".+" yEnc$/ 1 //[######]-[FULL]-[#hdtv@LinkNet]-[Sesame.Street.S41E03.1080i.HDTV.DD5.1.MPEG2-TrollHD]-[00/51] - "Sesame Street S41E03 Chicken When It Comes to Thunderstorms 1080i HDTV DD5.1 MPEG2-TrollHD.nzb" yEnc 25 -683 ^alt\\.binaries\\.movies\\.divx$ /^\\[ (?P[a-zA-Z0-9.-]{6,}) \\]-\\[\\d+\\/\\d+\\] - ".+" yEnc$/ 1 //[ Rules.of.Engagement.S06E12.720p.WEB-DL.DD5.1.H.264-CtrlHD ]-[01/24] - "Rules.of.Engagement.S06E12.720p.WEB-DL.DD5.1.H.264-CtrlHD.nfo" yEnc 30 -684 ^alt\\.binaries\\.movies\\.x264$ /^http:\\/\\/nzbroyalty\\.com - (?P.+?) - \\[\\d+\\/(\\d+\\]) - ".+?" yEnc$/ 1 //http://nzbroyalty.com - House.of.The.Rising.sun.2011.BluRay.720p.DTS.x264-CHD - [00/48] - "House.of.The.Rising.sun.2011.BluRay.720p.DTS.x264-CHD.nzb" yEnc 5 -685 ^alt\\.binaries\\.movies\\.x264$ /^([a-zA-Z0-9._-]+ - ?\\[)\\d+\\/(\\d+\\]) - "(?P.+?)\\.(nzb|rar|par2)" yEnc$/ 1 //Scream.4.2011.WS.720p.BluRay.X264-AMIABLE - [000/106] - "Scream.4.2011.WS.720p.BluRay.X264-AMIABLE.nzb" yEnc 10 -686 ^alt\\.binaries\\.movies\\.x264$ /^(?P[a-zA-Z0-9].+?)( - )\\[\\d+(\\/\\d+\\] - ").+?" yEnc$/ 1 //The Beaver 2011 720p BluRay DD5.1 x264-CtrlHD - [00/65] - "The Beaver 2011 720p BluRay DD5.1 x264-CtrlHD.nzb" yEnc 15 -687 ^alt\\.binaries\\.movies\\.x264$ /("|#34;)(?P.+)("|#34;)[-_\\s]{0,3}[\\(\\[]\\d+\\/(\\d+[\\)\\]])[-_\\s]{0,3}("|#34;).+?(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4})("|#34;)[-_\\s]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][-_\\s]{0,3}yEnc$/ 1 //"The.Hudsucker.Proxy.1994.1080p.Blu-ray.Remux.AVC.DTS.HD.MA.2.0-KRaLiMaRKo"(127/132) "The.Hudsucker.Proxy.1994.1080p.Blu-ray.Remux.AVC.DTS.HD.MA.2.0-KRaLiMaRKo.vol379+20.par2" - 24.61 GB - yEnc 20 -688 ^alt\\.binaries\\.movies\\.x264$ /^\\([\\w.-]+\\)[\\(\\[]\\d+\\/\\d+[\\]\\)] "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //(Amour.2012.1080p.BluRay.x264-EbP)(002/337) "Amour.2012.1080p.BluRay.x264-EbP.part001.rar" - 16.58 GB - yEnc 25 -689 ^alt\\.binaries\\.movies\\.x264$ /^\\([\\w .\\()-]+\\) [\\(\\[]\\d+\\/\\d+[\\]\\)] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(La.pianiste.(aka.The.Piano.Teacher).(2001).720p.BluRay.AC3.x264-MandR) [085/101] - "La.pianiste.(aka.The.Piano.Teacher).(2001).720p.BluRay.AC3.x264-MandR.part084.rar" yEnc 30 -690 ^alt\\.binaries\\.movies\\.x264$ /^\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[00/56] - "The.Last.Days.On.Mars.720p.BluRay.x264-DR.nzb" yEnc 35 -691 ^alt\\.binaries\\.movies\\.x264$ /^< [\\w.\\() -]+ > - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") \\(\\d+\\/\\d+\\) yEnc$/ 1 //< Michael.Jackson.Bad.25.2012.720p.BluRay.x264-PHD > - "Michael.Jackson.Bad.25.2012.720p.BluRay.x264-PHD.par2" (01/64) yEnc 40 -692 ^alt\\.binaries\\.movies\\.x264$ /^:(?P[\\w.-]+)[-_\\s]{0,3}[\\w.-]+[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //:Waga.Haha.no.Ki.2012.BluRay.720p.DTS.x264 - Chronicle.Of.My.Mother.2012 - [55/56] - "waha.720p.vol063+64.par2" yEnc 45 -693 ^alt\\.binaries\\.movies\\.x264$ /^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") \\d+ of \\d+[-_\\s]{0,3}yEnc$/ 1 //"Cat Ballou (1965) Multi-Dub AVC 480p.MKV.001" 01 of 11 yEnc 50 -694 ^alt\\.binaries\\.movies\\.x264$ /^(?P[\\w.-]+)[-_\\s]{0,3}\\[\\d+\\/(\\d+\\])[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Fly.With.The.Gold.2012.720p.BluRay.x264-WiKi [03/73] - "wiki-fwtg.par2" yEnc 55 -695 ^alt\\.binaries\\.movies\\.x264$ /^(?P[\\w.-]+)[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Parker.2013.MULTi.720p.BluRay.x264-GAIA - "Parker.2013.MULTi.720p.BluRay.x264-GAIA.nfo" yEnc 60 -696 ^alt\\.binaries\\.mp3$ /"(?P[\\w. -]{8,})"[-_\\s]{0,3}[\\(\\[]\\d+\\/(\\d+[\\)\\]])[-_\\s]{0,3}".+([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //"The Absence - Riders Of The Plague" [00/14] - "the_absence-riders_of_the_plague.nzb" yEnc 5 -697 ^alt\\.binaries\\.mp3$ /\\( (?P[\\w. -]{8,}) \\)[-_\\s]{0,3}( |\\().+\\)[-_\\s]{0,3}[\\(\\[]\\d+\\/(\\d+[\\)\\]])[-_\\s]{0,3}".+(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //( Albert Cummings Albums 6x By Dready Niek (1999-2012) ) ( ** By Dready Niek ** ) [11/20] - "Albert Cummings Albums 6x By Dready Niek (1999-2012).part10.rar" yEnc ::: //( Fat Freddy's Drop - Blackbird (2013) -- By Dready Niek ) -- By Dready Niek ) [01/15] - "Fat Freddy's Drop - Blackbird (2013) -- By Dready Niek.par2" yEnc 10 -698 ^alt\\.binaries\\.mp3$ /^.+Old but Sold.+>< "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") >< \\d+\\/\\d+ \\(\\d+[.,]\\d+ [kKmMgG][bB]\\).+ yEnc$/ 1 //<<>> <<< >< >< "German Top 50 ODC - 12.08.2013.nfo" >< 02/33 (541,61 MB) >< 10,93 kB > yEnc 15 -699 ^alt\\.binaries\\.mp3$ /^Musikjunkie-(?P[\\w. -]{8,})[-_\\s]{0,3}\\[\\d+\\/\\d+\\]".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Musikjunkie-The.Voice.Of.Germany.2013.The.Best.of.Liveshows.4.CD.Box.Set.VBR [15/28]"voice.part13.rar" yEnc 20 -700 ^alt\\.binaries\\.mp3$ /^(?P[\\w. -]{8,})[-_\\s]{0,3}("|#34;)(.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Metallica - Ride The Lightning "01 - Fight Fire With Fire.mp3" yEnc 25 -701 ^alt\\.binaries\\.mp3$ /^.+Usejunkies\\.tk.+[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //::: Usejunkies.tk ::: - [08/11] - "DJ Shog - DNA - HD 720p.vol00+1.par2" - 47,76 MB yEnc 30 -702 ^alt\\.binaries\\.mp3$ /^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}poc[-_\\s]{0,3}yEnc$/ 1 //"AnyDVD 7.0.0.0.rar" poc yEnc 35 -703 ^alt\\.binaries\\.mp3$ /^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //"A Produce & Loren Nerell - Intangible.nzb" yEnc 40 -704 ^alt\\.binaries\\.mp3$ /^\\(\\d+\\/\\d+\\)[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //(01/12) "Sunfly Hits April (2013) SF326 [Skytwohigh].par2" - 109.59 MB - yEnc 45 -705 ^alt\\.binaries\\.mp3$ /^\\(\\d+\\/\\d+\\)[-_\\s]{0,3}Description[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //(01/15) - Description - "Goldene Schlager - Erinnerungen Folge 3.par2" - 126,08 MB - yEnc 50 -706 ^alt\\.binaries\\.mp3$ /^\\((?P[^.]{8,})\\) \\[\\d+\\/\\d+\\][-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(Musica - House&Dance - mix 1 - april 2014 1) [00/45] - "Musica - House&Dance mix 1 april.nzb" yEnc 55 -707 ^alt\\.binaries\\.mp3$ /^\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //[04/17] - "Schlager.am.laufenden.Band.-.Vol.13.part02.rar" - 622,46 MB yEnc 60 -708 ^alt\\.binaries\\.mp3$ /^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) [\\w.,& \\()\\[\\]\\'\\`-]{8,}?\\b.?( by )?PsyDealer yEnc$/ 1 //"Karate Andi - Pilsator Platin 2014.nfo.nfo Karate Andi - Pilsator Platin 2014 by PsyDealer yEnc 65 -709 ^alt\\.binaries\\.mp3$ /^\\(\\?+\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"[\\w.,& \\()\\[\\]\\'\\`-]{8,}?\\b.?\\.[A-Za-z0-9]{2,4} (?PTop \\d+ Single Charts \\d+\\.\\d+\\.\\d+)"[-_\\s]{0,3}yEnc$/ 1 //(????) [089/100] - "090-florence_and_the_machine_-_spectrum_(say_my_name)_(calvin_harris_edit).mp3 Top 100 Single Charts 13.05.2013" yEnc 70 -710 ^alt\\.binaries\\.mp3$ /^\\(\\?+\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(????) [02/26] - "8Cursed.rar" yEnc 75 -711 ^alt\\.binaries\\.mp3$ /^\\(\\?+\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")\\w+[-_\\s]{0,3}yEnc$/ 1 //(????) [00/34] - "The Official UK Top 40 Singles Chart 15-06-2014.nzb"otfINWnjfg7856fghj yEnc 80 -712 ^alt\\.binaries\\.mp3$ /^\\(\\d+\\/\\d+\\) (?P[\\w.,& \\()\\[\\]\\'\\`-]{8,}?)[-_\\s]{0,3}"[\\w.,& \\()\\[\\]\\'\\`-]{8,}?\\b.?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //(01/24) VA - Now Thats What I Call Disco 2013 - "VA - Now Thats What I Call Disco 2013.7z.001" - 487.23 MB - yEnc 85 -713 ^alt\\.binaries\\.mp3$ /^\\(102400\\) \\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(102400) [06/13] - "Time L 90 -714 ^alt\\.binaries\\.mp3$ /^\\([\\w.,& \\()\\[\\]\\'\\`-]{8,} \\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(18 Gouden Piraten Hits Deel 2 [03/11] - "18 Gouden Piraten Hits Deel 2.part2.rar" yEnc 95 -715 ^alt\\.binaries\\.mp3$ /^\\([\\w.,& \\()\\[\\]\\'\\`-]{8,}\\)\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(Amigos - Ihre Lieblingshits - Folge 2 - 2013 - by Taekwondo145)[00/62] - "Amigos - Ihre Lieblingshits - Folge 2 - 2013.nzb" yEnc 100 -716 ^alt\\.binaries\\.mp3$ /^\\([\\w.,& \\()\\[\\]\\'\\`-]{8,} - by Taekwondo(\\d+\\()?\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(German TOP100 Single Jahrescharts-2013 - by Taekwondo456([67/70] - "German TOP100 Single Jahrescharts-2013.vol041+41.PAR2" yEnc 105 -717 ^alt\\.binaries\\.mp3$ /^\\( ?(?P[\\w.,& \\()\\[\\]\\'\\`-]{8,}) ?\\)[-_\\s]{0,3}\\(.+Dready Niek.+\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"[\\w.,& \\()\\[\\]\\'\\`-]{8,}?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(Liedjes uit de film De Grote Patriottische Oorlog..o.a. Rod McK ) ( ** By Dready Niek ** ) [02/11] - "Liedjes uit de film De Grote Patriottische Oorlog..o.a. Rod McKuen - By Dready Niek.part1.rar" yEnc 110 -718 ^alt\\.binaries\\.mp3$ /^\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+[.,]\\d+ [kKmMgG][bB] <-> Partner of secretusenet\\.com <->[-_\\s]{0,3}yEnc$/ 1 //[21/23] - "JNEQ3_20130413_028.vol0+1.par2" - 282,65 MB <-> Partner of secretusenet.com <-> yEnc 115 -719 ^alt\\.binaries\\.mp3$ /^[\\w.,& \\()\\[\\]\\'\\`-]{8,}?[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Yogi_and_Husky--Nu_Sound_EP-(RSR021)-WEB-2012-dh - "Yogi_and_Husky--Nu_Sound_EP-(RSR021)-WEB-2012-dh.r00" yEnc 120 -720 ^alt\\.binaries\\.mp3$ /^(?P[\\w.,& \\()\\[\\]\\'\\`-]{8,}?)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Zido.Alben.All.in.One.Read.NFO-Ren & Stimpy - [35/43] - "Zydo.part33.rar" yEnc 125 -721 ^alt\\.binaries\\.mp3$ /(h311b0y|Hellboy).+\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //! ! !! - h311b0y101022014 - !! ! ! [01/14] - "h311b0y101022014.par2" yEnc 130 -722 ^alt\\.binaries\\.mp3\\.complete_cd$ /^\\(\\d+\\/\\d+\\)[ _-]{0,3}\\[Lords-of-usenet\\][ _-]{0,3}<>[ _-]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i 1 //(05/10) - [Lords-of-usenet] <> "Wynardtage Praise The Fallen(2007).vol00+01.PAR2" - 132,64 MB - yEnc 5 -723 ^alt\\.binaries\\.mp3\\.complete_cd$ /^\\(\\d+\\/\\d+\\)[ _-]{0,3}[ _-]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i 1 //(06/11) - - "Diens - Schwarzmale.vol00+01.PAR2" - 141,07 MB - yEnc 10 -724 ^alt\\.binaries\\.mp3\\.complete_cd$ /^[ _-]{0,3}\\(\\d+\\/\\d+\\)[ _-]{0,3}[ _-]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i 1 // (09/18) - "Mantus - Fatum (2013) [2CD].FH.vol00+2.PAR2" - 336,39 MB - yEnc 15 -725 ^alt\\.binaries\\.mp3\\.complete_cd$ /^\\(\\d+\\/\\d+\\)[ _-]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i 1 //(08/15) "Noemi-Red.(Unreleased).2006.by.NYCrules.vol000+01.PAR2" - 179,66 MB - yEnc 20 -726 ^alt\\.binaries\\.mp3\\.complete_cd$ /^\\[(?P[a-zA-Z0-9-_\\\\(\\)\\.]+)\\] \\[www\\.usenet4ever\\.info by Secretusenet\\] - "([\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[16_Bit_Lolitas-Warung_Brazil_002-2CD-2012-iHF] [www.usenet4ever.info by Secretusenet] - "000-16_bit_lolitas-warung_brazil_002-2cd-2012-ihf.sfv" yEnc ::: //[3RD_Prototype_-_On_My_Way-(TB7368)-WEB-2013-FMC] [www.usenet4ever.info by Secretusenet] - "01-3rd_prototype_-_deafback-when_you_are_in_the_dark_(deafback_remix).mp3" yEnc ::: //[Armin_Van_Buuren_Feat._Fiora-Waiting_For_The_Night-(ARMD1140)-WEB-2013-UKHx] [www.usenet4ever.info by Secretusenet] - "00-armin_van_buuren_feat._fiora-waiting_for_the_night-(armd1140)-web-2013-ukhx.m3u" yEnc 25 -727 ^alt\\.binaries\\.mp3\\.complete_cd$ /^>ghost-of-usenet\\.org<< (?P[a-zA-Z0-9-_\\\\(\\)\\.]+) >>www\\.SSL-News\\.info> - "([\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //>ghost-of-usenet.org<< 16_Bit_Lolitas-Warung_Brazil_002-2CD-2012-iHF >>www.SSL-News.info> - "101-16_bit_lolitas-warung_brazil_002_cd1.mp3" yEnc 30 -728 ^alt\\.binaries\\.mp3\\.complete_cd$ /^(?P[a-zA-Z0-9 -_\\\\(\\)\\.]+) \\[\\d+(\\/| of )(\\d+\\])[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Blok_B-Bienvenue_Dans_Mon_Blok_Vol.1-2005-BZ_INT [20 of 27] "01-gangsta.mp3" yEnc ::: //DJ Neev - HedKandi_2013-06-08 (Ministry of Sound Radio) [01/13] - "DJ Neev - HedKandi_2013-06-08 (Ministry of Sound Radio).par2" yEnc 35 -729 ^alt\\.binaries\\.mp3\\.complete_cd$ /^\\(www\\.Thunder-News\\.org\\) >(?P.+?)< - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(www.Thunder-News.org) >Dee_And_Crane-Let_The_Music_Play-WEB-2012-UKHx< - "05-dee_and_crane-let_the_music_play_(jay_frogs_keep_the_groove_remix_edit).mp3" yEnc 40 -730 ^alt\\.binaries\\.mp3\\.complete_cd$ /^\\[\\d+\\/\\d+\\] - \\((MP3 )?ALBUM CHARTS\\) - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/i 1 //[1/1] - (MP3 ALBUM CHARTS) - "Andreas Gabalier - Volksrock'n'roller-Live.rar" yEnc 45 -731 ^alt\\.binaries\\.mp3\\.complete_cd$ /^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - yEnc$/i 1 //"Miley Cyrus - Bangerz (Deluxe Version).nzb" - yEnc 50 -732 ^alt\\.binaries\\.mp3\\.complete_cd$ /^.+\\[\\d+\\/\\d+\\](?P.+)"([\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/ 1 //VA 200 NRJ 2014 CD2 mp3_320kbps[18/27]VA 200 NRJ 2014 CD2 mp3_320kbps"(217) [Capital Cities] Safe And Sound.mp3" yEnc 55 -733 ^alt\\.binaries\\.mp3\\.full_albums$ /^\\. - \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //. - [05/10] - "Blues 'N Trouble - With Friends Like These [1989].vol00+01.par2" yEnc 5 -734 ^alt\\.binaries\\.mp3\\.full_albums$ /^\\(\\d+\\/(\\d+\\)) "\\[www\\.Lords-of-Usenet\\.org\\]_\\[Partner von SSL-News\\]_(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/ 1 //(001/122) "[www.Lords-of-Usenet.org]_[Partner von SSL-News]_Blind_Guardian-Discographie.par2" - 2,20 GB - yEnc 10 -735 ^alt\\.binaries\\.mp3\\.full_albums$ /^\\(\\d+\\/(\\d+\\)) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,4}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}.+?yEnc$/ 1 //(06/10) "Pink Floyd - Dark Side Of The Moon [MFSL UDCD 517].vol00+01.PAR2"- - 67,88 MB - Pink Floyd - Dark Side Of The Moon [MFSL UDCD 517] yEnc ::: //(07/11) "VA - Twilight - New Moon - Ost.vol00+01.PAR2"- - 93,69 MB - VA - Twilight - New Moon - Ost yEnc 15 -736 ^alt\\.binaries\\.mp3\\.full_albums$ /^\\(.+\\) \\[\\d+\\/(\\d+\\]) - "(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) . http:\\/\\/usenet4ever\\.info_Sponsored by www\\.Secretusenet\\.com " yEnc$/ 1 //(Kitty Samtpfote) [01/12] - "Electronic Music of the 80s.Michael Garrison - In The Regions Of Sunreturn and beyond 1991.par2 . http://usenet4ever.info_Sponsored by www.Secretusenet.com " yEnc 20 -737 ^alt\\.binaries\\.mp3\\.full_albums$ /^\\(.+\\) >(?P.+?)< - \\(\\d+\\/(\\d+\\)) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(www.Thunder-News.org) >Boehse Onkelz - Discography< - (113/145) - "Boehse Onkelz - Discography.s10" yEnc 25 -738 ^alt\\.binaries\\.mp3\\.full_albums$ /^\\[\\d+\\]-\\["(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")\\[ yEnc$/ 1 //[00021]-["1999 Alphaville - Dreamscapes.part069.rar"[ yEnc 30 -739 ^alt\\.binaries\\.mp3\\.full_albums$ /^\\(.+\\) \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(nzbDMZ) [0/2] - "Miles Crossing - Miles Crossing (2011).nzb" yEnc 35 -740 ^alt\\.binaries\\.mp3\\.full_albums$ /^\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[06/10] - "Jeff Healey - Legacy Volume One [The Singles].vol00+01.PAR2" yEnc 40 -741 ^alt\\.binaries\\.mp3\\.full_albums$ /^\\d+ "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //00008 "2003 Camouflage - Sensor.par2" yEnc 45 -742 ^alt\\.binaries\\.mp3\\.full_albums$ /^(?P[a-zA-Z0-9 -_\\\\(\\)\\.]+) \\[\\d+(\\/| of )(\\d+\\])[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Alex Oriental Experience_-_Live II (Live II) [1/9] - "01_Red_Dress.mp3" yEnc 50 -743 ^alt\\.binaries\\.multimedia$ /^(?P[A-Z0-9a-z.-]{10,})\\s+(- )?\\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //Escort.2006.DUTCH.WEB-RiP.x264-DLH - [01/23] - "Escort.2006.DUTCH.WEB-RiP.x264-DLH.par2" yEnc ::: //Tusenbroder.S01E05.PDTV.XViD.SWEDiSH-NTV [01/69] - "ntv-tusenbroder.s01e05.nfo" yEnc 5 -744 ^alt\\.binaries\\.multimedia$ /\\[[#]+\\]-\\[.+?\\]-\\[.+?\\]-\\[ (?P[\\w.,& \\()\\[\\]\\'\\`-]{8,}?) \\][- ]\\[\\d+\\/\\d+\\][-_\\s]{0,3}("|#34;).+?/ 1 //[####]-[FULL]-[#a.b.teevee@EFNet]-[ Tosh.0.S02E14.720p.HDTV.x264-aAF ]-[10/21] - "aaf-tosh.0.s02e14.720p.r07" yEnc 10 -745 ^alt\\.binaries\\.multimedia$ /^\\[ ?(?P[\\w.,& \\()\\[\\]\\'\\`-]{8,}?) ?\\][-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[ Top.Chef.S11E12.Mississippi.Mud.Bugs.720p.WEB-DL.AAC2.0.H.264-TVSmash ] - [13/38] - "tc1112-720p.r10" yEnc 15 -746 ^alt\\.binaries\\.multimedia$ /^Handyman Shows-(?P.+) - File \\d+ of \\d+ - yEnc$/ 1 //Handyman Shows-TOH-S32E10 - File 01 of 32 - yEnc 20 -747 ^alt\\.binaries\\.multimedia$ /.*"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //- "Auction Hunters S04E04.HDTV.x264-StarryNights1.nzb" yEnc 25 -748 ^alt\\.binaries\\.multimedia$ /^(?P[^.]{8,})\\.[A-Za-z0-9]{2,4} - \\[\\d+\\/(\\d+\\]) yEnc$/ 1 //homeland.s02e12.1080p.bluray-bia.r08 - [011/111] yEnc 30 -749 ^alt\\.binaries\\.multimedia\\.documentaries$ /^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\[\\d+ of \\d+ - \\d+ [kKmMgG][bB]\\] yEnc$/ 1 //"Universe S4E08.part40.rar" - [41 of 76 - 10013 kb] yEnc 5 -750 ^alt\\.binaries\\.multimedia\\.scifi$ /^some m4vs - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //some m4vs - "SilverHawks_v1eps01_The Origin Story.par2" yEnc 5 -751 ^alt\\.binaries\\.music$ /^.+By Dready Niek \\) \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //( 80's Giga Hits Collection (32 CDs) By Dready Niek ) By Dready Niek ) [44/54] - "80's Giga Hits Collection (32 CDs) By Dready Niek.part43.rar" yEnc 5 -752 ^alt\\.binaries\\.music$ /^\\(\\d+\\/\\d+\\] (?P.+?) ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - nightsteff yEnc$/ 1 //(00/24] Marco Mengoni - Prontoacorrere (2013) "Marco Mengoni - Prontoacorrere (2013).nzb" - nightsteff yEnc 10 -753 ^alt\\.binaries\\.music$ /^\\((?P.+)\\) \\[\\d+\\/\\d+\\] - \\[".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")\\] yEnc$/ 1 //(80's Disco-Soul-Funk) [136/426] - ["Level 42 - Lessons In Love.mp3"] yEnc 15 -754 ^alt\\.binaries\\.music$ /^\\(\\?+\\) \\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/ 1 //(????) [001/153] - "C4 House Party Horse Meat Disco Set 6.nfo" C4 House Party Horse Meat Disco Set 6 yEnc 20 -755 ^alt\\.binaries\\.music$ /^\\(\\?+\\) \\[\\d+\\/\\d+\\] - (?P.+)[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/ 1 //(????) [19/22] - C.K.N. Demo 85 "19-rotten system.mp3" yEnc 25 -756 ^alt\\.binaries\\.music$ /^\\((?P.+)\\) \\[\\d+\\/(\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(Jungle Fever Tapepacks) [67/79] - "Jungle Fever Tapepacks.part65.rar" yEnc 30 -757 ^alt\\.binaries\\.music$ /^\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[1/8] - "Black Market Flowers - Bind (1993).sfv" yEnc 35 -758 ^alt\\.binaries\\.music$ /^\\[DreamPieter\\] \\((?P.+)\\) \\[\\d+\\/\\d+\\] - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[DreamPieter] (Glen Tipton - Two solo albums) [04/23] - "Glenn Tipton - Baptizm of Fire - 04 - Fuel Me Up.mp3" yEnc 40 -759 ^alt\\.binaries\\.music$ /^.+ghost-of-usenet\\.org.+"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")> >www\\.SSL-News\\.info< - \\(\\d+\\/\\d+\\) - \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/ 1 //<<< <"Dream Dance Vol. 21-30 - 20CDs MP3 - Ghost.part20.rar"> >www.SSL-News.info< - (22/32) - 2,45 GB yEnc 45 -760 ^alt\\.binaries\\.music$ /^Musikjunkie-(?P[\\pL\\pN\\pM\\pP. -]{8,})[-_\\s]{0,3}\\[\\d+\\/\\d+\\]".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Musikjunkie-The.Voice.Of.Germany.2013.The.Best.of.Liveshows.4.CD.Box.Set.VBR [15/28]"voice.part13.rar" yEnc 50 -761 ^alt\\.binaries\\.music$ /^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/ 1 //"8 Wenn ich einmal gross bin .mp3" Koelschefetz postet.Die Filue -Immer Wigger yEnc 55 -762 ^alt\\.binaries\\.music$ /^.+\\(by dem verrückten Lordi\\)[-_\\s]{0,3}\\(\\d+\\/\\d+\\)[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+[.,]\\d+ [kKmMgG][bB].+[-_\\s]{0,3}yEnc$/ 1 //Der etwas andere Mix - Deutscher Foxmix 14 (by dem verrückten Lordi) (3/8) "Der etwas andere Mix - Deutscher Foxmix 14.txt" - 271,24 MB 11.11.03 yEnc 60 -763 ^alt\\.binaries\\.music$ /^\\(\\d+\\/\\d+\\)[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][-_\\s]{0,3}.+yEnc$/ 1 //(01/10) "Mylène Farmer - Monkey me (2012 Bluray Audio).rar" - 1,56 GB - yEnc ::: //(3/7) "DJ Taz3 - Your Choice Sendung Silvester 2012.mp3.vol00+01.PAR2" - 119,50 MB -RadioShows und Livesets yEnc 65 -764 ^alt\\.binaries\\.music$ /^[\\(\\[]\\d+\\/\\d+[\\]\\)][-_\\s]{0,3}(?P.+) ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")([-_\\s]{0,3}nightsteff)?[-_\\s]{0,3}yEnc$/ 1 //[00/20] Nomadi - Terzo Tempo (2012) "Nomadi - Terzo Tempo (2012).nzb" - nightsteff yEnc ::: //[02/56] - The Beatles - The Decca Tapes "Beatles - The Decca Tapes.part01.rar" yEnc 70 -765 ^alt\\.binaries\\.music$ /^\\[.+\\] \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[Marillion - Live From Cadogan Hall 2011 (DVD 1)] [981/98] - "Marillion - Live From Cadogan Hall 2011 (DVD 1).par2" yEnc 75 -766 ^alt\\.binaries\\.music$ /^.+ \\[\\d+ of \\d+\\] "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //XTC - NMR - 2001 - Homegrown - The Wasp Star Home Demos [22 of 34] "2001 - Homegrown - The Wasp Star Home Demos.vol00+01.PAR2" yEnc 80 -767 ^alt\\.binaries\\.music$ /^.+[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Wendy O Williams Bump n Grind - "Wendy.O.Williams.Bump.n.Grind.nfo" yEnc 85 -768 ^alt\\.binaries\\.music$ /^.+ \\(\\d+\\/\\d+\\) - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB].+yEnc$/ 1 //The Amity Affliction - Chasing Ghosts_lossless (01/11) - "The Amity Affliction - Chasing Ghosts_lossless.par2" - 321,40 MB - codari_4_usenetrevolution.info-Partner of SSL-News yEnc 90 -769 ^alt\\.binaries\\.music$ /^(?P[^.]{8,})([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) \\d+\\/\\d+[-_\\s]{0,3}yEnc$/ 1 //Bob Marley & The Wailers - African Herbsman.nzb 0/8 yEnc 95 -770 ^alt\\.binaries\\.music$ /^[\\w. &\\()\\[\\]\\'-]+?\\.- (?P[^.]{8,})([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) \\[\\d+\\/\\d+\\][-_\\s]{0,3}yEnc$/ 1 //DOG DAYS' Season 2 ED Single - Natsu no Yakusoku (Horie Yui)[KICM-1402].- DOG DAYS' Season 2 ED Single - Natsu no Yakusoku (Horie Yui)[KICM-1402].nzb [00/13] yEnc 100 -771 ^alt\\.binaries\\.music$ /"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //7 Seconds - Complete Discography - 21 releases - 1980-2005(04/51) "7 Seconds - Complete Discography 1980-2005 - 21 releases.part02.rar" - 639.17 MB - yEnc 105 -772 ^alt\\.binaries\\.music$ /"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //7 Seconds - Complete Discography - 21 releases - 1980-2005(04/51) "7 Seconds - Complete Discography 1980-2005 - 21 releases.part02.rar" yEnc 110 -773 ^alt\\.binaries\\.music$ /(?P.+)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"[a-zA-Z]{3,4}\\.nzb"[-_\\s]{0,3}yEnc$/ui 1 //El.Huervo-Do.Not.Lay.Waste.To.Homes.WEB-DL.MP3.VBR.V0.2012 [00/25] - "vbr.nzb" yEnc 115 -774 ^alt\\.binaries\\.music$ /^[\\(\\[]\\d+\\/\\d+[\\]\\)][-_\\s]{0,3}(?P.+) ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}nightsteff[-_\\s]{0,3}yEnc$/ 1 // a.b.music.mp3 ::: public function music_mp3() ::: { ::: //(00/20] Nomadi - Terzo Tempo (2012) "Nomadi - Terzo Tempo (2012).nzb" - nightsteff yEnc 120 -775 ^alt\\.binaries\\.music$ /^.+?\\[\\d+\\/(\\d+\\][-_\\s]{0,3}.+?)[-_\\s]{0,3}("|#34;)(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}("|#34;))[-_\\s]{0,3}yEnc$/ 1 //(????) [0/8] - Crionics Post - Alice In Chains - Dirt REPOST"Alice In Chains - Dirt.nzb" yEnc 125 -776 ^alt\\.binaries\\.music$ /^\\(\\?+\\) \\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/ 1 //(????) [001/153] - "C4 House Party Horse Meat Disco Set 6.nfo" C4 House Party Horse Meat Disco Set 6 yEnc 130 -777 ^alt\\.binaries\\.music$ /^\\(\\?+\\) \\[\\d+\\/\\d+\\] - (?P.+)[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/ 1 //(????) [19/22] - C.K.N. Demo 85 "19-rotten system.mp3" yEnc 135 -778 ^alt\\.binaries\\.music$ /^\\((?P.+)\\) \\[\\d+\\/\\d+\\][-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(BierbauchFreddy Quwinn seine größten Coversongs Vol2) [22/60] - "040c - Freddy Quinn - Don't Forbid Me (1957) (NH 22 639, EPH 20 575).mp3" yEnc 140 -779 ^alt\\.binaries\\.music$ /^\\[ (?P.+) \\] - \\[\\d+\\] - \\[\\d+ Kbps MP3\\] \\[\\d+ of \\d+\\] ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[ Spectrum (ft. Matthew Koma) (Extended Mix) - Zedd ] - [2012] - [256 Kbps MP3] [1 of 7] "Spectrum (ft. Matthew Koma) [Extended Mix].mp3" yEnc 145 -780 ^alt\\.binaries\\.music$ /^\\[\\d+\\/\\d+\\][-_\\s]{0,3}\\(((Top)?\\d+ )?(MP3 )?((Album|Single) )?Charts\\)[ -]{0,4}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/ 1 //[1/1] - (150 MP3 Album Charts) - "Atlantean Kodex - The White Goddess.rar" yEnc ::: //[1/1] - (MP3 Album Charts) - "Black Sabbath - 13.rar" yEnc ::: //[1/1] - (Top100 Album Charts) - "Bastille - Pompeii.rar" yEnc ::: //[1/1] - (Top100 Charts) - "Beatrice Egli - Gluecksgefuehle.rar" yEnc ::: //[1/1] - (Top100 Single Charts) - "Alicia Keys - Girl On Fire.rar" yEnc 150 -781 ^alt\\.binaries\\.music$ /^\\[\\d+\\/\\d+\\][-_\\s]{0,3}(Album )?Top \\d+( Album Charts \\d+)?[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/ 1 //[1/1] - Album Top 100 - "Amy MacDonald - L 155 -782 ^alt\\.binaries\\.music$ /^\\[\\d+\\/\\d+\\][-_\\s]{0,3}\\(Album Top \\d+(( -)? \\d+)?\\)[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/ 1 //[1/1] (Album Top 100 - 2012) - "Cro - Einmal Um Die Welt.rar" yEnc ::: //[1/1] (Album Top 100 2012) - "Cro - Einmal Um Die Welt.rar" yEnc ::: //[1/1] (Album Top 100) - "Cro - Raop.rar" yEnc 160 -783 ^alt\\.binaries\\.music$ /^(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) yEnc$/ 1 //100 Greatest One Hit Wonders 80s[mp3].rar yEnc 165 -784 ^alt\\.binaries\\.music$ /^\\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //(001/225) "Dead Can Dance (mp3 - 320Kbs - CBR).part001.rar" - 1.11 GB - yEnc 170 -785 ^alt\\.binaries\\.music$ /^[\\(\\[]\\d+\\/\\d+[\\]\\)][-_\\s]{0,3}\\(MP3 Album\\)[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[1/1] (MP3 Album)- "Agnes Obel - Aventine.rar" yEnc 175 -786 ^alt\\.binaries\\.music$ /^\\[ech0park\\]-\\[spotnet\\]-\\[(?P.+?)\\] \\[\\d+\\/(\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[ech0park]-[spotnet]-[Snow Patrol 2012 Tour Sampler - 2012-iND] [02/20] - "02-snow_patrol-ill_never_let_go.mp3" yEnc 180 -787 ^alt\\.binaries\\.music$ /^.+usenet-piraten\\.info.+[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //<< http://usenet-piraten.info >> - [13/15] - "Monster Cyborg - Overkill (mp3).vol0+1.par2" yEnc 185 -788 ^alt\\.binaries\\.music$ /^\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[- ]{0,4}ShapterV yEnc$/ 1 //[1/8] - "Nightwish - Storytime (Retail-Single 2011).sfv" - ShapterV yEnc 190 -789 ^alt\\.binaries\\.music$ /^.+usenet-piraten\\.info.+newsconnection\\.eu.+[-_\\s]{0,3}\\(\\d+\\/\\d+\\)[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //100 Rock - Vol.04<>usenet-piraten.info<>www.newsconnection.eu<> - (1/5) "100 Rock - Vol.04.par2" - 101,65 MB - yEnc 195 -790 ^alt\\.binaries\\.music$ /^(?P.+?)[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\[\\d+\\/ (\\d+\\]) nightsteff[-_\\s]{0,3}yEnc$/ 1 //40 Italo Dance Tunes (2CD) - "00. 40 Italo Dance Tunes 2011.nfo" [02/ 50] nightsteff yEnc 200 -791 ^alt\\.binaries\\.music$ /^(?P.+?) ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}nightsteff yEnc$/ 1 //Bud Spencer & Terence Hill - Greatest Hits Vol 1 (1995) "04 - Just A Good Boy.mp3" nightsteff yEnc 205 -792 ^alt\\.binaries\\.music$ /^Attn: \\w+ - (?P.+?)\\[\\d+\\/(\\d+\\]) - .+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}\\d+[.,]\\d+[kKmMgG][bB][-_\\s]{0,3}yEnc$/ 1 //Attn: bearcat - Avenged Sevenfold - Avenged Sevenfold 320[17/18] - .vol15+16.par2 5.9Mb yEnc 210 -793 ^alt\\.binaries\\.multimedia\\.vintage-film\\.pre-1960$ /^\\S+ \\[\\d+\\/\\d+\\] - ("|#34;)(\\S+)\\.part\\d+\\.rar(?P"|#34;) yEnc$/ 1 //WE.WANT.OUR.MUMMY.(THE.THREE.STOOGES).(1939) [08/15] - "The.Three.Stooges.S06E02.We.Want.Our.Mummy.DVDRip.XviD-DEiMOS.part6.rar" yEnc 5 -794 ^alt\\.binaries\\.multimedia\\.vintage-film\\.pre-1960$ /^\\[.+\\] \\[\\d+of\\d+\\] .+ - \\[\\d+\\/\\d+\\] - ("|#34;)(?P.+)\\.nzb("|#34;) yEnc$/ 1 //[Hepburn-Tracy Movie Pack] [4of8] Xvid 700mb ENG No-Subs - [00/62] - "State of the Union (1948).nzb" yEnc 10 -795 ^alt\\.binaries\\.multimedia\\.vintage-film\\.pre-1960$ /^\\{.+\\} (?P.+ \\(\\d{4}\\)) .+ \\[\\d+\\/\\d+\\] - ("|#34;).+("|#34;) yEnc$/ 1 //{Dracula #01} Dracula (1931) - Xvid DVDRip 624x464 NTSC FS Dual Audio - [00/15] - "DRACULA.nzb" yEnc 15 -796 ^alt\\.binaries\\.multimedia\\.vintage-film\\.pre-1960$ /^(?P.+ \\(\\d{4}\\)) - .+ - \\[\\d+\\/\\d+\\] - ("|#34;).+("|#34;) yEnc$/ 1 //The Incredible Shrinking Man (1957) - Xvid DVDRip 688x384 NTSC WS - [00/16] - "TISM.nzb" yEnc 20 -797 ^alt\\.binaries\\.multimedia\\.vintage-film\\.pre-1960$ /^(?P.+\\d{4})\\.(VHSRip|COLOR).+\\[\\d+\\/\\d+\\] - ("|#34;).+("|#34;) yEnc$/ 1 //Sudden.Danger.1955.VHSRip.XviD-KG [01/56] - "Sudden.Danger.1955.VHSRip.XviD-KG.nfo" yEnc 25 -798 ^alt\\.binaries\\.multimedia\\.vintage-film\\.pre-1960$ /^.+ - (?P.+) -(?P \\d{4}) - DVDRip.+ \\[\\d+\\/\\d+\\] - ("|#34;).+("|#34;) yEnc$/ 1 //W.C. Fields - You Can't Cheat An Honest Man - 1939 - DVDRip - Xvid - [00/68] - "you can't cheat an honest man 1939.nzb" yEnc 30 -799 ^alt\\.binaries\\.multimedia\\.vintage-film\\.pre-1960$ /^.+enjoy\\!.+\\[\\d+\\/\\d+\\] - ("|#34;)(?P.+)\\.(nzb|nfo|part\\d+\\.rar|part\\.PAR2)("|#34;) yEnc$/i 1 //-=>EnJoY!<-=->Experimental/Avant-Garde/Artistic Shorts<-=->(Day1/?) [00/26] - "Unseen Cinema - Disc I - The Mechanized Eye - Experiments in Technique and Form - 1894-1941 (480p,x264).nzb" yEnc 35 -800 ^alt\\.binaries\\.multimedia\\.vintage-film\\.pre-1960$ /^(?P.+\\d{4})(\\.COLOR)?\\.(TV|VHS|VHSTV)Rip.+ \\[\\d+\\/\\d+\\] - ("|#34;).+("|#34;) yEnc$/ 1 //Goodbye.Charlie.1964.COLOR.TVRip.XviD-CG [01/56] - "Goodbye.Charlie.1964.COLOR.TVRip.XviD-CG.nfo" yEnc 40 -801 ^alt\\.binaries\\.multimedia\\.vintage-film\\.pre-1960$ /^(?P\\S+\\d{4})\\.COLOR\\.DVDRip.+ \\[\\d+\\/\\d+\\] - ("|#34;).+("|#34;) yEnc$/ 1 //The.Adventures.of.Sadie.(Our.Girl.Friday).1953.COLOR.DVDRip.XviD-CG [01/69] - "Our.Girl.Friday.1953.COLOR.DVDRip.XviD-CG.nfo" yEnc 45 -802 ^alt\\.binaries\\.multimedia\\.vintage-film\\.pre-1960$ /^("|#34;)(?P.+)\\.MKV\\.\\d+("|#34;) \\d+ of \\d+$/ 1 //"Singin' in the Rain (1952) AVC 480p.MKV.001" 01 of 15 50 -803 ^alt\\.binaries\\.multimedia\\.vintage-film\\.pre-1960$ /^.+\\(\\d{4}\\)(\\.EXTRA\\.PARS|\\.\\[REPOST\\])? \\[\\d+(?P\\/| of )\\d+\\][ -]+("|#34;)(.+)(\\.vol\\d+\\+\\d+\\.par2|-\\[big.+\\]\\.nfo|\\.nzb|\\.nfo| \\- .+.avi\\.\\d+)("|#34;) yEnc$/ 1 //RANDOLPH.SCOTT.-.PARIS.CALLING.(1941) [42/49] - "Paris.Calling.1941.VHSRip.AVC-DD.vol001+002.par2" yEnc 55 -804 ^alt\\.binaries\\.multimedia\\.vintage-film\\.pre-1960$ /^.+\\(\\d{4}\\)(\\.EXTRA\\.PARS|\\.\\[REPOST\\])? \\[\\d+(?P\\/| of )\\d+\\][ -]+("|#34;)(.+)(\\.vol\\d+\\+\\d+\\.par2|-\\[big.+\\]\\.nfo|\\.nzb|\\.nfo| \\- .+.avi\\.\\d+|\\.par2)("|#34;) yEnc$/ 1 //RANDOLPH.SCOTT.-.PARIS.CALLING.(1941) [42/49] - "Paris.Calling.1941.VHSRip.AVC-DD.vol001+002.par2" yEnc 60 -805 ^alt\\.binaries\\.multimedia\\.vintage-film\\.pre-1960$ /^.+\\d{4}\\.(SILENT|DVDRip).+ \\[\\d+\\/\\d+\\] - (?P"|#34;)(.+)\\.nfo("|#34;) yEnc$/ 1 //Mickey.1918.SILENT.DVDRip.XviD-KG [01/70] - "Mickey.1918.SILENT.DVDRip.XviD-KG.nfo" yEnc 65 -806 ^alt\\.binaries\\.multimedia\\.vintage-film\\.pre-1960$ /^(More Assorted Goodies|Even More Offerings) - REQ:.+ \\[\\d+\\/\\d+\\] - ("|#34;)(?P.+)\\.part\\.nzb("|#34;) yEnc$/ 1 //More Assorted Goodies - REQ:Decasia [01/16] - "The Bullwinkle Show with Occasional Rare Bullwinkle Puppet - BnW.part.nzb" yEnc 70 -807 ^alt\\.binaries\\.multimedia\\.vintage-film\\.pre-1960$ /^(?P.+) -(?P \\d{4}) \\[\\d+ of \\d+\\] ("|#34;).+("|#34;) yEnc$/ 1 //The Birth of a Nation - 1915 [1 of 71] "The Birth of a Nation - 1915.part01.rar" yEnc 75 -808 ^alt\\.binaries\\.multimedia\\.vintage-film\\.pre-1960$ /^Musicals(\\.NZBs)? \\[\\d+\\/\\d+\\] - ("|#34;)(?P.+)\\.nzb("|#34;) yEnc$/ 1 //Musicals [05/10] - "The band wagon 1953.nzb" yEnc 80 -809 ^alt\\.binaries\\.multimedia\\.vintage-film\\.pre-1960$ /^(?PTorchy.+) \\[\\d+ of \\d+\\] ("|#34;).+("|#34;) yEnc$/ 1 //Torchy Runs for Mayor (Maypo) [13 of 24] "Torchy Runs for Mayor.avi.013" yEnc 85 -810 ^alt\\.binaries\\.multimedia\\.vintage-film\\.pre-1960$ /^\\[\\d+\\/\\d+\\] - ("|#34;)(?P.+ \\(\\d{4}\\))\\.avi\\.\\d+("|#34;)( \\(\\d+\\/\\d+\\))?$/ 1 //[01/27] - "Monkey Business (1952).avi.001" (1/130) 90 -811 ^alt\\.binaries\\.nl$ /\\((\\d+|\\?+)\\) \\[\\d+\\/\\d+\\].*"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //(????) [01/46] - "NCIS.S11E02.Past.Present.and.Future.1080p.WEB-DL.DD5.1.H.264-CtrlHD.par2" yEnc 5 -812 ^alt\\.binaries\\.nl$ /^\\w+[-_\\s]{0,3}[\\[\\(]\\d+\\/\\d+[\\]\\)][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //JN - [1/3] - "Operatie Teheran-Joel C Rosenberg JN.par2" yEnc 10 -813 ^alt\\.binaries\\.nl$ /^\\( (?P[\\w. -]{8,}) \\)[-_\\s]{0,3}\\[\\d+\\/(\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //( Overlord II RELOADED ) - [013/112] - "rld-olii.part001.rar" yEnc 15 -814 ^alt\\.binaries\\.nl$ /^(?P[\\w. &\\()-]{8,}?\\b)[-_\\s]{0,3}\\[\\d+\\/(\\d+\\])[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Batman.Arkham-Origins.Initiation-RELOADED - [006/296] - "r.vol010+08.PAR2" yEnc 20 -815 ^alt\\.binaries\\.nl$ /^\\(PC-ISO\\)[-_\\s]{0,3}\\( (?P[\\w.,& \\()\\[\\]\\'\\`-]{8,}?\\b) \\) \\[\\d+\\/\\d+\\][-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(PC-ISO) ( Trials.Fusion.Riders.of.the.Rustlands-SKIDROW ) [10/40] - "sr-tfrotr.part01.rar" yEnc 25 -816 ^alt\\.binaries\\.nl$ /^[-_\\s]{0,4}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //- - [03/33] - "s88fX0O0g7ZPGa96TyeDr.part02.rar" yEnc 30 -817 ^alt\\.binaries\\.pictures\\.erotica\\.anime$ /(?P.*)\\s+-\\s+\\d+\\s+of\\s+\\d+\\s+-\\s+yEnc\\s+".*"/i 1 // [ABPEA - Original] Arima Zin - Tennen Koiiro Alcohol [BB, Boy] - 005 of 229 - yEnc "Tennen_Koiiro_Alcohol-005.jpg" to [ABPEA - Original] Arima Zin - Tennen Koiiro Alcohol [BB, Boy] 5 -818 ^alt\\.binaries\\.ps3$ /^(?P\\[\\d+\\] )\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[4197] [036/103] - "ant-mgstlcd2.r34" yEnc 5 -819 ^alt\\.binaries\\.ps3$ /^\\(\\d+\\/\\d+\\)[-_ ]{0,3}"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 // a.b.pwp ::: public function pwp() ::: { ::: //(300/454) "James_Bond_You_Only_Live_Twice_bd25.part300.rar" - 22,22 GB - yEnc 10 -820 ^alt\\.binaries\\.series\\.tv\\.french$ /^\\(\\d+\\/(\\d+\\)) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB]( -)? yEnc$/ 1 //(01/34) "Merlin.2008.1x04.la.vengeance.de.nimue.par2" - 388,38 MB - yEnc 5 -821 ^alt\\.binaries\\.series\\.tv\\.french$ /^(?P[a-zA-Z0-9._-]+)[-_\\s]{0,3}[\\(\\[]\\d+\\/(\\d+[\\)\\]])[-_\\s]{0,3}"(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //Breaking.Bad.S02.MULTi.720p.BluRay.AC3.x264-BoO [749/883] - "212ACS3517.part01.rar" yEnc 10 -822 ^alt\\.binaries\\.series\\.tv\\.french$ /^(?P[a-zA-Z0-9._-]+)[-_\\s]{0,3}[\\(\\[]\\d+ of (\\d+[\\)\\]])[-_\\s]{0,3}"(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //Dawson.Saison2.DVDRIP.x264.FRENCH [111 of 196] "Dawson.S2.E22.Tout feu, tout flambe.m4v.003" yEnc 15 -823 ^alt\\.binaries\\.series\\.tv\\.french$ /^[\\(\\[]\\d+\\/(?P\\d+[\\)\\]])[-_\\s]{0,3}"(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //[01/22] - "Unnatural.History.1x03.Espion.En.Sommeil.FR.LD.par2" yEnc 20 -824 ^alt\\.binaries\\.series\\.tv\\.french$ /^\\[(?P.+?)\\][-_\\s]{0,3}[\\(\\[]\\d+\\/(\\d+[\\)\\]])[-_\\s]{0,3}"(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //[MagNeum 3.14 S1 D.V.D + par2][1148/1167] - "ZDFRIKK8470DO776.D7P" yEnc 25 -825 ^alt\\.binaries\\.sony\\.psp$ /^\\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+([.,]\\d+ [kKmMgG])?[bB] yEnc$/ 1 //(01/10) "Assassins Creed - Bloodlines [EUR].par2" - 408,46 MB yEnc 5 -826 ^alt\\.binaries\\.sony\\.psp$ /^\\(\\d+\\) (?P[a-zA-Z0-9 -_\\.]+) \\[\\d+\\/(\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(20444) F 10 -827 ^alt\\.binaries\\.sound\\.mp3$ /.+[-_\\s]{0,3}[\\(\\[]\\d+\\/\\d+[\\)\\]][-_\\s]{0,3}"(?P.+)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/ 1 //- codari_4_usenetrevolution.info-Partner of SSL-News UK.Single.Charts.Top.40 [01/25] - "UK.Single.Charts.Top.40.par2" - 301,70 MB - yEnc 5 -828 ^alt\\.binaries\\.sound\\.mp3$ /^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}\\(\\d+\\/(\\d+\\))[ _-]{0,3}yEnc$/ 1 //"Terraplane Sun - Funnel of Love.mp3" - 21.55 MB - (1/6) - yEnc 10 -829 ^alt\\.binaries\\.sound\\.mp3$ /^trtk\\d+[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //trtk09920 - [01/12] - "Guido Negraszus - Night Cafe Iii (Freedom Travellers) (2012)(320).par2" yEnc 15 -830 ^alt\\.binaries\\.sound\\.mp3$ /^\\(\\?+\\) \\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/ 1 //(????) [001/153] - "C4 House Party Horse Meat Disco Set 6.nfo" C4 House Party Horse Meat Disco Set 6 yEnc 20 -831 ^alt\\.binaries\\.sound\\.mp3$ /^\\(\\?+\\) \\[\\d+\\/\\d+\\] - (?P.+)[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/ 1 //(????) [19/22] - C.K.N. Demo 85 "19-rotten system.mp3" yEnc 25 -832 ^alt\\.binaries\\.sound\\.mp3$ /^\\(.+\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(LUNATIC SOUL - IMPRESSIONS) [00/18] - "Lunatic Soul - Impressions 2011.nzb" yEnc 30 -833 ^alt\\.binaries\\.sound\\.mp3$ /^\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[1/8] - "Black Market Flowers - Bind (1993).sfv" yEnc 35 -834 ^alt\\.binaries\\.sound\\.mp3$ /^\\[\\d+\\/\\d+\\][-_\\s]{0,3}\\(((Top)?\\d+ )?(MP3 )?((Album|Single) )?Charts\\)[ -]{0,4}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/ 1 //[1/1] - (150 MP3 Album Charts) - "Atlantean Kodex - The White Goddess.rar" yEnc ::: //[1/1] - (MP3 Album Charts) - "Black Sabbath - 13.rar" yEnc ::: //[1/1] - (Top100 Album Charts) - "Bastille - Pompeii.rar" yEnc ::: //[1/1] - (Top100 Charts) - "Beatrice Egli - Gluecksgefuehle.rar" yEnc ::: //[1/1] - (Top100 Single Charts) - "Alicia Keys - Girl On Fire.rar" yEnc 40 -835 ^alt\\.binaries\\.sound\\.mp3$ /^\\[\\d+\\/\\d+\\][-_\\s]{0,3}(\\()?(Album|Single) Top \\d+ ([- ]{0,2}\\d+)?(\\))? - "(\\[.+?\\] )?(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") {1,4}yEnc$/i 1 //[1/1] - (Album Top 100) - "[Dance] David Guetta - One Love (2010) .rar" yEnc ::: //[1/1] - (Album Top 100) - "Aerosmith - Music From Another Dimension.rar" yEnc ::: //[1/1] - Album Top 100 - "ACDC - Live At River Plate.rar" yEnc ::: //[1/1] (Album Top 100 - 2012) - "Alicia Keys - Girl On Fire.rar" yEnc ::: //[1/1] (Album Top 100 2012) - "Asaf Avidan And The Mojos - One Day.rar" yEnc 45 -836 ^alt\\.binaries\\.sound\\.mp3$ /^\\[\\d+\\/\\d+\\][-_\\s]{0,3}Top \\d+ Album Charts \\d+[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") {1,4}yEnc$/i 1 //[1/1] - Top 100 Album Charts 2012 - "Aura Dione feat. Rock Mafia - Friends.rar" yEnc 50 -837 ^alt\\.binaries\\.sound\\.mp3$ /^.+usenet-piraten\\.info.+ - \\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //<>usenet-piraten.info<>partner<>ssl-news.info<> - [10/10] - "Overexposed (Deluxe Version).vol31+23.par2" yEnc 55 -838 ^alt\\.binaries\\.sound\\.mp3$ /^\\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(1/1) "Adam Levine (Maroon 5) & Alicia Keys - Daylight & Girl on fire LIVE 55TH GRAMMY AWARDS 320Kpbs.mp3" yEnc 60 -839 ^alt\\.binaries\\.sound\\.mp3$ /^\\(\\d+\\/\\d+\\) - VERBAteam™ present - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //(1/4) - VERBAteam™ present - "Avril Lavigne - Rock 'N Roll (Official Audio).mp3" - 5,80 MB - yEnc 65 -840 ^alt\\.binaries\\.sound\\.mp3$ /^\\[\\d+\\/\\d+\\][-_\\s]{0,3}\\(Album Top \\d+\\)[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/ 1 //[1/1] - (Album Top 1000) - "Davis, Miles - Complete Live at the Plugged Nickel 1965.rar" yEnc 70 -841 ^alt\\.binaries\\.sound\\.mp3$ /^\\[\\d+\\/\\d+\\][-_\\s]{0,3}Album Top \\d+[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/ 1 //[1/1] - Album Top 100 - "Rammstein - Made In Germany 1995-2011.rar" yEnc 75 -842 ^alt\\.binaries\\.sound\\.mp3$ /^(?P.+?) (\\()?by dem verrückten Lordi(\\))? {1,2}\\(\\d+\\/\\d+\\) ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+[.,]\\d+ [kKmMgG][bB].+yEnc$/i 1 //Andrea Berg - My Danish Collection (2013) by dem verrückten Lordi (14/27) "Andrea Berg - My Danish Collection (2013).par2" - 132,74 MB 150920134 yEnc ::: //Der Deutsche Beat Mix Teil 2 auf wunsch (by dem verrückten Lordi) (2/9) "Der Deutsche Beat Mix Teil 3 Back.jpg" - 117,84 MB 13.11.05 yEnc 80 -843 ^alt\\.binaries\\.sound\\.mp3$ /^(?P.+?) \\(\\d+\\/\\d+\\) ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+[.,]\\d+ [kKmMgG][bB] {1,2}by dem verrückten Lordi.+yEnc$/i 1 //Christian Anders - Tief in dir (15/24) "Christian Anders - Tief In Dir Back.jpg" - 58,56 MB by dem verrückten Lordi 0703123 yEnc 85 -844 ^alt\\.binaries\\.sound\\.mp3$ /^Der etwas.+ - (?P.+) \\(\\d+\\/\\d+\\) ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/i 1 //Der etwas andere Mix - Wilde Herzenmix (auf wunsch) neu (by dem verrückten Lordi) (1/8) "Der etwas andere Mix - Wilde Herzenmix.par2" yEnc 90 -845 ^alt\\.binaries\\.sound\\.mp3$ /^(?P.+?) \\(\\d+\\/\\d+\\) ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+[.,]\\d+ [kKmMgG][bB] {1,2}\\d+ yEnc$/i 1 //Full Discography - The Cranberries (01/47) "Full Discography - The Cranberries.par2" - 3,52 GB 2812111 yEnc 95 -846 ^alt\\.binaries\\.sound\\.mp3$ /^(?P.+?) meil29 ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //jean ferrat année 1967 à 1969 meil29 "17 Rien à voir.mp3" yEnc 100 -847 ^alt\\.binaries\\.sound\\.mp3$ /^Selected Songs by Various Artists - (?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) yEnc$/i 1 //Selected Songs by Various Artists - Depeche Mode - Personal Jesus (Acoustic Version).mp3 yEnc 105 -848 ^alt\\.binaries\\.sound\\.mp3\\.complete_cd$ /^\\(\\d+\\/\\d+\\)[ _-]{0,3}\\[Lords-of-usenet\\][ _-]{0,3}<>[ _-]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i 1 //(05/10) - [Lords-of-usenet] <> "Wynardtage Praise The Fallen(2007).vol00+01.PAR2" - 132,64 MB - yEnc 5 -849 ^alt\\.binaries\\.sound\\.mp3\\.complete_cd$ /^\\(\\d+\\/\\d+\\)[ _-]{0,3}[ _-]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i 1 //(06/11) - - "Diens - Schwarzmale.vol00+01.PAR2" - 141,07 MB - yEnc 10 -850 ^alt\\.binaries\\.sound\\.mp3\\.complete_cd$ /^trtk\\d+[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //trtk09920 - [01/12] - "Guido Negraszus - Night Cafe Iii (Freedom Travellers) (2012)(320).par2" yEnc 15 -851 ^alt\\.binaries\\.sound\\.mp3\\.complete_cd$ /^\\(\\?+\\) \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(????) [01/31] - "Adrian von Ziegler - Discography - 2010-2013.par2" yEnc 20 -852 ^alt\\.binaries\\.sound\\.mp3\\.complete_cd$ /^[ _-]{0,3}\\(\\d+\\/\\d+\\)[ _-]{0,3}[ _-]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i 1 // (09/18) - "Mantus - Fatum (2013) [2CD].FH.vol00+2.PAR2" - 336,39 MB - yEnc 25 -853 ^alt\\.binaries\\.sound\\.mp3\\.complete_cd$ /^\\(\\d+\\/\\d+\\)[ _-]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i 1 //(08/15) "Noemi-Red.(Unreleased).2006.by.NYCrules.vol000+01.PAR2" - 179,66 MB - yEnc 30 -854 ^alt\\.binaries\\.sound\\.mp3\\.complete_cd$ /^\\[(?P[a-zA-Z0-9-_\\\\(\\)\\.]+)\\] \\[www\\.usenet4ever\\.info by Secretusenet\\] - "([\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[16_Bit_Lolitas-Warung_Brazil_002-2CD-2012-iHF] [www.usenet4ever.info by Secretusenet] - "000-16_bit_lolitas-warung_brazil_002-2cd-2012-ihf.sfv" yEnc ::: //[3RD_Prototype_-_On_My_Way-(TB7368)-WEB-2013-FMC] [www.usenet4ever.info by Secretusenet] - "01-3rd_prototype_-_deafback-when_you_are_in_the_dark_(deafback_remix).mp3" yEnc ::: //[Armin_Van_Buuren_Feat._Fiora-Waiting_For_The_Night-(ARMD1140)-WEB-2013-UKHx] [www.usenet4ever.info by Secretusenet] - "00-armin_van_buuren_feat._fiora-waiting_for_the_night-(armd1140)-web-2013-ukhx.m3u" yEnc 35 -855 ^alt\\.binaries\\.sound\\.mp3\\.complete_cd$ /^>ghost-of-usenet\\.org<< (?P[a-zA-Z0-9-_\\\\(\\)\\.]+) >>www\\.SSL-News\\.info> - "([\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //>ghost-of-usenet.org<< 16_Bit_Lolitas-Warung_Brazil_002-2CD-2012-iHF >>www.SSL-News.info> - "101-16_bit_lolitas-warung_brazil_002_cd1.mp3" yEnc 40 -856 ^alt\\.binaries\\.sound\\.mp3\\.complete_cd$ /^(?P[a-zA-Z0-9 -_\\\\(\\)\\.]+) \\[\\d+(\\/| of )(\\d+\\])[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Blok_B-Bienvenue_Dans_Mon_Blok_Vol.1-2005-BZ_INT [20 of 27] "01-gangsta.mp3" yEnc ::: //DJ Neev - HedKandi_2013-06-08 (Ministry of Sound Radio) [01/13] - "DJ Neev - HedKandi_2013-06-08 (Ministry of Sound Radio).par2" yEnc 45 -857 ^alt\\.binaries\\.sound\\.mp3\\.complete_cd$ /^\\(www\\.Thunder-News\\.org\\) >(?P.+?)< - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(www.Thunder-News.org) >Dee_And_Crane-Let_The_Music_Play-WEB-2012-UKHx< - "05-dee_and_crane-let_the_music_play_(jay_frogs_keep_the_groove_remix_edit).mp3" yEnc 50 -858 ^alt\\.binaries\\.sound\\.mp3\\.complete_cd$ /^\\[\\d+\\/\\d+\\] - \\((MP3 )?ALBUM CHARTS\\) - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/i 1 //[1/1] - (MP3 ALBUM CHARTS) - "Andreas Gabalier - Volksrock'n'roller-Live.rar" yEnc 55 -859 ^alt\\.binaries\\.sounds\\.flac$ /^\\[\\d+\\]-\\[.+?\\]-\\[.+?\\]-\\[ (?P.+?) \\]-\\[\\d+\\/\\d+] - ".+?" yEnc$/ 1 //[32974]-[FULL]-[#a.b.flac]-[ Tenniscoats-Tokinouta-JP-CD-FLAC-2011-BCC ]-[04/28] - "00-tenniscoats-tokinouta-jp-cd-flac-2011.nfo" yEnc 5 -860 ^alt\\.binaries\\.sounds\\.flac$ /^\\[:.+:\\]\\[FLAC.+\\]-\\[:(?P.+):\\]-\\[\\d+\\/\\d+\\]-".+" yEnc$/ 1 //[:SEK9:][FLAC/Metal]-[:Burn_The_Priest-Burn_The_Priest-Remastered-CD-FLAC-2005-TiLLMYDEATH:]-[01/18]-"00-burn_the_priest-burn_the_priest-remastered-cd-flac-2005-proof.jpg" yEnc 10 -861 ^alt\\.binaries\\.sounds\\.lossless$ /^http:\\/\\/dream-of-usenet\\.org .+? - \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //http://dream-of-usenet.org empfehlen newsconnection.eu - [02/32] - "Adam_Ant-Manners_and_Physique-(MCAD-6315)-CD-FLAC-1989-2Eleven.par2" yEnc 5 -862 ^alt\\.binaries\\.sounds\\.lossless$ /^(?P[a-zA-Z0-9]+.+? - .+?)\\s+\\(\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //Rush - Sector One 24-96 (000/229] - ".nzb" yEnc ::: //Stevie Ray Vaughan - Couldn't Stand the Weather (01/19] - ".sfv" yEnc 10 -863 ^alt\\.binaries\\.sounds\\.lossless$ /^trtk\\d+ - \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //trtk07073 - [18/26] - "1990 Santana - Spirits Dancing In The Flesh (flac).part17.rar" yEnc 15 -864 ^alt\\.binaries\\.sounds\\.lossless$ /^COMPLETE REPOST (?P.+? - )NMR -(?P \\d{4}) - (?P.+?) \\[\\d+ of \\d+\\] ".+?" yEnc$/ 1 //COMPLETE REPOST Magma - NMR - 1974 - Wurdah Itah [01 of 23] "1974 - Wurdah Itah.par2" yEnc 20 -865 ^alt\\.binaries\\.sounds\\.lossless$ /^(?P[A-Z0-9].+? - VA - .+?) \\[\\d+ of \\d+\\] - ".+?" yEnc$/ 1 //Sensation - VA - Source Of Light (2CD 2012) [02 of 67] - "00 - Sensation - VA - Source Of Light (2CD 2012) [nmr].txt" yEnc 25 -866 ^alt\\.binaries\\.sounds\\.lossless$ /^(?P[A-Z0-9][A-Za-z0-9 ]{2,} -( \\d{4} -)? [A-Z0-9].+?( \\(.+?\\))?) \\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //Ryan McGarvey - Forward In Reverse [01/21] - "00 - Ryan Mcgarvey - Forward in Reverse.nfo" yEnc ::: //JFC - The Timerewinder (NMR) [01/15] - "00 - The Timerewinder.nfo" yEnc ::: //The Brothers Johnson - 1981 - Winners (2011 expanded remastered) [01/31] - "01 - The Real Thing.flac" yEnc ::: //Jermaine Jackson - 1980 - Let's Get Serious [00/23] - "Jermaine Jackson - 1980 - Let's Get Serious.nzb" yEnc 30 -867 ^alt\\.binaries\\.sounds\\.lossless$ /^(?P[A-Z0-9].+? - [A-Z0-9].+? \\(\\d{4}\\) \\[.*?HDTracks.+?\\]) - ".+?" yEnc$/ 1 //Miles Davis - In A Silent Way (1969) [2013 - HDTracks 24-176,4] - "iasw24-176.par2" yEnc ::: //Bob James & David Sanborn - Quartette Humaine (2013) [HDTracks 24-88,2] - "qh24-88.par2" yEnc 35 -868 ^alt\\.binaries\\.sounds\\.lossless$ /^(?P[A-Z0-9].+? - \\d{4} - .+?) - \\d+ of \\d+ - \\d+ - .+? yEnc$/ 1 //Sonny Landreth - 2010 - Mississippi Blues - 04 of 29 - 00 - Mississippi Blues.sfv yEnc ::: //Fruteland Jackson - 1996 - ... Is All I Crave - 08 of 20 - 00 - Fruteland Jackson - ... Is All I Crave.log yEnc 40 -869 ^alt\\.binaries\\.sounds\\.lossless$ /^\\((?PVA - .+?)\\) \\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //(VA - Cafe Del Mar Dreams 5-2012-Samfie Man) [37/38] - "VA - Cafe Del Mar Dreams 5-2012-Samfie Man.vol063+040.par2" yEnc 45 -870 ^alt\\.binaries\\.sounds\\.lossless$ /^\\([A-Z0-9]+\\) \\[\\d+\\/\\d+\\] - "(?P.+?) - \\d+-.+?" yEnc$/ 1 //(152092XA20) [08/16] - "Guns and Roses - Use Your Illusion I - 08-Back Off Bitch.flac" yEnc 50 -871 ^alt\\.binaries\\.sounds\\.lossless$ /^(?P[\\w-]{5,})\\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //Eros_Ramazzotti-Eros-IT-CD-FLAC-1997-FADA[04/26] - "00-eros_ramazzotti-eros-1997-fada.sfv" yEnc 55 -872 ^alt\\.binaries\\.sounds\\.lossless$ /^.:[-_\\s]{0,3}(?P.+?)[-_\\s]{0,3}:..+?thunder-news\\.org.+?secretusenet\\.com:. - "([\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //.: VA-Liquid_Music-The_Future_House_Compilation-CD-FLAC-1993-WRS :. - .:www.thunder-news.org:. - .:sponsored by secretusenet.com:. - "00-va-liquid_music-the_future_house_compilation-cd-flac-1993-wrs.nfo" yEnc ::: //.:Bruce_BecVar-Arriba-CD-FLAC-1993-JLM:. - .:thunder-news.org:. - .:sponsored by secretusenet.com:. - "00-bruce_becvar-arriba-cd-flac-1993.m3u" yEnc 60 -873 ^alt\\.binaries\\.sounds\\.lossless$ /^[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //_ "CARUSO & GIGLI - O Sole Mio - The Unknown.nzb" yEnc 65 -874 ^alt\\.binaries\\.sounds\\.lossless$ /^[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+ (of \\d+)( \\(\\d+\\/\\d+\\)){1,2} (yEnc)?$/ 1 //"Art Tatum - The Complete Trio Sessions with Tiny Grimes & Slam Stewart - Vol 1.NFO" - 1 of 6 (1/1) ::: //"Galen Jeter and the Dallas Jazz Orchestra - Thank You, Leon.NFO" - 1 of 5 (1/1) (1/1) 70 -875 ^alt\\.binaries\\.sounds\\.lossless$ /^[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/ 1 //"Doc Watson - 1973 - The Essential Doc Watson - 01 - Tom Dooley.flac" - 406.64 MB - yEnc 75 -876 ^alt\\.binaries\\.sounds\\.mp3$ /^\\(dream-of-usenet\\.info\\) - \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(dream-of-usenet.info) - [04/15] - "Enya-And_Winter_Came...-2008.part2.rar" yEnc 5 -877 ^alt\\.binaries\\.sounds\\.mp3$ /^http:\\/\\/dream-of-usenet\\.org .+? - \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //http://dream-of-usenet.org empfehlen newsconnection.eu - [02/32] - "Adam_Ant-Manners_and_Physique-(MCAD-6315)-CD-FLAC-1989-2Eleven.par2" yEnc 10 -878 ^alt\\.binaries\\.sounds\\.mp3$ /^trtk\\d+[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //trtk09920 - [01/12] - "Guido Negraszus - Night Cafe Iii (Freedom Travellers) (2012)(320).par2" yEnc 15 -879 ^alt\\.binaries\\.sounds\\.mp3$ /^>>> CREATIVE COMMONS NZB <<< "(?P.+?)" - File \\d+ of \\d+: ".+?" yEnc$/ 1 //>>> CREATIVE COMMONS NZB <<< "dexter romweber duo-lookout" - File 1 of 9: "creative_commons_nzb_dexter_romweber_duo-lookout.rar" yEnc 20 -880 ^alt\\.binaries\\.sounds\\.mp3$ /^.+?usenet-space.+?Powered by.+? "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+? \\d+\\/\\d+ \\(\\d+[.,]\\d+ [kKmMgG][bB]\\) .+? \\d+[.,]\\d+ [kKmMgG][bB] .+?yEnc$/ 1 //<<>> <<< "Justin_Bieber-Believe_Acoustic-2013-pLAN9_usenet-space-cowbys.info.rar" >< 4/6 (78.65 MB) >< 60.84 MB > yEnc 25 -881 ^alt\\.binaries\\.sounds\\.mp3$ /"(?P.+)"[-_\\s]{0,3}[\\(\\[]\\d+\\/(\\d+[\\)\\]])[-_\\s]{0,3}".+(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //"The Absence - Riders Of The Plague" [00/14] - "the_absence-riders_of_the_plague.nzb" yEnc 30 -882 ^alt\\.binaries\\.sounds\\.mp3$ /\\( (?P.+?)\\)[-_\\s]{0,3}( |\\().+\\)[-_\\s]{0,3}[\\(\\[]\\d+\\/(\\d+[\\)\\]])[-_\\s]{0,3}".+(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //( Albert Cummings Albums 6x By Dready Niek (1999-2012) ) ( ** By Dready Niek ** ) [11/20] - "Albert Cummings Albums 6x By Dready Niek (1999-2012).part10.rar" yEnc ::: //( Fat Freddy's Drop - Blackbird (2013) -- By Dready Niek ) -- By Dready Niek ) [01/15] - "Fat Freddy's Drop - Blackbird (2013) -- By Dready Niek.par2" yEnc 35 -883 ^alt\\.binaries\\.sounds\\.mp3$ /\\( (?P.+?) \\)[-_\\s]{0,3}[\\(\\[]\\d+\\/(\\d+[\\)\\]])[-_\\s]{0,3}".+(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //( Addison_Road-Addison_Road-2008 ) [01/10] - "01. Addison Road - This Could Be Our Day.mp3" yEnc 40 -884 ^alt\\.binaries\\.sounds\\.mp3$ /^.+?\\[\\d+\\/(\\d+\\][-_\\s]{0,3}.+?)[-_\\s]{0,3}("|#34;)(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}("|#34;))[-_\\s]{0,3}yEnc$/ 1 //(????) [0/8] - Crionics Post - Alice In Chains - Dirt REPOST"Alice In Chains - Dirt.nzb" yEnc 45 -885 ^alt\\.binaries\\.sounds\\.mp3$ /^\\(\\?+\\) \\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/ 1 //(????) [001/153] - "C4 House Party Horse Meat Disco Set 6.nfo" C4 House Party Horse Meat Disco Set 6 yEnc 50 -886 ^alt\\.binaries\\.sounds\\.mp3$ /^\\(\\?+\\) \\[\\d+\\/\\d+\\] - (?P.+)[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/ 1 //(????) [19/22] - C.K.N. Demo 85 "19-rotten system.mp3" yEnc 55 -887 ^alt\\.binaries\\.sounds\\.mp3$ /^\\(\\d+\\/\\d+\\)[-_\\s]{0,3}"(?P.+?) {1,3}www\\.brothers-of-usenet\\.org - empfehlen - Newsconnection([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(03/11) "Europe - Discography (1983 - 2009) (320 kbps CBR) www.brothers-of-usenet.org - empfehlen - Newsconnection.par2" yEnc ::: //(03/11) "Evanescence Diskographie (1998-2011) www.brothers-of-usenet.org - empfehlen - Newsconnection.par2" yEnc 60 -888 ^alt\\.binaries\\.sounds\\.mp3$ /^\\(\\d+\\/\\d+\\)[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //(107/123) - "Mark.EG.M.Zone.Rave.Tape.Packs.Hard.Trance.1990s.vol006+04.PAR2" - 11.39 GB yEnc ::: //(12/16) "Horrid Henry The Movie - Original Soundtrack.vol00+01.PAR2" - 102.32 MB - yEnc 65 -889 ^alt\\.binaries\\.sounds\\.mp3$ /^\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[002/123] - "Mark.EG.M.Zone.Rave.Tape.Packs.Hard.Trance.1990s.part001.rar" yEnc 70 -890 ^alt\\.binaries\\.sounds\\.mp3$ /^.+usenetrevolution.+Partner of ssl-news\\.info.+\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //< usenetrevolution > <-> Partner of ssl-news.info <-> Anastacia.-.It's.a.Mans.World [04/15] - "Anastacia.-.It's.a.Mans.World.part01.rar" - 100,47 MB - yEnc 75 -891 ^alt\\.binaries\\.sounds\\.mp3$ /^.+Old but Sold.+>< "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") >< \\d+\\/\\d+ \\(\\d+[.,]\\d+ [kKmMgG][bB]\\).+ yEnc$/ 1 //<<>> <<< >< >< "German Top 50 ODC - 12.08.2013.nfo" >< 02/33 (541,61 MB) >< 10,93 kB > yEnc 80 -892 ^alt\\.binaries\\.sounds\\.mp3$ /^.+ghost-of-usenet.org[<>] [><]"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")> >www\\.SSL-News\\.info< - \\(\\d+\\/\\d+\\)[-_\\s]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][-_\\s]{0,3}yEnc$/ 1 //<<< <"MC Basstard Diskographie 16CDs 2000-2011 MP3 - Ghost.part08.rar"> >www.SSL-News.info< - (10/43) - 1,69 GB yEnc ::: //<<< >"UltraTraxx Rare Remixes - Vol 011 MP3 192kbps.par2"> >www.SSL-News.info< - (1/9) - 120,82 MB yEnc 85 -893 ^alt\\.binaries\\.sounds\\.mp3$ /^BY REQ.+ - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") \\[\\d+\\/\\d+\\] yEnc$/i 1 //BY REQ:........! - "Keith Whitley - All American Country - .par2" [06/22] yEnc 90 -894 ^alt\\.binaries\\.sounds\\.mp3$ /^Der etwas.+ \\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/i 1 //Der etwas andere Mix - Wilde Herzenmix (auf wunsch) neu (by dem verrückten Lordi) (1/8) "Der etwas andere Mix - Wilde Herzenmix.par2" yEnc 95 -895 ^alt\\.binaries\\.sounds\\.mp3$ /^.+[\\[\\(]\\d+\\/\\d+[\\)\\]][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/i 1 //DJ Inferno Beatport Xtreme September 2011[63/66] - "DJ Inferno Beatport Xtreme September 2011.vol073+55.PAR2" upp o-o yEnc ::: //Kastelruther Spatzen - Weihnachten Bei Uns Daheim (2011) (22/25) "Kastelruther Spatzen - Weihnachten Bei Uns Daheim (2011).vol00+1.PAR2" - 113,03 MB - Tapier 13.11.02 yEnc 100 -896 ^alt\\.binaries\\.sounds\\.mp3$ /^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/ 1 //"8 Wenn ich einmal gross bin .mp3" Koelschefetz postet.Die Filue -Immer Wigger yEnc 105 -897 ^alt\\.binaries\\.sounds\\.mp3$ /^.+"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/ 1 //Queens Of The Stone Age - Rated R (2000) (10th Anniversary Deluxe Edition 2010) [EAC/Lame V0] "QU2 - Queens of the Stone Age - Rated R.M3u" yEnc 110 -898 ^alt\\.binaries\\.sounds\\.mp3$ /^(?P.+?)- [\\[\\(]\\d+\\/\\d+[\\)\\]][-_\\s]{0,3}\\d\\d.+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) yEnc$/ 1 //squeeze-east side story-nmr- [01/14] - 01-squeeze-in quintessence.mp3 yEnc 115 -899 ^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$ /^\\(\\d+\\/\\d+\\) "(?P.+?) www\\.brothers-of-usenet\\.org - empfehlen - Newsconnection(\\.eu)?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(01/11) "Der Kleine Vampir Komplett - Folge 01 bis 18 www.brothers-of-usenet.org - empfehlen - Newsconnection.eu.nfo" yEnc 5 -900 ^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$ /^\\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")by_Funkeefly yEnc$/ 1 //(01/15) "Dafuniks - Enter The Sideshow Groove.rar.001"by_Funkeefly yEnc 10 -901 ^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$ /^trtk\\d+[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //trtk09920 - [01/12] - "Guido Negraszus - Night Cafe Iii (Freedom Travellers) (2012)(320).par2" yEnc 15 -902 ^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$ /^\\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //(01/20) "Oz Discography by Grave Digger.par2" - 445,72 MB - yEnc 20 -903 ^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$ /^\\(D(\\))? (?P.+) {1,2}\\[\\d+\\/\\d+\\] - .+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) {1,2}yEnc$/ 1 //(D The Best Of Leon Russell [23/28] - The Best Of Leon Russell.vol00+01.PAR2 yEnc 25 -904 ^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$ /^.+ghost-of-usenet\\.org.+"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")> >www\\.SSL-News\\.info< - \\(\\d+\\/\\d+\\) - \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/ 1 //<<< <"Dream Dance Vol. 21-30 - 20CDs MP3 - Ghost.part20.rar"> >www.SSL-News.info< - (22/32) - 2,45 GB yEnc 30 -905 ^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$ /^<<<.+>>><<<(?P.+)>>>usenet-space-cowboys\\.info.+secretusenet\\.com>< ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") >< \\d+\\/\\d+ \\(\\d+[.,]\\d+ [kKmMgG][bB]\\) >< \\d+[.,]\\d+ [kKmMgG][bB] > yEnc$/i 1 //<<>><<>>usenet-space-cowboys.info<<< "Adele - Rolling In The Deep.mp4" >< 2/5 (77,13 MB) >< 63,94 MB > yEnc ::: //<<>><<>>usenet-space-cowboys.info<<< "09_rusty_moon-kispatak.mp3.par2" >< 01/26 (143,73 MB) >< 6,10 kB > yEnc 35 -906 ^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$ /^<<>>.+secretusenet\\.com>< "(?P.+?)-\\w+_usenet-space-cowbys\\.info([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") >< \\d+\\/\\d+ \\(\\d+[.,]\\d+ [kKmMgG][bB]\\) >< \\d+[.,]\\d+ [kKmMgG][bB] > yEnc$/i 1 //<<>> THOR <<< "Bangbros_Vs_Hansebanger_-_Kiezstyle-Promo-Vinyl-2006-ToTo_usenet-space-cowbys.info.avi" >< 3/5 (31,12 MB) >< 11,21 MB > yEnc 40 -907 ^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$ /^<<>>.+secretusenet\\.com> < "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") >< \\d+\\/\\d+ \\(\\d+[.,]\\d+ [kKmMgG][bB]\\) >< \\d+[.,]\\d+ [kKmMgG][bB] > yEnc$/i 1 //<<>><<>> < "Alice_Cooper-Trash-1989-Wyse.nfo" >< 2/8 (89,39 MB) >< 17,21 kB > yEnc 45 -908 ^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$ /^>>> www.lords-of-usenet\\.org <<< "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\[\\d+\\/\\d+\\] - (\\[)?\\d+[.,]\\d+ [kKmMgG][bB](\\])? yEnc$/i 1 //>>> www.lords-of-usenet.org <<< "Chris De Burgh - The Getaway.par2" - [1/9] - [115,51 MB] yEnc ::: //>>> www.lords-of-usenet.org <<< "Das Deutsche Schlager Magazin Die Maxis 1 2CD.par2" [01/12] - 205,70 MB yEnc 50 -909 ^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$ /^\\[.+?\\][-_\\s]{0,3}\\[(?P[\\w.,& \\()\\[\\]\\'\\`-]{8,}?)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}\\])[-_\\s]{0,3}[\\(\\[]\\d+\\/\\d+[\\)\\]][-_\\s]{0,3}yEnc$/ 1 //[BFMP3] [Barrelhouse_Time Frames.nzb] [00/18] yEnc 55 -910 ^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$ /^(?P[\\w.,& \\()\\[\\]\\'\\`-]{8,}?)[-_\\s]{0,3}("|#34;)(.+?)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}("|#34;))[-_\\s]{0,3}yEnc$/ 1 //Metallica - Ride The Lightning "01 - Fight Fire With Fire.mp3" yEnc 60 -911 ^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$ /^\\(\\d+\\/\\d+\\) "(?P[\\w.,& \\()\\[\\]\\'\\`-]{8,}?) www\\.brothers-of-usenet\\.org - empfehlen - Newsconnection\\.eu([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(01/11) "Der Kleine Vampir Komplett - Folge 01 bis 18 www.brothers-of-usenet.org - empfehlen - Newsconnection.eu.nfo" yEnc 65 -912 ^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$ /([\\w.,& \\()\\[\\]\\'\\`-]{8,}?)[-_\\s]{0,3}[\\(\\[]\\d+\\/\\d+[\\)\\]][-_\\s]{0,3}"(?P.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //The Refreshments - [1/9] - "The Refreshments - Rock´n Roll Christmas [2003].par2" yEnc 70 -913 ^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$ /^(?P[\\w.,& \\()\\[\\]\\'\\`-]{8,}?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) yEnc$/ 1 //Longines Symphonette-Far Away Places-(LP2 of 2)-Far Away Places-LP 2.par2 yEnc 75 -914 ^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$ /^Reader\\'s Digest- {0,1}(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4}) yEnc$/ 1 //Reader's Digest- Mario Lanza-The Very Best of Mario Lanza(CD3 of 3)-CD 3.par2 yEnc 80 -915 ^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$ /^\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w.,& \\()\\[\\]\\'\\`-]{8,}?)[-_\\s]{0,3}\\d+[\\w.,& \\()\\[\\]\\'\\`-]{8,}?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[01/10] - "Acdc - Fly On The Wall - 1985 -01 - Fly On The Wall -Creative7164.mp3" yEnc 85 -916 ^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$ /^\\[\\d+\\/\\d+\\] ->> "(?P[\\w.,& \\()\\[\\]\\'\\`-]{8,}?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") <<- ShapterV yEnc$/ 1 //[1/7] ->> "God Forbid 2009 - Reject the Sickness.par2" <<- ShapterV yEnc 90 -917 ^alt\\.binaries\\.sounds\\.mp3\\.complete_cd$ /^(?P[\\w.,& \\()\\[\\]\\'\\`-]{8,}?)--[\\w.,& \\()\\[\\]\\'\\`-]{8,}?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Glenn Miller-The Missing Chapters Vol. 6-Blue Champagne--Glenn Miller-The Missing Chapters Vol. 6-Blue Champagne.par2 yEnc 95 -918 ^alt\\.binaries\\.sounds\\.mp3\\.dance$ /^\\[\\d+\\](?P.+?)[-_\\s]{0,3}("|#34;)(.+?)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}("|#34;))[-_\\s]{0,3}yEnc$/ 1 //[2707]Solarstone-Solarstone_Collected_Vol_1-ARDI3177-WEB-2012-TraX "02-solarstone_feat_kym_marsh-day_by_day_(red_jerry_smackthe_bigot_up_remix).mp3" - yEnc 5 -919 ^alt\\.binaries\\.sounds\\.mp3\\.electronic$ /^\\(\\d+\\/\\d+\\)[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //(03/10) "Washing Machines - Planet-E CH-Basel Ultimate Hardcore - 4.9.1993.vol00+01.PAR2" - 232.39 MB - yEnc 5 -920 ^alt\\.binaries\\.sounds\\.mp3\\.electronic$ /^\\(\\d+\\/\\d+\\)[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+ [bB][-_\\s]{0,3}yEnc$/ 1 //(2/7) "Cosmic Baby live at Energy 1995.vol00+01.PAR2" - 0 B - yEnc 10 -921 ^alt\\.binaries\\.sounds\\.mp3\\.electronic$ /^\\[0sk\\]-\\[\\d+-\\d+-\\d+\\]-\\[.+\\]-\\[.+\\]-\\[\\d+\\/\\d+\\]-\\[(?P[\\w.,& \\()\\[\\]\\'\\`-]{8,})\\]--.+? yEnc$/ 1 //[0sk]-[2002-12-06]-[idm]-[vinyl]-[4/5]-[Maps_And_Diagrams_-_Ti_Sta_Bene_Marone-(cact_001)-Vinyl-2002]--cact 001.sfv yEnc 15 -922 ^alt\\.binaries\\.sounds\\.mp3\\.electronic$ /^\\[.+\\]-\\[.+\\]-\\[\\d+\\/\\d+\\]-\\[(?P[\\w.,& \\()\\[\\]\\'\\`-]{8,})\\]-.+? yEnc$/ 1 //[10_years---happy_bday_absme]-[cd]-[04/15]-[va_-_spacewars_01-(plkcd003)-cd-1996-nwd]-01-Nuw Idol - Union Of Ilk -nwd-.mp3 yEnc 20 -923 ^alt\\.binaries\\.sounds\\.mp3\\.electronic$ /^(?P[\\w.,& \\()\\[\\]\\'\\`-]{8,}?)[-_\\s]{0,3}\\d+[-_\\s]{0,3}[\\w.,& \\()\\[\\]\\'\\`-]{8,}?\\b.?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/ 1 //Alec Empire - Low On Ice 06 - Untitled.mp3 yEnc 25 -924 ^alt\\.binaries\\.sounds\\.mp3\\.electronic$ /^Selected Songs by Various Artists - (?P[^.]{8,})([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/ 1 //Selected Songs by Various Artists - Collide - Razor Sharp.mp3 yEnc 30 -925 ^alt\\.binaries\\.teevee$ /^\\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d.+?B - (\\d.+?B -)? yEnc$/ 1 //(01/37) "Entourage S08E08.part01.rar" - 349,20 MB - yEnc ::: //(01/24) "EGtnu7OrLNQMO2pDbgpDrBL8SnjZDpab.nfo" - 686 B - 338.74 MB - yEnc (1/1) 40 -926 ^alt\\.binaries\\.teevee$ /^\\(\\d+\\/\\d+\\) - (?P[\\w.-]{5,}) - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/ 1 //(01/28) - Continuum.S02E13.Second.Time.1080p.WEB-DL.AAC2.0.H264 - "Continuum.S02E13.Second.Time.1080p.WEB-DL.AAC2.0.H264.par2" - 1.75 GB - yEnc 45 -927 ^alt\\.binaries\\.teevee$ /^\\[\\d+\\/\\d+\\] - "(?P[A-Za-z0-9.-]+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[01/42] - "King.And.Maxwell.S01E08.1080p.WEB-DL.DD5.1.H264-Abjex.par2" yEnc 50 -928 ^alt\\.binaries\\.teevee$ /^\\(\\d+\\/\\d+\\)[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //(01/15) - "Oz.S01E01.The.Routine.par2" - 380.18 MB yEnc ::: //(01/87) "Homeland.S03E05.Mini.720p.WEB.DL.DD5.1.H.264-ITSat.par2" - 773,24 MB - yEnc 55 -929 ^alt\\.binaries\\.teevee$ /^\\(\\?+\\) \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(????) [10/26] - "The.Young.Riders.S01E02.480pWEB-DL.AAC2.0.H.264-AJP69.part09.rar" yEnc 60 -930 ^alt\\.binaries\\.teevee$ /^\\(Dgpc\\) \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(Dgpc) [01/19] - "The.Xtra.Factor.S10E04.PDTVx264.JIVE.par2" yEnc 65 -931 ^alt\\.binaries\\.teevee$ /^\\[ (?P.+?) \\] .+ \\(\\d+\\/\\d+\\) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[ Anthony.Bourdain.Parts.Unknown.S01.480p.HDTV.x264-mSD ] MKV.h264 (03/17) - "Anthony.Bourdain.Parts.Unknown.S01E01.480p.HDTV.x264-mSD.mkv" yEnc 70 -932 ^alt\\.binaries\\.teevee$ /^\\[\\d+\\/\\d+\\] (?P.+S\\d+E\\d+.+?) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") yEnc$/ 1 //[01/31] Unsealed.Alien.Files.S02E02.The.Kecksburg.Incident.720p.HDTV.x264-N0TSC3N3 - "n0tsc3n3-unsealed.alien.files.s02e02.the.kecksburg.incident.720p.hdtv.x264.par2" yEnc 75 -933 ^alt\\.binaries\\.teevee$ /^[\\w ]+[\\(\\[]\\d+\\/\\d+[\\)\\]] "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //The Colbert Report [00/12] "The.Colbert.Report.2014.01.20.Scott.Stossel.720p.WEB-DL.AAC2.0.H.264-monkee.nzb" yEnc ::: //Colbert [01/10] "The.Colbert.Report.2013.12.19.Ben Stiller.720p.WEB-DL.AAC2.0.H264-zee.rar" yEnc ::: //Whale Wars (01/30) "Whale.Wars.S06.A.Commander.Rises.PDTV.XviD-ZEN.par2" yEnc 80 -934 ^alt\\.binaries\\.teevee$ /^\\. - \\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //. - [01/42] - "Under.the.Dome.S01E03.Manhunt.1080p.WEB-DL.DD5.1.H.264-NTb.par2" yEnc 85 -935 ^alt\\.binaries\\.teevee$ /^(Re: )?(?P([\\w._-]{8,31}|[\\w._-]{33,}))([{}A-Z_]+)?( -)? \\[\\d+(\\/| of )\\d+\\]( -)? ".+?" yEnc$/ 1 //House.Hunters.International.S05E502.720p.hdtv.x264 [01/27] - "House.Hunters.International.S05E502.720p.hdtv.x264.nfo" yEnc ::: //Criminal.Minds.S03E01.Doubt.PROPER.DVDRip.XviD-SAiNTS - [01/33] - "Criminal.Minds.S03E01.Doubt.PROPER.DVDRip.XviD-SAiNTS.par2" yEnc 90 -936 ^alt\\.binaries\\.teevee$ /^(?P[a-zA-Z0-9 ]+)(\\.part\\d*|\\.rar)?(\\.vol.+? |\\.[A-Za-z0-9]{2,4} )\\[\\d+\\/\\d+\\] - yEnc$/ 1 //Silent Witness S15E02 Death has no dominion.par2 [01/44] - yEnc 95 -937 ^alt\\.binaries\\.teevee$ /^\\(bf1\\) \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(bf1) [03/31] - "The.Block.AU.Sky.High.S07E61.WS.PDTV.XviD.BF1.part01.sfv" yEnc (1/1) 100 -938 ^alt\\.binaries\\.teevee$ /^"(?P[\\w._-]{8,}?\\b)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\(\\d+\\/\\d+\\)[-_\\s]{0,3}[\\w. -]+[-_\\s]{0,3}yEnc$/ 1 //"Moving.On.S05E05.HDTV.x264.part19.rar" - (21/28) - Per REQ yEnc 105 -939 ^alt\\.binaries\\.teevee$ /^\\(\\?+\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w._-]{8,}?\\b)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}[\\w. -]+[-_\\s]{0,3}yEnc$/ 1 //(????) [01/20] - "Boxing.Cinnamon vs El Perro.8th.March.2014.PDTV.x264-Sir.Paul.par2" Cinnamon vs El Perro yEnc 110 -940 ^alt\\.binaries\\.teevee$ /^\\[[\\w. -]+\\][-_\\s]{0,3}"(?P[\\w._-]{8,}?\\b)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[REPOST]-"True.Blood.S06E01-E10.HDTV.x264.part094.rar" yEnc 115 -941 ^alt\\.binaries\\.teevee$ /^\\([\\w. -]{8,}\\)[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}""(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")"[-_\\s]{0,3}[\\w. -]+[-_\\s]{0,3}yEnc$/ 1 //(Pretty.Little.Liars.S04E11.Bring.Down.the.Hoe.1080p.WEB-DL.DD5.1.H.264-BS) [31/45] - ""Pretty.Little.Liars.S04E11.Bring.Down.the.Hoe.1080p.WEB-DL.DD5.1.H.264-BS.part29.rar"" yEnc yEnc 120 -942 ^alt\\.binaries\\.teevee$ /^[\\w\\(). -]+[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[]-[FULL]-[a.b.teevee]-[Hannibal.S01.Special.Ceuf.720p.WEB-DL.DD5.1.H-264-NTb]-[03/40] - "Hannibal.S01.Special.Ceuf.720p.WEB-DL.DD5.1.H-264-NTb.part01.rar" yEnc 125 -943 ^alt\\.binaries\\.teevee$ /^\\[[\\w. -]{8,}\\][-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //[Ax.Men.S06E18.Risking.it.All.720p.WEB-DL.AAC.2.0.H.264-AKS74u]-[07/68] "Ax.Men.S06E18.Risking.it.All.720p.WEB-DL.AAC.2.0.H.264-AKS74u.r04" - 1.46 GB yEnc 130 -944 ^alt\\.binaries\\.teevee$ /^\\[ As requested \\][-_\\s]{0,3}(?P[\\w. -]+)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/ 1 //[ As requested ] Pawn.Stars.S07E15.Colt.To.The.Touch.720p.WEB-DL.AAC2.0.H.264.par2 yEnc 135 -945 ^alt\\.binaries\\.teevee$ /^(?P[\\w.-]+)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/ 1 //Alaska.The.Last.Frontier.S02E15.HDTV.XviD-AFG.nzb yEnc 140 -946 ^alt\\.binaries\\.teevee$ /^\\d+\\/\\d+[-_\\s]{0,3}(?P[\\w. -]+)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/ 1 //09/13 The.Exes.S03E10.My.Ex-Boyfriends.Wedding.WEBRip.x264.AAC-NoGRP.vol007+05.PAR2 yEnc 145 -947 ^alt\\.binaries\\.teevee$ /^\\[\\d+\\/\\d+\\][-_\\s]{0,3}(?P[\\w. -]+)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/ 1 //[14/16] - Game.of.Thrones.S03E04.720p to 640x480 for size.vol11+08.PAR2 yEnc ::: //[22/39] LEGO.Batman.The.Movie.2013.1080p.WEB-DL.DD5.1.H.264-YFN.part21.rar yEnc 150 -948 ^alt\\.binaries\\.teevee$ /^\\[\\]-\\[FULL\\]-\\[a\\.b\\.teevee\\]-\\[[\\w.-]+\\][-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(tv) ncis.1021.hdtv-lol [1/8] - "ncis.1021.hdtv-lol.sfv" yEnc 155 -949 ^alt\\.binaries\\.teevee$ /^\\(\\d+\\/\\d+\\)[-_\\s]{0,3}[\\w. -]+[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //(05/29) - LoK214 - "The.Legend.of.Korra.S02E14.Light.in.the.Dark.1080p.WEB-DL.DD5.1.H.264-BS.part04.rar" - 1,01 GB - yEnc ::: //(34/45) -Continuum.S02E11.1080p.WEB-DL.AAC2.0.H264- "Continuum.S02E11.1080p.WEB-DL.AAC2.0.H264.part33.rar" - 1.76 GB - yEnc 160 -950 ^alt\\.binaries\\.teevee$ /^\\[ [A-Za-z]+ \\] - (\\[\\d+\\/\\d+\\] - )?"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[ TVPower ] - "Dexter.S07E10.720p.HDTV.x264-NLsubs.par2" yEnc ::: //[ TVPower ] - [010/101] - "Desperate.Housewives.S08Disc2.NLsubs.part009.rar" yEnc 165 -951 ^alt\\.binaries\\.teevee$ /^\\[.+?\\]-\\[(?P.+?)\\]-\\[\\d+\\/\\d+\\] ".+?" - \\d+([.,]\\d+ [kKmMgG])?[bB] - yEnc$/ 1 //[www.allyourbasearebelongtous.pw]-[WWE.Monday.Night.Raw.2013.07.22.HDTV.x264-IWStreams]-[03/69] "WWE.Monday.Night.Raw.2013.07.22.HDTV.x264-IWStreams.r00" - 1.58 GB - yEnc 170 -952 ^alt\\.binaries\\.teevee$ /^\\(www\\..+?\\) .+? - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(www.Thunder-News.org) >CD1< - "moovee-fastest.cda.par2" yEnc 175 -953 ^alt\\.binaries\\.teevee$ /\\.info .+?Powered by .+?\\.com "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") .+? \\d+\\/\\d+ \\(\\d+[,.]\\d+ [mMkKgG][bB]\\) .+? yEnc$/ 1 //<<>> usenet-space-cowboys.info <<< "S05E03 Pack die Badehose ein_usenet-space-cowbys.info.par2" >< 01/10 (411,16 MB) >< 3,48 kB > yEnc 180 -954 ^alt\\.binaries\\.teevee$ /^(?P[a-zA-Z0-9]+ .+? - S\\d+E\\d+ - .+?) \\[\\d+\\/\\d+\\] - ".+?\\..+?" yEnc$/ 1 //Newport Harbor The Real Orange County - S01E01 - A Black & White Affair [01/11] - "Newport Harbor The Real Orange County - S01E01 - A Black & White Affair.mkv" yEnc 185 -955 ^alt\\.binaries\\.teevee$ /^\\(www\\.Thunder-News\\.org\\) ?>(?P.+)< ?[ _-]{0,3}(\\(\\d+\\/\\d+\\)|\\[\\d+\\/\\d+\\])?[ _-]{0,5}("|#34;).+("|#34;) yEnc$/i 1 //(www.Thunder-News.org) >Robin.Hood.S02E04.Der.Todesengel.German.WS.DVDRip.XviD-GTVG< - "gtvg-rh.xvid.s02e04.jpg" yEnc 190 -956 ^alt\\.binaries\\.teevee$ /^\\.: (?P.+):. - .:www\\.thunder-news\\.org:. - .:sponsored by secretusenet\\.com:\\. - ("|#34;).+("|#34;).+yEnc$/ 1 //.: Breaking.Bad.S04E10.Prost.German.WS.DVDRip.XviD-GTVG :. - .:www.thunder-news.org:. - .:sponsored by secretusenet.com:. - "gtvg-bb.xvid.s04e10_poster.jpg" yEnc 195 -957 ^alt\\.binaries\\.teevee$ /\\[FULL\\]-\\[.+.EFNet\\] - (?P.+)\\.rar$/ 1 //[FULL]-[#a.b.teevee@EFNet] - Celemony Melodyne Studio Edition 3.2 (MAC OSX).rar 200 -958 ^alt\\.binaries\\.teevee$ /^\\(\\d+\\/\\d+\\) ("|#34;)(?P.+?)\\.rar("|#34;) - .+ - yEnc$/ 1 //(00912/17663) "Afghanistan The Great Game With Rory Stewart Part1 HDTV XviD-AFG.rar" - 344,98 GB - yEnc 205 -959 ^alt\\.binaries\\.teevee$ /^\\[[\\d#]+\\]-\\[.+?\\]-\\[.+?\\]-\\[ (?P.+?) \\][- ]\\[\\d+\\/\\d+\\][-_\\s]{0,3}("|#34;).+?/ 1 //[84491]-[FULL]-[#a.b.teevee@EFNet]-[ Tennis.Australian.Open.2012.Mens.1st.Round.Lleyton.Hewitt.vs.Cedrik-Marcel.Stebe.720p.HDTV.x264-LMAO ]-[04/97] - "tennis.australian.open.2012.mens.1st.round.lleyton.hewitt.vs.cedrik-marcel.stebe.720p.hdtv.x264-lmao.r01 210 -960 ^alt\\.binaries\\.teevee$ /^\\(\\(\\((Nimue|CowboyUp26-1208)\\)\\)\\)\\(\\(\\((?P.+)\\)\\)\\).+yEnc$/ 1 //(((Nimue)))(((Hawaii.Five.0.S02E12.Der.Mann.im.Bunker.GERMAN.DUBBED.HDTVRiP.XviD-SOF))) usenet-space-cowboys.info (((Powered by https://secretusenet.com)( #34;hawaii.five.0.s02e12.avi#34; )( 02/11 (762,35 MB) )( 349,83 MB ) yEnc 215 -961 ^alt\\.binaries\\.teevee$ /^__www\\.realmom\\.info__ - (?P.+)\\.(rar$|rar yEnc$)/ 1 //__www.realmom.info__ - 56 Downloader (XMLBar) - DOWNLOAD EVERY VIDEO!.rar 220 -962 ^alt\\.binaries\\.teevee$ /^\\((?P.+)\\)\\[\\d+\\/\\d+\\] - ("|#34;).+("|#34;) yEnc$/ 1 //(My.Name.Is.Earl.S03.DVDRip.XviD-ORPHEUS-NODLABS.PARS)[000/197] - "My.Name.Is.Earl.S03.DVDRip.XviD-ORPHEUS-NODLABS.PARS.nzb" yEnc 225 -963 ^alt\\.binaries\\.teevee$ /^(?P[a-zA-Z].+) - ("|#34;).+("|#34;) \\d+[,.]\\d+ [mMkKgG][bB]ytes yEnc$/ 1 //Curb.Your.Enthusiasm.S08.DVDRiP.XviD.COMPLETE.REPACK-CLuE - "sample-curb.your.enthusiasm.s08.dvdrip.xvid.complete.repack-clue.avi.vol1+2.PAR2" 770.0 KBytes yEnc 230 -964 ^alt\\.binaries\\.teevee$ /^<<<(Thor(\\d+)?)>>><<<(?P.+)>>>usenet-space-cowboys.+<<< ("|#34;).+("|#34;).+> yEnc$/i 1 //<<>><<>>usenet-space-cowboys.info<<< "idtv-chuck_s04e20_720p-sample.mkv" >< 03/61 (2,39 GB) >< 21,89 MB > yEnc 235 -965 ^alt\\.binaries\\.teevee$ /\\(Public\\).*"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //(Public) (FULL) (a.b.teevee@EFNet) [04/13] (????) [00/27] - "DC.Guy.in.a.Ceelo.Green.Hood..S01E07.720p.HDTV.X264-DIMENSION.nzb" yEnc 240 -966 ^alt\\.binaries\\.teevee$ /^>ghost-of-usenet\\.org<< ?(?P.+) ?>>www.+>[ _-]{0,3}("|#34;)?.+("|#34;)? ?yEnc$/i 1 //>ghost-of-usenet.org<< Suburgatory.S01E13.Sex.und.die.Vorstadt.GERMAN.DUBBED.DL.720p.WebHD.x264-TVP >>www.SSL-News.info> - "tvp-suburgatory-s01e13-720p.nfo" yEnc 245 -967 ^alt\\.binaries\\.teevee$ /^(?P.+?) NoAds \\[\\d+\\/\\d+\\][-_\\s]{0,3}("|#34;).+?("|#34;) yEnc$/ 1 //Touch.S02E09.PROPER.1080p.WEB-DL.DD5.1.H.264-LFF NoAds [01/30] - "Touch.S02E09.PROPER.1080p.WEB-DL.DD5.1.H.264-LFF.nfo" yEnc 250 -968 ^alt\\.binaries\\.teevee$ /^<<<(?PThor(\\d+)?)>>><<<(.+)>>>.+<<<.+>< ("|#34;).+("|#34;).+/ 1 //<<>><<>>usenet-space-cowboys.info<<< "sof-ncis.los.angeles.s03e02.die.cyberattacke.(2010).hdtvdubbed.nfo" >< 02/28 (419,00 MB) >< 4,18 255 -969 ^alt\\.binaries\\.teevee$ /^AS REQ: "(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //AS REQ: "Game.of.Thrones.Season.3.480p.HDTV.H264.part52.rar" yEnc 260 -970 ^alt\\.binaries\\.teevee$ /^<<<(Hustensaft\\d+|Nimue|CowboyUp\\d+(-\\d+)?)>>><<<(?P.+)>>>.+<<>><<>> usenet-space-cowboys.info <<< "nge-dgdf-e05-xvid.r04" >< 07/39 (1,51 GB) >< 47,68 MB > yEnc ::: //<<>><<>>usenet-space-cowboys.info<<< "zzgtv-spartacus-s02e09.r00" >< 04/43 (1,72 GB) >< 47,68 MB > yEnc ::: //<<>><<>> usenet-space-cowboys.info <<< "nge-dgdf-e05-xvid.r04" >< 07/39 (1,51 GB) >< 47,68 MB > yEnc ::: //<<>><<>>usenet-space-cowboys.info<<< "etm-csi_las_vegas_s10e21-1080p.r12.vol000+01.par2" >< 39/49 (3,86 GB) >< 3,32 MB > yEnc 265 -971 ^alt\\.binaries\\.teevee$ /^\\[ (?P[a-zA-Z].+) \\] - \\[\\d+\\/\\d+\\] - ".+" yEnc$/ 1 //[ Ugly.Betty.S02E13.DVDRip.XviD-SAiNTS ] - [01/39] - "Ugly.Betty.S02E13.DVDRip.XviD-SAiNTS.par2" yEnc 270 -972 ^alt\\.binaries\\.teevee$ /^\\((?P[\\w.,& \\()\\[\\]\\'\\`-]{8,}?)\\) \\[\\d+\\/\\d+\\][ _-]{0,3}("|#34;).+("|#34;) yEnc$/i 1 //(Wainy Days.S02E07.DVDRip.x264-PiNK) [01/10] - "Wainy Days.S02E07.DVDRip.x264-PiNK.par2" yEnc 275 -973 ^alt\\.binaries\\.teevee$ /^\\[.+\\][-_\\s]{0,3}\\[ (?P.+) \\][-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}("|#34;).+("|#34;) yEnc$/ 1 //[Mercy.S01.720p.WEB-DL.DD5.1.h.264-LP-MMI]-[ Mercy.S01E18.Of Course I'm Not.720p.WEB-DL.DD5.1.H.264-LP ]-[01/24] - "Mercy.S01E18.Of Course I'm Not.720p.WEB-DL.DD5.1.H.264-LP.par2" yEnc 280 -974 ^alt\\.binaries\\.teevee$ /^(REPOST: )?\\[ (?P.+) \\] - \\[\\d+\\/\\d+\\] - ".+" yEnc$/ 1 //REPOST: [ Th3.V@mpir3.Di@ri35.S05E02.HDTV.X264-DIMENSION ] - [31/33] - "Th3.V@mpir3.Di@ri35.S05E02.HDTV.X264-DIMENSION.vol050+051.par2" yEnc 285 -975 ^alt\\.binaries\\.teevee$ /^\\[#a\\.b\\.teevee\\] (?P.+) - \\[\\d+\\/\\d+\\] - ".+" yEnc$/ 1 //[#a.b.teevee] Covert.Affairs.S04E11.720p.WEB-DL.DD5.1.H.264-XEON - [11/40] - "Covert.Affairs.S04E11.720p.WEB-DL.DD5.1.H.264-XEON.part09.rar" yEnc 290 -976 ^alt\\.binaries\\.teevee$ /^(?P.+ )Confessions.+\\[\\d+ of \\d+\\] ".+\\((?P(1080|720).+[HS]D)\\).+" yEnc$/ 1 //Breaking Bad S6E03 Confessions enjoy! [7 of 46] "03 Confessions (1080p HD).mov.007" yEnc 295 -977 ^alt\\.binaries\\.teevee$ /^\\[\\d+\\/\\d+\\] (?P.+) - ".+" yEnc$/ 1 //[51/62] Morrissey.25.Live.Concert.2013.BDRip.x264-N0TSC3N3 - "n0tsc3n3-morrissey.25.live.2013.bdrip.x264.rar" yEnc 300 -978 ^alt\\.binaries\\.teevee$ /^\\(\\d+\\/\\d+\\)[ -]+Description[ -]+"(?P.+)\\.part\\d+\\.rar"[ -]+\\d+[.,]\\d+ [kKmMgG][bB][ -]+yEnc$/ 1 //(01/19) - Description - "How I Met Your Mother S05E24 - Doppelgangers.part01.rar" - 175,05 MB - yEnc 305 -979 ^alt\\.binaries\\.teevee$ /^\\(\\d+\\/\\d+\\) -(?P.+) - ".+" - \\d+[.,]\\d+ [MGK]B - yEnc$/ 1 //(23/23) -The.Mindy.Project.S02E09.720p.WEB-DL.DD5.1.H.264 - "The.Mindy.Project.S02E09.720p.WEB-DL.DD5.1.H.264.vol31+29.PAR2" - 768.86 MB - yEnc 310 -980 ^alt\\.binaries\\.teevee$ /^(?P.+[Ss]\\d+.+) - \\[\\d+\\/\\d+\\] - ".+" yEnc$/ 1 //The Mindy Project s02e06 720p WEB-DL - [02/24] - "The Mindy Project S02E06 720p WEB-DL.part01.rar" yEnc 315 -981 ^alt\\.binaries\\.teevee$ /^\\[ ?(?P.+(S\\d+|READ\\.NFO).+) ?\\] \\[\\d+\\/\\d+\\] - ".+" yEnc$/ 1 //[ Breaking.Bad.S05E16.BDRip.x264-DEMAND ] [30/30] - "breaking.bad.s05e16.bdrip.x264-demand.vol42+37.PAR2" yEnc 320 -982 ^alt\\.binaries\\.teevee$ /^\\[\\d+\\/\\d+\\] - "(?P.+S\\d+.+)\\.par.+" yEnc$/ 1 //[32/44] - "Scandal.S03E07.Everything's.Coming.Up.Mellie.1080p.WEB-DL.DD5.1.H.264-ECI.part31.rar" yEnc 325 -983 ^alt\\.binaries\\.teevee$ /^< (?P.+) >- \\[\\d+\\/\\d+\\] - ".+" yEnc$/ 1 //< Welcome.to.the.Jungle.German.2003.DVD9.AC3.DL.1080p.BluRay.x264-MOViESTARS >- [93/95] - "moviestars-wttj.1080p.vol15+16.par2" yEnc 330 -984 ^alt\\.binaries\\.teevee$ /[Ss]\\d+[Ee]\\d+.+\\[\\d+ of \\d+\\] "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Sam & Cat S01E06 BabysitterWar [1 of 9] "Sam & Cat - S01E06 - BabysitterWar-ORIG.mp4" yEnc 335 -985 ^alt\\.binaries\\.teevee$ /[Ss]\\d+[Ee]\\d+.+- "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Sam & Cat - S01E10 - BabysittingCommercial - "Sam & Cat - S01E10 - BabysittingCommercial.m4v" yEnc 340 -986 ^alt\\.binaries\\.teevee$ /^\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[12/22] - "stargate_sg-1.6x12.unnatural_selection.ws_dvdrip_xvid-fov.avi" yEnc 345 -987 ^alt\\.binaries\\.teevee$ /^For teevee - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") \\[\\d+\\/\\d+\\][ _-]{0,3}yEnc$/ 1 //For teevee - "Silent.Witness.S17E05.480p.HDTV.x264-mSD.mkv.sfv" [01/23] yEnc 350 -988 ^alt\\.binaries\\.teevee$ /^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //"Mad.Men.S06E11.HDTV.x264-2HD.par2" yEnc 355 -989 ^alt\\.binaries\\.teevee$ /^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\[\\d+\\/(\\d+\\])[ _-]{0,3}yEnc$/ 1 //"Marvels.Agents.of.S.H.I.E.L.D.S01E07.HDTV.XviD-FUM.avi.nfo" [09/16] yEnc 360 -990 ^alt\\.binaries\\.teevee$ /^(?P.+(1080|720).+)\\..+\\[\\d+\\/\\d+\\]".+" yEnc$/ 1 //Public Enemies (2009).720p.x264.English Subtitles.Dolby Digital 5.1.mkv [04/55]"Public Enemies sample.mkv" yEnc 365 -991 ^alt\\.binaries\\.teevee$ /^.+EnJoY\\!.+\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //-=->EnJoY!<-=- (Day1/5) [01/17] - "The Machine that Changed the World S01E01 - Giant Brains - 1992 (480p,x264).nfo" yEnc ::: //-=>EnJoY!<-=->Req:The Animated Alias:Tribunal (2004)<=- [01/17] - "Da Vinci's Demons - S01E07 - The Hierophant (480p,x264).nfo" yEnc 370 -992 ^alt\\.binaries\\.teevee$ /^[\\w. -]+\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //The.Colbert.Report.2013.07.29.The.Lumineers.WEBRip.AAC2.0.H.264-DCK [01/11] - "The.Colbert.Report.2013.07.29.The.Lumineers.WEBRip.AAC2.0.H.264-DCK.mp4" yEnc 375 -993 ^alt\\.binaries\\.teevee$ /^[\\w. -]+[-_ ]{0,4}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //the.lockerbie.bombing.720p.HDTV.x264-fatboy - "the.lockerbie.bombing.720p.HDTV.x264-fatboy.nfo" - 829.12 MB - yEnc 380 -994 ^alt\\.binaries\\.teevee$ /^[\\w. -]+[-_ ]{0,4}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //The.Vampire.Diaries.S05E13.HDTV.X264"The.Vampire.Diaries.S05E13.HDTV.X264.vol40+36.PAR2" yEnc 385 -995 ^alt\\.binaries\\.teevee$ /^\\[[\\w.-]+\\][-_\\s]{0,3}.+[-_\\s]{0,3}\\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //[Doomsday.Preppers.S03E11.720p.HDTV.x264-TTVa] - NOT ORIGINAL RARS, REPACKED. Sorry. - (18/35) "Doomsday.Preppers.S03E11.720p.HDTV.x264-TTVa.r16" - 1.31 GB - yEnc 390 -996 ^alt\\.binaries\\.teevee$ /^\\[[\\w. -]+\\][-_\\s]{0,3}.+[-_\\s]{0,3}[\\[\\(]\\d+\\/\\d+[\\]\\)][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[CONAN] Conan.2013.12.12.Adam.Levine.WEBRiP.x264-CoCo [Missed Conan Episodes] - [22/32] - "conan.2013.12.12.adam.levine.webrip.x264-coco.r18" yEnc 395 -997 ^alt\\.binaries\\.teevee$ /^[\\w -]+[-_\\s]{0,3}[\\[\\(]\\d+ of \\d+[\\]\\)][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Dave Gorman Modern L 400 -998 ^alt\\.binaries\\.teevee$ /^[\\[\\(]\\d+\\/\\d+[\\]\\)][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(1/9) "Tronens_Spil_S03E08.par2" yEnc 405 -999 ^alt\\.binaries\\.teevee$ /^\\d+\\/\\d+[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //07/14 "Sister.Wives.S06E06.STV.XviD-kralcx.vol000+01.PAR2" yEnc 410 -1000 ^alt\\.binaries\\.teevee$ /^\\d+\\/\\d+[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //07/14 "Sister.Wives.S06E06.STV.XviD-kralcx.vol000+01.PAR2" yEnc 415 -1001 ^alt\\.binaries\\.teevee$ /^\\[ \\d+[.,]\\d+ [kKmMgG][bB] \\][-_\\s]{0,3}\\[ \\d+\\/\\d+ \\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[ 749,75 MB ]-[ 01/20 ]-"choir.of.young.believers-this.is.for.the.white.in.your.eyes.live.2009.pdtv.x264.nfo" yEnc 420 -1002 ^alt\\.binaries\\.teevee$ /^ (?P[\\w. \\()-]{8,}?\\b)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/ 1 // Hannibal.S01E04.mp4 yEnc 425 -1003 ^alt\\.binaries\\.teevee$ /^A5F[-_\\s]{0,3}\\[ (?P[\\w. \\()-]{8,}?\\b) \\][-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/ 1 //A5F - [ NOVA.S40E19.Manhunt.Boston.Bombers.HDTV.x264-A5F ] - [01/43] - "NOVA.S40E19.Manhunt.Boston.Bombers.HDTV.x264-A5F.sfv" (not.teevee) yEnc 430 -1004 ^alt\\.binaries\\.teevee$ /^[\\w. \\()-]{8,}?\\b\\(\\d+\\/\\d+\\)[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //Arrested.Development.S04E08.x264(04/164) "Arrested.Development.S04E08.WEBRiP.x264.part03.rar" - 197.21 MB - yEnc 435 -1005 ^alt\\.binaries\\.teevee$ /^(?P[a-zA-Z0-9 ]+) \\(\\d+\\/\\d+\\) - ?".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Divers (12/42) -"Juste.Pour.Rire.2013.Gala.JF.Mercier.FRENCH.720p.HDTV.x264-QuebecRules.part11.rar" yEnc ::: //Par le chapeau (06/43) - "8C7D59F472E03.part04.rar" yEnc 440 -1006 ^alt\\.binaries\\.test$ /^brothers-of-usenet.net\\)\\((?P.+)\\)\\)\\(\\d+\\/\\d+\\) ("|#34;).+("|#34;).+yEnc$/ 1 //brothers-of-usenet.net)(Sons.of.Anarchy.S03E03.Fuersorge.GERMAN.DUBBED.720p.BLURAY.x264-ZZGtv))(07/31) #34;zzgtv-soa-s03e03.part05.rar#34; - 2,02 GB - yEnc 5 -1007 ^alt\\.binaries\\.test$ /^brothers-of-usenet.net\\((?P.+)\\)\\)\\(\\d+\\/\\d+\\) ("|#34;).+("|#34;).+yEnc$/ 1 //brothers-of-usenet.net(Sons.of.Anarchy.S03E03.Fuersorge.GERMAN.DUBBED.720p.BLURAY.x264-ZZGtv))(07/31) #34;zzgtv-soa-s03e03.part05.rar#34; - 2,02 GB - yEnc ::: else 10 -1008 ^alt\\.binaries\\.test$ /^brothers-of-usenet.net><(?P.+)>>\\(\\d+\\/\\d+\\) ("|#34;).+("|#34;).+yEnc$/ 1 //brothers-of-usenet.net>>(01/31) "zzgtv-soa-s03e02.nfo" - 1,98 GB - yEnc ::: else 15 -1009 ^alt\\.binaries\\.town$ /^[\\[(?P]\\d+\\/\\d+[\\])] - "([A-Z0-9].{2,}?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB]( -)? yEnc$/ 1 //[01/29] - "Bellflower.2011.German.AC3.BDRip.XviD-EPHEMERiD.par2" - 1,01 GB yEnc ::: //(3/9) - "Microsoft Frontpage 2003 - 4 Town-Up from Kraenk.rar.par2" - 181,98 MB - yEnc 5 -1010 ^alt\\.binaries\\.town$ /^"(?P.+)__www.realmom.info__.+" \\(\\d+\\/(\\d+\\)) \\d+[.,]\\d+ [kKmMgG][bB] yEnc$/ 1 //"Armored_Core_V_PS3-ANTiDOTE__www.realmom.info__.r00" (03/78) 3,32 GB yEnc 10 -1011 ^alt\\.binaries\\.town\\.cine$ /^[\\[(?P]\\d+\\/\\d+[\\])] - "([A-Z0-9].{2,}?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB]( -)? yEnc$/ 1 //[01/29] - "Bellflower.2011.German.AC3.BDRip.XviD-EPHEMERiD.par2" - 1,01 GB yEnc ::: //(3/9) - "Microsoft Frontpage 2003 - 4 Town-Up from Kraenk.rar.par2" - 181,98 MB - yEnc 5 -1012 ^alt\\.binaries\\.town\\.xxx$ /^[\\[(?P]\\d+\\/\\d+[\\])] - "([A-Z0-9].{2,}?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB]( -)? yEnc$/ 1 //[01/29] - "Bellflower.2011.German.AC3.BDRip.XviD-EPHEMERiD.par2" - 1,01 GB yEnc ::: //(3/9) - "Microsoft Frontpage 2003 - 4 Town-Up from Kraenk.rar.par2" - 181,98 MB - yEnc 5 -1013 ^alt\\.binaries\\.tun$ /^\\[ nEwZ\\[NZB\\]\\.iNFO - \\[ (?P[a-z0-9A-Z]{3,}=) \\] - File \\[\\d+\\/\\d+\\]: ".+?" yEnc$/ 0 // Leaving here to show that you can get the names from these. ::: // Useless since all these are passworded and 5 -1014 ^alt\\.binaries\\.tun$ /^\\[PRiVATE\\] (?P[a-z0-9A-Z]{4,}=*) \\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 0 //[PRiVATE] VHdpc3R5cy5jb21fMTMuMDguMDkuQWlkZW4uQXNobGV5LkVsbGUuQWxleGFuZHJhLldoYXQuWW91ci5GdXR1cmUuSG9sZHMuWFhYLklNQUdFU0VULUZ1R0xp [06/10] - "89857cebff1efd7927ebddf30281b0e4.part2.rar" yEnc 10 -1015 ^alt\\.binaries\\.tv$ /^#?.+req (\\d+|x+)[ -]{1,}(?P.+)\\s*- ?\\[?\\d+\\/\\d+\\]?[ -]{1,3}"?.+"? yEnc$/i 1 //#a.b.mm@efnet - req 86820 - World.Series.of.Poker.2009.E05.Celebrity.No-Limit.Holdem.Part.1.of.2.HDTV.XviD-FQM - [26/28] - "world.series.of.poker.2009.e05.hdtv.xvid-fqm.vol07+08.par2" yEnc ::: //#a.b.mm@efnet - req 60243 - Dawn.Porter.Mail.Order.Bride.PROPER.WS.PDTV.XviD-NOsegmenT - [01/28] - dawn.porter.mail.order.bride.proper.ws.pdtv.xvid-nosegment.nfo yEnc ::: //a.b.mm@EFNet - Req 58360 - Seinfeld.7x02.The_Postponement.DVDRip_XviD-FoV - [01/21] "seinfeld.7x02.the_postponement.dvdrip_xvid-fov.nfo" yEnc ::: //#a.b.mm@efnet - req xxxxx - Spin.City.S02E04.PROPER.DVDRiP.XViD-NODLABS - [07/28] - "spin.city.s02e04.proper.dvdrip.xvid.subs-nodlabs.vol0+1.par2" yEnc ::: //#a.b.mm@EFNeT - REQ 58160 - How.I.Met.Your.Mother.S03E19.DVDRip.XviD-ORPHEUS - 00/26 - how.i.met.your.mother.s03e19.dvdrip.xvid-orpheus.nzb yEnc ::: //#a.b.mm@EFNeT - REQ 81686 - Burn.Notice.S02E01.720p.HDTV.X264-2HD- 00/42 - Burn.Notice.S02E01.720p.HDTV.X264-2HD.nzb yEnc 5 -1016 ^alt\\.binaries\\.tv$ /^www\\.Bin-Req\\.net Presents: #\\d+[ -]{1,3}(?P.+) - \\[\\d+\\/\\d+\\].+\\(\\d+\\/\\d+\\) yEnc$/ 1 //www.Bin-Req.net Presents: #57629 - Man.vs.Wild.S05E03.Bears.Essentials.HDTV.XviD-GNARLY - [01/37] - man.vs.wild.s05e03.bears.essentials.hdtv.xvid-gnarly.sample.avi (1/27) yEnc 10 -1017 ^alt\\.binaries\\.tv$ /^\\((?P[a-zA-Z].+)\\) \\(\\d+\\/\\d+\\) - ".+" yEnc$/ 1 //(The.Legend.Of.Korra.S01E08.When.Extremes.Meet.720p.HDTV.h264) (00/41) - "The.Legend.Of.Korra.S01E08.When.Extremes.Meet.720p.HDTV.h264.nzb" yEnc 15 -1018 ^alt\\.binaries\\.tv$ /^(?P[A-Za-z0-9][a-zA-Z0-9.-]{6,})\\s+- ".+" yEnc$/ 1 //NCIS.S11E08.HDTV.x264-LOL - "NCIS.S11E08.HDTV.x264-LOL.part.par2" yEnc 20 -1019 ^alt\\.binaries\\.tv$ /^>ghost-of-usenet\\.org< ?(?P.+)>Sponsored.+< ?\\(\\d+\\/\\d+\\)[ _-]{0,3}("|#34;)?.+("|#34;)?[ _-]{0,3}yEnc$/i 1 //>ghost-of-usenet.org<24.S07E01.German.SATRip.XviD-ITG>Sponsored by Astinews< (02/27) "itg-24-s07e01.nfo" yEnc 25 -1020 ^alt\\.binaries\\.tv$ /^(?P[\\w.\\' -]{8,}) [\\[\\(]\\d+\\/\\d+[\\]\\)] - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")([-_\\s]{0,3}[\\w.-]+)?[ _-]{0,3}yEncs$/ 1 //World's.Strongest.Man.2013.Episode1.Webrip [01/46] - "2013x01.nfo" yEnc 30 -1021 ^alt\\.binaries\\.tv$ /^Handyman Shows-(?P.+) - File \\d+ of \\d+ - yEnc$/ 1 //Handyman Shows-TOH-S32E10 - File 01 of 32 - yEnc 35 -1022 ^alt\\.binaries\\.tv$ /^Handyman Shows.+"(?P.+)\\.(par2|nfo|avi|nzb)" yEnc$/ 1 ///^Handyman Shows.+"(.+)\.(par2|nfo|avi|nzb)" yEnc$/ 40 -1023 ^alt\\.binaries\\.tv$ /^(?P(Kung Fu|Kids In The Hall) S\\d+\\E\\d+.+)\\.(par2|avi)\\s+yEnc$/ 1 //Kung Fu S02E15 A Dream WIthin a Dream.par2 yEnc ::: //Kids In The Hall S01E15.par2 yEnc 45 -1024 ^alt\\.binaries\\.tv$ /^(?P[a-zA-Z][\\w\\d\\.-]+) - \\[?\\d+\\/\\d+\\]? - "?.+\\.?(par2|nzb|nfo|avi)?"? yEnc$/ 1 //Project.Runway.Canada.S02E05.HDTV.DivX-JWo - 00/33 - project.runway.canada.205.nzb yEnc ::: //Yu-Gi-Oh.S03.DVDRip.AAC2.0.x264-DarkDream - [000/306] - "Yu-Gi-Oh.S03.DVDRip.AAC2.0.x264-DarkDream" yEnc 50 -1025 ^alt\\.binaries\\.tv$ /^(?P[a-zA-Z0-9.-]+) \\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //Borgen.2x02.A.Bruxelles.Non.Ti.Sentono.Urlare.ITA.BDMux.x264-NovaRip [02/22] - "borgen.2x02.ita.bdmux.x264-novarip.par2" yEnc 55 -1026 ^alt\\.binaries\\.tv$ /^[\\[\\(]\\w+[\\]\\)][-_\\s]{0,3}\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(bf1) [03/31] - "The.Block.AU.Sky.High.S07E56.WS.PDTV.XviD.BF1.part01.sfv" yEnc ::: //[REPOST] - [01/33] - "Breaking.Bad.S05E16.Felina.1080p.WEB-DL.DD5.1.H.264-BS.par2" yEnc 60 -1027 ^alt\\.binaries\\.tv$ /^\\(\\?+\\)[-_\\s]{0,3}[\\(\\[]\\d+\\/\\d+[\\]\\)][-_\\s]{0,3}"(?P.+?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})Carrie.+"[-_\\s]{0,3}yEnc$/ 1 //(????) [01/11] - "The Carrie Diaries - S02E01 - HDTV x264-LOL.sfvCarrieDiariesS02E01" yEnc 65 -1028 ^alt\\.binaries\\.tv$ /^\\([\\w. ]+\\)[-_\\s]{0,3}(?P[\\w+. -]{8,})(\\[\\w+\\])?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/ 1 //(noname 0307) NCIS.S11E14.HDTV.x264-LOL[rarbg].vol047+40.PAR2 yEnc 70 -1029 ^alt\\.binaries\\.tv$ /^\\[\\d+\\/\\d+\\][-_\\s]{0,3}(?P[\\w.\\() -]{8,}?\\b)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/ 1 //[014/144] - The Bible (2013) - S1E01 - In the Beginning AVC 480p.vol31+27.PAR2 yEnc 75 -1030 ^alt\\.binaries\\.tv$ /^Saturday Morning Classic (?P[\\w.\\()-]{8,}?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar)?(\\d{1,3}\\.rev|\\.vol.+?|\\.[A-Za-z0-9]{2,4})[-_\\s]{0,3}yEnc$/ 1 //Saturday Morning Classic Return-to-the-Planet-of-the-Apes-S01E03 - Lagoon of Peril.avi.001 yEnc 80 -1031 ^alt\\.binaries\\.tv$ /^"[\\w ]+" yEnc[-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //"NCIS S11E21" yEnc - [01/21] - "NCIS.S11E21.hdtv-lol.par2" yEnc 85 -1032 ^alt\\.binaries\\.tv$ /^(\\[\\d+\\]-)?\\[ ?(?P[a-zA-Z0-9.-]{6,}) ?\\](-\\[REAL\\])? ?- ?\\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //[ Best.Friends.Forever.S01E06.720p.WEB-DL.DD5.1.H.264-HWD ]-[01/25] - "Best.Friends.Forever.S01E06.720p.WEB-DL.DD5.1.H.264-HWD.nfo" yEnc 90 -1033 ^alt\\.binaries\\.tv$ /^"(?P[\\w. -]{8,})"[-_\\s]{0,3}yEnc$/ 1 //"Arrow S02E07" yEnc 95 -1034 ^alt\\.binaries\\.tvseries$ /^(?P.+\\d+x\\d+.+)\\s*\\[\\d+\\/\\d+\\][ -]*".+" yEnc$/ 1 //Mr.Sunshine.1x10.Ben.E.Vivian.ITA.DVDMux.XviD-NovaRip [01/14] - "mr.sunshine.1x10.ita.dvdmux.xvid-novarip.nfo" yEnc 5 -1035 ^alt\\.binaries\\.tvseries$ /^(?P.+S\\d+E\\d+.+)[ -]+\\[\\d+\\/\\d+\\] - ".+" yEnc$/ 1 //Ancient.Aliens.S06E03.The.Anunnaki.Connection.HDTV.x264-SOL - [13/28] - "Ancient.Aliens.S06E03.The.Anunnaki.Connection.HDTV.x264-SOL.r10" yEnc 10 -1036 ^alt\\.binaries\\.tvseries$ /^(?P[\\w\\s]+)\\[\\d+\\/\\d+\\] - ".+" [\\w\\s]+ yEnc$/ 1 //Moonlight Post Voor Dutch Release Crew [077/110] - "HLVRSM87654_S2D4.part76.rar" Wij Zoeken Nog Stafleden Meld Je Bij De Staf yEnc yEnc 15 -1037 ^alt\\.binaries\\.tvseries$ /\\[QWERTY\\] "(?P.+)\\.(mp4|mkv|ts)"( - \\d+[.,]\\d+ GB)?[ -]+yEnc$/ 1 //[QWERTY] "The.Real.Housewives.of.Atlanta.S06E02.HDTV.x264-CRiMSON.mp4" yEnc ::: //[QWERTY] "Air.Crash.Investigation.S10E06.HDTV.x264-TViLLAGE.mp4" - 6.76 GB - yEnc 20 -1038 ^alt\\.binaries\\.tvseries$ /\\(\\d+\\/\\d+\\)[ -]*"(BBC )?(?P.+)\\.(mp4|mkv|ts|nfo|par|par2)".+[GKM]B - yEnc$/ 1 //(01/32) - "Adam.Devines.House.Party.S01E04.HDTV.x264-YesTV.mp4" - 9.98 GB - yEnc ::: //(01/24) "BBC Dr Who An Unearthly Child S01E04 The Firemaker 1963.nfo" - 3.86 kB - 329.37 MB - yEnc 25 -1039 ^alt\\.binaries\\.tvseries$ /^(?P[a-zA-Z0-9 -_\\.]+) \\(\\d+\\/\\d+\\) - Description - "(.+)".+yEnc$/ 1 //Touched.By.An.Angel.S09 (001/179) - Description - "Season 9.par2" - 8.10 GB - yEnc 30 -1040 ^alt\\.binaries\\.tvseries$ /^\\(\\d+\\/\\d+\\) - (?P.+) - "(.+)".+yEnc$/ 1 //(01/31) - Balika.Vadhu.s01e1379.2013.09.07.720p.web-dl.x264 - "Balika.Vadhu.s01e1379.2013.09.07.720p.web-dl.x264.nfo" - 340.72 MB - yEnc 35 -1041 ^alt\\.binaries\\.tvseries$ /\\Israeli.+\\[\\d+\\/\\d+\\] - "(?P.+)\\.(mp4|mkv|ts|vol.+|)" yEnc$/ 1 //Israeli AutoRarPar0002 [54/55] - "Hameofefim.Hanoazim.E02.PDTV.XviD-Sweet-Star.vol063+64.par2" yEnc 40 -1042 ^alt\\.binaries\\.tvseries$ /\\Israeli.+\\[\\d+\\/\\d+\\] - "(?P.+)\\.(mp4|mkv|ts|par.+)" yEnc$/ 1 //Israeli AutoRarPar0021 [07/44] - "Hameofefim.Hanoazim.E23.PDTV.XviD-Sweet-Star.part06.rar" yEnc 45 -1043 ^alt\\.binaries\\.tvseries$ /AutoRarPar\\d+\\s+\\[\\d+\\/\\d+\\] - "(?P.+S\\d+\\s*E\\d+.+)\\.[vol|part].+" yEnc$/ 1 //AutoRarPar0005 [44/45] - "Prisoners of War (Hatufim) S01 E05 - Xvid - Hardcoded Subs - Sno.vol063+64.par2" yEnc 50 -1044 ^alt\\.binaries\\.tvseries$ /\\[ .+S\\d+.+ \\] \\w+\\.\\w+ \\(\\d+\\/\\d+\\) - "(?P.+)\\.(mp4|mkv|ts|rar)" yEnc$/ 1 //[ Skins UK - S02 - Season 2 DVDRip ] AVI.XviD (06/20) - "Skins.UK.S02E04.DVDRip.XviD-Affinity.rar" yEnc 55 -1045 ^alt\\.binaries\\.tvseries$ /^\\[ .+[sS]\\d+ \\[ \\w+ \\] - \\[ \\w+ \\] - \\[ \\w+ \\d+ \\] - \\[ "(?P.+[sS]\\d+[eE]\\d+).+".+yEnc$/ 1 //[ gtvg-mm.xvid.s03 [ PWP ] - [ TV ] - [ DBS 0883 ] - [ "gtvg-mm.xvid.s03e11.r09" ] 7,32 GB yEnc 60 -1046 ^alt\\.binaries\\.tvseries$ /^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")( - \\d+([.,]\\d+ [kKmMgG])?[bB])? - \\d+([.,]\\d+ [kKmMgG])?[bB] - yEnc$/ 1 //"Forbrydelsen.II.S01E03.2009.DVDRip.MULTi.DD5.1.x264.nzb" - 213.54 kB - yEnc ::: //"Futurama S07E01 The Bots And The Bees.vol26+23.PAR2" - 8.49 MB - 193.51 MB - yEnc 65 -1047 ^alt\\.binaries\\.tvseries$ /^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\[\\d+\\/(\\d+\\]) - yEnc$/ 1 //"Rijdende.Rechter.-.19x01.-.Huisbiggen.1080p.MKV-BNABOYZ.part38.rar" - [40/56] - yEnc 70 -1048 ^alt\\.binaries\\.tvseries$ /^\\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB] - yEnc$/ 1 //(003/104) "blackcave1001.part002.rar" - 4,83 GB - yEnc 75 -1049 ^alt\\.binaries\\.tvseries$ /^(?P[a-zA-Z0-9 -_\\.]+) \\(\\d+(\\/\\d+\\)) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //Chuck - Season2 (015/164) - "2x04.par2" yEnc 80 -1050 ^alt\\.binaries\\.tvseries$ /^[a-zA-Z0-9 -_\\.]+ \\[\\d+\\/(\\d+\\]) - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //X-Men Evolution - 2000 - [01/20] - "X-Men Evolution - 3x03 - Mainstream.par2" yEnc 85 -1051 ^alt\\.binaries\\.tvseries$ /^(?P[a-zA-Z0-9 -_\\.]+) (RETRY)?[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") \\d+(\\/\\d+)( {0,2}yEnc)?$/ 1 //'X-Files' Season 1 XviD RETRY "Files101.par2" 004/387 ::: //'X-Files' Season 5 XviD "Files502.par2" 018/321 yEnc ::: //'X-Files' Season 2 XviD "Files223.part2.rar" 356/401 yEnc 90 -1052 ^alt\\.binaries\\.tvseries$ /^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //"the.tudors.s03e03.nfo" yEnc 95 -1053 ^alt\\.binaries\\.tvseries$ /^\\(\\d+\\/(\\d+\\)) "((BBC|ITV) )?(?P.+?)(\\.part\\d+)?(\\.(par2|(vol.+?))"|\\.[a-z0-9]{3}"|") - \\d.+? - (\\d.+? -)? yEnc$/ 1 //(08/25) "Wild Russia 5 of 6 The Secret Forest 2009.part06.rar" - 47.68 MB - 771.18 MB - yEnc ::: //(01/24) "ITV Wild Britain With Ray Mears 1 of 6 Deciduous Forest 2011.nfo" - 4.34 kB - 770.97 MB - yEnc ::: //(24/24) "BBC Great British Garden Revival 03 of 10 Cottage Gardens And House Plants 2013.vol27+22.PAR2" - 48.39 MB - 808.88 MB - yEnc 100 -1054 ^alt\\.binaries\\.tvseries$ /^(.+?)[-_\\s]{0,3}("|#34;)(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}("|#34;))[-_\\s]{0,3}yEnc$/ 1 //[ Angel.S01.NTSC.DVDRip.DD2.0.x264.CRF-OtakuLoser ]-[003/550] - "Angel.S01E01.City.Of.NTSC.DVDRip.DD2.0.CRF.x264-OtakuLoser.part01.rar" yEnc 105 -1055 ^alt\\.binaries\\.tvseries$ /^(?P[a-zA-Z0-9 -_\\.]+) - \\[\\d+(\\/\\d+\\]) - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //FIRST.WAVE.NTSC.DVD.DD2.0 - [121/512] - "FIRST_WAVE_SEASON_1_DVD2.r26" - 44,33 GB - yEnc 110 -1056 ^alt\\.binaries\\.tvseries$ /^\\(\\d+(\\/\\d+\\)) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //(03/19) "Damages S04E02 FR.avi" - 5,49 GB yEnc 115 -1057 ^alt\\.binaries\\.tv\\.deutsch$ /^>ghost-of-usenet\\.org<< ?(?P.+) ?>>www.+>[ _-]{0,3}("|#34;)?.+("|#34;)? ?yEnc$/i 1 //>ghost-of-usenet.org<< Roseanne.S03E02.Die.lieben.Verwandten.German.1990.FS.DVDRip.XviD-GM4FS >>www.SSL-News.info> - (01/32) - "gm4fs-roseannedxvid-s03e02-sample.par2" yEnc 5 -1058 ^alt\\.binaries\\.u4e$ /^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //"Angry Birds USA PSN PSP-NRP.exe" yEnc 5 -1059 ^alt\\.binaries\\.u-4all$ /^(?P.+)\\[.+?usenet-4all\\.info\\][ _-]{0,3}\\[.+\\][ _-]{0,3}\\(\\d+\\/\\d+\\) ("|#34;).+("|#34;) yEnc$/ 1 //Breakin.1984.German.DL.720p.HDTV.x264-msd [ich for usenet-4all.info] [ich25729] [powered by ssl-news.info] (01/99) "ich25729.par2" yEnc 5 -1060 ^alt\\.binaries\\.u-4all$ /\\[ usenet-4all\\.info - powered by ssl\\.news -\\][-_\\s]{0,3}\\[\\d+([.,]\\d+)? [kKmMgG][bB]\\][-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //-4y (PW) [ usenet-4all.info - powered by ssl.news -] [1,44 GB] [08/14] "71cc4edc6R08eb7.vol00+01.PAR2" yEnc 10 -1061 ^alt\\.binaries\\.u-4all$ /^\\(\\?{4}\\) \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(????) [02838/75096] - "3D Browser v5.51.rar" yEnc 15 -1062 ^alt\\.binaries\\.u-4all$ /^\\(\\?{4}\\) \\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/ui 1 //(????) [02838/75096] - "3D Browser v5.51.rar" yEnc 20 -1063 ^alt\\.binaries\\.u-4all$ /^[\\[\\(]\\d+\\/\\d+[\\]\\)][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //(06/10) "Christopher Paolini - Eragon 01-04.part5.rar" - 7,84 GB - yEnc ::: //[09/22] - "H56A2_20131018_038.part08.rar" - 858,20 MB yEnc 25 -1064 ^alt\\.binaries\\.u-4all$ /^\\(\\d+\\/\\d+\\)[-_\\s]{0,3}Description[-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //(07/27) - Description - " Court Order 890879887870337.vol015+016.par2" - 1.80 GB - yEnc 30 -1065 ^alt\\.binaries\\.u-4all$ /^"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //"18X Girls Mirabella Gets Her Tight Ass Hole Plowed Hard.rar" yEnc 35 -1066 ^alt\\.binaries\\.usenetrevolution$ /^\\[\\d+\\/\\d+\\][ _-]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+[.,]\\d+ [kKmMgG][bB].+secretusenet\\.com.+yEnc$/i 1 //[3/3] - "Berwein Saskia - Leitner und Grohmann 02 - Herzenskaelte.epub.vol0+1.par2" - 860,05 kB {UR - powered by secretusenet.com} yEnc 5 -1067 ^alt\\.binaries\\.usenetrevolution$ /^.secretusenet\\.com[ _-]{0,3}\\[\\d+\\/\\d+\\][ _-]{0,3}"(?P[\\w.,&! \\()\\[\\]\\'-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][-_\\s]{0,3}yEnc$/i 1 //- UR-powered by secretusenet.com - [3/3] - "Berg Ellen - Zur Hoelle mit Seniorentellern!.vol0+1.par2" - 1,24 MB yEnc 10 -1068 ^alt\\.binaries\\.usenetrevolution$ /^"(?P[\\w.,&! \\()\\[\\]\\'-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[ _-]{0,3}\\(\\d+\\/\\d+\\)[ _-]{0,3}[-_\\s]{0,3}\\d+[.,]\\d+ [kKmMgG][bB].+secretusenet\\.com.+yEnc$/i 1 //- "Alcohol 120 Retail v2.0.2.5629German-UR.info.rar" - (2/3) - 13,35 MB -...:::UR.info-SecretUsenet.com:::... yEnc 15 -1069 ^alt\\.binaries\\.warez$ /^(?P[a-zA-Z].+) - \\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //BabysitterMovies.13.03.11.Babysitter.Jocelyn.Pink.XXX.HR.WMV-VSEX - [7/7] - "BabysitterMovies.13.03.11.Babysitter.Jocelyn.Pink.XXX.HR.WMV-VSEX.rar.vol15+5.par2" yEnc 5 -1070 ^alt\\.binaries\\.warez$ /^(?P[a-z].+) - \\[\\d+\\/\\d+\\][ _-]{0,3}("|#34;).+("|#34;) yEnc$/i 1 //ATKExotics.13.01.06.Janea.Toys.XXX.1080p.x264-SEXORS - [1/7] - #34;ATKExotics.13.01.06.Janea.Toys.XXX.1080p.x264-SEXORS.rar#34; yEnc 10 -1071 ^alt\\.binaries\\.warez$ /.*[\\(\\[]\\d+\\/\\d+[\\)\\]][-_\\s]{0,3}("|#34;)(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4})("|#34;)(.+?)yEnc$/ 1 //-Panzer.Command.Kharkov-SKIDROW - [1/7] - "-Panzer.Command.Kharkov-SKIDROW.rar" yEnc ::: //-AssMasterpiece.12.07.09.Alexis.Monroe.XXX.1080p.x264-SEXORS - [1/7] - #34;-AssMasterpiece.12.07.09.Alexis.Monroe.XXX.1080p.x264-SEXORS.rar#34; yEnc 15 -1072 ^alt\\.binaries\\.warez$ /.*"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4}")(.+?)yEnc$/ 1 //- "JH2U0H5FIK8TO7YK3Q.part12.rar" yEnc 20 -1073 ^alt\\.binaries\\.warez$ /^\\( (?P.+?) \\) - yEnc$/ 1 //( XS Video Converter Ultimate 7.7.0 Build 20121226 ) - yEnc 25 -1074 ^alt\\.binaries\\.warez(|\\.ibm-pc)\\.0-day$ /^(?P[a-zA-Z].+) - \\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //BabysitterMovies.13.03.11.Babysitter.Jocelyn.Pink.XXX.HR.WMV-VSEX - [7/7] - "BabysitterMovies.13.03.11.Babysitter.Jocelyn.Pink.XXX.HR.WMV-VSEX.rar.vol15+5.par2" yEnc 5 -1075 ^alt\\.binaries\\.warez(|\\.ibm-pc)\\.0-day$ /^(?P[a-z].+) - \\[\\d+\\/\\d+\\][ _-]{0,3}("|#34;).+("|#34;) yEnc$/i 1 //ATKExotics.13.01.06.Janea.Toys.XXX.1080p.x264-SEXORS - [1/7] - #34;ATKExotics.13.01.06.Janea.Toys.XXX.1080p.x264-SEXORS.rar#34; yEnc 10 -1076 ^alt\\.binaries\\.warez(|\\.ibm-pc)\\.0-day$ /.*[\\(\\[]\\d+\\/\\d+[\\)\\]][-_\\s]{0,3}("|#34;)(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4})("|#34;)(.+?)yEnc$/ 1 //-Panzer.Command.Kharkov-SKIDROW - [1/7] - "-Panzer.Command.Kharkov-SKIDROW.rar" yEnc ::: //-AssMasterpiece.12.07.09.Alexis.Monroe.XXX.1080p.x264-SEXORS - [1/7] - #34;-AssMasterpiece.12.07.09.Alexis.Monroe.XXX.1080p.x264-SEXORS.rar#34; yEnc 15 -1077 ^alt\\.binaries\\.warez(|\\.ibm-pc)\\.0-day$ /.*"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4}")(.+?)yEnc$/ 1 //- "JH2U0H5FIK8TO7YK3Q.part12.rar" yEnc 20 -1078 ^alt\\.binaries\\.warez(|\\.ibm-pc)\\.0-day$ /^\\( (?P.+?) \\) - yEnc$/ 1 //( XS Video Converter Ultimate 7.7.0 Build 20121226 ) - yEnc 25 -1079 ^alt\\.binaries\\.wii$ /^(?P.+)>\\(\\d+\\/\\d+\\) ".+" yEnc$/ 1 //Guitar.Hero.5-Vampire.Weekend.The.Kids.Dont.Stand.a.Chance.PAL.DLC.Wii-OneUp>(01/13) "1u-gh5-the-kids-dont-stand-a-chance-pal.nfo" yEnc 5 -1080 ^alt\\.binaries\\.wii$ /^\\((?P[a-zA-Z].+)\\) \\[\\d+\\/\\d+\\] - ".+".+yEnc$/ 1 //(Alice_In_Wonderland_PAL_Wii-BAHAMUT) [000/101] - "b-alicew.nzb" (1/4yEnc 10 -1081 ^alt\\.binaries\\.wii$ /^\\(\\d+\\/\\d+\\) "(?P.+)\\.(rar|par2|avi|URL|jpg)".+yEnc$/ 1 //(13/24) "amateur.-.Deutsches.Girl.-.Erster.User.Anal.Fick.rar" - 2,40 GB -md-hobbys.com yEnc 15 -1082 ^alt\\.binaries\\.wii$ /^\\[\\d+\\/\\d+\\] - ".+" - (?P[A-z0-9_-]+).+yEnc$/ 1 //[000/104] - "Story_Hour_Adventures_USA_WII-ZRY.nzb" - Story_Hour_Adventures_USA_WII-ZRY (1/9yEnc 20 -1083 ^alt\\.binaries\\.wii$ /^www\\.theplace4you\\.org.*"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4}").+?yEnc$/ 1 //www.theplace4you.org - [066/104] - "1234 Star.Wars.The.Force.Unleashed.2.PAL.Wii.part065.rar" yEnc 25 -1084 ^alt\\.binaries\\.wii$ /^<>(?P.+)>\\(\\d+\\/\\d+\\) ".+" yEnc$/ 1 //<>Super_Monkey_Ball_PAL_MULTi5_NGC_WORKING_iNTERNAL_For_Wii-SUNSHiNE>(01/35) "shine-gmbp.nfo" yEnc 30 -1085 ^alt\\.binaries\\.wii$ /^\\(-=\\s+R-KNORLOADING POST\\s+=-: (?P.+) FTD-NR: \\d+\\s+=-.+-= \\) \\[\\d+\\/\\d+\\] - ".+" yEnc$/ 1 //(-= R-KNORLOADING POST =-: Super Paper MarioPAL FTD-NR: 874068 =- R-KNORLOADING -= ) [01/19] - "R-KNORLOADING POST super paper mario PAL.sfv" yEnc 35 -1086 ^alt\\.binaries\\.wii$ /^.+"(?P.+)\\.nfo" - \\(\\d+\\/\\d+\\) yEnc$/ 1 //With Wii-Studio you can convert movie and music files easily so you can play it on Wii (2009) - "S.A.D.-Wii.Studio.v1.0.7.1127-incl.Patch.nfo" - (01/18) yEnc 40 -1087 ^alt\\.binaries\\.wii\\.gamez$ /^(?P\\w.+) - \\[\\d+\\/\\d+\\] - ".+" yEnc$/ 1 //Wicked_Monster_Blast_USA_WII-ZRY - [1/105] - "Wicked_Monster_Blast_USA_WII-ZRY.par2" yEnc 5 -1088 ^alt\\.binaries\\.worms$ /^(\\[U4A]) (?P.+?)\\[\\d+(\\/\\d+\\]) - ".+?" yEnc$/ 1 //[U4A] 2 Dudes and a Dream 2009 BRRip XvidHD 720p-NPW[01/36] - "2 Dudes and a Dream 2009 BRRip XvidHD 720p-NPW-Sample.avi" yEnc 5 -1089 ^alt\\.binaries\\.worms$ /^\\(\\d+\\/(\\d+\\)) ("|#34;)(?P.+)(\\.[vol|part].+)?\\.(par2|nfo|rar|nzb)("|#34;) - \\d+[.,]\\d+ [kKmMgG][bB] - yEnc$/i 1 //(38/57) "Fright.Night.2.New.Blood.2013.UNRATED.BluRay.810p.DTS.x264-PRoDJi.part26.rar" - 4,81 GB - yEnc ::: //(14/20) "Jack.the.Giant.Slayer.2013.AC3.192Kbps.23fps.2ch.TR.Audio.BluRay-Demuxed.by.par2" - 173,15 MB - yEnc 10 -1090 ^alt\\.binaries\\.worms$ /^\\(\\d+\\/\\d+\\) - Description - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //(01/40) - Description - "Cloudy.with.a.Chance.of.Meatballs.2009.AC3.23Fps.640Kbps.6Ch.TR.Audio.BD-Demuxed.by.DWA.nfo" - 454,60 MB - yEnc 15 -1091 ^alt\\.binaries\\.worms$ /^\\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //(151/161) "Troy.2004.Directors.Cut.1080p.BluRay.x264.DTS.vol064+21.PAR2.bad" - 18,64 GB - yEnc 20 -1092 ^alt\\.binaries\\.worms$ /^(\\[(Request|Repost)\\])?\\[Macguffin Proudly Presents\\][-_\\s]{0,3}\\(\\d+\\/\\d+\\)[-_\\s]{0,3}(?P.+?) MacGuffin[-_\\s]{0,3}".+([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[- ]{0,4}\\d+[.,]\\d+ [kKmMgG][bB][-_\\s]{0,3}yEnc$/i 1 //[Macguffin Proudly Presents] (33/75) -Reservoir Dogs 1992 720p BDRip AC3 x264 MacGuffin - "macguffin-redog720p.r30" - 3.06 GB - yEnc ::: //[Request][MacGuffin Proudly Presents](056/229) - LOTR The Trilogy EXTENDED REPOST 720p BRRip AC3 x264 MacGuffin - "macguffin-tfotr720p.r53" - 18.54 GB - yEnc ::: //[REPOST][MacGuffin Proudly Presents](44/54) - Flight 2012 720p BRRip REPOST AC3 x264 MacGuffin - "macguffin-flit720p.rar" - 4.09 GB - yEnc 25 -1093 ^alt\\.binaries\\.x$ /^!!www\\.usenet4all\\.eu!![ _-]{0,3}(?P.+)\\[\\d+\\/\\d+\\][ _-]{0,3}("|#34;).+("|#34;) yEnc$/i 1 //!!www.usenet4all.eu!! - Acceptance.2009.COMPLETE.NTSC.DVDR-D0PE[001/100] - #34;d0pe-a.nfo#34; yEnc 5 -1094 ^alt\\.binaries\\.x264$ /^"(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+?"|\\.[A-Za-z0-9]{2,4}") \\(\\d+\\/(\\d+\\)) yEnc$/ 1 //"Batman-8 TDKR-Pittis AVCHD-ADD.English.dtsHDma.part013.rar" (042/197) yEnc 5 -1095 ^alt\\.binaries\\.x264$ /^\\(\\d+\\/(\\d+\\)) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB]( -)? yEnc$/ 1 //(001/108) "Wizards.of.Waverly.Place.720p.S04E01.by.sugarr.par2" - 5,15 GB - yEnc 10 -1096 ^alt\\.binaries\\.x264$ /^\\[NZBsRus\\.com.+\\]-\\[(?P.+)\\][-_\\s]{0,3}\\[\\d+\\/\\d+\\] - ".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[NZBsRus.com]-[Arthur.Christmas.2011.BDRip.AC3-5.1.x264-AKS74u] [18/74] - "ac-bdrip-aks74u.r15" yEnc 15 -1097 ^alt\\.binaries\\.x264$ /^\\[.+\\]-\\[\\d+\\/\\d+\\] - "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //[Entourage.S05.720p.WEB-DL.DD5.1.H.264-BTN]-[167/193] - "Entourage.S05E11.Playn.With.Fire.720p.WEB-DL.DD5.1.h.264-BTN.part05.rar" yEnc 20 -1098 ^alt\\.binaries\\.x264$ /^CTW\\d+ \\| (?P.+) yEnc$/ 1 //CTW487678426 | Get.the.Gringo.1080p.BluRay.x264.DTS-HDChina.r43-CTW yEnc 25 -1099 ^alt\\.binaries\\.x264$ /^.+?\\[\\d+\\/(\\d+\\][-_\\s]{0,3}.+?)[-_\\s]{0,3}("|#34;)(?P.+?)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}("|#34;))[-_\\s]{0,3}yEnc$/ 1 //(????) [0/8] - Crionics Post - Alice In Chains - Dirt REPOST"Alice In Chains - Dirt.nzb" yEnc 30 -1100 ^alt\\.binaries\\.x264$ /^\\(\\?+\\) \\[\\d+\\/\\d+\\][-_\\s]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/ 1 //(????) [001/153] - "C4 House Party Horse Meat Disco Set 6.nfo" C4 House Party Horse Meat Disco Set 6 yEnc 35 -1101 ^alt\\.binaries\\.x264$ /^\\(\\?+\\) \\[\\d+\\/\\d+\\] - (?P.+)[-_\\s]{0,3}".+?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|").+yEnc$/ 1 //(????) [19/22] - C.K.N. Demo 85 "19-rotten system.mp3" yEnc 40 -1102 ^alt\\.binaries\\.xbox360$ /^a\\.b\\.g\\.xbox360 presents \\[ReqID: \\d+\\]\\[(?P.+)\\] \\[\\d+\\/\\d+\\] - ".+" yEnc$/ 1 //a.b.g.xbox360 presents [ReqID: 8747][Lego_Star_Wars_The_Complete_Saga_USA_XBOX360-PROTOCOL] [01/80] - "ptc-swcs.nfo" yEnc 5 -1103 ^dk\\.binaer\\.tv$ /^(?P[a-zA-Z0-9].+?) - \\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 //Store.Boligdroemme.S02E06.DANiS H.HDTV.x264-TVBYEN - [01/28] - "store.boligdroemme.s02e06.danis h.hdtv.x264-tvbyen.nfo" yEnc 5 -1104 ^alt\\.binaries\\.town$ /^.+?town\\.ag.+?(www\\..+?|News)\\.[iI]nfo.+? \\[\\d+\\/\\d+\\]( -)? "(?P.+?)(-sample)?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[.,]\\d+ [kKmMgG][bB]M? yEnc$/ 1 // >> www.ssl-news.info <<< > [05/87] - "Deep.Black.Ass.5.XXX.1080p.WEBRip.x264-TBP.part03.rar" - 7,87 GB yEnc ::: // [02/24] - "Dragons.Den.UK.S11E02.HDTV.x264-ANGELiC.nfo" - 288,96 MB yEnc ::: // [6/6] - "TTT.Magazine.2013.08.vol0+1.par2" - 33,47 MB yEnc 5 -1105 ^alt\\.binaries\\.town$ /^\\[\\s*TOWN\\s*\\][-_\\s]{0,3}\\[\\s*www\\.town\\.ag\\s*\\][-_\\s]{0,3}\\[\\s*partner of www\\.ssl-news\\.info\\s*\\][-_\\s]{0,3}\\[\\s* .*\\s*\\][-_\\s]{0,3}\\[\\d+\\/\\d+\\][-_\\s]{0,4}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //[ TOWN ]-[ www.town.ag ]-[ partner of www.ssl-news.info ]-[ 1080p ] - [320/352] - "Gq7YGEWLy8wAA2NhbZx5LukEa.vol000+5.par2" - 17.09 GB yEnc 10 -1106 ^alt\\.binaries\\.town$ /^.+?town\\.ag.+?(www\\..+?|News)\\.[iI]nfo.+? \\[\\d+\\/\\d+\\]( -)? "(?P.+?)(-sample)?([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 // >> www.ssl-news.info <<< >IP Scanner Pro 3.21-Sebaro - [1/3] - "IP Scanner Pro 3.21-Sebaro.rar" yEnc 15 -1107 ^alt\\.binaries\\.town$ /^\\(\\d+\\/\\d+\\) -\\s+ - ("|#34;)(?P[\\w. \\()-]{8,}?\\b)(\\.par2|-\\.part\\d+\\.rar|\\.nfo)("|#34;) - \\d+[.,]\\d+ [kKmMgG][bB]( -)? yEnc$/ 1 //(05/10) - - "D.Olivier.Wer Boeses.saet-gsx-.part4.rar" - 741,51 kB - yEnc 20 -1108 ^alt\\.binaries\\.town$ /^\\[ TOWN \\][ _-]{0,3}\\[ www\\.town\\.ag \\][ _-]{0,3}\\[ partner of www\\.ssl-news\\.info \\][ _-]{0,3}\\[ .* \\] \\[\\d+\\/\\d+\\][ _-]{0,3}("|#34;)(?P.+)((\\.part\\d+\\.rar)|(\\.vol\\d+\\+\\d+\\.par2))("|#34;)[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i 1 //[ TOWN ]-[ www.town.ag ]-[ partner of www.ssl-news.info ]-[ MOVIE ] [14/19] - "Night.Vision.2011.DVDRip.x264-IGUANA.part12.rar" - 660,80 MB yEnc 25 -1109 ^alt\\.binaries\\.town$ /^\\[ TOWN \\][ _-]{0,3}\\[ www\\.town\\.ag \\][ _-]{0,3}\\[ partner of www\\.ssl-news\\.info \\][ _-]{0,3}\\[ .* \\] \\[\\d+\\/\\d+\\][ _-]{0,3}("|#34;)(?P.+)\\.(par2|rar|nfo|nzb)("|#34;)[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i 1 //[ TOWN ]-[ www.town.ag ]-[ partner of www.ssl-news.info ]-[ MOVIE ] [01/84] - "The.Butterfly.Effect.2.2006.1080p.BluRay.x264-LCHD.par2" - 7,49 GB yEnc 30 -1110 ^alt\\.binaries\\.town$ /^\\[ TOWN \\][ _-]{0,3}\\[ www\\.town\\.ag \\][ _-]{0,3}\\[ partner of www\\.ssl-news\\.info \\][ _-]{0,3}(\\[ TV \\] )?\\[\\d+\\/\\d+\\][ _-]{0,3}("|#34;)(?P.+)((\\.part\\d+\\.rar)|(\\.vol\\d+\\+\\d+\\.par2)|\\.nfo|\\.vol\\d+\\+\\.par2)("|#34;)[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i 1 //[ TOWN ]-[ www.town.ag ]-[ partner of www.ssl-news.info ] [22/22] - "Arsenio.Hall.2013.09.11.Magic.Johnson.720p.HDTV.x264-2HD.vol31+11.par2" - 1,45 GB yEnc 35 -1111 ^alt\\.binaries\\.town$ /^\\[ TOWN \\][ _-]{0,3}\\[ www\\.town\\.ag \\][ _-]{0,3}\\[ partner of www\\.ssl-news\\.info \\][ _-]{0,3}(\\[ TV \\] )?\\[\\d+\\/\\d+\\][ _-]{0,3}("|#34;)(?P.+)\\.par2("|#34;)[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/i 1 //[ TOWN ]-[ www.town.ag ]-[ partner of www.ssl-news.info ] [01/28] - "Arsenio.Hall.2013.09.18.Dr.Phil.McGraw.HDTV.x264-2HD.par2" - 352,58 MB yEnc 40 -1112 ^alt\\.binaries\\.town$ /^\\d+\\.-\\.(?P.+) \\s+\\s+<.+>\\s+\\[\\d+\\/\\d+\\] - ("|#34;).+("|#34;).+yEnc$/ 1 //4675.-.Wedding.Planner.multi3.(EU) [01/10] - "4675.-.Wedding.Planner.multi3.(EU).par2" - 72,80 MB - yEnc 45 -1113 ^alt\\.binaries\\.town$ /^\\d+\\.-\\.(?P.+) \\s+\\s+<.+>\\s+\\[\\d+\\/\\d+\\] - ("|#34;).+/ 1 //4675.-.Wedding.Planner.multi3.(EU) [01/10] - "4675.-.Wedding.Planner.multi3.(EU).par2" - 72,80 MB - yEnc ::: // Some have no yEnc 50 -1114 ^alt\\.binaries\\.town$ /^(?P\\w.+) \\s+\\s+\\[\\d+\\/\\d+\\] - ("|#34;).+("|#34;).+yEnc$/ 1 //Marco.Fehr.-.In.the.Mix.at.Der.Club-09-01-SAT-2012-XDS [01/13] - "Marco.Fehr.-.In.the.Mix.at.Der.Club-09-01-SAT-2012-XDS.par2" - 92,12 MB - yEnc 55 -1115 ^alt\\.binaries\\.town$ /^(?P\\w.+) \\s+\\s+\\[\\d+\\/\\d+\\] - ("|#34;).+/ 1 //Marco.Fehr.-.In.the.Mix.at.Der.Club-09-01-SAT-2012-XDS [01/13] - "Marco.Fehr.-.In.the.Mix.at.Der.Club-09-01-SAT-2012-XDS.par2" - 92,12 MB - yEnc ::: // Some have no yEnc 60 -1116 ^alt\\.binaries\\.town$ /^\\s+\\s+(?P.+)\\s+\\[\\d+\\/\\d+\\] - ("|#34;).+("|#34;).+yEnc$/ 1 // JetBrains.IntelliJ.IDEA.v11.1.4.Ultimate.Edition.MacOSX.Incl.Keymaker-EMBRACE [01/18] - "JetBrains.IntelliJ.IDEA.v11.1.4.Ultimate.Edition.MacOSX.Incl.Keymaker-EMBRACE.par2" - 200,77 MB - yEnc 65 -1117 ^alt\\.binaries\\.town$ /^\\s+\\s+(?P.+)\\s+\\[\\d+\\/\\d+\\] - ("|#34;).+/ 1 // JetBrains.IntelliJ.IDEA.v11.1.4.Ultimate.Edition.MacOSX.Incl.Keymaker-EMBRACE [01/18] - "JetBrains.IntelliJ.IDEA.v11.1.4.Ultimate.Edition.MacOSX.Incl.Keymaker-EMBRACE.par2" - 200,77 MB - yEnc ::: // Some have no yEnc 70 -1118 ^alt\\.binaries\\.town$ /^[ <\\[]{0,2}TOWN[ >\\]]{0,2}[ _-]{0,3}[ <\\[]{0,2}www\\.town\\.ag[ >\\]]{0,2}[ _-]{0,3}[ <\\[]{0,2}partner of www.ssl-news\\.info[ >\\]]{0,2}[ _-]{0,3}\\[\\d+\\/\\d+\\][ _-]{0,3}("|#34;)(?P.+)\\.(par|vol|rar|nfo).*?("|#34;).+?yEnc$/i 1 // [01/18] - "2012-11.-.Supurbia.-.Volume.Tw o.Digital-1920.K6-Empire.par2" - 421,98 MB yEnc 75 -1119 ^alt\\.binaries\\.town$ /^ www\\.town\\.ag > sponsored by www\\.ssl-news\\.info > \\(\\d+\\/\\d+\\) "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|") - \\d+[,.]\\d+ [mMkKgG][bB] - yEnc$/ 1 // www.town.ag > sponsored by www.ssl-news.info > (1/3) "HolzWerken_40.par2" - 43,89 MB - yEnc 80 -1120 ^alt\\.binaries\\.town$ /^\\(\\d+\\/\\d+\\).+?www\\.town\\.ag.+?sponsored by (www\\.)?ssl-news\\.info<+?.+? "(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}yEnc$/ui 1 //(1/9)<<>> sponsored by ssl-news.info<<<[HorribleSubs]_AIURA_-_01_[480p].mkv "[HorribleSubs]_AIURA_-_01_[480p].par2" yEnc 85 -1121 ^alt\\.binaries\\.town$ /^\\[ TOWN \\][ _-]{0,3}\\[ www\\.town\\.ag \\][ _-]{0,3}\\[ (?P.+?) \\][ _-]{0,3}\\[ partner of www\\.ssl-news\\.info \\][ _-]{0,3}\\[\\d+\\/(\\d+\\])[ _-]{0,3}"(.+)(\\.part\\d*|\\.rar)?(\\.vol.+ \\(\\d+\\/\\d+\\) "|\\.[A-Za-z0-9]{2,4}")[ _-]{0,3}yEnc$/i 1 //[ TOWN ]-[ www.town.ag ]-[ Assassins.Creed.IV.Black.Flag.XBOX360-COMPLEX ]-[ partner of www.ssl-news.info ] [074/195]- "complex-ac4.bf.d1.r71" yEnc 90 -1122 ^alt\\.binaries\\.town$ /^\\(TOWN\\)\\(www\\.town\\.ag \\)[ _-]{0,3}\\(partner of www\\.ssl-news\\.info \\)[ _-]{0,3} (?P.+?) \\[\\d+\\/(\\d+\\][ _-]{0,3}("|#34;).+?)\\.(par2|rar|nfo|nzb)("|#34;)[ _-]{0,3}\\d+[.,]\\d+ [kKmMgG][bB][ _-]{0,3}yEnc$/ 1 //(TOWN)(www.town.ag ) (partner of www.ssl-news.info ) Twinz-Conversation-CD-FLAC-1995-CUSTODES [01/23] - #34;Twinz-Conversation-CD-FLAC-1995-CUSTODES.par2#34; - 266,00 MB - yEnc 95 -1123 ^alt\\.binaries\\.town$ /^ (?P.+) \\[\\d+\\/\\d+\\][ _-]{0,3}("|#34;).+?("|#34;).+?yEnc$/i 1 // Greek.S04E06.Katerstimmung.German.DL.Dubbed.WEB-DL.XviD-GEZ [01/22] - "Greek.S04E06.Katerstimmung.German.DL.Dubbed.WEB-DL.XviD-GEZ.par2" - 526,99 MB - yEnc 100 -1124 ^alt\\.binaries\\.town$ /^\\[ TOWN \\][ _-]{0,3}\\[ www\\.town\\.ag \\][ _-]{0,3}\\[ .* \\][ _-]{0,3}\\[\\d+\\/\\d+\\][ _-]{0,3}"(?P[\\w\\säöüÄÖÜß+¤ƒ¶!.,&_\\()\\[\\]\\'\\`{}#-]{8,}?\\b.?)([-_](proof|sample|thumbs?))*(\\.part\\d*(\\.rar)?|\\.rar|\\.7z)?(\\d{1,3}\\.rev"|\\.vol.+?"|\\.[A-Za-z0-9]{2,4}"|")[-_\\s]{0,3}\\d+([.,]\\d+)? [kKmMgG][bB][-_\\s]{0,3}[-_\\s]{0,3}yEnc$/ui 1 //[ TOWN ]-[ www.town.ag ]-[ ANIME ] [01/17] - "[Chyuu] Nanatsu no Taizai - 12 [720p][D1F49539].par2" - 585,03 MB yEnc 105 -1125 ^alt\\.binaries\\.b4e\\.erotica$ /^Uploader.Presents-(?P.+?)\\[\\d+\\/\\d+\\]".+?" yEnc$/ui 1 //Uploader.Presents-Jupiter.Ascending.2015.German.Cam.MD.XviD.Read.NFO-KMOA [01/51]"jupiter.cam.md-kmoa.nfo" yEnc 5 -1126 ^alt\\.binaries\\.b4e\\.erotica$ /^\\((?P.+?)\\) \\[\\d+\\/\\d+\\] - ".+?" yEnc$/ui 1 //(Navy CIS - Drei Folgen) [35/63] - "NCIS.part34.rar" yEnc 10 -1127 ^alt\\.binaries\\.teevee$ #^\\[KoreanTV\]\\s*(?P.+?)\\.[a-z0-9]+\\s+\\[\\d+/\\d+\\]\\s+-\\s+".+?"\\s+yEnc$#i 1 [KoreanTV] Star.King.E412.150509.HDTV.H264.720p-WITH.mp4 [1/36] - "놀ë�¼ìš´ 대회 스타킹.E412.150509.HDTV.H264.720p-WITH.par2" yEnc 445 -1128 ^alt\\.binaries\\.fz$ #^Uploader.Presents-(?P.+?)\\s+\\[\\d{1,3}/\\d{1,3}\\]\\s*".+?"\\s+yEnc$#i 1 Uploader.Presents-Black.Sails.S02E02.Die.schwarze.Flagge.GERMAN.DUBBED.BLURAYRiP.x264-SOF [00/23]"sof-black-sails-s02e02.nzb" yEnc 10 -1129 ^alt\\.binaries\\.moovee$ #^(?P[\\w.-]{8,}?) \\[\\d+/\\d+\\] - ".+?" yEnc$# 1 Search.Party.2014.1080p.WEB-DL.DD5.1.H264-RARBG [01/57] - "Search.Party.2014.1080p.WEB-DL.DD5.1.H264-RARBG.nfo" yEnc 95 -1130 ^alt\\.binaries\\.moovee$ #^\\[FETiSH\]-(\\[REPOST\\]-)?\\[ (?P.+?) \\]-\\[\\d+/\\d+\\] ".+?" yEnc$# 1 [FETiSH]-[ In.Dreams.1999.DVDRip.x264-FETiSH ]-[32/40] " fetish-ids1999.vol000+001.PAR2 " yEnc 100 -1131 ^korea\\.binaries\\.music\\.videos)$ /^\\[KoreanMusic\\] \\[(?P(뮤직뱅크|스케치북|음악중심|인기가요|더\\.쇼))\\](?P\\.\\d{6}\\..+?) \\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 [KoreanMusic] [더.쇼].150730.워너비.전체.차렷.ts [5/16] - "[더.쇼].150730.워너비.전체.차렷.part04.rar" yEnc 0 -1132 ^korea\\.binaries\\.music\\.videos$ /^\\[KoreanMusic\\] (?P\\d{8}_)(?P(Simply\\.K-POP|쇼챔|더쇼|위열|음중|엠카)_)(?P.*?)_FHD_M2T \\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 [KoreanMusic] 20151009_Simply.K-POP_GI-Doligo.Doligo_FHD_M2T [11/18] - "20151009_Simply.K-POP_GI-Doligo.Doligo_FHD_M2T.part09.rar" yEnc 1 -1133 ^korea\\.binaries\\.movies$ /^\\[KoreanMovies\\] (?P.+?) \\[\\d+\\/\\d+\\] - ".+" yEnc$/ 1 [KoreanMovies] 12.Deep.Red.Nights.2013.AVC1.H264.720p-UNknown [11/69] - "12 Deep Red Nights 2013.AVC1.H264.720p-UNknown.part09.rar" yEnc 6 -1134 ^(korea\\.binaries\\.tv|alt\\.binaries\\.multimedia\\.korean)$ /^\\[KoreanTV] (\\[.+?]\\.)?(?P.+?) \\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 [KoreanTV] Hyde.Jekyll.Me.E15.150311.HDTV.H264.720p-WITH [20/31] - "Hyde.Jekyll.Me.E15.150311.HDTV.H264.720p-WITH.part19.rar" yEnc ::: [KoreanTV] [OCN].My.Beautiful.Bride.E16.END.150809.HDTV.H264.720p-WITH.mp4 [31/32] - "[OCN] 아름다운 나의신부.E16.END.150809.HDTV.H264.720p-WITH.vol15+16.par2" yEnc 0 -1135 ^(korea\\.binaries\\.tv|alt\\.binaries\\.multimedia\\.korean)$ /^.+?-enjoy-\\s+\\[\\d+\\/\\d+\\] - "(?P.+?)\\.(mkv|mp4|avi|jpe?g|par2|nzb|nfo|iso|ts|part\\d+\\.rar|vol\\d+\\+\\d+\\.par2|rar)(\\.\\d+)?" yEnc$/i 1 Take Care of the Young Lady 2009 720p Completed -enjoy- [542/630] - "Take Care of the Young Lady.E06.720p.HDTV.x264-Zeus.vol000+001.PAR2" yEnc ::: Dream High 2 E01 720p -enjoy- [01/40] - "Dream.High.2.E01.120130.HDTV.X264.720p-HANrel.par2" yEnc 10 -1136 ^(korea\\.binaries\\.tv|alt\\.binaries\\.multimedia\\.korean)$ /^.+?-enjoy-\\s+- File \\d+ of \\d+: "(?P.+?)\\.(mkv|mp4|avi|jpe?g|par2|nzb|nfo|iso|ts|part\\d+\\.rar|vol\\d+\\+\\d+\\.par2|rar)(\\.\\d+)?" yEnc$/i 1 [MV] C-REAL - No No No No No [2011.10.12] 1080p WEB MP4 -enjoy- - File 03 of 15: "C-real-no.no.no.no.part1.rar" yEnc 70 -1137 ^(korea\\.binaries\\.tv|alt\\.binaries\\.multimedia\\.korean)$ /^.+?-enjoy-\\s+\\(\\d+\\/\\d+\\) "(?P.+)$/ 1 Queen Seon Deok 720p Completed -enjoy- (1538/2482) "Queen Seon Deok.E39.091005.HDTV.X264.720p-HAN 40 -1138 ^alt\\.binaries\\.multimedia\\.korean$ /^\\(\\d+\\/\\d+\\) "(?P.+?)\\.(par2|part\\d+\\.rar)" - .+yEnc$/ 1 (01/24) "IRIS E02 091015 HDTV X264 720p-HAN™.par2" - 1.60 GB - ????(IRIS) E02 091015 HDTV X264 720p-HAN™ with eng subs yEnc 45 -1139 ^alt\\.binaries\\.multimedia\\.korean$ /^alt\\.binaries\\.newmiyamoto - .+? \\[\\d+\\/\\d+\\] - "(?P.+?)\\.(vol\\d+\\+\\d+\\.par2|avi|mkv)(\\.\\d+)?" yEnc$/ 1 alt.binaries.newmiyamoto - for scr3wtard and the canuck [002/276] - "Delightful Girl Choon-Hyang .vol000+561.par2" yEnc 20 -1140 ^alt\\.binaries\\.multimedia\\.korean$ /^(\\(|\\[)OMNi(\\)|\\]) (alt\\.binaries\\.newmiyamoto - )?.+?\\[\\d+\\/\\d+] - "(?P.+?)\\.(avi|mkv|vol\\d+\\+\\d+|iso|t(s|p))(\\.(par2|\\d+))?" yEnc$/i 1 (OMNi) alt.binaries.newmiyamoto - Gourmet 720p RAW - 19-24 - [052/206] - "Sikgaek.E20.720p.HDTV.x264-jinuki.mkv.011" yEnc ::: (OMNi) alt.binaries.newmiyamoto - Fantasy Couple 720p - softsubbed - [002/584] - "Fantasy.Couple.01-02.vol00+01.PAR2" yEnc ::: (OMNi) Korean Kdrama of Hana Yori Dango - [02/70] - "Boys.Before.Flowers.E01.720p.HDTV.x264-NotoriouS.mkv.001" yEnc 21 -1141 ^alt\\.binaries\\.multimedia\\.korean$ /^\\(.+?\\) \\[\\d+\\/\\d+] - "(?P.+)\\[T1\\]\\.avi" yEnc$/ 1 (Winter Sonata) [12/34] - "Winter_Sonata_ep-10[T1].avi" yEnc 60 -1142 ^alt\\.binaries\\.multimedia\\.korean$ /^\\[KDrama\\].+? \\[\\d+\\/\\d+\\] - "(?P.+?)\\.(nzb|par2|r\\d+)" yEnc$/ 1 [KDrama]Secret.Garden.450p-HANrel [00/12] - "Secret.Garden.New.Year.Special.Part2.HDTV.X264.450p-HANrel.nzb" yEnc 50 -1143 ^alt\\.binaries\\.multimedia\\.korean$ /^\\[Album\\] (?P.+?) -enjoy- .+" yEnc$/ 1 [Album] Secret - Moving In Secret [2011.10.18] MP3 320 WEB -enjoy- - File 02 of 20: "02 섹시하게.mp3" yEnc 65 -1144 ^alt\\.binaries\\.multimedia\\.korean$ /^\\[\\?{4}\\] - "(?P.+?)\\.mp3" \\[\\d+\\/\\d+\\] yEnc$/ 1 [????] - "Elmio-09-You Will Follow.mp3" [009/130] yEnc 55 -1145 ^alt\\.binaries\\.multimedia\\.korean$ /^\\(\\d+\\/\\d+\\) "(?P.+?)\\..+?" - \\d+\\.\\d+ .+ yEnc$/ 1 (1/1) "100612.MBC MusicCore.Just Married.Bye Bye Bye.60fps.x264-Izo.mkv" - 150.66 MB - 100612.MBC MusicCore.Double K.Favorite Music.60fps.x264-Izo yEnc 35 -1146 ^korea\\.binaries\\.tv$ /^.+? -?"(?P.+?)\\.(nzb|par2|vol\\d+\\+\\d+\\.par2|part\\d+\\.rar|r\\d+|rar)" \\[\\d+\\/\\d+\\] yEnc$/ 1 Posts by AREA11 ::: Sunbi18 "Scholar.Who.Walks.the.Night.E18.720p.HDTV.x264-AREA11.nzb" [00/56] yEnc 15 -1147 ^(korea\\.binaries\\.(tv|movies)|alt\\.binaries\\.multimedia\\.korean)$ /^\\((?P.+?)\\) \\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 (BMask.E25.120829.HDTV.H264.720p-HANrel) [00/44] - "BMask.E25.nzb" yEnc 30 -1148 ^korea\\.binaries\\.tv$ /^"(?P\\w.+)\\.(par2|nzb|part\\d+\\.rar)" \\[\\d+\\/\\d+\\] yEnc$/ 1 \"Queen.InHyun\'s.Man.E16.END.720p.HDTV.x264-AREA11.nzb\" [00/40] yEnc 25 -1149 ^korea\\.binaries\\.music\\.videos$ /^\\[KoreanMusic\\] \\[.+?\\]\\.(?P.+?)(?P(MCD|The\\.Show)\\.\\d{6}\\.)(?P1080i\\.HDMI) \\[\\d+\\/\\d+\\] - ".+?" yEnc$/ 1 [KoreanMusic] [Mnet].NS윤지-Wifey.MCD.150409.1080i.HDMI [5/16] - "[Mnet].NS윤지-Wifey.MCD.150409.1080i.HDMI.part04.rar" yEnc 2 -1150 ^alt\\.binaries\\.e-book\\.technical$ /^(New )?tech eBooks -=?\\[?\\s?(?P[\\w\\.-]+)\\s?\\]?=?- ".+?" yEnc$/i 1 New Tech eBooks -=[ ELSEVIER.SYSTEMS.PROGRAMMING.2015.RETAIL.EPUB.EBOOK-kE]=- "kesp15ef.zip" yEnc 5 -1151 ^alt\\.binaries\\.(cores|ath)$ /^\\[(SERIES|MOVIES)\]-\\[ www\\.vip-lounge\\.me \\] \\[\\d+\\/\\d+\\] - "(?P.+?)\\.(par2|nfo|rar|part\\d+\\.rar|vol\\d+\\+\\d+\\.par2)" - \\d+\\d+ [GM]B yEnc$/i 1 [SERIES]-[ www.vip-lounge.me ] [19/20] - "Wild.World.Africas.Deadly.Eden.480p.x264-mSD.vol03+4.par2" - 44342 MB yEnc 55 -1152 ^alt\\.binaries\\.cores$ /^(?P.+?) - \\[\\d+\/\d+\] - ".+?" yEnc$/ 1 Gracepoint S01E04 Episode Four 1080p WEB-DL DD51 H 264 CtrlHD - [52/52] - "Gracepoint S01E04 Episode Four 1080p WEB-DL DD51 H 264 CtrlHD.vol511+021.par2" yEnc 110 -1153 ^alt\\.binaries\\.howard-stern$ /^.+? \\[\\d+\/\d+\] "(?P.+?)\.(mp3|nzb).*?" yEnc$/ 1 Artie Lange ArtieQuitter Podcast [2/9] "ArtieQuiterPodcast_2015-11-05_161_CF_128k.mp3.par2" yEnc 5 -1154 ^alt\\.binaries\\.howard-stern$ /^.+? - File \\d+ of \\d+ - yEnc "(?P.+?).mp3" \\d+ bytes$/ 1 Howard Stern 11.04.2015 CF 32K 57.7MB + WUS - File 1 of 1 - yEnc "Howard Stern 11.04.15 (Alanis Morissette Visits).mp3" 60596352 bytes 10 -1155 ^alt\\.binaries\\.howard-stern$ /^(?P.+?) \\d (?P\\d+kbps) - \\[\\d+\\/\\d+\\] - ".+?Part_\\d+\\.(mp3|nzb).*?" yEnc$/ 1 Howard Stern Show Oct 19 2015 Mon Hour 6 96kbps - [1/1] - "Stern-2015_10_19-96k-Part_06.mp3" yEnc 15 -1156 ^alt\\.binaries\\.movies$ /^.*?"(?P.*?)\\.\\w+"\\s+yenc$/i 1 //BDRips "Daredevil.2003.BDRip.x264-DJ.par2" yEnc 70 -1157 ^alt\\.binaries\\.multimedia\\.sports$ /^\\[?AFL.+\\" ?[ .-]?(?P.+?) ?[ .](7z|avi|md5|mkv|mp4|nfo|nzb|par|rar|sfv|vol)t?\\d?+.+yEnc$/ 1 //[AFL 2017 Round 8 NMFC vs SYD 720p] - "AFL 2017 Round 8 NMFC vs SYD 720p par2" yEnc or AFL.2017.Round.8.ADEL.vs.MELB.480p] - "AFL.2017.Round.8.ADEL.vs.MELB.480p.sfv" yEnc 5 diff --git a/resources/db/schema/data/10-settings.tsv b/resources/db/schema/data/10-settings.tsv deleted file mode 100755 index 209568db4..000000000 --- a/resources/db/schema/data/10-settings.tsv +++ /dev/null @@ -1,164 +0,0 @@ -section,subsection,name,value,hint,setting - addpar2 0 When going through PAR2 files, add them to the RAR file content list of the NZB. addpar2 - alternate_nntp 0 This sets Postproccessing Additional/Nfo to use the alternate NNTP provider as set in config.php. alternate_nntp - amazonsleep 1000 Sleep time in milliseconds to wait in between amazon requests. If you thread post-proc, multiply by the number of threads. ie Postprocessing Threads = 12, Amazon sleep time = 12000
https://affiliate-program.amazon.com/gp/advertising/api/detail/faq.html amazonsleep - backfillthreads 1 The number of threads for backfill. backfillthreads - binarythreads 1 The number of threads for update_binaries. If you notice that you are getting a lot of parts into the partrepair table, it is possible that you USP is not keeping up with the requests. Try to reduce the threads to safe scripts or stop using safe scripts until improves. Ar least until the cause can be determined. binarythreads - book_reqids 7010 Categories of Books to lookup information for (only work if Lookup Books is set to yes). book_reqids - checkpasswordedrar 0 Whether to attempt to peek into every release, to see if rar files are password protected. checkpasswordedrar - compressedheaders 0 Some servers allow headers to be sent over in a compressed format. If enabled this will use much less bandwidth, but processing times may increase.
If you notice that update binaries or backfill seems to hang, look in htop and see if a group is being processed. If so, first try disabling compressed headers and let run until it processes the group at least once, then you can re-enable compressed headers. compressedheaders - crossposttime 2 The time in hours to check for cross-posted releases. crossposttime - currentppticket 0 currentppticket - debuginfo 0 debuginfo - delaytime 2 The time in hours to wait, since last activity, before releases without parts counts in the subject are are created
Setting this below 2 hours could create incomplete releases. delaytime - deletepasswordedrelease 0 Whether to delete releases which are passworded. deletepasswordedrelease - deletepossiblerelease 0 Whether to delete releases which are potentially passworded. deletepossiblerelease - disablebackfillgroup 0 Whether to disable backfill on a group if the target date has been reached. disablebackfillgroup - extractusingrarinfo 0 Whether to use rarinfo or 7zip/unrar directly to decompress zip/rar files. extractusingrarinfo -archive fetch end 0 Download/process the last rar or zip file(s) to check for a password and get the file names inside? fetchlastcompressedfiles - ffmpeg_duration 5 The maximum duration (In Seconds) for ffmpeg to generate the sample for. (Default 5) ffmpeg_duration - ffmpeg_image_time 5 ffmpeg_image_time - fixnamesperrun 10 The maximum number of releases to check per run(threaded script only). fixnamesperrun - fixnamethreads 1 The number of threads for fixReleasesNames. This includes md5, nfos and filenames. fixnamethreads - grabstatus 1 Whether to update download counts when someone downloads a release. grabstatus -indexer ppa innerfileblacklist /setup\.exe|password\.url/i You can add a regex here to set releases to potentially passworded when a file name inside a rar/zip matches this regex. innerfileblacklist - lastpretime 0 Last time we downloaded a pre using WEB sources lastpretime - lookup_reqids 1 Whether to attempt to lookup Request IDs using the Request ID link below. lookup_reqids - lookupanidb 0 Whether to attempt to lookup anime information from AniDB when processing binaries. Currently it is not recommend to enable this. lookupanidb - lookupbooks 1 Whether to attempt to lookup book information from Amazon when processing binaries. lookupbooks - lookupgames 1 Whether to attempt to lookup game information from Amazon when processing binaries. lookupgames - lookupimdb 1 Whether to attempt to lookup film information from IMDB or TheMovieDB when processing binaries. lookupimdb - lookupxxx 1 Whether to attempt to lookup xxx information from ADE or Popporn when processing binaries. lookupxxx - lookupmusic 1 Whether to attempt to lookup music information from Amazon when processing binaries. lookupmusic - lookupnfo 1 Whether to attempt to retrieve an nfo file from usenet when processing binaries.
NOTE: disabling nfo lookups will disable movie lookups. lookupnfo - lookuppar2 0 Whether to attempt to find a better name for releases in misc->other using the PAR2 file.
NOTE: this can be slow depending on the group! lookuppar2 - lookuptvrage 1 Whether to attempt to lookup tv rage ids on the web when processing binaries. lookuptvrage - maxaddprocessed 25 The maximum amount of releases to process for passwords/previews/mediainfo per run. Every release gets processed here. This uses NNTP an connection, 1 per thread. This does not query Amazon. maxaddprocessed - maxanidbprocessed 100 The maximum amount of anime to process with anidb per run. This does not use an NNTP connection or query Amazon. maxanidbprocessed - maxbooksprocessed 300 The maximum amount of books to process with amazon per run. This does not use an NNTP connection maxbooksprocessed - maxgamesprocessed 150 The maximum amount of games to process with amazon per run. This does not use an NNTP connection. maxgamesprocessed - maximdbprocessed 100 The maximum amount of movies to process with IMDB per run. This does not use an NNTP connection or query Amazon. maximdbprocessed - maxxxxprocessed 100 The maximum amount of xxx to process with ADE and Popporn per run. This does not use an NNTP connection or query Amazon. maxxxxprocessed - maxmssgs 20000 The maximum number of messages to fetch at a time from the server. Only raise this if you have php set right and lots of RAM. maxmssgs - maxmusicprocessed 150 The maximum amount of music to process with amazon per run. This does not use an NNTP connection. maxmusicprocessed - maxnestedlevels 3 How many levels deep to go into nested rar/zip files. maxnestedlevels - maxnfoprocessed 100 The maximum amount of NFO files to process per run. This uses an NNTP connection, 1 per thread. This does not query Amazon. maxnfoprocessed - maxnforetries 5 How many times to retry when a NFO fails to download. If set to 0, we will not retry. The max is 7. maxnforetries - maxnzbsprocessed 1000 The maximum amount of NZB files to create on stage 5 in update_releases. maxnzbsprocessed - maxpartrepair 15000 The maximum amount of articles to attempt to repair at a time. If you notice that you are getting a lot of parts into the partrepair table, it is possible that you USP is not keeping up with the requests. Try to reduce the threads to safe scripts or stop using safe scripts until improves. At least until the cause can be determined. maxpartrepair - maxpartsprocessed 3 If a part fails to download while post processing, this will retry up to the amount you set, then give up. maxpartsprocessed - maxrageprocessed 75 The maximum amount of TV shows to process with TVRage per run. This does not use an NNTP connection or query Amazon. maxrageprocessed - release maxsizetoformrelease 0 The maximum total size in bytes to make a release. If set to 0, then ignored. Only deletes during release creation. maxsizetoformrelease - maxsizetopostprocess 100 The maximum size in gigabytes to post process (additional) a release. If set to 0, then ignored. maxsizetopostprocess - maxsizetoprocessnfo 100 The maximum size in gigabytes of a release to process it for NFOs. If set to 0, then ignored. maxsizetoprocessnfo - minsizetopostprocess 1 The minimum size in megabytes to post process (additional) a release. If set to 0, then ignored. minsizetopostprocess - minsizetoprocessnfo 1 The minimum size in megabytes of a release to process it for NFOs. If set to 0, then ignored. minsizetoprocessnfo - miscotherretentionhours 0 The number of hours releases categorized as Misc->Other will be retained. Set to 0 to disable. miscotherretentionhours - mischashedretentionhours 0 The number of hours releases categorized as Misc->Hashed will be retained. Set to 0 to disable. mischashedretentionhours - nfothreads 1 The number of threads for nfo postprocessing. The max is 16, if you set anything higher it will use 16. nfothreads - newgroupdaystoscan 1 Days newgroupdaystoscan - newgroupmsgstoscan 100000 Posts newgroupmsgstoscan - newgroupscanmethod 0 Scan back X (posts/days) for each new group? Use backfill to scan further. newgroupscanmethod - nextppticket 0 nextppticket - nntpretries 10 The maximum number of retry attmpts to connect to nntp provider. On error, each retry takes approximately 5 seconds nntp returns reply. (Default 10). nntpretries - nzbpath /your/path/to/nzbs/ The directory where nzb files will be stored. nzbpath - nzbsplitlevel 4 Levels deep to store the nzb Files. nzbsplitlevel - nzbthreads 1 The number of threads for Grab NZBs. nzbthreads - partrepair 1 Whether to attempt to repair parts or not, increases backfill/binaries updating time. partrepair - partrepairmaxtries 3 Maximum amount of times to try part repair. partrepairmaxtries - partretentionhours 72 The number of hours incomplete parts and binaries will be retained. partretentionhours - passchkattempts 1 This overrides the above setting if set above 1. How many parts to check for a password before giving up. This slows down post processing massively, better to leave it 1. passchkattempts - postdelay 300 postdelay - postthreads 1 The number of threads for additional postprocessing. This includes deep rar inspection, preview and sample creation and nfo processing. postthreads - postthreadsamazon 1 postthreadsamazon - postthreadsnon 1 The number of threads for non-amazon postprocessing. This includes movies, anime and tv lookups. postthreadsnon - predbversion 1 predbversion - saveaudiopreview 0 Whether to attempt to process a audio sample, they will be up to 30 seconds, in ogg format. You must have ffmpeg for this. saveaudiopreview - processjpg 0 Whether to attempt to retrieve a JPG file while additional post processing, these are usually on XXX releases. processjpg - processthumbnails 0 Whether to attempt to process a video thumbnail image. You must have ffmpeg for this. processthumbnails - processvideos 0 Whether to attempt to process a video sample, these videos are very short 1-3 seconds, 100KB on average, in ogv format. You must have ffmpeg for this. processvideos - privateprofiles 1 Hide profiles from other users (admin/mod can still access). privateprofiles - registerstatus 0 The status of registrations to the site. registerstatus - completionpercent 95 The minimum completion % to keep a release. Set to 0 to disable. completionpercent - releaseretentiondays 0 !!THIS IS NOT HEADER RETENTION!! The number of days releases will be retained for use throughout site. Set to 0 to disable. releaseretentiondays - releasethreads 1 The number of threads for update_releases. releasethreads - replacenzbs 0 NZBs that are crossposted, instead of deleting, replace with the nzb grabbed.(This is not necessary, was added before I understood how crossposted nzbs work). replacenzbs - reqidthreads 1 The number of threads for local request id processing. reqidthreads - request_hours 1 The maximum hours after a release is added to recheck for a Request ID match. request_hours - request_url http://reqid.newznab-tmux.pw/index.php Optional URL to lookup Request IDs. request_url - safebackfilldate 2012-06-24 The target date for safe backfill. Format: YYYY-MM-DD safebackfilldate - safepartrepair 0 Whether to put unreceived parts into partrepair table when running binaries(safe) or backfill scripts. safepartrepair - segmentstodownload 2 The maximum number of segments to download to generate the sample video file. (Default 2) segmentstodownload - showbacks 0 showbacks - showdroppedyencparts 0 For developers. Whether to log all headers that have 'yEnc' and are dropped. Logged to not_yenc/groupname.dropped.txt. showdroppedyencparts - showpasswordedrelease 10 Whether to show passworded or potentially passworded releases in browse, search, api and rss feeds. Potentially passworded means releases which contain .cab or .ace files which are typically password protected. (*yes): Unprocessed releases are hidden. (*no): Unprocessed releases are displayed. showpasswordedrelease - sqlpatch 0 sqlpatch - storeuserips 0 Whether to store the users ip address when they signup or login. storeuserips - timeoutseconds 0 How much time to wait for unrar/7zip/mediainfo/ffmpeg/avconv before killing it, set to 0 to disable. 60 is a good value. Requires the GNU Timeout path to be set. timeoutseconds - tmpunrarpath The path to where unrar puts files. WARNING: This directory will have its contents deleted.
Use forward slashes in windows c:/temp/path/stuff/will/be/unpacked/to tmpunrarpath - release minfilestoformrelease 1 The minimum number of files to make a release. i.e. if set to two, then releases which only contain one file will not be created. minfilestoformrelease - release minsizetoformrelease 0 The minimum total size in bytes to make a release. If set to 0, then ignored. Only deletes during release creation. minsizetoformrelease -APIs AniDB banned 0 Timestamp of WHEN we were banned. AniDB_banned -APIs AniDB max_update_frequency 7 The number of days between AniDB full updates. Default is 7. intanidbupdate -APIs AniDB last_full_update 0 The last time a full AniDB update occurred in unixtime. lastanidbupdate -APIs Steam last_update 0 Last time we updated steam_apps table. laststeamupdate -APIs amazonassociatetag n01369-20 The amazon associate tag. Used for music/book lookups. amazonassociatetag -APIs amazonprivkey B58mVwyj+T/MEucxWugJ3GQ0CcW2kQq16qq/1WpS The amazon private api key. Used for music/book lookups. amazonprivkey -APIs amazonpubkey AKIAIPDNG5EU7LB4AD3Q The amazon public api key. Used for music/book lookups. amazonpubkey -APIs giantbombkey The giantbomb api key. Used for game lookups. giantbombkey -APIs anidbkey The Anidb api key. Used for Anime lookups. anidbkey -APIs fanarttvkey The Fanart.tv api key. Used for Fanart.tv lookups. Fanart.tv would appreciate it if you use this service to help them out by adding high quality images not already available on TMDB. fanarttvkey -APIs omdbkey OmdbAPIkey obtained from Omdb.Used for Omdb API lookups omdbkey -APIs rottentomatokey qxbxyngtujprvw7jxam2m6na The api key used for access to rotten tomatoes. rottentomatokey -APIs tmdbkey 9a4e16adddcd1e86da19bcaf5ff3c2a3 The API key used for access to TMDb. tmdbkey -APIs trakttvclientkey The Trakt.tv API v2 Client ID (SHA256 hash - 64 characters long string). Used for movie and tv lookups. trakttvclientkey -APIs APIKeys section-label 3rd. Party API Keys "" -apps indexer magic_file_path Path to magic number database. Windows' users should set this if they have installed GNUWin ‘file’. *nix users can optionally set this to a file of their choice. magic_file_path -apps zippath The path to the 7za (7zip command line in windows) binary, used for grabbing nfos from compressed zip files. Use forward slashes in windows c:/path/to/7z.exe zippath -apps ffmpegpath The path to the ffmpeg or avconv binary. Used for making thumbnails and video/audio previews. Use forward slashes in windows c:/path/to/ffmpeg.exe ffmpegpath -apps mediainfopath The path to the mediainfo binary. Used for deep file media analysis. Use empty path to disable mediainfo checks Use forward slashes in windows c:/path/to/mediainfo.exe mediainfopath -apps lamepath The path to the lame binary. Used for audio manipulation. Use forward slashes in windows c:/path/to/lame.exe lamepath -apps unrarpath The path to an unrar binary, used in deep password detection and media info grabbing. Use forward slashes in windows c:/path/to/unrar.exe unrarpath -apps timeoutpath The path to the timeout binary. This is used to limit the amount of time unrar/7zip/mediainfo/ffmpeg/avconv can run. You can the time limit in the process additional section. You can leave this empty to disable this. Use forward slashes in windows c:/path/to/timeout.exe timeoutpath -apps yydecoderpath Path to yydecode, this will decode yEnc articles. On ubuntu/debian you can get yydecode in the getdeb repository. Compiling yydecode from source is easy/fast also. Use forward slashes in windows c:/path/to/yydecode.exe yydecoderpath -apps sabnzbplus integrationtype 2 Whether to allow integration with a SAB install or not. sabintegrationtype - -indexer categorise categorizeforeign 1 This only works if the above is set to english. Whether to send foreign movies/tv to foreign sections or not. If set to true they will go in foreign categories. categorizeforeign -indexer categorise catwebdl 0 Whether to send WEB-DL to the WEB-DL section or not. If set to true they will go in WEB-DL category, false will send them in HD TV.
This will also make them inaccessible to Sickbeard and possibly Couchpotato. catwebdl -indexer categorise imdblanguage en Which language to lookup when sending requests to IMDB/Tmdb. (If akas.imdb.com is set, imdb still returns the original titles.) imdblanguage -indexer categorise imdburl 0 akas.imdb.com returns titles in their original title, imdb.com returns titles based on your IP address (if you are in france, you will get french titles). imdburl -indexer processing collection_timeout 48 How many hours to wait before deleting a stuck/broken collection. (This is to prevent the MySQL tables from swelling up.) collection_timeout -indexer processing last_run_time 3015-08-04 15:58:23 Last date the indexer (update_binaries or backfill) was run. last_run_time -site google adbrowse The banner slot in the header. adbrowse -site google addetail The banner slot in the release details view. addetail -site google adheader The banner slot in the header. adheader -site google google_adsense_acc AdSense account: e.g. pub-123123123123123 google_adsense_acc -site google google_adsense_search The ID of the google search ad panel displayed at the bottom of the left menu. google_adsense_search -site google google_analytics_acc Analytic's account: e.g. UA-xxxxxx-x google_analytics_acc -site main code NNTmux A just for fun value, shown in debug and not on public pages. code -site main coverspath /your/path/to/covers/ The absolute path to the place covers will be stored. coverspath -site main dereferrer_link Optional URL to prepend to external links dereferrer_link -site main email Shown in the contact us page, and where the contact html form is sent to. email -site main footer Usenet binary indexer. Displayed in the footer section of every public page. footer -site main home_link / The relative path to a the landing page shown when a user logs in, or clicks the home link. home_link -site main logfile /var/www/nntmux/resources/logs/failed-login.log Location of log file (MUST be set if logging to file is set). logfile -site main loggingopt 0 Where you would like to log failed logins to the site. loggingopt -site main menuposition 2 Where the menu should appear. Moving the menu to the top will require using a theme which widens the content panel. (not currently functional) menuposition -site main metadescription A usenet indexing website Stem meta-description appended to all page meta description tags. metadescription -site main metakeywords usenet,nzbs,cms,community Stem meta-keywords appended to all page meta keyword tags metakeywords -site main metatitle An indexer Stem meta-tag appended to all page title tags. metatitle -site main strapline A great usenet indexer Displayed in the header on every public page. strapline -site main style Gentele The theme folder which will be loaded for css and images. style -site main userselstyle 0 Users can select their theme? userselstyle -site main tandc

All information within this database is indexed by an automated process, without any human intervention. It is obtained from global Usenet newsgroups over which this site has no control. We cannot prevent that you might find obscene or objectionable material by using this service. If you do come across obscene, incorrect or objectionable results, let us know by using the contact form.

Text displayed in the terms and conditions page. tandc -site main title NNTmux Displayed around the site and contact form as the name for the site. title -site trailers trailers_display 1 Display trailers on the details page? trailers_display -site trailers trailers_size_x 480 Width of the displayed trailer. 480 by default. trailers_size_x -site trailers trailers_size_y 345 Height of the displayed trailer. 345 by default. trailers_size_y -shell date format %Y-%m-%d %T Format string to use in shell's date command output. See `man date` for acceptable format.\nDefault: %Y-%m-%d %T shell.date.format -tmux running exit 0 Determines if the running tmux monitor script should exit. If 0 nothing changes; if positive the script should exit gracefully (allowing all panes to finish); if negative the script should die as soon as possible. tmux.running.exit - max_headers_iteration 1000000 The maximum number of headers that update binaries is given as the total range. This ensures that a total of no more than this amount is attempted to be downloaded per group. max_headers_iteration - userhostexclusion userhostexclusion - siteseed siteseed - showrecentforumposts showrecentforumposts - allasmgr 1 Treat all releases as MGR allasmgr diff --git a/resources/db/schema/data/10-tmux.tsv b/resources/db/schema/data/10-tmux.tsv deleted file mode 100755 index ba17528bf..000000000 --- a/resources/db/schema/data/10-tmux.tsv +++ /dev/null @@ -1,77 +0,0 @@ -setting, value -defrag_cache 900 -monitor_delay 300 -tmux_session nntmux -niceness 19 -binaries 0 -backfill 0 -import 0 -nzbs /path/to/nzbs -running 0 -sequential 0 -nfos 0 -post 0 -releases 0 -releases_threaded 0 -fix_names 0 -seq_timer 30 -bins_timer 30 -bins_kill_timer 1 -back_timer 30 -import_timer 30 -rel_timer 30 -fix_timer 30 -post_timer 30 -import_bulk 0 -backfill_qty 100000 -collections_kill 0 -postprocess_kill 0 -crap_timer 30 -fix_crap 0 -tv_timer 43200 -update_tv 0 -htop 0 -nmon 0 -bwmng 0 -mytop 0 -console 0 -vnstat 0 -vnstat_args NULL -tcptrack 0 -tcptrack_args -i eth0 port 443 -backfill_groups 4 -post_kill_timer 300 -optimize 0 -optimize_timer 86400 -monitor_path NULL -write_logs 0 -sorter 0 -sorter_timer 30 -powerline 0 -patchdb 0 -patchdb_timer 21600 -progressive 0 -dehash 0 -dehash_timer 30 -backfill_order 2 -backfill_days 1 -post_amazon 0 -post_non 0 -post_timer_amazon 30 -post_timer_non 30 -colors_start 1 -colors_end 250 -colors_exc 4, 8, 9, 11, 15, 16, 17, 18, 19, 46, 47, 48, 49, 50, 51, 52, 53, 59, 60 -monitor_path_a NULL -monitor_path_b NULL -colors 0 -showquery 0 -fix_crap_opt Disabled -showprocesslist 0 -processupdate 2 -run_ircscraper 0 -run_sharing 0 -sharing_timer 60 -import_count 50000 -debuginfo 0 -redis 0 diff --git a/resources/db/schema/mysql-ddl.sql b/resources/db/schema/mysql-ddl.sql index 45c3bd1e8..5664e6dc7 100755 --- a/resources/db/schema/mysql-ddl.sql +++ b/resources/db/schema/mysql-ddl.sql @@ -295,28 +295,6 @@ CREATE TABLE binaries ( ROW_FORMAT = DYNAMIC AUTO_INCREMENT = 1; - -DROP TABLE IF EXISTS binaryblacklist; -CREATE TABLE binaryblacklist ( - id INT(11) UNSIGNED NOT NULL AUTO_INCREMENT, - groupname VARCHAR(255) NULL, - regex VARCHAR(2000) NOT NULL, - msgcol INT(11) UNSIGNED NOT NULL DEFAULT '1', - optype INT(11) UNSIGNED NOT NULL DEFAULT '1', - status INT(11) UNSIGNED NOT NULL DEFAULT '1', - description VARCHAR(1000) CHARSET utf8mb4 COLLATE utf8mb4_unicode_ci NULL, - last_activity DATE NULL, - PRIMARY KEY (id), - INDEX ix_binaryblacklist_groupname (groupname), - INDEX ix_binaryblacklist_status (status) -) - ENGINE = InnoDB - DEFAULT CHARSET = utf8 - COLLATE = utf8_unicode_ci - ROW_FORMAT = DYNAMIC - AUTO_INCREMENT = 1000001; - - DROP TABLE IF EXISTS bookinfo; CREATE TABLE bookinfo ( id INT(10) UNSIGNED NOT NULL AUTO_INCREMENT, @@ -345,49 +323,6 @@ CREATE TABLE bookinfo ( ROW_FORMAT = DYNAMIC AUTO_INCREMENT = 1; - -DROP TABLE IF EXISTS category_regexes; -CREATE TABLE category_regexes ( - id INT UNSIGNED NOT NULL AUTO_INCREMENT, - group_regex VARCHAR(255) NOT NULL DEFAULT '' COMMENT 'This is a regex to match against usenet groups', - regex VARCHAR(5000) NOT NULL DEFAULT '' COMMENT 'Regex used to match a release name to categorize it', - status TINYINT(1) UNSIGNED NOT NULL DEFAULT '1' COMMENT '1=ON 0=OFF', - description VARCHAR(1000) NOT NULL DEFAULT '' COMMENT 'Optional extra details on this regex', - ordinal INT SIGNED NOT NULL DEFAULT '0' COMMENT 'Order to run the regex in', - categories_id SMALLINT UNSIGNED NOT NULL DEFAULT '0010' COMMENT 'Which categories id to put the release in', - PRIMARY KEY (id), - INDEX ix_category_regexes_group_regex (group_regex), - INDEX ix_category_regexes_status (status), - INDEX ix_category_regexes_ordinal (ordinal), - INDEX ix_category_regexes_categories_id (categories_id) -) - ENGINE = InnoDB - DEFAULT CHARSET = utf8 - COLLATE = utf8_unicode_ci - ROW_FORMAT = DYNAMIC - AUTO_INCREMENT = 100000; - - -DROP TABLE IF EXISTS collection_regexes; -CREATE TABLE collection_regexes ( - id INT UNSIGNED NOT NULL AUTO_INCREMENT, - group_regex VARCHAR(255) NOT NULL DEFAULT '' COMMENT 'This is a regex to match against usenet groups', - regex VARCHAR(5000) NOT NULL DEFAULT '' COMMENT 'Regex used for collection grouping', - status TINYINT(1) UNSIGNED NOT NULL DEFAULT '1' COMMENT '1=ON 0=OFF', - description VARCHAR(1000) CHARSET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Optional extra details on this regex', - ordinal INT SIGNED NOT NULL DEFAULT '0' COMMENT 'Order to run the regex in', - PRIMARY KEY (id), - INDEX ix_collection_regexes_group_regex (group_regex), - INDEX ix_collection_regexes_status (status), - INDEX ix_collection_regexes_ordinal (ordinal) -) - ENGINE = InnoDB - DEFAULT CHARSET = utf8 - COLLATE = utf8_unicode_ci - ROW_FORMAT = DYNAMIC - AUTO_INCREMENT = 100000; - - DROP TABLE IF EXISTS consoleinfo; CREATE TABLE consoleinfo ( id INT(10) UNSIGNED NOT NULL AUTO_INCREMENT, @@ -428,34 +363,6 @@ CREATE TABLE dnzb_failures ( COLLATE = utf8_unicode_ci ROW_FORMAT = DYNAMIC; -DROP TABLE IF EXISTS forumpost; -CREATE TABLE forumpost ( - id INT(11) UNSIGNED NOT NULL AUTO_INCREMENT, - forumid INT(11) NOT NULL DEFAULT '1', - parentid INT(11) NOT NULL DEFAULT '0', - users_id INT(16) UNSIGNED NOT NULL, - subject VARCHAR(255) NOT NULL, - message TEXT NOT NULL, - locked TINYINT(1) UNSIGNED NOT NULL DEFAULT '0', - sticky TINYINT(1) UNSIGNED NOT NULL DEFAULT '0', - replies INT(11) UNSIGNED NOT NULL DEFAULT '0', - created_at DATETIME NOT NULL, - updated_at DATETIME NOT NULL, - PRIMARY KEY (id), - CONSTRAINT FK_users_fp FOREIGN KEY (users_id) - REFERENCES users(id) ON DELETE CASCADE ON UPDATE CASCADE, - KEY parentid (parentid), - KEY userid (users_id), - KEY created_at (created_at), - KEY updated_at (updated_at) -) - ENGINE = InnoDB - DEFAULT CHARSET = utf8 - COLLATE = utf8_unicode_ci - ROW_FORMAT = DYNAMIC - AUTO_INCREMENT = 1; - - DROP TABLE IF EXISTS gamesinfo; CREATE TABLE gamesinfo ( id INT(10) UNSIGNED NOT NULL AUTO_INCREMENT, @@ -483,48 +390,6 @@ CREATE TABLE gamesinfo ( COLLATE = utf8_unicode_ci AUTO_INCREMENT = 1; - -DROP TABLE IF EXISTS genres; -CREATE TABLE genres ( - id INT(11) NOT NULL AUTO_INCREMENT, - title VARCHAR(255) NOT NULL, - type INT(4) DEFAULT NULL, - disabled TINYINT(1) NOT NULL DEFAULT '0', - PRIMARY KEY (id) -) - ENGINE = InnoDB - DEFAULT CHARSET = utf8 - COLLATE = utf8_unicode_ci - ROW_FORMAT = DYNAMIC - AUTO_INCREMENT = 1000001; - - -DROP TABLE IF EXISTS groups; -CREATE TABLE groups ( - id INT(11) NOT NULL AUTO_INCREMENT, - name VARCHAR(255) NOT NULL DEFAULT '', - backfill_target INT(4) NOT NULL DEFAULT '1', - first_record BIGINT UNSIGNED NOT NULL DEFAULT '0', - first_record_postdate DATETIME DEFAULT NULL, - last_record BIGINT UNSIGNED NOT NULL DEFAULT '0', - last_record_postdate DATETIME DEFAULT NULL, - last_updated DATETIME DEFAULT NULL, - minfilestoformrelease INT(4) NULL, - minsizetoformrelease BIGINT NULL, - active TINYINT(1) NOT NULL DEFAULT '0', - backfill TINYINT(1) NOT NULL DEFAULT '0', - description VARCHAR(255) NULL DEFAULT '', - PRIMARY KEY (id), - KEY active (active), - UNIQUE INDEX ix_groups_name (name) -) - ENGINE = InnoDB - DEFAULT CHARSET = utf8 - COLLATE = utf8_unicode_ci - ROW_FORMAT = DYNAMIC - AUTO_INCREMENT = 1000001; - - DROP TABLE IF EXISTS invitations; CREATE TABLE invitations ( id INT(11) UNSIGNED NOT NULL AUTO_INCREMENT, @@ -558,26 +423,6 @@ CREATE TABLE logging ( AUTO_INCREMENT = 1; -DROP TABLE IF EXISTS menu; -CREATE TABLE menu ( - id INT(11) UNSIGNED NOT NULL AUTO_INCREMENT, - href VARCHAR(2000) NOT NULL DEFAULT '', - title VARCHAR(2000) NOT NULL DEFAULT '', - newwindow INT(1) UNSIGNED NOT NULL DEFAULT '0', - tooltip VARCHAR(2000) NOT NULL DEFAULT '', - role INT(11) UNSIGNED NOT NULL, - ordinal INT(11) UNSIGNED NOT NULL, - menueval VARCHAR(2000) NOT NULL DEFAULT '', - PRIMARY KEY (id), - INDEX ix_role_ordinal (role, ordinal) -) - ENGINE = InnoDB - DEFAULT CHARSET = utf8 - COLLATE = utf8_unicode_ci - ROW_FORMAT = DYNAMIC - AUTO_INCREMENT = 1000001; - - DROP TABLE IF EXISTS missed_parts; CREATE TABLE missed_parts ( id INT(16) UNSIGNED NOT NULL AUTO_INCREMENT, @@ -702,28 +547,6 @@ CREATE TABLE multigroup_posters ( AUTO_INCREMENT = 1; -DROP TABLE IF EXISTS content; -CREATE TABLE content ( - id INT PRIMARY KEY NOT NULL AUTO_INCREMENT, - title VARCHAR(255) NOT NULL, - url VARCHAR(2000) NULL, - body TEXT NULL, - metadescription VARCHAR(1000) NOT NULL, - metakeywords VARCHAR(1000) NOT NULL, - contenttype INT NOT NULL, - showinmenu INT NOT NULL, - status INT NOT NULL, - ordinal INT NULL, - role INT NOT NULL DEFAULT '0', - INDEX ix_showinmenu_status_contenttype_role (showinmenu, status, contenttype, role) -) - ENGINE = InnoDB - DEFAULT CHARSET = utf8 - COLLATE = utf8_unicode_ci - ROW_FORMAT = DYNAMIC - AUTO_INCREMENT = 1000001; - - DROP TABLE IF EXISTS par_hashes; CREATE TABLE par_hashes ( releases_id INT(11) UNSIGNED NOT NULL COMMENT 'FK to releases.id', @@ -929,27 +752,6 @@ CREATE TABLE release_files ( COLLATE = utf8_unicode_ci ROW_FORMAT = DYNAMIC; - -DROP TABLE IF EXISTS release_naming_regexes; -CREATE TABLE release_naming_regexes ( - id INT UNSIGNED NOT NULL AUTO_INCREMENT, - group_regex VARCHAR(255) NOT NULL DEFAULT '' COMMENT 'This is a regex to match against usenet groups', - regex VARCHAR(5000) CHARSET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'Regex used for extracting name from subject', - status TINYINT(1) UNSIGNED NOT NULL DEFAULT '1' COMMENT '1=ON 0=OFF', - description VARCHAR(1000) CHARSET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'Optional extra details on this regex', - ordinal INT SIGNED NOT NULL DEFAULT '0' COMMENT 'Order to run the regex in', - PRIMARY KEY (id), - INDEX ix_release_naming_regexes_group_regex (group_regex), - INDEX ix_release_naming_regexes_status (status), - INDEX ix_release_naming_regexes_ordinal (ordinal) -) - ENGINE = InnoDB - DEFAULT CHARSET = utf8 - COLLATE = utf8_unicode_ci - ROW_FORMAT = DYNAMIC - AUTO_INCREMENT = 100000; - - DROP TABLE IF EXISTS release_nfos; CREATE TABLE release_nfos ( releases_id INT(11) UNSIGNED NOT NULL COMMENT 'FK to releases.id', @@ -1000,23 +802,6 @@ CREATE TABLE release_subtitles ( AUTO_INCREMENT = 1; -DROP TABLE IF EXISTS settings; -CREATE TABLE settings ( - section VARCHAR(25) NOT NULL DEFAULT '', - subsection VARCHAR(25) NOT NULL DEFAULT '', - name VARCHAR(25) NOT NULL DEFAULT '', - value VARCHAR(1000) NOT NULL DEFAULT '', - hint TEXT NOT NULL, - setting VARCHAR(64) NOT NULL DEFAULT '', - PRIMARY KEY (section, subsection, name), - UNIQUE KEY ui_settings_setting (setting) -) - ENGINE = InnoDB - DEFAULT CHARSET = utf8 - COLLATE = utf8_unicode_ci - ROW_FORMAT = DYNAMIC; - - DROP TABLE IF EXISTS sharing; CREATE TABLE sharing ( site_guid VARCHAR(40) NOT NULL DEFAULT '', @@ -1074,27 +859,6 @@ CREATE TABLE short_groups ( ROW_FORMAT = DYNAMIC AUTO_INCREMENT = 1; -DROP TABLE IF EXISTS spotnabsources; -CREATE TABLE spotnabsources -( - id BIGINT(20) unsigned PRIMARY KEY NOT NULL AUTO_INCREMENT, - username VARCHAR(64) DEFAULT 'nntp' NOT NULL, - useremail VARCHAR(128) DEFAULT 'spot@nntp.com' NOT NULL, - usenetgroup VARCHAR(64) DEFAULT 'alt.binaries.backup' NOT NULL, - publickey VARCHAR(512) NOT NULL, - active TINYINT(1) DEFAULT '0' NOT NULL, - description VARCHAR(255) DEFAULT '', - lastupdate DATETIME, - lastbroadcast DATETIME, - lastarticle BIGINT(20) unsigned DEFAULT '0' NOT NULL, - dateadded DATETIME -) - ENGINE = InnoDB - DEFAULT CHARSET = utf8 - COLLATE = utf8_unicode_ci - AUTO_INCREMENT = 1; -CREATE UNIQUE INDEX spotnabsources_ix1 ON spotnabsources (username, useremail, usenetgroup); - DROP TABLE IF EXISTS steam_apps; CREATE TABLE steam_apps ( name VARCHAR(255) NOT NULL DEFAULT '' COMMENT 'Steam application name', @@ -1107,21 +871,6 @@ CREATE TABLE steam_apps ( COLLATE = utf8_unicode_ci ROW_FORMAT = DYNAMIC; -DROP TABLE IF EXISTS tmux; -CREATE TABLE tmux ( - id INT(10) UNSIGNED NOT NULL AUTO_INCREMENT, - setting VARCHAR(64) NOT NULL, - value VARCHAR(19000) DEFAULT NULL, - updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, - PRIMARY KEY (id), - UNIQUE INDEX ix_tmux_setting (setting) -) - ENGINE = InnoDB - DEFAULT CHARSET = utf8 - COLLATE = utf8_unicode_ci - ROW_FORMAT = DYNAMIC - AUTO_INCREMENT = 1; - DROP TABLE IF EXISTS tv_episodes; CREATE TABLE tv_episodes ( id INT(11) UNSIGNED NOT NULL AUTO_INCREMENT, diff --git a/tests/Install/InstallTest.php b/tests/Install/InstallTest.php index 90fbf987a..f65c5c9ea 100644 --- a/tests/Install/InstallTest.php +++ b/tests/Install/InstallTest.php @@ -125,13 +125,15 @@ class InstallTest extends \PHPUnit\Framework\TestCase ); $pdo->exec('SET FOREIGN_KEY_CHECKS=0;'); - try { - $DbSetup->processSQLFile(); // Setup default schema - $DbSetup->loadTables(); // Load default data files - } catch (\PDOException $err) { - $error = true; - ColorCLI::doEcho(ColorCLI::error('Error inserting: (' . $err->getMessage() . ')')); - } + try { + $DbSetup->processSQLFile(); // Setup default schema + ColorCLI::doEcho(ColorCLI::header('Migrating tables and populating them')); + passthru('php '.NN_ROOT.'artisan migrate'); + passthru('php '.NN_ROOT.'artisan db:seed'); + } catch (\RuntimeException $err){ + $error = true; + ColorCLI::doEcho(ColorCLI::error('Error (' . $err->getMessage() . ')')); + } if (!$error) { // Check one of the standard tables was created and has data.