diff --git a/converter/class-component-counter.php b/converter/class-component-counter.php index da3c9eb..c9c2538 100644 --- a/converter/class-component-counter.php +++ b/converter/class-component-counter.php @@ -10,27 +10,38 @@ class component_counter { public $components; + /** + * Constructor for component_counter + */ public function __construct() { $this->components = array(); $this->components['plugins'] = array(); $this->components['themes'] = array(); } - public function add( $component, $type ) { + /** + * Adds a component or increments the count of times found + * + */ + public function add( $component, $type, $path ) { if ( !isset( $this->components[ $type ][ $component ] ) ) { - $this->components[ $type ][ $component ] = 0; + $this->components[ $type ][ $component ] = new Component( $component, $type, $path); } - $this->components[ $type ][ $component ] += 1; + $this->components[ $type ][ $component ]->add(); } - + + + /** + * Reports the counts and other information for each component + */ public function report() { //print_r( $this->components ); - echo "Type,Component,Count" . PHP_EOL; + echo "Type,Component,Count,Author,Third Party,Tests" . PHP_EOL; $components = 0; $total = 0; foreach ( $this->components as $type => $data ) { - foreach ( $data as $component => $count ) { - echo "$type,$component,$count" . PHP_EOL; + foreach ( $data as $component => $component_object ) { + $count = $component_object->report(); $total += $count; $components++; } diff --git a/converter/class-component.php b/converter/class-component.php new file mode 100644 index 0000000..d51551e --- /dev/null +++ b/converter/class-component.php @@ -0,0 +1,103 @@ +component = $component; + $this->type = $type; + $this->path = $path; + $this->count = 0; + $this->author = ""; + $this->third_party = true; + $this->tests = false; + //if ( $this->type == "plugins" ) { + $this->is_author_bobbingwide(); + //} + if ( $this->third_party ) { + $this->set_third_party(); + } + $this->set_tests(); + + } + + public function add() { + $this->count++; + } + + /** + * Tests if it's a third party plugin + * + * - If this is one of our repo's it may not be a third party plugin or theme + * - If there is both a README.md and readme.txt + * - It would be better to determine who the contributors are from get_plugin_data() + * + * + */ + function set_third_party() { + $myrepo = "C:/github/bobbingwide/{$this->component}"; + if ( file_exists( $myrepo ) ) { + if ( file_exists( "$myrepo/README.md" ) && file_exists( "$myrepo/readme.txt" ) ) { + //print_r( $this ); + $this->third_party = false; + //gob(); + } + } + + } + + /** + * Sets third_party false if author is bobbingwide + */ + function is_author_bobbingwide() { + $plugin = array(); + $plugin[] = $this->path; + $plugin[] = $this->component; + $plugin[] = $this->component . ".php"; + $plugin_file = implode( "/", $plugin ); + + if ( file_exists( $plugin_file ) ) { + $plugin_data = get_plugin_data( $plugin_file, false, false ); + if ( $plugin_data ) { + $author = bw_array_get( $plugin_data, "Author", true ); + $this->author = str_replace( ",", "", $author ); + } + } + } + + function set_tests() { + $test_dir ="{$this->path}/{$this->component}/tests"; + //echo $test_dir; + if ( file_exists( $test_dir ) ) { + $this->tests = true; + } + } + + function report() { + $report = array(); + $report[] = $this->type; + $report[] = $this->component; + $report[] = $this->count; + $report[] = $this->author; + $report[] = $this->third_party; + $report[] = $this->tests; + $report[] = $this->path; + $line = implode( ",", $report ); + echo $line . PHP_EOL; + return $this->count; + } + + +} diff --git a/converter/components-sites.csv b/converter/components-sites.csv deleted file mode 100644 index 30296dd..0000000 --- a/converter/components-sites.csv +++ /dev/null @@ -1,1690 +0,0 @@ - -C:\apache\htdocs\wordpress\wp-content\plugins\oik-block\converter>rem Run oik-wp in batch mode so that you can test some code outwith the browser - -C:\apache\htdocs\wordpress\wp-content\plugins\oik-block\converter>rem - -C:\apache\htdocs\wordpress\wp-content\plugins\oik-block\converter>rem php c:\apache\htdocs\wordpress\wp-content\plugins\oik-batch\oik-wp.php ../play/terms.php counter.php - -C:\apache\htdocs\wordpress\wp-content\plugins\oik-block\converter>rem php c:\apache\htdocs\oikcouk\wp-content\plugins\oik-batch\oik-wp.php counter.php - -C:\apache\htdocs\wordpress\wp-content\plugins\oik-block\converter>rem - -C:\apache\htdocs\wordpress\wp-content\plugins\oik-block\converter>rem For MultiSite you need to pass the domain name somehow e.g. url=genesis.wp.a2z - -C:\apache\htdocs\wordpress\wp-content\plugins\oik-block\converter>rem and for sub-directory installs you need to pass the path. e.g. url=qw path=officialcaravan - -C:\apache\htdocs\wordpress\wp-content\plugins\oik-block\converter>rem we could use oik-ms.php to cater for MultiSite if it's any easier. - -C:\apache\htdocs\wordpress\wp-content\plugins\oik-block\converter>rem - -C:\apache\htdocs\wordpress\wp-content\plugins\oik-block\converter>php C:\apache\htdocs\wordpress\wp-content\plugins\oik-batch\oik-wp.php counter.php -Domain: localhost - -cli -End cli:oik_batch_loaded -cli -Array -( - [SERVER_SOFTWARE] => - [REQUEST_URI] => / - [ALLUSERSPROFILE] => C:\ProgramData - [APPDATA] => C:\Users\Herb\AppData\Roaming - [asl_log] => Destination=file - [CommonProgramFiles] => C:\Program Files\Common Files - [CommonProgramFiles(x86)] => C:\Program Files (x86)\Common Files - [CommonProgramW6432] => C:\Program Files\Common Files - [COMPUTERNAME] => QW - [ComSpec] => C:\WINDOWS\system32\cmd.exe - [FPS_BROWSER_APP_PROFILE_STRING] => Internet Explorer - [FPS_BROWSER_USER_PROFILE_STRING] => Default - [FP_NO_HOST_CHECK] => NO - [HOMEDRIVE] => C: - [HOMEPATH] => \Users\Herb - [LOCALAPPDATA] => C:\Users\Herb\AppData\Local - [LOGONSERVER] => \\QW - [MAGICK_HOME] => C:\ImageMagick-6.9.3-7 - [NUMBER_OF_PROCESSORS] => 4 - [OneDrive] => C:\Users\Herb\OneDrive - [OS] => Windows_NT - [Path] => C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files (x86)\Common Files\Acronis\SnapAPI\;C:\Program Files\TortoiseSVN\bin;C:\ProgramData\ComposerSetup\bin;C:\ImageMagick-6.9.3-7;c:\php;c:\php\ext;C:\Program Files (x86)\Skype\Phone\;C:\vslick\win;C:\mysql\bin;C:\d_drive\dos;C:\cygwin\bin;C:\Users\Herb\AppData\Roaming\npm;C:\Program Files\nodejs;C:\Program Files\Calibre2\;C:\Program Files (x86)\Common Files\Seagate\SnapAPI\;C:\Program Files (x86)\Common Files\Acronis\VirtualFile\;C:\Program Files (x86)\Common Files\Acronis\VirtualFile64\;C:\Program Files\nodejs\;C:\Program Files\Git\cmd;C:\Users\Herb\AppData\Local\Microsoft\WindowsApps;C:\Users\Herb\AppData\Roaming\npm - [PATHEXT] => .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.PHP; - [PROCESSOR_ARCHITECTURE] => AMD64 - [PROCESSOR_IDENTIFIER] => AMD64 Family 22 Model 0 Stepping 1, AuthenticAMD - [PROCESSOR_LEVEL] => 22 - [PROCESSOR_REVISION] => 0001 - [ProgramData] => C:\ProgramData - [ProgramFiles] => C:\Program Files - [ProgramFiles(x86)] => C:\Program Files (x86) - [ProgramW6432] => C:\Program Files - [PROMPT] => $P$G - [PSModulePath] => C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules\ - [PUBLIC] => C:\Users\Public - [SESSIONNAME] => Console - [SystemDrive] => C: - [SystemRoot] => C:\WINDOWS - [TEMP] => C:\Users\Herb\AppData\Local\Temp - [TMP] => C:\Users\Herb\AppData\Local\Temp - [USERDOMAIN] => QW - [USERDOMAIN_ROAMINGPROFILE] => QW - [USERNAME] => Herb - [USERPROFILE] => C:\Users\Herb - [VBOX_MSI_INSTALL_PATH] => C:\Program Files\Oracle\VirtualBox\ - [windir] => C:\WINDOWS - [PHP_SELF] => C:\apache\htdocs\wordpress\wp-content\plugins\oik-batch\oik-wp.php - [SCRIPT_NAME] => C:\apache\htdocs\wordpress\wp-content\plugins\oik-batch\oik-wp.php - [SCRIPT_FILENAME] => C:\apache\htdocs\wordpress\wp-content\plugins\oik-batch\oik-wp.php - [PATH_TRANSLATED] => C:\apache\htdocs\wordpress\wp-content\plugins\oik-batch\oik-wp.php - [DOCUMENT_ROOT] => - [REQUEST_TIME_FLOAT] => 1520681598.4475 - [REQUEST_TIME] => 1520681598 - [argv] => Array - ( - [0] => C:\apache\htdocs\wordpress\wp-content\plugins\oik-batch\oik-wp.php - [1] => counter.php - ) - - [argc] => 2 - [HTTP_HOST] => localhost - [SERVER_NAME] => localhost - [SERVER_PORT] => 80 - [SERVER_PROTOCOL] => - [request_type] => cli -) - -oik-wp running WordPress 4.9.4 -C:\apache\htdocs\wordpress\wp-content\plugins\oik-block\converter -cli -Shifting argv -NOTWP,#,, -............................................................................................ -4.9.4,.,66,26 -NOTWP,..,, -NOTWP,.idea,, -NOTWP,18may,, -....... -4.8,achoired-taste,2,5 -......................................... -3.8.1,act,29,12 -.................................... -4.9.2,aldworth,26,10 -NOTWP,anchorgo,, -NOTWP,anchorgolfcom,, -............ -3.9,andrea,5,7 -................................................. -4.3.1,aumabs,32,17 -.............................. -4.2.2,balancingbyart,18,12 -...................................... -3.5.1,bettercorestrength,23,15 -........................... -4.8,bigram,23,4 -........ -4.5.4,bigram-renamed,0,8 -............................. -3.0.3,blogbbf,14,15 -NOTWP,bobbingw,, -.................. -4.8,broad-builders,14,4 -............... -4.9-alpha-40977,build,5,10 -NOTWP,bw,, -NOTWP,bwarchive,, -................................................................. -4.7.8,bwcom,50,15 -................. -3.6.1,bwcom-renamed,11,6 -.......................................................................................................................... -4.7.3,bwdesign,86,36 -............... -3.6.1,bwdevel,11,4 -NOTWP,bwpcsupp,, -NOTWP,bwts,, -NOTWP,bwwdcouk,, -NOTWP,caravan,, -NOTWP,ccd,, -NOTWP,cjgs,, -...................... -4.1.1,classic,12,10 -NOTWP,classicc,, -........................... -4.4.2,coaching2inspire,16,11 -.................................... -4.7.5,colours,28,8 -.................................... -4.7.3,cookie-cat,28,8 -NOTWP,cookie-category,, -NOTWP,customers,, -.................................................... -4.9.4,cwiccer,47,5 -......... -3.0,dealwithstress,4,5 -NOTWP,denise,, -NOTWP,deniseth,, -............... -3.0,design,9,6 -NOTWP,dimcl,, -NOTWP,downloads,, -NOTWP,drupal-libraries,, -NOTWP,drupal-modules,, -NOTWP,dtib,, -.............................. -4.5.3,dws,22,8 -............................... -3.4.2,edw,20,11 -..................... -3.3.1,eedge,11,10 -................... -3.4.2,eedge1114,13,6 -.................. -3.3.1,eedge1114b,12,6 -................................. -3.3.1,eft,18,15 -NOTWP,eie,, -......................... -4.7.2,engarc,20,5 -............. -3.5,eoci,7,6 -NOTWP,fabt,, -NOTWP,findaballtees,, -NOTWP,findabalti,, -NOTWP,fionathomas,, -NOTWP,fobbonghide,, -NOTWP,foppapedretti,, -................................ -3.0.5,fsp,20,12 -NOTWP,funkygreen,, -NOTWP,gdw,, -................ -4.9.1,gdwifa,10,6 -NOTWP,gdwifa-couk,, -NOTWP,gibberd,, -NOTWP,git,, -NOTWP,gkz,, -NOTWP,gordontate,, -NOTWP,gravity,, -NOTWP,grippii,, -...................... -3.3.1,gtate,14,8 -................................................................. -4.8,hallsgs,43,22 -...................................................................... -4.3.6,hampshire-eft,51,19 -.................................................... -4.3.1,handmadestudios,40,12 -...................... -3.3.1,happystevehook,16,6 -NOTWP,harvest,, -NOTWP,hcc,, -......... -NOVER,heft,0,9 -NOTWP,hehall,, -NOTWP,herb,, -.............................................. -4.0,hifianswers,41,5 -.............................................................................. -4.9.4,hm,59,19 - -4.5.4-alpha-38000,hm-pregit,0,0 -.................................. -3.3.2,hm0618,27,7 -........................................ -3.4.1,hm1013,33,7 -NOTWP,Home - Rathmore financial_files,, -.............................. -3.3.2,hosh,21,9 -................................ -3.6,hsoh,21,11 -............................ -3.2.1,hsoh_old,19,9 -NOTWP,i-promote,, -NOTWP,images,, -NOTWP,insurance,, -NOTWP,itconsultant,, -........................................ -3.6.1,janecoomb,30,10 -NOTWP,janecoombsinfo,, -NOTWP,japics,, -........ -NOVER,jbr,0,8 -NOTWP,jimmy,, -..................... -3.3.1,jtth,8,13 -NOTWP,kamarklew,, -NOTWP,kate,, -.............................. -4.8.1,lalucouk,26,4 -NOTWP,laravel,, -NOTWP,lazzari,, -NOTWP,lcm,, -NOTWP,lettings-inc,, -........................... -3.6.1,lfd4u,15,12 -NOTWP,lg,, -NOTWP,logos,, -NOTWP,loneworking,, -NOTWP,ltcf,, -NOTWP,marshall,, -NOTWP,mdap,, -NOTWP,mdt,, -NOTWP,mountainview,, -NOTWP,mrlc,, -NOTWP,nivo-slider-v2.7.1,, -NOTWP,nivo-slider-v3.1,, -NOTWP,nivo-slider-v3.2,, -.................................................................. -4.8,officialcaravan,56,10 -NOTWP,oik,, -NOTWP,oik-batchmove,, -NOTWP,oik-css,, -NOTWP,oik-nivo-slider_svn,, -NOTWP,oik-plugins,, -......... -4.0,oik-plugins.uk,4,5 -NOTWP,oik-privacy-policy_svn,, -......................................................................................................................... -4.9.1,oikcom,96,25 - -4.7.3,oikcom-renamed,0,0 -............................................................................................ -4.9.1,oikcouk,78,14 -............................................................................................ -4.8.2,oikeu,73,19 -......................................................................................................................... -4.7.3,oikplug,96,25 -NOTWP,okeffed,, -................................................. -3.9.1,olc,35,14 -................................................. -4.0,oobit,40,9 -........................................................ -3.8.1,ourlistenersclub,41,15 -........................... -4.8.2,owcs,24,3 -........ -4.9,owzs,4,4 -............ -4.9,owzs-pro,8,4 -NOTWP,paap,, -NOTWP,Pandb,, -....... -NOVER,pathofbeing,0,7 -NOTWP,pcs,, -NOTWP,penoyre,, -NOTWP,phpDocumentor2,, -NOTWP,phpLibraries,, -NOTWP,phpMailer_v2.3,, -NOTWP,phpMailer_v5.1,, -NOTWP,phpMyAdmin,, -NOTWP,phpMyAdmin-3.2.5,, -NOTWP,phpMyAdmin-3.3.2-all-languages,, -NOTWP,phpMyAdmin-4.6.6-english,, -NOTWP,phpMyAdmin-4.7.6-all-languages,, -NOTWP,phpMyAdmin4.2.11,, -............. -4.7,phpunit,10,3 -NOTWP,pkgs,, -NOTWP,premier,, -NOTWP,prettier,, -........................ -4.2.2,pretty,15,9 -NOTWP,prettyas,, -NOTWP,prettyas_old,, -NOTWP,problem-solving,, -................... -4.6.1,pwaep,11,8 -NOTWP,quickstart-basic,, -............................................. -4.4.12,rathmorefinancial,30,15 -NOTWP,rcbnb,, -NOTWP,rcgc,, -NOTWP,rchc,, -NOTWP,rcorguk,, -NOTWP,rcr,, -NOTWP,rcroofing,, -NOTWP,rctc,, -.......................................................................................................... -4.4,rcwdcom,68,38 -NOTWP,react,, -NOTWP,react-SB,, -NOTWP,retirementcoach,, -NOTWP,retirementmanager,, -...................................................... -3.8.1,rf,37,17 -................................................. -4.4.11,rjd,35,14 -..................................... -3.8.11,rjd2,27,10 -............................................................... -4.4.11,rjduk,41,22 -NOTWP,rmt,, -....................................... -4.7.8,rngs,26,13 -NOTWP,sc2,, -NOTWP,sc2-pregit,, -................... -3.4.1,secrets,14,5 -NOTWP,simple_html_dom,, -NOTWP,sitemap_gen-1.5,, -.................. -4.6.3,solentro,11,7 -...................................................................... -5.0-alpha-42125-src,src,54,16 -................................. -4.2.10,survive,23,10 -NOTWP,susan,, -............................................... -4.7.3,susancowemiller,35,12 -NOTWP,susancowereiki,, -.......... -3.9-alpha,svn,3,7 -NOTWP,svn_assets,, -NOTWP,svn_plugins,, -NOTWP,svn_tools,, -................................................ -4.6.1,symondson,38,10 -........................................ -3.3.1,symondson_internetMarketing,36,4 -................................................ -4.9.4,szerelmey,42,6 -........................... -4.9.1,tags,20,7 -NOTWP,td,, -NOTWP,techsupport,, -................................. -4.2.7,therealc,22,11 -NOTWP,twenty-tens.com,, -NOTWP,twentyte,, -NOTWP,uk-tides_svn,, -NOTWP,uploadify,, -NOTWP,us-tides_svn,, -NOTWP,wc-logs,, -NOTWP,wc-rest,, -NOTWP,webdesign,, -............................. -4.1.4,wholebeingwellbeing,18,11 -..................................................................................................................................................................................................................................................................................................................................................... -4.9.4,wordpress,231,110 -.................................................... -4.8.1,wp-a2z,37,15 -..................................... -4.4.2,wp-a2z-v4.4.2,29,8 -NOTWP,wp-admin,, -NOTWP,wp-content,, -NOTWP,wp-includes,, -NOTWP,WP-Parser-master,, -...................................... -4.9.4,wp-pompey,30,8 -NOTWP,wp-super-cache,, -NOTWP,wp071,, -NOTWP,wp292,, -......... -3.2.1,wp321,5,4 -...................... -3.4.1,wp33,11,11 -NOTWP,wp331,, -....................................................... -3.5,wp34,41,14 -................................ -3.5.1,wp35,25,7 -....... -3.7.1,wp371,3,4 -........ -3.8,wp38,3,5 -NOTWP,wp39,, - -4.6,wp46,0,0 -........................................................................................................................ -4.7.3,wp47,86,34 - -4.7.1,wp473,0,0 -............................................................. -5.0-alpha-42125-src,wp50,46,15 -NOTWP,wpg,, -NOTWP,wpgit,, -......................................... -4.7.4,wpit,30,11 - -4.6.1,wpit4.6,0,0 -NOTWP,wplang,, -NOTWP,wplang-3.6,, -................. -4.7,wpml,17,0 -........................................................................................................................................................ -4.9.1,wpms,110,42 - -4.9-RC2,wpms-saved,0,0 -NOTWP,wpmudev,, -................................................................................. -4.4.7,wporg,66,15 -........................................ -3.6,wws,32,8 -NOTWP,wwwcomp,, -NOTWP,xdebug,, -NOTWP,xmas,, -NOTWP,yellow,, -.................................. -3.5.1,yellowbrand,27,7 -NOTWP,yogatherapy.me,, -Type,Component,Count -plugins,.,101 - -Notice: Undefined variable: total in C:\apache\htdocs\wordpress\wp-content\plugins\oik-block\converter\class-component-counter.php on line 33 - -Call Stack: - 0.0020 351688 1. {main}() C:\apache\htdocs\wordpress\wp-content\plugins\oik-batch\oik-wp.php:0 - 0.0021 351688 2. oik_wp_loaded() C:\apache\htdocs\wordpress\wp-content\plugins\oik-batch\oik-wp.php:155 - 3.2432 10772992 3. oik_batch_run() C:\apache\htdocs\wordpress\wp-content\plugins\oik-batch\oik-wp.php:116 - 3.2433 10772872 4. oik_batch_run_script() C:\apache\htdocs\wordpress\wp-content\plugins\oik-batch\libs\oik-cli.php:559 - 3.2600 10773312 5. require_once('C:\apache\htdocs\wordpress\wp-content\plugins\oik-block\converter\counter.php') C:\apache\htdocs\wordpress\wp-content\plugins\oik-batch\libs\oik-cli.php:591 - 3.2601 10773312 6. oik_block_counter() C:\apache\htdocs\wordpress\wp-content\plugins\oik-block\converter\counter.php:94 - 11.7958 10952984 7. component_counter->report() C:\apache\htdocs\wordpress\wp-content\plugins\oik-block\converter\counter.php:54 - -plugins,..,101 -plugins,.idea,4 -plugins,akismet,85 -plugins,backwpup,16 -plugins,bbpress,7 -plugins,bowe-codes,1 -plugins,buddypress,6 -plugins,cookie-cat,46 -plugins,debug-bar,5 -plugins,developer,1 -plugins,distributor,2 -plugins,drafts-for-friends,3 -plugins,easy-digital-downloads,10 -plugins,easy-fancybox,1 -plugins,easy-pricing-tables,1 -plugins,fancy-box,1 -plugins,fancybox-for-wordpress,1 -plugins,feedwordpress,1 -plugins,genesis-beta-tester,1 -plugins,genesis-variable-footer-widgets,1 -plugins,github-release-downloads,1 -plugins,log-deprecated-notices,2 -plugins,membership,6 -plugins,oik,87 -plugins,oik-batch,31 -plugins,oik-batchmove,19 -plugins,oik-bob-bing-wide,42 -plugins,oik-bob-bing-wide-1.21,1 -plugins,oik-bp-signup-email,5 -plugins,oik-bwtrace,63 -plugins,oik-clone,21 -plugins,oik-debug-filters,14 -plugins,oik-email-signature,17 -plugins,oik-fields,54 -plugins,oik-fields-1.36,1 -plugins,oik-nivo-slider,42 -plugins,oik-plugins,17 -plugins,oik-privacy-policy,53 -plugins,oik-sc-help,20 -plugins,oik-sc-help-1.9,1 -plugins,oik-shortcodes,17 -plugins,oik-sites,6 -plugins,oik-types,37 -plugins,popdom-themes-backup,1 -plugins,popup-domination,2 -plugins,query-monitor,6 -plugins,rfi,3 -plugins,schunter,7 -plugins,setup,20 -plugins,sg-cachepress,3 -plugins,shortcake-ui-demo,1 -plugins,si-captcha-for-wordpress,11 -plugins,toolbar-theme-switcher,1 -plugins,trac29608,5 -plugins,u-buddypress-forum-editor,1 -plugins,visualizer,1 -plugins,woocommerce,22 -plugins,wordpress-importer,27 -plugins,wordpress-seo,66 -plugins,wp-charts,2 -plugins,WP-DraftsForFriends,2 -plugins,wp-mail-smtp,4 -plugins,wp-spamfree,2 -plugins,wp-top12,5 -plugins,wpmudev-updates,6 -plugins,add-to-any,9 -plugins,all-in-one-seo-pack,12 -plugins,download-monitor,2 -plugins,download-monitor-saved,1 -plugins,easy-digital-downloads-free-download,1 -plugins,extended-page-lists,6 -plugins,featured-image-widget,13 -plugins,google-analytics-for-wordpress,46 -plugins,google-sitemap-generator,15 -plugins,import-users-from-csv,4 -plugins,ltw-testimonials,11 -plugins,obsafe_print_r,5 -plugins,oik-fum,15 -plugins,pc-searchengine-verify,11 -plugins,sexybookmarks,8 -plugins,sharebar,3 -plugins,si-contact-form,15 -plugins,the-events-calendar,8 -plugins,updraftplus,3 -plugins,allow-reinstalls,17 -plugins,backupwordpress,30 -plugins,contact-form-7,6 -plugins,fusion-builder,3 -plugins,fusion-core,3 -plugins,jetpack,41 -plugins,LayerSlider,1 -plugins,media-file-renamer,5 -plugins,oik-css,40 -plugins,oik-css-pregit,2 -plugins,oik-rwd,37 -plugins,oik-window-width,11 -plugins,post-type-switcher,16 -plugins,revslider,3 -plugins,advanced-responsive-video-embedder,1 -plugins,mbo,2 -plugins,oik-popup,10 -plugins,oik-rating,9 -plugins,oik-squeeze,18 -plugins,oik-testimonials,20 -plugins,oik-types-v1.6,1 -plugins,oik-v2.6-alpha.0525,1 -plugins,oik-video,22 -plugins,promotion-slider,1 -plugins,smart-google-code-inserter,1 -plugins,nextgen-gallery,13 -plugins,slideshow-gallery-pro,3 -plugins,appointments,2 -plugins,contus-video-gallery,1 -plugins,flagallery-skins,1 -plugins,flash-album-gallery,1 -plugins,image-protector,1 -plugins,revostock-gallery,1 -plugins,sliding-youtube-gallery,1 -plugins,wpcat2tag-importer,2 -plugins,bigram,3 -plugins,bigram-renamed,1 -plugins,d62wp,7 -plugins,frontend-uploader,1 -plugins,genesis-footer-widgets,10 -plugins,genesistant,15 -plugins,oik-a2z,9 -plugins,oik-ajax,11 -plugins,oik-media,5 -plugins,rest-api,2 -plugins,simple-facebook-connect,6 -plugins,simple-twitter-connect,6 -plugins,widget-wrangler,7 -plugins,wpautoembed,2 -plugins,genesis-responsive-slider,1 -plugins,image-carousel,1 -plugins,wonderplugin-carousel,1 -plugins,wonderplugin-carousel-9.8,1 -plugins,bw-types,3 -plugins,bw-types-pregit,1 -plugins,genesis-connect-woocommerce,3 -plugins,greprecated,4 -plugins,network-privacy,6 -plugins,oik-blogger-redirect,10 -plugins,oik-bwtrace-git,1 -plugins,oik-lib,12 -plugins,oik-ms,18 -plugins,oik-mshot,12 -plugins,oik-pregit,1 -plugins,oik-theme-fields,5 -plugins,oik-themes,12 -plugins,oik-tos,2 -plugins,uk-tides,22 -plugins,wc-call-for-price,1 -plugins,woocommerce-call-for-price,1 -plugins,woocommerce-gateway-paypal-express-checkout,2 -plugins,wordpress-mu-domain-mapping-renamed,3 -plugins,wp-migrate-db,7 -plugins,bwdesign,2 -plugins,cms-tree-page-view,5 -plugins,cron-view,2 -plugins,Custom-Meta-Boxes,2 -plugins,debug-bar-cron,2 -plugins,dff,1 -plugins,five-star-rating,1 -plugins,gallery-widget,1 -plugins,hookr,1 -plugins,json-rest-api,2 -plugins,oik-bob-bing-wide-1.30.2,1 -plugins,oik-bwtrace.2.0.11,1 -plugins,oik-fields.x,1 -plugins,oik-plugin-fields,4 -plugins,oik-popup-saved,1 -plugins,oik-post-type-support,11 -plugins,oik-responsive-menu,11 -plugins,oik-shortcodes-a2z,5 -plugins,oik-sidebar,8 -plugins,quick-pagepost-redirect-plugin,2 -plugins,redirection,10 -plugins,regenerate-thumbnails,8 -plugins,siteorigin-panels,4 -plugins,slideshow-gallery-2,1 -plugins,stats,1 -plugins,sub-page-summary,4 -plugins,tinymce-advanced,5 -plugins,wcs-qr-code-generator,4 -plugins,widget-importer-exporter,5 -plugins,widget-output-cache,1 -plugins,wpaudio-mp3-player,10 -plugins,youtube-embed-plus,1 -plugins,gravityforms,12 -plugins,portfolio-slideshow,6 -plugins,underconstruction,14 -plugins,custom-contact-forms,1 -plugins,lightbox-plus,2 -plugins,mailchimp-widget,1 -plugins,sexybookmarks-broke,1 -plugins,contact-form-manager,1 -plugins,ecwid-shopping-cart,1 -plugins,essential-grid,1 -plugins,exploit-scanner,1 -plugins,js_composer,2 -plugins,limit-login-attempts,3 -plugins,mailchimp-for-wp,2 -plugins,master-slider,1 -plugins,masterslider,1 -plugins,screets-lc,1 -plugins,Ultimate_VC_Addons,1 -plugins,w3-total-cache,2 -plugins,wp-db-backup-made,1 -plugins,wp-maintenance-mode,1 -plugins,wp-optimize,3 -plugins,wp-smushit,2 -plugins,wpclef,2 -plugins,yith-woocommerce-wishlist,1 -plugins,cookie-batch,2 -plugins,cookie-category,6 -plugins,cookie-category-pregit,1 -plugins,cookie-control,3 -plugins,oik-bwtrace-ren,1 -plugins,oik-ren,1 -plugins,wp-to-twitter,5 -plugins,adamrob-parallax-scroll,1 -plugins,audio,5 -plugins,bbboing,20 -plugins,beaver-builder-lite-version,1 -plugins,classic-editor,5 -plugins,cookie-opt-in,1 -plugins,gutenberg,6 -plugins,issue-19,2 -plugins,oik-a2z-pregit,1 -plugins,oik-bbpress,11 -plugins,oik-edd-but-no-edd,1 -plugins,oik-external-link-warning,12 -plugins,oik-header,11 -plugins,oik-moreoptions,9 -plugins,oik-select-menu,2 -plugins,oik-user,18 -plugins,oik-weight-zone-shipping-pro,13 -plugins,oik-weightcountry-shipping,16 -plugins,plugin-beta-tester,2 -plugins,s2member-files,4 -plugins,s2member-logs,4 -plugins,so-widgets-bundle,3 -plugins,theme-check,1 -plugins,simple-tweet,1 -plugins,youtube,1 -plugins,diy-oik,16 -plugins,dws,2 -plugins,go-live-update-urls,4 -plugins,oik-dates,10 -plugins,tags,3 -plugins,captcha,3 -plugins,eedge,4 -plugins,epages,3 -plugins,one-click-child-theme,1 -plugins,simple-image-widget,2 -plugins,live-composer-page-builder,1 -plugins,wordfence,6 -plugins,wp-htaccess-editor,1 -plugins,wp-performance-score-booster,1 -plugins,wp-super-simple-speed,1 -plugins,wpseo-local,1 -plugins,image-store,1 -plugins,jquery-featured-content-gallery,2 -plugins,qtranslate,2 -plugins,ga-google-analytics,1 -plugins,auto-listings,1 -plugins,car-demon,1 -plugins,car-sales-pages,1 -plugins,carousel-slider,1 -plugins,foogallery-owl-carousel-template,1 -plugins,genesis-taxonomy-images,1 -plugins,kiwi-logo-carousel,1 -plugins,logo-carousel,1 -plugins,logo-carousel-slider,1 -plugins,logo-slider,1 -plugins,motors-car-dealership-classified-listings,1 -plugins,oik-3.0.1,1 -plugins,oik-fields-pregit,1 -plugins,owl-carousel,1 -plugins,pl-car-dealer,1 -plugins,taxonomy-images,1 -plugins,wp-car-manager,1 -plugins,wp-carousel-free,1 -plugins,wp-custom-taxonomy-meta,1 -plugins,wp-term-images,1 -plugins,all-in-one-event-calendar,4 -plugins,all-in-one-event-calendar-effed,1 -plugins,options-importer,4 -plugins,plugin-activation-status,5 -plugins,revision-control,2 -plugins,sneak-peek,4 -plugins,wordpress-mu-domain-mapping-disabled,1 -plugins,wordpress-mu-domain-mapping-disabled-again,1 -plugins,wordpress-popup,1 -plugins,awd-weightcountry-shipping,3 -plugins,feed-them-social,1 -plugins,instagram-image-gallery,1 -plugins,mailchimp,1 -plugins,megamenu,1 -plugins,oik-fields-renamed,2 -plugins,oik-nivo-slider-renamed,1 -plugins,oik-rwd-renamed,1 -plugins,oik-types-renamed,1 -plugins,oik-weightcountry-shipping-pro,11 -plugins,pinterest-verify,1 -plugins,ultimate-coming-soon-page,1 -plugins,woocommerce-colors,1 -plugins,woocommerce-product-archive-customiser,1 -plugins,cart66-lite,1 -plugins,meta-tag-manager,1 -plugins,wp-simplemail,1 -plugins,advanced-custom-fields,4 -plugins,bainternet-posts-creation-limits,3 -plugins,bulk-taxonomy-edits,1 -plugins,business-directory-plugin,1 -plugins,capability-manager-enhanced,2 -plugins,collapsing-categories,3 -plugins,export-users-to-csv,1 -plugins,import-external-images,3 -plugins,oik-blogger-importer,3 -plugins,oik-members,4 -plugins,olc,4 -plugins,olc-tweaks,2 -plugins,p3-profiler,3 -plugins,press-permit-core,2 -plugins,s2member,3 -plugins,supplier-directory,2 -plugins,tb-testimonials,7 -plugins,visual-form-builder,1 -plugins,wp-members,15 -plugins,wp-pagenavi,6 -plugins,Akismet-v3.1.8,1 -plugins,dinlo,6 -plugins,google-analytics-for-wordpress-renamed,1 -plugins,gutenberg-2.1.0,2 -plugins,gutenberg-2.3.0,2 -plugins,mergebot,1 -plugins,oik-block,4 -plugins,oik-cons,3 -plugins,oik-css3,2 -plugins,oik-git-clone,1 -plugins,oik-libs,11 -plugins,oik-read-more,10 -plugins,us-tides,11 -plugins,wordpress-beta-tester,6 -plugins,wordpress-develop-tests,12 -plugins,efficient-related-posts,2 -plugins,sociable,4 -plugins,wp-post-to-twitter,2 -plugins,wp-syntax,2 -plugins,blogger-importer,3 -plugins,official-statcounter-plugin-for-wordpress,2 -plugins,private-buddypress,3 -plugins,wordpress-mu-domain-mapping,5 -plugins,localmail,2 -plugins,acurax-social-media-widget,2 -plugins,alexa-internet,2 -plugins,broken-link-checker,6 -plugins,cookies-for-comments,2 -plugins,custom-meta-widget,2 -plugins,follow-my-blog-post,2 -plugins,internal-link-manager,2 -plugins,powerpress,2 -plugins,searchterms-tagging-2,2 -plugins,wp-statistics,2 -plugins,wysija-newsletters-norty,1 -plugins,quote-rotator,1 -plugins,oik-bwtrace-renamed,1 -plugins,qtranslate-x,1 -plugins,wp-seo-qtranslate-x,1 -plugins,wmdum,1 -plugins,calyx,1 -plugins,get-ctrl-importer,3 -plugins,import-users-from-csv-renamed,1 -plugins,jetpack-easy-playlists,1 -plugins,jetpack-extras,1 -plugins,oik-bwtrace-v2.0.11,1 -plugins,oik-tunes,10 -plugins,oik-types-pregit,1 -plugins,oik-weight-zone-shipping,9 -plugins,oik-weight-zone-shipping-pro-0.1.0,1 -plugins,oik-weightcountry-shipping-pro-v1.4.1,1 -plugins,oik-wzs-rates,6 -plugins,really-simple-captcha,1 -plugins,rss-importer,1 -plugins,spam-reg-check,4 -plugins,user-spam-remover,1 -plugins,woocommerce-2.6.12,1 -plugins,wordpress-mu-domain-mapping-renamed-again,1 -plugins,wordpress-social-login,2 -plugins,hyperdb,1 -plugins,foobar,8 -plugins,force-regenerate-thumbnails,4 -plugins,jetpack-3.9.4,2 -plugins,oik-batch-renamed,2 -plugins,oik-bbpress-ren,2 -plugins,oik-clone-20171114,2 -plugins,oik-cookie-list,5 -plugins,oik-css-git-clone,2 -plugins,oik-edd,6 -plugins,oik-infusionsoft,5 -plugins,oik-requests,5 -plugins,oik-thugin,3 -plugins,oik-todo,5 -plugins,oik-widget-cache,4 -plugins,oik-working-feedback,6 -plugins,Shortcake,3 -plugins,voce-widget-cache,3 -plugins,wp-cli,5 -plugins,wp-super-cache,6 -plugins,wpdb-alt,2 -plugins,bobbing,7 -plugins,oik-bwtrace-2.0.11,1 -plugins,play,3 -plugins,add-paragraphs-option-to-text-widget,1 -plugins,hello-dolly,5 -plugins,multi-site-plugins-add-new,1 -plugins,multisite-cloner,3 -plugins,ns-cloner-site-copier,2 -plugins,oik-batch-pregit,1 -plugins,oik-presentation,6 -plugins,oik-weight-zone-shipping-pro-v0.1.0,1 -plugins,woocommerce-2.6,1 -plugins,woocommerce-2.6.6,1 -plugins,woocommerce-3.0,1 -plugins,woocommerce-add-countries,3 -plugins,Automattic-developer-57628b7,1 -plugins,developer-v1.0.0,1 -plugins,floating-admin-menu,1 -plugins,html5-slideshow-presentations,1 -plugins,monster-widget,1 -plugins,oik-book,1 -plugins,rewrite-rules-inspector,1 -plugins,sitepush,1 -plugins,user-switching,1 -plugins,vip-scanner,1 -plugins,wp-video-lightbox,1 -plugins,add-linked-images-to-gallery-v01,1 -plugins,bi2,1 -plugins,bulk-move,1 -plugins,directory,2 -plugins,fff-cron-manager,1 -plugins,oik-republish,2 -plugins,paypal-framework,1 -plugins,paypal-responder,1 -plugins,wp-clean-up,1 -plugins,wp-crontrol,1 -plugins,wp-slimstat,3 -plugins,woocommerce-extra-charges-to-payment-gateways,2 -plugins,woocommerce-germanized,1 -plugins,woocommerce-jetpack,2 -plugins,woocommerce-multilingual,2 -plugins,woocommerce-poor-guys-swiss-knife,2 -plugins,woocommerce-product-gift-wrap,2 -plugins,woocommerce-quantity-increment,2 -plugins,woocommerce-role-based-methods,2 -plugins,woocommerce-smart-coupons,2 -plugins,woocommerce-volume-discount-coupons,2 -plugins,woocommerce-wholesale-prices,2 -plugins,woocommerce-wholesale-prices-premium,2 -plugins,woosidebars,2 -plugins,wpml-media,2 -plugins,wpml-string-translation,2 -plugins,wpml-translation-management,2 -plugins,oik-weight-zone-shipping-pro-v0.2.2,1 -plugins,dropcaps-shortcodes-and-widget,1 -plugins,oik-dropcap,2 -plugins,simple-drop-cap,1 -plugins,genesis-layout-extras,1 -plugins,wp-seo,1 -plugins,more-privacy-options,3 -plugins,wordpress-mu-domain-mapping-qw,1 -plugins,easy-instagram,1 -plugins,gtrans,1 -plugins,oik-bwtrace-too-new-for-oik-2.5,1 -plugins,popover,2 -plugins,recent-posts,2 -plugins,simple-instagram,1 -plugins,smart-bbboing,2 -plugins,wp-customer-reviews,1 -plugins,wpremote,1 -plugins,oik-intouchcrm,2 -plugins,webchemistry-core,1 -plugins,webchemistry-googleplugin,1 -plugins,webchemistry-heatmap,1 -plugins,webchemistry-searchenginesettings,1 -plugins,webchemistry-seoboost,1 -plugins,webchemistry-shortcodes,1 -plugins,wordpress-mu-domain-mapping-local,1 -plugins,job-manager,2 -plugins,menu-exporter,2 -plugins,ultimate-tinymce,3 -plugins,user-role-editor,3 -plugins,velvet-blues-update-urls,3 -plugins,wordpress-php-info,1 -plugins,wponlinebackup,3 -plugins,google-sitemap-plugin,2 -plugins,googleanalytics,3 -plugins,resume-submissions-job-postings,1 -plugins,timthumb-vulnerability-scanner,3 -plugins,wp-job-manager,1 -plugins,oik-renamed,2 -plugins,rjd,1 -plugins,ultimate-tinymce-7,1 -plugins,wp-spamfree-7,1 -plugins,oik-2.5,1 -plugins,oik-bwtrace-2.0.6,1 -plugins,username-changer,1 -plugins,wp-email-login,2 -plugins,wp-google-maps,2 -plugins,bb-plugin,2 -plugins,css,2 -plugins,divi-builder,1 -plugins,gcf,2 -plugins,gutenberg-2.0.0,1 -plugins,gutenberg-course,2 -plugins,jsforwp-blocks,2 -plugins,oik-batch-pre-resolving-cd-problem,2 -plugins,phpunit,3 -plugins,restrict-shipping-classes,3 -plugins,shortcake-gutenberg,3 -plugins,wppompey,3 -plugins,mtouch-quiz,1 -plugins,WordPress-Importer,3 -plugins,commentluv-premium,1 -plugins,easy-nivo-slider,1 -plugins,fatpanda-facebook-comments,1 -plugins,image-widget,2 -plugins,infusionsoft-web-tracker,1 -plugins,oik-content,2 -plugins,oik-thesis-featurebox,2 -plugins,really-simple-facebook-twitter-share-buttons,1 -plugins,share-and-follow,1 -plugins,shareaholic,2 -plugins,thank-me-later,1 -plugins,tweet-old-post,1 -plugins,vslider,1 -plugins,what-would-seth-godin-do,2 -plugins,zero_tolerance,1 -plugins,backupbuddy,2 -plugins,cbnet-ping-optimizer,1 -plugins,commentluv,1 -plugins,dd-formmailer,1 -plugins,duplicator,2 -plugins,easy-privacy-policy,1 -plugins,exec-php,1 -plugins,featured-content-gallery,1 -plugins,feed-footer,1 -plugins,infolinks-officlial-plugin,1 -plugins,maintenance-mode,2 -plugins,quick-adsense,1 -plugins,search-and-replace,1 -plugins,seo-automatic-links,1 -plugins,share-this,1 -plugins,simple-tags,1 -plugins,sitemap-generator,1 -plugins,transposh-translation-filter-for-wordpress,1 -plugins,tubepress,1 -plugins,twitter-tools,2 -plugins,twitter-tools-bitly-links,1 -plugins,ultimate-plugins-smart-update-pinger,1 -plugins,worldlogger-live-web-analytics,1 -plugins,wp-db-backup,1 -plugins,wp-polls,1 -plugins,wp-postviews,1 -plugins,wp-print,1 -plugins,wp-responder-email-autoresponder-and-newsletter-plugin,1 -plugins,WPRobot3,1 -plugins,acf-options-page,1 -plugins,aryo-activity-log,1 -plugins,backupbuddy.hold,1 -plugins,backupcreator.hold,1 -plugins,better-recent-posts-widget,1 -plugins,cookie-law-info,2 -plugins,cool-timeline-pro,1 -plugins,custom-post-type-ui,2 -plugins,dvteam,1 -plugins,featured-video-plus,1 -plugins,go_portfolio,1 -plugins,options-framework,1 -plugins,page-list,1 -plugins,post-types-order,1 -plugins,simple-custom-css,1 -plugins,site-icon-pro,1 -plugins,soil,1 -plugins,the-grid,1 -plugins,vc-extensions-bundle,1 -plugins,wp-custom-cssjs,1 -plugins,wp-google-maps-gold,1 -plugins,wp-google-maps-pro,1 -plugins,wp-rocket,1 -plugins,wp-smushit.hold,1 -plugins,CMB2,1 -plugins,wysija-newsletters,4 -plugins,mad-mimi-broken,1 -plugins,sociable-broken,1 -plugins,genesis-enews-extended,1 -plugins,.git,1 -plugins,27918,1 -plugins,admin,1 -plugins,backup-qw,1 -plugins,botnet,1 -plugins,bs8484,1 -plugins,bugrit,2 -plugins,cli,1 -plugins,climate,1 -plugins,colours2woo,1 -plugins,commentason,1 -plugins,dtib-review,2 -plugins,effort,1 -plugins,g-c-w,1 -plugins,g-pre-g,1 -plugins,genesis-header-nav-develop,1 -plugins,getver,1 -plugins,GlotPress-WP,1 -plugins,hello,2 -plugins,iphone-images,1 -plugins,issue-49,1 -plugins,kate,1 -plugins,log-urgh,1 -plugins,my-plugin,1 -plugins,myplugins,1 -plugins,OAuth1,1 -plugins,oik-adr,1 -plugins,oik-api,1 -plugins,oik-business,1 -plugins,oik-bwtrace.php,1 -plugins,oik-cartcountry-shipping,1 -plugins,oik-child-theme,1 -plugins,oik-clone-wxr,1 -plugins,oik-cookie-law,1 -plugins,oik-css-broken-1029,1 -plugins,oik-downloads,1 -plugins,oik-external-link-warning-pregit,1 -plugins,oik-getimage,1 -plugins,oik-html-importer,1 -plugins,oik-html2markdown,1 -plugins,oik-i18n,1 -plugins,oik-jquery,1 -plugins,oik-l10n,1 -plugins,oik-mailchimp,1 -plugins,oik-make,1 -plugins,oik-money,1 -plugins,oik-options,1 -plugins,oik-payments,1 -plugins,oik-pgs,1 -plugins,oik-policies,1 -plugins,oik-privacy-policy.php,1 -plugins,oik-pro,1 -plugins,oik-rewrite,1 -plugins,oik-shutdown,1 -plugins,oik-signup-user-notification,1 -plugins,oik-squeeze-pregit,1 -plugins,oik-syndicate,1 -plugins,oik-tip,1 -plugins,oik-woo,3 -plugins,oik-wzs-rates-pregit,1 -plugins,oik-zip,1 -plugins,oldplay,2 -plugins,oobar,2 -plugins,opcache,1 -plugins,owzs-pro,1 -plugins,php71-fixes,1 -plugins,php72-fixes,1 -plugins,play-rel1,2 -plugins,play-rel2,2 -plugins,plugin-dependencies,1 -plugins,PostMeta,1 -plugins,premium-plugins,1 -plugins,relocateme,1 -plugins,sample,1 -plugins,shortcode-ui,3 -plugins,sitemap-redirect,1 -plugins,slog,1 -plugins,sql-csv,1 -plugins,storm10,1 -plugins,tennis,1 -plugins,test-41257,1 -plugins,testapi,1 -plugins,tides,1 -plugins,twentytwelve-copied-from-theme,1 -plugins,txt2md,1 -plugins,unserialize,1 -plugins,woocommerce-currency-switcher,1 -plugins,woocommerce-uk-counties,1 -plugins,wordpress-develop-tests-svn-symlink,1 -plugins,wp-browscap,1 -plugins,wp-downloads,1 -plugins,WP-Parser,2 -plugins,y,1 -plugins,z,1 -plugins,jetpack-renamed,1 -plugins,wp-migrate-db-0.9,1 -plugins,BuddyPress,1 -plugins,welcome-pack,1 -plugins,wp-geo,1 -plugins,better-wp-security,1 -plugins,editorial-calendar,1 -plugins,played,1 -plugins,sf-author-url-control,1 -plugins,import-html-pages,1 -plugins,link-manager,1 -plugins,members,2 -plugins,oa-social-login,1 -plugins,user-photo,1 -plugins,wordpress-simple-survey,1 -plugins,wp-memory-usage,1 -plugins,all-in-one-favicon,1 -plugins,Basic-Auth-master,1 -plugins,custom-metadata,1 -plugins,email-as-username-for-wp-members,1 -plugins,groups,1 -plugins,health-check,1 -plugins,inc,1 -plugins,my-wp-health-check,1 -plugins,OAuth1-master,1 -plugins,oik-bwtrace-2.0.12,1 -plugins,oik-cmb,1 -plugins,oik-user-v0.5,1 -plugins,pods,2 -plugins,public-post-preview,1 -plugins,push-syndication,1 -plugins,shareadraft,1 -plugins,shareadraft-master,1 -plugins,shipping-awd,1 -plugins,simple-preview,1 -plugins,spam-destroyer,1 -plugins,testimonials-by-woothemes,1 -plugins,woocommerce-2.5.2,1 -plugins,woocommerce-weight-country-based-shipping,1 -plugins,wordpress-security-lab,1 -plugins,youtube_oembed_fix,1 -plugins,actions,1 -plugins,cornerstone,1 -plugins,oik-3.0.2,1 -plugins,shortcode-reference,1 -plugins,acf,1 -plugins,advanced-custom-fields-v4.3.9,1 -plugins,advanced-theme-switcher,1 -plugins,cloner,1 -plugins,contact-form,1 -plugins,custom-content-type-manager,1 -plugins,custompress,1 -plugins,e-newsletter,1 -plugins,edd,1 -plugins,gravity-forms-custom-post-types,1 -plugins,ml-slider,1 -plugins,multisite-content-copier,1 -plugins,oik-bwtracev2.0.12,1 -plugins,oik-f,1 -plugins,oik-fields-ren,1 -plugins,oik-ms-renamed,1 -plugins,oik-nivo-slider-1.3,1 -plugins,oik-rwd-ren,1 -plugins,oik-sc-help-renamed,1 -plugins,oik-types-1.6,1 -plugins,recent-global-posts-widget,1 -plugins,remember-me-checked,1 -plugins,saved_plugins,1 -plugins,slide-in,1 -plugins,wp-smush-pro,1 -plugins,wpmu-dev-plusone,1 -plugins,aqua-page-builder,1 -plugins,oik-wcs-renamed,1 -plugins,paypal-pro,1 -plugins,themes,1 -plugins,slideshow-manager,1 -plugins,wp-simple-rss-feed-reader,1 -plugins,acf-repeater,1 -plugins,advanced-custom-fields-fucked,1 -plugins,google-map-shortcode,1 -plugins,gravityformsmailchimp,1 -plugins,my-page-order,1 -plugins,page-tree,1 -plugins,slickr-flickr,1 -plugins,social,1 -plugins,subpages-widget,1 -plugins,subscribe2,1 -plugins,taxonomy-widget,1 -plugins,wordpress-custom-post-type-archive,1 -plugins,wpgmappity,1 -themes,.,104 -themes,..,104 -themes,.idea,2 -themes,altitude-pro,3 -themes,bag2013,3 -themes,elitist,1 -themes,genesis,31 -themes,genesis-2.1.3,1 -themes,genesis-2.2.0,1 -themes,oik2012,7 -themes,oik20120,5 -themes,omg,1 -themes,rf0122,1 -themes,rjdap,2 -themes,simplest,1 -themes,storefront,4 -themes,twentyeleven,57 -themes,twentyfifteen,43 -themes,twentyfourteen,51 -themes,twentyseventeen,26 -themes,twentysixteen,23 -themes,twentyten,56 -themes,twentythirteen,53 -themes,twentytwelve,57 -themes,wpg0216,4 -themes,wpg0216bp,2 -themes,act1103,2 -themes,act0402,1 -themes,act0404,1 -themes,act0408,1 -themes,act0408a,1 -themes,aldworth,1 -themes,aldworth0628,1 -themes,Avada,1 -themes,constructzine-lite,1 -themes,hsoh0914,4 -themes,hsoh0914a,4 -themes,aumabs0402a,1 -themes,aumabs0402b,1 -themes,aumabs0403,1 -themes,aumabs0417,1 -themes,aumabs0425,2 -themes,aumabs0507,2 -themes,custom-community,1 -themes,goodtheme-lead,1 -themes,personaltrainer,2 -themes,bba0605,1 -themes,bba0615,1 -themes,bba0622,1 -themes,bba0720c,2 -themes,bcs0313,1 -themes,bcs0313c,1 -themes,destro,1 -themes,dkret3,1 -themes,nuance-v1.2.3,1 -themes,pinboard,1 -themes,rockstar,1 -themes,spartan,1 -themes,survive0310,4 -themes,genesis-SB,3 -themes,air-balloon-lite,1 -themes,pictorico,1 -themes,sb0515,2 -themes,bwdesign1028,3 -themes,bwwow1130,2 -themes,bwwow1203,2 -themes,classic,5 -themes,cwiccer1207,3 -themes,default,5 -themes,gsph1103,1 -themes,pob1028,1 -themes,sb1028,2 -themes,sb2010,1 -themes,sb2010_wm,1 -themes,theme465,1 -themes,broad-builders,1 -themes,bw2013,4 -themes,bw20131004,2 -themes,genesis-bw,3 -themes,no-sidebar-pro,2 -themes,parallax-pro,5 -themes,workstation-pro,2 -themes,amazing-times,2 -themes,bg-mobile-first,2 -themes,bwblogwordpress,2 -themes,bwdesign0622,1 -themes,bwdesign0715,1 -themes,bwdesign0830,1 -themes,bwdesign0830c,1 -themes,diligent,1 -themes,Engage,2 -themes,freprotheme,1 -themes,genesis-a2z,4 -themes,genesis-broken,1 -themes,genesis-hm,5 -themes,genesis-odea,3 -themes,genesis-oik,14 -themes,journal,2 -themes,minimalist-pro,2 -themes,novo,1 -themes,one-pager-genesis-master,1 -themes,twenty-seven-pro,2 -themes,ccd1001,1 -themes,ccd1001c,1 -themes,cjw0118,2 -themes,cjw20160315,2 -themes,cjw20160316,1 -themes,royal,1 -themes,cc0512,1 -themes,genesis-cc0512,1 -themes,hm140702,2 -themes,rf0510c,3 -themes,dws,1 -themes,rmt4dws,1 -themes,dws2016,2 -themes,dws2016-original,1 -themes,dwscomlaytfh,1 -themes,edw0112,2 -themes,edw0114,1 -themes,edw0121,1 -themes,edw0125,1 -themes,edw0203,1 -themes,edw0616,1 -themes,edw0911,1 -themes,edge1117,1 -themes,edge1117c,1 -themes,edge1202,1 -themes,edge120201,3 -themes,edge120201c,3 -themes,edge1202c,1 -themes,eft0621,2 -themes,eft0712,2 -themes,eft1009,3 -themes,eft1017,3 -themes,eft1018,3 -themes,eft1018r,3 -themes,heft0204,1 -themes,heft0205,2 -themes,heft1229,1 -themes,heft1229c,2 -themes,heft1229gc,1 -themes,architecture,1 -themes,architecture-v1-04,1 -themes,eoci0112,3 -themes,sds_2012,1 -themes,fsp0114,1 -themes,lalu1223,2 -themes,gdwifa,1 -themes,gdwifa20140303,2 -themes,genesis-gdw,2 -themes,gta0422,1 -themes,gta0614,1 -themes,gta0621,1 -themes,gta0722c,2 -themes,Builder-Cohen,1 -themes,Builder-Madison,1 -themes,Builder-Paige,1 -themes,genesis-2.2.7,1 -themes,genesis-hehall,1 -themes,siteground-wp23,1 -themes,siteground-wp63,1 -themes,siteground-wp73,1 -themes,Universe,1 -themes,World,1 -themes,eft121212,2 -themes,eft20140523,1 -themes,eft20140523-qw,1 -themes,eft20140527,3 -themes,scr0909,3 -themes,sorbet,2 -themes,superhero,1 -themes,genesis-hms,1 -themes,hms0820,2 -themes,hms0826,2 -themes,hms0906,2 -themes,hms0907,2 -themes,sh0412,1 -themes,shell-lite,1 -themes,eft,1 -themes,eft1004,1 -themes,pob1018,2 -themes,DailyJournal,3 -themes,dailyjournal-olc,3 -themes,Corporative,1 -themes,Corporative-child,1 -themes,genesis-v2.2.6,2 -themes,hm120129,3 -themes,hm120206,4 -themes,hm120206c,4 -themes,hsoh0922,4 -themes,hsoh0928bp,3 -themes,hsoh1027bp,4 -themes,BlueMist,2 -themes,Feather,2 -themes,InterPhase,2 -themes,PureType,2 -themes,responsive,1 -themes,Trim,2 -themes,dwscomlay,1 -themes,jbr,1 -themes,jbrbernhard,1 -themes,jbrpapyrus,1 -themes,jbrpapyrus2,1 -themes,jbrpapyrus26,1 -themes,cjw1118,1 -themes,cjw1123,1 -themes,cjw1123c,1 -themes,cjw1124,1 -themes,cjw1128,1 -themes,cjw1128c,1 -themes,pcs1013,1 -themes,lalu0915,1 -themes,Magnificent,1 -themes,retro-fitted,1 -themes,retro-fitted-child,1 -themes,Artisteer41,3 -themes,oik0808,3 -themes,oik0819c,3 -themes,oik0917t,4 -themes,oik0918,3 -themes,oik310816,5 -themes,oik310816c,4 -themes,oik410130,4 -themes,oik410130-1.1,2 -themes,oik410130c,4 -themes,oik410130c-1.1,2 -themes,oik410923,4 -themes,oik120815,1 -themes,attitude,1 -themes,nivo2011,5 -themes,oobit,6 -themes,vantage,2 -themes,dailyjournal-olc2.3,1 -themes,DailyJournal2.3,2 -themes,olc0618,2 -themes,olc120815,2 -themes,olc120815c,3 -themes,oobit-extras,1 -themes,alver0620,1 -themes,DailyJournal2.4,1 -themes,gsph1019,1 -themes,pob1021,1 -themes,pob1027,1 -themes,genesis-image,6 -themes,genesis-paap,2 -themes,breakpoint,1 -themes,in-the-beginning,1 -themes,Nominal,1 -themes,maximus,2 -themes,maximus-rf,2 -themes,rf0202,2 -themes,rf0227,2 -themes,rf0227c,2 -themes,rf0311,5 -themes,rf0311c,4 -themes,rf0403,2 -themes,rf0403c,2 -themes,rf0510,2 -themes,act0331,1 -themes,bag2013-v0.1,2 -themes,eps0906,1 -themes,fabt120330,1 -themes,gkz1116,1 -themes,japics1102,2 -themes,li020226,1 -themes,mdt1209,1 -themes,oobit v1.0,1 -themes,pcs0809,1 -themes,pcs0822,1 -themes,pcs1003,1 -themes,phoenix0516,1 -themes,rcgc0318,1 -themes,rcgc0818,1 -themes,rcr0725,2 -themes,rctc0130,2 -themes,rcwd0415,1 -themes,s2s0515,2 -themes,s2s0515c,2 -themes,st0515,1 -themes,tl0515,1 -themes,yellow0117,1 -themes,centita,3 -themes,centita3.0,2 -themes,centita30c,2 -themes,rjdap-0.0.3,1 -themes,rjdap-clone,1 -themes,__MACOSX,1 -themes,centita3.0-7,1 -themes,centita30c-7,1 -themes,genesis-2.2.6,1 -themes,imbalance,1 -themes,modernbloggerpro,1 -themes,rjdpp,1 -themes,rngs0414,3 -themes,rngs0414c,3 -themes,rngs0721,2 -themes,rngs0721-ren,1 -themes,rngs0721-wtf,1 -themes,rngs0721c,2 -themes,rngs0827,2 -themes,sol121012,2 -themes,sol121012c,2 -themes,sol150508,2 -themes,Divi,1 -themes,wp-pompey,3 -themes,survive1210,2 -themes,trcg120403,3 -themes,trcg120403c,3 -themes,symondson0903,1 -themes,symondson0903c,1 -themes,thesis_16,1 -themes,lifestyle,1 -themes,szerelmey,1 -themes,genesis-tags,2 -themes,atahualpa,1 -themes,genesis-sample,1 -themes,genesis-wbwb,1 -themes,wbwb20141021,2 -themes,_oik,1 -themes,2014,1 -themes,2015,1 -themes,2016,1 -themes,aumabs0507c,1 -themes,aumabs0520c,1 -themes,bag2013-0616,1 -themes,bag2013-0626,1 -themes,bag2013-saved,1 -themes,bwdesign120209,1 -themes,bwdesign120209c,1 -themes,bwwow111120,1 -themes,cjw20160316w,1 -themes,eie120910c,2 -themes,genesis-aati,1 -themes,genesis-image-pregit,1 -themes,jquery-UI,1 -themes,jquery-ui-1.12.1.custom,1 -themes,jquery-ui-themes-1.12.1,1 -themes,oik0917,1 -themes,oik0917c,1 -themes,oik0917r,1 -themes,oik0917s,1 -themes,oik120206,1 -themes,oik120206c,1 -themes,oik310816c-buggered,1 -themes,oik401126,1 -themes,oik401126-art4,1 -themes,oik410326,2 -themes,oik410923c,1 -themes,oik420130,1 -themes,oik420130lm,1 -themes,oik420130wp,1 -themes,olc130611,1 -themes,psc0211,1 -themes,style,1 -themes,survive0310-art4,1 -themes,survive1120,2 -themes,t10scom0201,1 -themes,t10scom120128,1 -themes,thematic,1 -themes,trcg121026,1 -themes,trtc0104,1 -themes,trtc0212,1 -themes,trtc0225,1 -themes,trtc0225c,1 -themes,trtc1230,1 -themes,Untitled,1 -themes,twentyfifteen-v1.7,1 -themes,twentysixteen-symlinked-gitted,1 -themes,bp-default,2 -themes,p2,1 -themes,wpg0216bp-renamed,1 -themes,bp1027,1 -themes,hsoh0922bp,1 -themes,hsoh1015,1 -themes,boldy,1 -themes,business-lite,1 -themes,eie120910,1 -themes,frantic,1 -themes,Innova,1 -themes,sh0612,1 -themes,asteria-lite,1 -themes,blackbird,1 -themes,blackbirdtheme-trial,1 -themes,match,1 -themes,mystile,1 -themes,nivoblackbird,1 -themes,nuance-v1.2.4,1 -themes,t40,1 -themes,wonderflux,1 -themes,minn-lite,1 -themes,aventurine,1 -themes,dtib0601,1 -themes,dtib0601a,1 -themes,dtib0723a,1 -themes,genesis-2.2.3,1 -themes,pcs20141209,1 -themes,sleekphoto,1 -themes,twentyeleven-2.1,1 -themes,uf-scribe,1 -themes,uf-spirit,1 -themes,upfront,1 -themes,Martha,1 -themes,Martha1,1 -themes,wporg-developer,1 -themes,etiquette-wp,1 -themes,yellowbrand,1 -themes,yellowbrand-oik,1 -Totals,1190,4437 -Script required once: counter.php -Did: run_counter.php - \ No newline at end of file diff --git a/converter/components.csv b/converter/components.csv index c7ffd0b..469459d 100644 --- a/converter/components.csv +++ b/converter/components.csv @@ -1,1189 +1,1176 @@ -Type,Component,Count -plugins,akismet,85 -plugins,backwpup,16 -plugins,bbpress,7 -plugins,bowe-codes,1 -plugins,buddypress,6 -plugins,cookie-cat,46 -plugins,debug-bar,5 -plugins,developer,1 -plugins,distributor,2 -plugins,drafts-for-friends,3 -plugins,easy-digital-downloads,10 -plugins,easy-fancybox,1 -plugins,easy-pricing-tables,1 -plugins,fancy-box,1 -plugins,fancybox-for-wordpress,1 -plugins,feedwordpress,1 -plugins,genesis-beta-tester,1 -plugins,genesis-variable-footer-widgets,1 -plugins,github-release-downloads,1 -plugins,log-deprecated-notices,2 -plugins,membership,6 -plugins,oik,87 -plugins,oik-batch,31 -plugins,oik-batchmove,19 -plugins,oik-bob-bing-wide,42 -plugins,oik-bob-bing-wide-1.21,1 -plugins,oik-bp-signup-email,5 -plugins,oik-bwtrace,63 -plugins,oik-clone,21 -plugins,oik-debug-filters,14 -plugins,oik-email-signature,17 -plugins,oik-fields,54 -plugins,oik-fields-1.36,1 -plugins,oik-nivo-slider,42 -plugins,oik-plugins,17 -plugins,oik-privacy-policy,53 -plugins,oik-sc-help,20 -plugins,oik-sc-help-1.9,1 -plugins,oik-shortcodes,17 -plugins,oik-sites,6 -plugins,oik-types,37 -plugins,popdom-themes-backup,1 -plugins,popup-domination,2 -plugins,query-monitor,6 -plugins,rfi,3 -plugins,schunter,7 -plugins,setup,20 -plugins,sg-cachepress,3 -plugins,shortcake-ui-demo,1 -plugins,si-captcha-for-wordpress,11 -plugins,toolbar-theme-switcher,1 -plugins,trac29608,5 -plugins,u-buddypress-forum-editor,1 -plugins,visualizer,1 -plugins,woocommerce,22 -plugins,wordpress-importer,27 -plugins,wordpress-seo,66 -plugins,wp-charts,2 -plugins,WP-DraftsForFriends,2 -plugins,wp-mail-smtp,4 -plugins,wp-spamfree,2 -plugins,wp-top12,5 -plugins,wpmudev-updates,6 -plugins,add-to-any,9 -plugins,all-in-one-seo-pack,12 -plugins,download-monitor,2 -plugins,download-monitor-saved,1 -plugins,easy-digital-downloads-free-download,1 -plugins,extended-page-lists,6 -plugins,featured-image-widget,13 -plugins,google-analytics-for-wordpress,46 -plugins,google-sitemap-generator,15 -plugins,import-users-from-csv,4 -plugins,ltw-testimonials,11 -plugins,obsafe_print_r,5 -plugins,oik-fum,15 -plugins,pc-searchengine-verify,11 -plugins,sexybookmarks,8 -plugins,sharebar,3 -plugins,si-contact-form,15 -plugins,the-events-calendar,8 -plugins,updraftplus,3 -plugins,allow-reinstalls,17 -plugins,backupwordpress,30 -plugins,contact-form-7,6 -plugins,fusion-builder,3 -plugins,fusion-core,3 -plugins,jetpack,41 -plugins,LayerSlider,1 -plugins,media-file-renamer,5 -plugins,oik-css,40 -plugins,oik-css-pregit,2 -plugins,oik-rwd,37 -plugins,oik-window-width,11 -plugins,post-type-switcher,16 -plugins,revslider,3 -plugins,advanced-responsive-video-embedder,1 -plugins,mbo,2 -plugins,oik-popup,10 -plugins,oik-rating,9 -plugins,oik-squeeze,18 -plugins,oik-testimonials,20 -plugins,oik-types-v1.6,1 -plugins,oik-v2.6-alpha.0525,1 -plugins,oik-video,22 -plugins,promotion-slider,1 -plugins,smart-google-code-inserter,1 -plugins,nextgen-gallery,13 -plugins,slideshow-gallery-pro,3 -plugins,appointments,2 -plugins,contus-video-gallery,1 -plugins,flagallery-skins,1 -plugins,flash-album-gallery,1 -plugins,image-protector,1 -plugins,revostock-gallery,1 -plugins,sliding-youtube-gallery,1 -plugins,wpcat2tag-importer,2 -plugins,bigram,3 -plugins,bigram-renamed,1 -plugins,d62wp,7 -plugins,frontend-uploader,1 -plugins,genesis-footer-widgets,10 -plugins,genesistant,15 -plugins,oik-a2z,9 -plugins,oik-ajax,11 -plugins,oik-media,5 -plugins,rest-api,2 -plugins,simple-facebook-connect,6 -plugins,simple-twitter-connect,6 -plugins,widget-wrangler,7 -plugins,wpautoembed,2 -plugins,genesis-responsive-slider,1 -plugins,image-carousel,1 -plugins,wonderplugin-carousel,1 -plugins,wonderplugin-carousel-9.8,1 -plugins,bw-types,3 -plugins,bw-types-pregit,1 -plugins,genesis-connect-woocommerce,3 -plugins,greprecated,4 -plugins,network-privacy,6 -plugins,oik-blogger-redirect,10 -plugins,oik-bwtrace-git,1 -plugins,oik-lib,12 -plugins,oik-ms,18 -plugins,oik-mshot,12 -plugins,oik-pregit,1 -plugins,oik-theme-fields,5 -plugins,oik-themes,12 -plugins,oik-tos,2 -plugins,uk-tides,22 -plugins,wc-call-for-price,1 -plugins,woocommerce-call-for-price,1 -plugins,woocommerce-gateway-paypal-express-checkout,2 -plugins,wordpress-mu-domain-mapping-renamed,3 -plugins,wp-migrate-db,7 -plugins,bwdesign,2 -plugins,cms-tree-page-view,5 -plugins,cron-view,2 -plugins,Custom-Meta-Boxes,2 -plugins,debug-bar-cron,2 -plugins,dff,1 -plugins,five-star-rating,1 -plugins,gallery-widget,1 -plugins,hookr,1 -plugins,json-rest-api,2 -plugins,oik-bob-bing-wide-1.30.2,1 -plugins,oik-bwtrace.2.0.11,1 -plugins,oik-fields.x,1 -plugins,oik-plugin-fields,4 -plugins,oik-popup-saved,1 -plugins,oik-post-type-support,11 -plugins,oik-responsive-menu,11 -plugins,oik-shortcodes-a2z,5 -plugins,oik-sidebar,8 -plugins,quick-pagepost-redirect-plugin,2 -plugins,redirection,10 -plugins,regenerate-thumbnails,8 -plugins,siteorigin-panels,4 -plugins,slideshow-gallery-2,1 -plugins,stats,1 -plugins,sub-page-summary,4 -plugins,tinymce-advanced,5 -plugins,wcs-qr-code-generator,4 -plugins,widget-importer-exporter,5 -plugins,widget-output-cache,1 -plugins,wpaudio-mp3-player,10 -plugins,youtube-embed-plus,1 -plugins,gravityforms,12 -plugins,portfolio-slideshow,6 -plugins,underconstruction,14 -plugins,custom-contact-forms,1 -plugins,lightbox-plus,2 -plugins,mailchimp-widget,1 -plugins,sexybookmarks-broke,1 -plugins,contact-form-manager,1 -plugins,ecwid-shopping-cart,1 -plugins,essential-grid,1 -plugins,exploit-scanner,1 -plugins,js_composer,2 -plugins,limit-login-attempts,3 -plugins,mailchimp-for-wp,2 -plugins,master-slider,1 -plugins,masterslider,1 -plugins,screets-lc,1 -plugins,Ultimate_VC_Addons,1 -plugins,w3-total-cache,2 -plugins,wp-db-backup-made,1 -plugins,wp-maintenance-mode,1 -plugins,wp-optimize,3 -plugins,wp-smushit,2 -plugins,wpclef,2 -plugins,yith-woocommerce-wishlist,1 -plugins,cookie-batch,2 -plugins,cookie-category,6 -plugins,cookie-category-pregit,1 -plugins,cookie-control,3 -plugins,oik-bwtrace-ren,1 -plugins,oik-ren,1 -plugins,wp-to-twitter,5 -plugins,adamrob-parallax-scroll,1 -plugins,audio,5 -plugins,bbboing,20 -plugins,beaver-builder-lite-version,1 -plugins,classic-editor,5 -plugins,cookie-opt-in,1 -plugins,gutenberg,6 -plugins,issue-19,2 -plugins,oik-a2z-pregit,1 -plugins,oik-bbpress,11 -plugins,oik-edd-but-no-edd,1 -plugins,oik-external-link-warning,12 -plugins,oik-header,11 -plugins,oik-moreoptions,9 -plugins,oik-select-menu,2 -plugins,oik-user,18 -plugins,oik-weight-zone-shipping-pro,13 -plugins,oik-weightcountry-shipping,16 -plugins,plugin-beta-tester,2 -plugins,s2member-files,4 -plugins,s2member-logs,4 -plugins,so-widgets-bundle,3 -plugins,theme-check,1 -plugins,simple-tweet,1 -plugins,youtube,1 -plugins,diy-oik,16 -plugins,dws,2 -plugins,go-live-update-urls,4 -plugins,oik-dates,10 -plugins,tags,3 -plugins,captcha,3 -plugins,eedge,4 -plugins,epages,3 -plugins,one-click-child-theme,1 -plugins,simple-image-widget,2 -plugins,live-composer-page-builder,1 -plugins,wordfence,6 -plugins,wp-htaccess-editor,1 -plugins,wp-performance-score-booster,1 -plugins,wp-super-simple-speed,1 -plugins,wpseo-local,1 -plugins,image-store,1 -plugins,jquery-featured-content-gallery,2 -plugins,qtranslate,2 -plugins,ga-google-analytics,1 -plugins,auto-listings,1 -plugins,car-demon,1 -plugins,car-sales-pages,1 -plugins,carousel-slider,1 -plugins,foogallery-owl-carousel-template,1 -plugins,genesis-taxonomy-images,1 -plugins,kiwi-logo-carousel,1 -plugins,logo-carousel,1 -plugins,logo-carousel-slider,1 -plugins,logo-slider,1 -plugins,motors-car-dealership-classified-listings,1 -plugins,oik-3.0.1,1 -plugins,oik-fields-pregit,1 -plugins,owl-carousel,1 -plugins,pl-car-dealer,1 -plugins,taxonomy-images,1 -plugins,wp-car-manager,1 -plugins,wp-carousel-free,1 -plugins,wp-custom-taxonomy-meta,1 -plugins,wp-term-images,1 -plugins,all-in-one-event-calendar,4 -plugins,all-in-one-event-calendar-effed,1 -plugins,options-importer,4 -plugins,plugin-activation-status,5 -plugins,revision-control,2 -plugins,sneak-peek,4 -plugins,wordpress-mu-domain-mapping-disabled,1 -plugins,wordpress-mu-domain-mapping-disabled-again,1 -plugins,wordpress-popup,1 -plugins,awd-weightcountry-shipping,3 -plugins,feed-them-social,1 -plugins,instagram-image-gallery,1 -plugins,mailchimp,1 -plugins,megamenu,1 -plugins,oik-fields-renamed,2 -plugins,oik-nivo-slider-renamed,1 -plugins,oik-rwd-renamed,1 -plugins,oik-types-renamed,1 -plugins,oik-weightcountry-shipping-pro,11 -plugins,pinterest-verify,1 -plugins,ultimate-coming-soon-page,1 -plugins,woocommerce-colors,1 -plugins,woocommerce-product-archive-customiser,1 -plugins,cart66-lite,1 -plugins,meta-tag-manager,1 -plugins,wp-simplemail,1 -plugins,advanced-custom-fields,4 -plugins,bainternet-posts-creation-limits,3 -plugins,bulk-taxonomy-edits,1 -plugins,business-directory-plugin,1 -plugins,capability-manager-enhanced,2 -plugins,collapsing-categories,3 -plugins,export-users-to-csv,1 -plugins,import-external-images,3 -plugins,oik-blogger-importer,3 -plugins,oik-members,4 -plugins,olc,4 -plugins,olc-tweaks,2 -plugins,p3-profiler,3 -plugins,press-permit-core,2 -plugins,s2member,3 -plugins,supplier-directory,2 -plugins,tb-testimonials,7 -plugins,visual-form-builder,1 -plugins,wp-members,15 -plugins,wp-pagenavi,6 -plugins,Akismet-v3.1.8,1 -plugins,dinlo,6 -plugins,google-analytics-for-wordpress-renamed,1 -plugins,gutenberg-2.1.0,2 -plugins,gutenberg-2.3.0,2 -plugins,mergebot,1 -plugins,oik-block,4 -plugins,oik-cons,3 -plugins,oik-css3,2 -plugins,oik-git-clone,1 -plugins,oik-libs,11 -plugins,oik-read-more,10 -plugins,us-tides,11 -plugins,wordpress-beta-tester,6 -plugins,wordpress-develop-tests,12 -plugins,efficient-related-posts,2 -plugins,sociable,4 -plugins,wp-post-to-twitter,2 -plugins,wp-syntax,2 -plugins,blogger-importer,3 -plugins,official-statcounter-plugin-for-wordpress,2 -plugins,private-buddypress,3 -plugins,wordpress-mu-domain-mapping,5 -plugins,localmail,2 -plugins,acurax-social-media-widget,2 -plugins,alexa-internet,2 -plugins,broken-link-checker,6 -plugins,cookies-for-comments,2 -plugins,custom-meta-widget,2 -plugins,follow-my-blog-post,2 -plugins,internal-link-manager,2 -plugins,powerpress,2 -plugins,searchterms-tagging-2,2 -plugins,wp-statistics,2 -plugins,wysija-newsletters-norty,1 -plugins,quote-rotator,1 -plugins,oik-bwtrace-renamed,1 -plugins,qtranslate-x,1 -plugins,wp-seo-qtranslate-x,1 -plugins,wmdum,1 -plugins,calyx,1 -plugins,get-ctrl-importer,3 -plugins,import-users-from-csv-renamed,1 -plugins,jetpack-easy-playlists,1 -plugins,jetpack-extras,1 -plugins,oik-bwtrace-v2.0.11,1 -plugins,oik-tunes,10 -plugins,oik-types-pregit,1 -plugins,oik-weight-zone-shipping,9 -plugins,oik-weight-zone-shipping-pro-0.1.0,1 -plugins,oik-weightcountry-shipping-pro-v1.4.1,1 -plugins,oik-wzs-rates,6 -plugins,really-simple-captcha,1 -plugins,rss-importer,1 -plugins,spam-reg-check,4 -plugins,user-spam-remover,1 -plugins,woocommerce-2.6.12,1 -plugins,wordpress-mu-domain-mapping-renamed-again,1 -plugins,wordpress-social-login,2 -plugins,hyperdb,1 -plugins,foobar,8 -plugins,force-regenerate-thumbnails,4 -plugins,jetpack-3.9.4,2 -plugins,oik-batch-renamed,2 -plugins,oik-bbpress-ren,2 -plugins,oik-clone-20171114,2 -plugins,oik-cookie-list,5 -plugins,oik-css-git-clone,2 -plugins,oik-edd,6 -plugins,oik-infusionsoft,5 -plugins,oik-requests,5 -plugins,oik-thugin,3 -plugins,oik-todo,5 -plugins,oik-widget-cache,4 -plugins,oik-working-feedback,6 -plugins,Shortcake,3 -plugins,voce-widget-cache,3 -plugins,wp-cli,5 -plugins,wp-super-cache,6 -plugins,wpdb-alt,2 -plugins,bobbing,7 -plugins,oik-bwtrace-2.0.11,1 -plugins,play,3 -plugins,add-paragraphs-option-to-text-widget,1 -plugins,hello-dolly,5 -plugins,multi-site-plugins-add-new,1 -plugins,multisite-cloner,3 -plugins,ns-cloner-site-copier,2 -plugins,oik-batch-pregit,1 -plugins,oik-presentation,6 -plugins,oik-weight-zone-shipping-pro-v0.1.0,1 -plugins,woocommerce-2.6,1 -plugins,woocommerce-2.6.6,1 -plugins,woocommerce-3.0,1 -plugins,woocommerce-add-countries,3 -plugins,Automattic-developer-57628b7,1 -plugins,developer-v1.0.0,1 -plugins,floating-admin-menu,1 -plugins,html5-slideshow-presentations,1 -plugins,monster-widget,1 -plugins,oik-book,1 -plugins,rewrite-rules-inspector,1 -plugins,sitepush,1 -plugins,user-switching,1 -plugins,vip-scanner,1 -plugins,wp-video-lightbox,1 -plugins,add-linked-images-to-gallery-v01,1 -plugins,bi2,1 -plugins,bulk-move,1 -plugins,directory,2 -plugins,fff-cron-manager,1 -plugins,oik-republish,2 -plugins,paypal-framework,1 -plugins,paypal-responder,1 -plugins,wp-clean-up,1 -plugins,wp-crontrol,1 -plugins,wp-slimstat,3 -plugins,woocommerce-extra-charges-to-payment-gateways,2 -plugins,woocommerce-germanized,1 -plugins,woocommerce-jetpack,2 -plugins,woocommerce-multilingual,2 -plugins,woocommerce-poor-guys-swiss-knife,2 -plugins,woocommerce-product-gift-wrap,2 -plugins,woocommerce-quantity-increment,2 -plugins,woocommerce-role-based-methods,2 -plugins,woocommerce-smart-coupons,2 -plugins,woocommerce-volume-discount-coupons,2 -plugins,woocommerce-wholesale-prices,2 -plugins,woocommerce-wholesale-prices-premium,2 -plugins,woosidebars,2 -plugins,wpml-media,2 -plugins,wpml-string-translation,2 -plugins,wpml-translation-management,2 -plugins,oik-weight-zone-shipping-pro-v0.2.2,1 -plugins,dropcaps-shortcodes-and-widget,1 -plugins,oik-dropcap,2 -plugins,simple-drop-cap,1 -plugins,genesis-layout-extras,1 -plugins,wp-seo,1 -plugins,more-privacy-options,3 -plugins,wordpress-mu-domain-mapping-qw,1 -plugins,easy-instagram,1 -plugins,gtrans,1 -plugins,oik-bwtrace-too-new-for-oik-2.5,1 -plugins,popover,2 -plugins,recent-posts,2 -plugins,simple-instagram,1 -plugins,smart-bbboing,2 -plugins,wp-customer-reviews,1 -plugins,wpremote,1 -plugins,oik-intouchcrm,2 -plugins,webchemistry-core,1 -plugins,webchemistry-googleplugin,1 -plugins,webchemistry-heatmap,1 -plugins,webchemistry-searchenginesettings,1 -plugins,webchemistry-seoboost,1 -plugins,webchemistry-shortcodes,1 -plugins,wordpress-mu-domain-mapping-local,1 -plugins,job-manager,2 -plugins,menu-exporter,2 -plugins,ultimate-tinymce,3 -plugins,user-role-editor,3 -plugins,velvet-blues-update-urls,3 -plugins,wordpress-php-info,1 -plugins,wponlinebackup,3 -plugins,google-sitemap-plugin,2 -plugins,googleanalytics,3 -plugins,resume-submissions-job-postings,1 -plugins,timthumb-vulnerability-scanner,3 -plugins,wp-job-manager,1 -plugins,oik-renamed,2 -plugins,rjd,1 -plugins,ultimate-tinymce-7,1 -plugins,wp-spamfree-7,1 -plugins,oik-2.5,1 -plugins,oik-bwtrace-2.0.6,1 -plugins,username-changer,1 -plugins,wp-email-login,2 -plugins,wp-google-maps,2 -plugins,bb-plugin,2 -plugins,css,2 -plugins,divi-builder,1 -plugins,gcf,2 -plugins,gutenberg-2.0.0,1 -plugins,gutenberg-course,2 -plugins,jsforwp-blocks,2 -plugins,oik-batch-pre-resolving-cd-problem,2 -plugins,phpunit,3 -plugins,restrict-shipping-classes,3 -plugins,shortcake-gutenberg,3 -plugins,wppompey,3 -plugins,mtouch-quiz,1 -plugins,WordPress-Importer,3 -plugins,commentluv-premium,1 -plugins,easy-nivo-slider,1 -plugins,fatpanda-facebook-comments,1 -plugins,image-widget,2 -plugins,infusionsoft-web-tracker,1 -plugins,oik-content,2 -plugins,oik-thesis-featurebox,2 -plugins,really-simple-facebook-twitter-share-buttons,1 -plugins,share-and-follow,1 -plugins,shareaholic,2 -plugins,thank-me-later,1 -plugins,tweet-old-post,1 -plugins,vslider,1 -plugins,what-would-seth-godin-do,2 -plugins,zero_tolerance,1 -plugins,backupbuddy,2 -plugins,cbnet-ping-optimizer,1 -plugins,commentluv,1 -plugins,dd-formmailer,1 -plugins,duplicator,2 -plugins,easy-privacy-policy,1 -plugins,exec-php,1 -plugins,featured-content-gallery,1 -plugins,feed-footer,1 -plugins,infolinks-officlial-plugin,1 -plugins,maintenance-mode,2 -plugins,quick-adsense,1 -plugins,search-and-replace,1 -plugins,seo-automatic-links,1 -plugins,share-this,1 -plugins,simple-tags,1 -plugins,sitemap-generator,1 -plugins,transposh-translation-filter-for-wordpress,1 -plugins,tubepress,1 -plugins,twitter-tools,2 -plugins,twitter-tools-bitly-links,1 -plugins,ultimate-plugins-smart-update-pinger,1 -plugins,worldlogger-live-web-analytics,1 -plugins,wp-db-backup,1 -plugins,wp-polls,1 -plugins,wp-postviews,1 -plugins,wp-print,1 -plugins,wp-responder-email-autoresponder-and-newsletter-plugin,1 -plugins,WPRobot3,1 -plugins,acf-options-page,1 -plugins,aryo-activity-log,1 -plugins,backupbuddy.hold,1 -plugins,backupcreator.hold,1 -plugins,better-recent-posts-widget,1 -plugins,cookie-law-info,2 -plugins,cool-timeline-pro,1 -plugins,custom-post-type-ui,2 -plugins,dvteam,1 -plugins,featured-video-plus,1 -plugins,go_portfolio,1 -plugins,options-framework,1 -plugins,page-list,1 -plugins,post-types-order,1 -plugins,simple-custom-css,1 -plugins,site-icon-pro,1 -plugins,soil,1 -plugins,the-grid,1 -plugins,vc-extensions-bundle,1 -plugins,wp-custom-cssjs,1 -plugins,wp-google-maps-gold,1 -plugins,wp-google-maps-pro,1 -plugins,wp-rocket,1 -plugins,wp-smushit.hold,1 -plugins,CMB2,1 -plugins,wysija-newsletters,4 -plugins,mad-mimi-broken,1 -plugins,sociable-broken,1 -plugins,genesis-enews-extended,1 -plugins,.git,1 -plugins,27918,1 -plugins,admin,1 -plugins,backup-qw,1 -plugins,botnet,1 -plugins,bs8484,1 -plugins,bugrit,2 -plugins,cli,1 -plugins,climate,1 -plugins,colours2woo,1 -plugins,commentason,1 -plugins,dtib-review,2 -plugins,effort,1 -plugins,g-c-w,1 -plugins,g-pre-g,1 -plugins,genesis-header-nav-develop,1 -plugins,getver,1 -plugins,GlotPress-WP,1 -plugins,hello,2 -plugins,iphone-images,1 -plugins,issue-49,1 -plugins,kate,1 -plugins,log-urgh,1 -plugins,my-plugin,1 -plugins,myplugins,1 -plugins,OAuth1,1 -plugins,oik-adr,1 -plugins,oik-api,1 -plugins,oik-business,1 -plugins,oik-bwtrace.php,1 -plugins,oik-cartcountry-shipping,1 -plugins,oik-child-theme,1 -plugins,oik-clone-wxr,1 -plugins,oik-cookie-law,1 -plugins,oik-css-broken-1029,1 -plugins,oik-downloads,1 -plugins,oik-external-link-warning-pregit,1 -plugins,oik-getimage,1 -plugins,oik-html-importer,1 -plugins,oik-html2markdown,1 -plugins,oik-i18n,1 -plugins,oik-jquery,1 -plugins,oik-l10n,1 -plugins,oik-mailchimp,1 -plugins,oik-make,1 -plugins,oik-money,1 -plugins,oik-options,1 -plugins,oik-payments,1 -plugins,oik-pgs,1 -plugins,oik-policies,1 -plugins,oik-privacy-policy.php,1 -plugins,oik-pro,1 -plugins,oik-rewrite,1 -plugins,oik-shutdown,1 -plugins,oik-signup-user-notification,1 -plugins,oik-squeeze-pregit,1 -plugins,oik-syndicate,1 -plugins,oik-tip,1 -plugins,oik-woo,3 -plugins,oik-wzs-rates-pregit,1 -plugins,oik-zip,1 -plugins,oldplay,2 -plugins,oobar,2 -plugins,opcache,1 -plugins,owzs-pro,1 -plugins,php71-fixes,1 -plugins,php72-fixes,1 -plugins,play-rel1,2 -plugins,play-rel2,2 -plugins,plugin-dependencies,1 -plugins,PostMeta,1 -plugins,premium-plugins,1 -plugins,relocateme,1 -plugins,sample,1 -plugins,shortcode-ui,3 -plugins,sitemap-redirect,1 -plugins,slog,1 -plugins,sql-csv,1 -plugins,storm10,1 -plugins,tennis,1 -plugins,test-41257,1 -plugins,testapi,1 -plugins,tides,1 -plugins,twentytwelve-copied-from-theme,1 -plugins,txt2md,1 -plugins,unserialize,1 -plugins,woocommerce-currency-switcher,1 -plugins,woocommerce-uk-counties,1 -plugins,wordpress-develop-tests-svn-symlink,1 -plugins,wp-browscap,1 -plugins,wp-downloads,1 -plugins,WP-Parser,2 -plugins,y,1 -plugins,z,1 -plugins,jetpack-renamed,1 -plugins,wp-migrate-db-0.9,1 -plugins,BuddyPress,1 -plugins,welcome-pack,1 -plugins,wp-geo,1 -plugins,better-wp-security,1 -plugins,editorial-calendar,1 -plugins,played,1 -plugins,sf-author-url-control,1 -plugins,import-html-pages,1 -plugins,link-manager,1 -plugins,members,2 -plugins,oa-social-login,1 -plugins,user-photo,1 -plugins,wordpress-simple-survey,1 -plugins,wp-memory-usage,1 -plugins,all-in-one-favicon,1 -plugins,Basic-Auth-master,1 -plugins,custom-metadata,1 -plugins,email-as-username-for-wp-members,1 -plugins,groups,1 -plugins,health-check,1 -plugins,inc,1 -plugins,my-wp-health-check,1 -plugins,OAuth1-master,1 -plugins,oik-bwtrace-2.0.12,1 -plugins,oik-cmb,1 -plugins,oik-user-v0.5,1 -plugins,pods,2 -plugins,public-post-preview,1 -plugins,push-syndication,1 -plugins,shareadraft,1 -plugins,shareadraft-master,1 -plugins,shipping-awd,1 -plugins,simple-preview,1 -plugins,spam-destroyer,1 -plugins,testimonials-by-woothemes,1 -plugins,woocommerce-2.5.2,1 -plugins,woocommerce-weight-country-based-shipping,1 -plugins,wordpress-security-lab,1 -plugins,youtube_oembed_fix,1 -plugins,actions,1 -plugins,cornerstone,1 -plugins,oik-3.0.2,1 -plugins,shortcode-reference,1 -plugins,acf,1 -plugins,advanced-custom-fields-v4.3.9,1 -plugins,advanced-theme-switcher,1 -plugins,cloner,1 -plugins,contact-form,1 -plugins,custom-content-type-manager,1 -plugins,custompress,1 -plugins,e-newsletter,1 -plugins,edd,1 -plugins,gravity-forms-custom-post-types,1 -plugins,ml-slider,1 -plugins,multisite-content-copier,1 -plugins,oik-bwtracev2.0.12,1 -plugins,oik-f,1 -plugins,oik-fields-ren,1 -plugins,oik-ms-renamed,1 -plugins,oik-nivo-slider-1.3,1 -plugins,oik-rwd-ren,1 -plugins,oik-sc-help-renamed,1 -plugins,oik-types-1.6,1 -plugins,recent-global-posts-widget,1 -plugins,remember-me-checked,1 -plugins,saved_plugins,1 -plugins,slide-in,1 -plugins,wp-smush-pro,1 -plugins,wpmu-dev-plusone,1 -plugins,aqua-page-builder,1 -plugins,oik-wcs-renamed,1 -plugins,paypal-pro,1 -plugins,themes,1 -plugins,slideshow-manager,1 -plugins,wp-simple-rss-feed-reader,1 -plugins,acf-repeater,1 -plugins,advanced-custom-fields-fucked,1 -plugins,google-map-shortcode,1 -plugins,gravityformsmailchimp,1 -plugins,my-page-order,1 -plugins,page-tree,1 -plugins,slickr-flickr,1 -plugins,social,1 -plugins,subpages-widget,1 -plugins,subscribe2,1 -plugins,taxonomy-widget,1 -plugins,wordpress-custom-post-type-archive,1 -plugins,wpgmappity,1 -themes,.,104 -themes,..,104 -themes,.idea,2 -themes,altitude-pro,3 -themes,bag2013,3 -themes,elitist,1 -themes,genesis,31 -themes,genesis-2.1.3,1 -themes,genesis-2.2.0,1 -themes,oik2012,7 -themes,oik20120,5 -themes,omg,1 -themes,rf0122,1 -themes,rjdap,2 -themes,simplest,1 -themes,storefront,4 -themes,twentyeleven,57 -themes,twentyfifteen,43 -themes,twentyfourteen,51 -themes,twentyseventeen,26 -themes,twentysixteen,23 -themes,twentyten,56 -themes,twentythirteen,53 -themes,twentytwelve,57 -themes,wpg0216,4 -themes,wpg0216bp,2 -themes,act1103,2 -themes,act0402,1 -themes,act0404,1 -themes,act0408,1 -themes,act0408a,1 -themes,aldworth,1 -themes,aldworth0628,1 -themes,Avada,1 -themes,constructzine-lite,1 -themes,hsoh0914,4 -themes,hsoh0914a,4 -themes,aumabs0402a,1 -themes,aumabs0402b,1 -themes,aumabs0403,1 -themes,aumabs0417,1 -themes,aumabs0425,2 -themes,aumabs0507,2 -themes,custom-community,1 -themes,goodtheme-lead,1 -themes,personaltrainer,2 -themes,bba0605,1 -themes,bba0615,1 -themes,bba0622,1 -themes,bba0720c,2 -themes,bcs0313,1 -themes,bcs0313c,1 -themes,destro,1 -themes,dkret3,1 -themes,nuance-v1.2.3,1 -themes,pinboard,1 -themes,rockstar,1 -themes,spartan,1 -themes,survive0310,4 -themes,genesis-SB,3 -themes,air-balloon-lite,1 -themes,pictorico,1 -themes,sb0515,2 -themes,bwdesign1028,3 -themes,bwwow1130,2 -themes,bwwow1203,2 -themes,classic,5 -themes,cwiccer1207,3 -themes,default,5 -themes,gsph1103,1 -themes,pob1028,1 -themes,sb1028,2 -themes,sb2010,1 -themes,sb2010_wm,1 -themes,theme465,1 -themes,broad-builders,1 -themes,bw2013,4 -themes,bw20131004,2 -themes,genesis-bw,3 -themes,no-sidebar-pro,2 -themes,parallax-pro,5 -themes,workstation-pro,2 -themes,amazing-times,2 -themes,bg-mobile-first,2 -themes,bwblogwordpress,2 -themes,bwdesign0622,1 -themes,bwdesign0715,1 -themes,bwdesign0830,1 -themes,bwdesign0830c,1 -themes,diligent,1 -themes,Engage,2 -themes,freprotheme,1 -themes,genesis-a2z,4 -themes,genesis-broken,1 -themes,genesis-hm,5 -themes,genesis-odea,3 -themes,genesis-oik,14 -themes,journal,2 -themes,minimalist-pro,2 -themes,novo,1 -themes,one-pager-genesis-master,1 -themes,twenty-seven-pro,2 -themes,ccd1001,1 -themes,ccd1001c,1 -themes,cjw0118,2 -themes,cjw20160315,2 -themes,cjw20160316,1 -themes,royal,1 -themes,cc0512,1 -themes,genesis-cc0512,1 -themes,hm140702,2 -themes,rf0510c,3 -themes,dws,1 -themes,rmt4dws,1 -themes,dws2016,2 -themes,dws2016-original,1 -themes,dwscomlaytfh,1 -themes,edw0112,2 -themes,edw0114,1 -themes,edw0121,1 -themes,edw0125,1 -themes,edw0203,1 -themes,edw0616,1 -themes,edw0911,1 -themes,edge1117,1 -themes,edge1117c,1 -themes,edge1202,1 -themes,edge120201,3 -themes,edge120201c,3 -themes,edge1202c,1 -themes,eft0621,2 -themes,eft0712,2 -themes,eft1009,3 -themes,eft1017,3 -themes,eft1018,3 -themes,eft1018r,3 -themes,heft0204,1 -themes,heft0205,2 -themes,heft1229,1 -themes,heft1229c,2 -themes,heft1229gc,1 -themes,architecture,1 -themes,architecture-v1-04,1 -themes,eoci0112,3 -themes,sds_2012,1 -themes,fsp0114,1 -themes,lalu1223,2 -themes,gdwifa,1 -themes,gdwifa20140303,2 -themes,genesis-gdw,2 -themes,gta0422,1 -themes,gta0614,1 -themes,gta0621,1 -themes,gta0722c,2 -themes,Builder-Cohen,1 -themes,Builder-Madison,1 -themes,Builder-Paige,1 -themes,genesis-2.2.7,1 -themes,genesis-hehall,1 -themes,siteground-wp23,1 -themes,siteground-wp63,1 -themes,siteground-wp73,1 -themes,Universe,1 -themes,World,1 -themes,eft121212,2 -themes,eft20140523,1 -themes,eft20140523-qw,1 -themes,eft20140527,3 -themes,scr0909,3 -themes,sorbet,2 -themes,superhero,1 -themes,genesis-hms,1 -themes,hms0820,2 -themes,hms0826,2 -themes,hms0906,2 -themes,hms0907,2 -themes,sh0412,1 -themes,shell-lite,1 -themes,eft,1 -themes,eft1004,1 -themes,pob1018,2 -themes,DailyJournal,3 -themes,dailyjournal-olc,3 -themes,Corporative,1 -themes,Corporative-child,1 -themes,genesis-v2.2.6,2 -themes,hm120129,3 -themes,hm120206,4 -themes,hm120206c,4 -themes,hsoh0922,4 -themes,hsoh0928bp,3 -themes,hsoh1027bp,4 -themes,BlueMist,2 -themes,Feather,2 -themes,InterPhase,2 -themes,PureType,2 -themes,responsive,1 -themes,Trim,2 -themes,dwscomlay,1 -themes,jbr,1 -themes,jbrbernhard,1 -themes,jbrpapyrus,1 -themes,jbrpapyrus2,1 -themes,jbrpapyrus26,1 -themes,cjw1118,1 -themes,cjw1123,1 -themes,cjw1123c,1 -themes,cjw1124,1 -themes,cjw1128,1 -themes,cjw1128c,1 -themes,pcs1013,1 -themes,lalu0915,1 -themes,Magnificent,1 -themes,retro-fitted,1 -themes,retro-fitted-child,1 -themes,Artisteer41,3 -themes,oik0808,3 -themes,oik0819c,3 -themes,oik0917t,4 -themes,oik0918,3 -themes,oik310816,5 -themes,oik310816c,4 -themes,oik410130,4 -themes,oik410130-1.1,2 -themes,oik410130c,4 -themes,oik410130c-1.1,2 -themes,oik410923,4 -themes,oik120815,1 -themes,attitude,1 -themes,nivo2011,5 -themes,oobit,6 -themes,vantage,2 -themes,dailyjournal-olc2.3,1 -themes,DailyJournal2.3,2 -themes,olc0618,2 -themes,olc120815,2 -themes,olc120815c,3 -themes,oobit-extras,1 -themes,alver0620,1 -themes,DailyJournal2.4,1 -themes,gsph1019,1 -themes,pob1021,1 -themes,pob1027,1 -themes,genesis-image,6 -themes,genesis-paap,2 -themes,breakpoint,1 -themes,in-the-beginning,1 -themes,Nominal,1 -themes,maximus,2 -themes,maximus-rf,2 -themes,rf0202,2 -themes,rf0227,2 -themes,rf0227c,2 -themes,rf0311,5 -themes,rf0311c,4 -themes,rf0403,2 -themes,rf0403c,2 -themes,rf0510,2 -themes,act0331,1 -themes,bag2013-v0.1,2 -themes,eps0906,1 -themes,fabt120330,1 -themes,gkz1116,1 -themes,japics1102,2 -themes,li020226,1 -themes,mdt1209,1 -themes,oobit v1.0,1 -themes,pcs0809,1 -themes,pcs0822,1 -themes,pcs1003,1 -themes,phoenix0516,1 -themes,rcgc0318,1 -themes,rcgc0818,1 -themes,rcr0725,2 -themes,rctc0130,2 -themes,rcwd0415,1 -themes,s2s0515,2 -themes,s2s0515c,2 -themes,st0515,1 -themes,tl0515,1 -themes,yellow0117,1 -themes,centita,3 -themes,centita3.0,2 -themes,centita30c,2 -themes,rjdap-0.0.3,1 -themes,rjdap-clone,1 -themes,__MACOSX,1 -themes,centita3.0-7,1 -themes,centita30c-7,1 -themes,genesis-2.2.6,1 -themes,imbalance,1 -themes,modernbloggerpro,1 -themes,rjdpp,1 -themes,rngs0414,3 -themes,rngs0414c,3 -themes,rngs0721,2 -themes,rngs0721-ren,1 -themes,rngs0721-wtf,1 -themes,rngs0721c,2 -themes,rngs0827,2 -themes,sol121012,2 -themes,sol121012c,2 -themes,sol150508,2 -themes,Divi,1 -themes,wp-pompey,3 -themes,survive1210,2 -themes,trcg120403,3 -themes,trcg120403c,3 -themes,symondson0903,1 -themes,symondson0903c,1 -themes,thesis_16,1 -themes,lifestyle,1 -themes,szerelmey,1 -themes,genesis-tags,2 -themes,atahualpa,1 -themes,genesis-sample,1 -themes,genesis-wbwb,1 -themes,wbwb20141021,2 -themes,_oik,1 -themes,2014,1 -themes,2015,1 -themes,2016,1 -themes,aumabs0507c,1 -themes,aumabs0520c,1 -themes,bag2013-0616,1 -themes,bag2013-0626,1 -themes,bag2013-saved,1 -themes,bwdesign120209,1 -themes,bwdesign120209c,1 -themes,bwwow111120,1 -themes,cjw20160316w,1 -themes,eie120910c,2 -themes,genesis-aati,1 -themes,genesis-image-pregit,1 -themes,jquery-UI,1 -themes,jquery-ui-1.12.1.custom,1 -themes,jquery-ui-themes-1.12.1,1 -themes,oik0917,1 -themes,oik0917c,1 -themes,oik0917r,1 -themes,oik0917s,1 -themes,oik120206,1 -themes,oik120206c,1 -themes,oik310816c-buggered,1 -themes,oik401126,1 -themes,oik401126-art4,1 -themes,oik410326,2 -themes,oik410923c,1 -themes,oik420130,1 -themes,oik420130lm,1 -themes,oik420130wp,1 -themes,olc130611,1 -themes,psc0211,1 -themes,style,1 -themes,survive0310-art4,1 -themes,survive1120,2 -themes,t10scom0201,1 -themes,t10scom120128,1 -themes,thematic,1 -themes,trcg121026,1 -themes,trtc0104,1 -themes,trtc0212,1 -themes,trtc0225,1 -themes,trtc0225c,1 -themes,trtc1230,1 -themes,Untitled,1 -themes,twentyfifteen-v1.7,1 -themes,twentysixteen-symlinked-gitted,1 -themes,bp-default,2 -themes,p2,1 -themes,wpg0216bp-renamed,1 -themes,bp1027,1 -themes,hsoh0922bp,1 -themes,hsoh1015,1 -themes,boldy,1 -themes,business-lite,1 -themes,eie120910,1 -themes,frantic,1 -themes,Innova,1 -themes,sh0612,1 -themes,asteria-lite,1 -themes,blackbird,1 -themes,blackbirdtheme-trial,1 -themes,match,1 -themes,mystile,1 -themes,nivoblackbird,1 -themes,nuance-v1.2.4,1 -themes,t40,1 -themes,wonderflux,1 -themes,minn-lite,1 -themes,aventurine,1 -themes,dtib0601,1 -themes,dtib0601a,1 -themes,dtib0723a,1 -themes,genesis-2.2.3,1 -themes,pcs20141209,1 -themes,sleekphoto,1 -themes,twentyeleven-2.1,1 -themes,uf-scribe,1 -themes,uf-spirit,1 -themes,upfront,1 -themes,Martha,1 -themes,Martha1,1 -themes,wporg-developer,1 -themes,etiquette-wp,1 -themes,yellowbrand,1 -themes,yellowbrand-oik,1 -Totals,1190,4437 +Type,Component,Count,Author,Third Party,Tests +plugins,.idea,4,,1, +plugins,akismet,85,Automattic,1, +plugins,backwpup,16,Inpsyde GmbH,1, +plugins,bbpress,7,The bbPress Community,1, +plugins,bowe-codes,1,imath,1, +plugins,buddypress,6,,1, +plugins,cookie-cat,46,bobbingwide,,1 +plugins,debug-bar,5,wordpressdotorg,1, +plugins,developer,1,Automattic,1, +plugins,distributor,2,Taylor Lovett 10up,1,1 +plugins,drafts-for-friends,3,bobbingwide,1, +plugins,easy-digital-downloads,10,Pippin Williamson and Company,,1 +plugins,easy-fancybox,1,RavanH,1, +plugins,easy-pricing-tables,1,,1, +plugins,fancy-box,1,,1, +plugins,fancybox-for-wordpress,1,,1, +plugins,feedwordpress,1,Charles Johnson,1, +plugins,genesis-beta-tester,1,Nathan Rice,1, +plugins,genesis-variable-footer-widgets,1,,1, +plugins,github-release-downloads,1,Ivan Ridao Freitas,1, +plugins,log-deprecated-notices,2,Andrew Nacin,1, +plugins,membership,6,Barry (Incsub) Cole (Incsub),1, +plugins,oik,87,bobbingwide,,1 +plugins,oik-batch,31,bobbingwide,,1 +plugins,oik-batchmove,19,bobbingwide,, +plugins,oik-bob-bing-wide,42,bobbingwide,,1 +plugins,oik-bob-bing-wide-1.21,1,,1, +plugins,oik-bp-signup-email,5,bobbingwide,1, +plugins,oik-bwtrace,63,bobbingwide,,1 +plugins,oik-clone,21,bobbingwide,, +plugins,oik-debug-filters,14,bobbingwide,1, +plugins,oik-email-signature,17,bobbingwide,1, +plugins,oik-fields,54,bobbingwide,, +plugins,oik-fields-1.36,1,,1, +plugins,oik-nivo-slider,42,bobbingwide,, +plugins,oik-plugins,17,bobbingwide,, +plugins,oik-privacy-policy,53,bobbingwide,, +plugins,oik-sc-help,20,bobbingwide,,1 +plugins,oik-sc-help-1.9,1,,1, +plugins,oik-shortcodes,17,bobbingwide,, +plugins,oik-sites,6,bobbingwide,, +plugins,oik-types,37,bobbingwide,, +plugins,popdom-themes-backup,1,,1, +plugins,popup-domination,2,PopUp Domination Team,1, +plugins,query-monitor,6,John Blackbourn,1,1 +plugins,rfi,3,bobbingwide,1, +plugins,schunter,7,bobbingwide,, +plugins,setup,20,bobbingwide,1, +plugins,sg-cachepress,3,SiteGround,1, +plugins,shortcake-ui-demo,1,Mte90,1, +plugins,si-captcha-for-wordpress,11,,1, +plugins,toolbar-theme-switcher,1,Andrey "Rarst" Savchenko,1, +plugins,trac29608,5,bobbingwide,, +plugins,u-buddypress-forum-editor,1,,1, +plugins,visualizer,1,,1, +plugins,woocommerce,22,Automattic,, +plugins,wordpress-importer,27,wordpressdotorg,1, +plugins,wordpress-seo,66,,1, +plugins,wp-charts,2,,1, +plugins,WP-DraftsForFriends,2,Lester 'GaMerZ' Chan,1, +plugins,wp-mail-smtp,4,,1, +plugins,wp-spamfree,2,WP-SpamFree,1, +plugins,wp-top12,5,,,1 +plugins,wpmudev-updates,6,,1, +plugins,add-to-any,9,micropat,1, +plugins,all-in-one-seo-pack,12,,1, +plugins,download-monitor,2,Mike Jolley,1, +plugins,download-monitor-saved,1,,1, +plugins,easy-digital-downloads-free-download,1,,1, +plugins,extended-page-lists,6,grandslambert,1, +plugins,featured-image-widget,13,,1, +plugins,google-analytics-for-wordpress,46,,1, +plugins,google-sitemap-generator,15,,1, +plugins,import-users-from-csv,4,Ulrich Sossou,1, +plugins,ltw-testimonials,11,LessThanWeb,1, +plugins,obsafe_print_r,5,bobbingwide vsgloik,1, +plugins,oik-fum,15,bobbingwide,, +plugins,pc-searchengine-verify,11,Peter Coughlin,1, +plugins,sexybookmarks,8,,1, +plugins,sharebar,3,Monjurul Dolon,1, +plugins,si-contact-form,15,Mike Challis Ken Carlson,1, +plugins,the-events-calendar,8,Modern Tribe Inc.,1, +plugins,updraftplus,3,UpdraftPlus.Com DavidAnderson,1, +plugins,allow-reinstalls,17,bobbingwide,,1 +plugins,backupwordpress,30,Human Made Limited,1, +plugins,contact-form-7,6,,1, +plugins,fusion-builder,3,ThemeFusion,1, +plugins,fusion-core,3,ThemeFusion,1, +plugins,jetpack,41,Automattic,, +plugins,LayerSlider,1,Kreatura Media,1, +plugins,media-file-renamer,5,Jordy Meow,1, +plugins,oik-css,40,bobbingwide,,1 +plugins,oik-css-pregit,2,,1, +plugins,oik-rwd,37,bobbingwide,, +plugins,oik-window-width,11,bobbingwide,, +plugins,post-type-switcher,16,John James Jacoby,1, +plugins,revslider,3,ThemePunch,1, +plugins,advanced-responsive-video-embedder,1,Nicolas Jonas,1, +plugins,mbo,2,bobbingwide,1, +plugins,oik-popup,10,bobbingwide,, +plugins,oik-rating,9,bobbingwide,1, +plugins,oik-squeeze,18,bobbingwide,, +plugins,oik-testimonials,20,bobbingwide,, +plugins,oik-types-v1.6,1,,1, +plugins,oik-v2.6-alpha.0525,1,,1, +plugins,oik-video,22,bobbingwide,, +plugins,promotion-slider,1,,1, +plugins,smart-google-code-inserter,1,,1, +plugins,nextgen-gallery,13,,1, +plugins,slideshow-gallery-pro,3,,1, +plugins,appointments,2,Hakan Evin ,1, +plugins,contus-video-gallery,1,,1, +plugins,flagallery-skins,1,,1, +plugins,flash-album-gallery,1,,1, +plugins,image-protector,1,Hirofumi Ohta,1, +plugins,revostock-gallery,1,RevoStock,1, +plugins,sliding-youtube-gallery,1,,1, +plugins,wpcat2tag-importer,2,wordpressdotorg,1, +plugins,bigram,3,bobbingwide,, +plugins,bigram-renamed,1,,1, +plugins,d62wp,7,bobbingwide,, +plugins,frontend-uploader,1,Rinat Khaziev Daniel Bachhuber,1, +plugins,genesis-footer-widgets,10,bobbingwide,, +plugins,genesistant,15,bobbingwide,, +plugins,oik-a2z,9,bobbingwide,,1 +plugins,oik-ajax,11,bobbingwide,, +plugins,oik-media,5,bobbingwide,, +plugins,rest-api,2,,1, +plugins,simple-facebook-connect,6,,1, +plugins,simple-twitter-connect,6,,1, +plugins,widget-wrangler,7,Jonathan Daggerhart,1, +plugins,wpautoembed,2,Corey Wilson Jason Hines Christopher John Jackson,1, +plugins,genesis-responsive-slider,1,StudioPress,1, +plugins,image-carousel,1,GhozyLab Inc.,1, +plugins,wonderplugin-carousel,1,,1, +plugins,wonderplugin-carousel-9.8,1,,1, +plugins,bw-types,3,bobbingwide,1, +plugins,bw-types-pregit,1,,1, +plugins,genesis-connect-woocommerce,3,StudioPress,1, +plugins,greprecated,4,,,1 +plugins,network-privacy,6,,1, +plugins,oik-blogger-redirect,10,bobbingwide,1, +plugins,oik-bwtrace-git,1,,1,1 +plugins,oik-lib,12,bobbingwide,, +plugins,oik-ms,18,bobbingwide,, +plugins,oik-mshot,12,bobbingwide,, +plugins,oik-pregit,1,,1, +plugins,oik-theme-fields,5,bobbingwide,, +plugins,oik-themes,12,bobbingwide,, +plugins,oik-tos,2,bobbingwide,1, +plugins,uk-tides,22,bobbingwide,, +plugins,wc-call-for-price,1,,1, +plugins,woocommerce-call-for-price,1,Algoritmika Ltd,1, +plugins,woocommerce-gateway-paypal-express-checkout,2,Automattic,1, +plugins,wordpress-mu-domain-mapping-renamed,3,,1, +plugins,wp-migrate-db,7,Delicious Brains,1, +plugins,bwdesign,2,bobbingwide,, +plugins,cms-tree-page-view,5,,1, +plugins,cron-view,2,,1, +plugins,Custom-Meta-Boxes,2,,1,1 +plugins,debug-bar-cron,2,Zack Tollman Helen Hou-Sandi,1, +plugins,dff,1,,1, +plugins,five-star-rating,1,Andrew Alba,1, +plugins,gallery-widget,1,,1, +plugins,hookr,1,@explodybits,1, +plugins,json-rest-api,2,,1, +plugins,oik-bob-bing-wide-1.30.2,1,,1, +plugins,oik-bwtrace.2.0.11,1,,1, +plugins,oik-fields.x,1,,1, +plugins,oik-plugin-fields,4,bobbingwide,, +plugins,oik-popup-saved,1,,1, +plugins,oik-post-type-support,11,bobbingwide,, +plugins,oik-responsive-menu,11,bobbingwide,1, +plugins,oik-shortcodes-a2z,5,bobbingwide,,1 +plugins,oik-sidebar,8,bobbingwide,1, +plugins,quick-pagepost-redirect-plugin,2,,1, +plugins,redirection,10,John Godley,1, +plugins,regenerate-thumbnails,8,Alex Mills (Viper007Bond),1, +plugins,siteorigin-panels,4,SiteOrigin,1, +plugins,slideshow-gallery-2,1,,1, +plugins,stats,1,Automattic,1, +plugins,sub-page-summary,4,,1, +plugins,tinymce-advanced,5,Andrew Ozz,1, +plugins,wcs-qr-code-generator,4,WP Code Snippets (Luke America),1, +plugins,widget-importer-exporter,5,Steven Gliebe,1, +plugins,widget-output-cache,1,Kaspars Dambis,1, +plugins,wpaudio-mp3-player,10,,1, +plugins,youtube-embed-plus,1,,1, +plugins,gravityforms,12,rocketgenius,1, +plugins,portfolio-slideshow,6,Raygun,1, +plugins,underconstruction,14,Jeremy Massel,1, +plugins,custom-contact-forms,1,Taylor Lovett,1, +plugins,lightbox-plus,2,,1, +plugins,mailchimp-widget,1,James Lafferty,1, +plugins,sexybookmarks-broke,1,,1, +plugins,contact-form-manager,1,xyzscripts.com,1, +plugins,ecwid-shopping-cart,1,Ecwid Team,1, +plugins,essential-grid,1,ThemePunch,1, +plugins,exploit-scanner,1,Donncha O Caoimh,1, +plugins,js_composer,2,Michael M - WPBakery.com,1, +plugins,limit-login-attempts,3,Johan Eenfeldt,1, +plugins,mailchimp-for-wp,2,ibericode,1, +plugins,master-slider,1,averta,1, +plugins,masterslider,1,averta,1, +plugins,screets-lc,1,Screets Team,1, +plugins,Ultimate_VC_Addons,1,Brainstorm Force,1, +plugins,w3-total-cache,2,Frederick Townes,1, +plugins,wp-db-backup-made,1,,1, +plugins,wp-maintenance-mode,1,Designmodo,1, +plugins,wp-optimize,3,David Anderson Ruhani Rabin Team Updraft,1, +plugins,wp-smushit,2,,1, +plugins,wpclef,2,Clef,1,1 +plugins,yith-woocommerce-wishlist,1,,1, +plugins,cookie-batch,2,,1, +plugins,cookie-category,6,bobbingwide,, +plugins,cookie-category-pregit,1,,1, +plugins,cookie-control,3,,1, +plugins,oik-bwtrace-ren,1,,1, +plugins,oik-ren,1,,1, +plugins,wp-to-twitter,5,Joseph Dolson,1, +plugins,adamrob-parallax-scroll,1,,1, +plugins,audio,5,Scott Taylor,1, +plugins,bbboing,20,bobbingwide,, +plugins,beaver-builder-lite-version,1,,1, +plugins,classic-editor,5,WordPress Contributors,1, +plugins,cookie-opt-in,1,,1, +plugins,gutenberg,6,Gutenberg Team,1, +plugins,issue-19,2,,1, +plugins,oik-a2z-pregit,1,,1, +plugins,oik-bbpress,11,bobbingwide,1, +plugins,oik-edd-but-no-edd,1,,1, +plugins,oik-external-link-warning,12,bobbingwide,, +plugins,oik-header,11,bobbingwide,1, +plugins,oik-moreoptions,9,bobbingwide,, +plugins,oik-select-menu,2,bobbingwide,1, +plugins,oik-user,18,bobbingwide,, +plugins,oik-weight-zone-shipping-pro,13,bobbingwide,, +plugins,oik-weightcountry-shipping,16,bobbingwide,, +plugins,plugin-beta-tester,2,mitcho (Michael Yoshitaka Erlewine),1, +plugins,s2member-files,4,,1, +plugins,s2member-logs,4,,1, +plugins,so-widgets-bundle,3,SiteOrigin,1, +plugins,theme-check,1,Otto42 pross,1, +plugins,simple-tweet,1,wokamoto,1, +plugins,youtube,1,Sonicity Plugins,1, +plugins,diy-oik,16,bobbingwide,, +plugins,dws,2,bobbingwide,, +plugins,go-live-update-urls,4,Mat Lipe,1, +plugins,oik-dates,10,bobbingwide,, +plugins,tags,3,bobbingwide,, +plugins,captcha,3,BestWebSoft,1, +plugins,eedge,4,,1, +plugins,epages,3,bobbingwide,1, +plugins,one-click-child-theme,1,tychay,1, +plugins,simple-image-widget,2,,1, +plugins,live-composer-page-builder,1,,1, +plugins,wordfence,6,Wordfence,1, +plugins,wp-htaccess-editor,1,Lukenzi,1, +plugins,wp-performance-score-booster,1,Dipak C. Gajjar,1, +plugins,wp-super-simple-speed,1,,1, +plugins,wpseo-local,1,,1, +plugins,image-store,1,,1, +plugins,jquery-featured-content-gallery,2,,1, +plugins,qtranslate,2,Qian Qin,1, +plugins,ga-google-analytics,1,Jeff Starr,1, +plugins,auto-listings,1,WP Auto Listings,1, +plugins,car-demon,1,CarDemons,1, +plugins,car-sales-pages,1,Jeff Bullins,1, +plugins,carousel-slider,1,Sayful Islam,1, +plugins,foogallery-owl-carousel-template,1,,1, +plugins,genesis-taxonomy-images,1,studiograsshopper themiked,1, +plugins,kiwi-logo-carousel,1,,1, +plugins,logo-carousel,1,,1, +plugins,logo-carousel-slider,1,,1, +plugins,logo-slider,1,EnigmaWeb,1, +plugins,motors-car-dealership-classified-listings,1,,1, +plugins,oik-3.0.1,1,,1, +plugins,oik-fields-pregit,1,,1, +plugins,owl-carousel,1,,1, +plugins,pl-car-dealer,1,Roberto Bruno,1, +plugins,taxonomy-images,1,Michael Fields Ben Huson,1, +plugins,wp-car-manager,1,Never5,1, +plugins,wp-carousel-free,1,ShapedPlugin,1, +plugins,wp-custom-taxonomy-meta,1,,1, +plugins,wp-term-images,1,John James Jacoby,1, +plugins,all-in-one-event-calendar,4,Time.ly Network Inc.,1, +plugins,all-in-one-event-calendar-effed,1,,1, +plugins,options-importer,4,Matthew Boynes,1, +plugins,plugin-activation-status,5,Curtiss Grymala,1, +plugins,revision-control,2,Dion Hulse,1, +plugins,sneak-peek,4,bobbingwide,1, +plugins,wordpress-mu-domain-mapping-disabled,1,,1, +plugins,wordpress-mu-domain-mapping-disabled-again,1,,1, +plugins,wordpress-popup,1,,1, +plugins,awd-weightcountry-shipping,3,,1, +plugins,feed-them-social,1,,1, +plugins,instagram-image-gallery,1,,1, +plugins,mailchimp,1,MailChimp and Crowd Favorite,1, +plugins,megamenu,1,Tom Hemsley,1, +plugins,oik-fields-renamed,2,,1, +plugins,oik-nivo-slider-renamed,1,,1, +plugins,oik-rwd-renamed,1,,1, +plugins,oik-types-renamed,1,,1, +plugins,oik-weightcountry-shipping-pro,11,bobbingwide,, +plugins,pinterest-verify,1,Phil Derksen,1, +plugins,ultimate-coming-soon-page,1,SeedProd,1, +plugins,woocommerce-colors,1,WooThemes,1, +plugins,woocommerce-product-archive-customiser,1,,1, +plugins,cart66-lite,1,,1, +plugins,meta-tag-manager,1,NetWebLogic LLC,1, +plugins,wp-simplemail,1,,1, +plugins,advanced-custom-fields,4,,1, +plugins,bainternet-posts-creation-limits,3,,1, +plugins,bulk-taxonomy-edits,1,Phil Meadows,1, +plugins,business-directory-plugin,1,D. Rodenbaugh,1, +plugins,capability-manager-enhanced,2,,1, +plugins,collapsing-categories,3,,1, +plugins,export-users-to-csv,1,Ulrich Sossou,1, +plugins,import-external-images,3,Marty Thornley,1, +plugins,oik-blogger-importer,3,,1, +plugins,oik-members,4,bobbingwide,1, +plugins,olc,4,bobbingwide,1, +plugins,olc-tweaks,2,Phil Meadows,1, +plugins,p3-profiler,3,GoDaddy.com,1, +plugins,press-permit-core,2,Agapetry Creations LLC,1, +plugins,s2member,3,s2Member / WebSharks Inc.,1, +plugins,supplier-directory,2,Phil Meadows,1, +plugins,tb-testimonials,7,Travis Ballard,1, +plugins,visual-form-builder,1,Matthew Muro,1, +plugins,wp-members,15,Chad Butler,1, +plugins,wp-pagenavi,6,Lester 'GaMerZ' Chan,1, +plugins,Akismet-v3.1.8,1,,1, +plugins,dinlo,6,bobbingwide,,1 +plugins,google-analytics-for-wordpress-renamed,1,,1, +plugins,gutenberg-2.1.0,2,,1, +plugins,gutenberg-2.3.0,2,,1, +plugins,mergebot,1,Delicious Brains,1, +plugins,oik-block,4,Herb Miller,,1 +plugins,oik-cons,3,bobbingwide,1, +plugins,oik-css3,2,bobbingwide,1, +plugins,oik-git-clone,1,,1,1 +plugins,oik-libs,11,bobbingwide,,1 +plugins,oik-read-more,10,bobbingwide,, +plugins,us-tides,11,bobbingwide,, +plugins,wordpress-beta-tester,6,,1, +plugins,wordpress-develop-tests,12,bobbingwide,, +plugins,efficient-related-posts,2,Aaron D. Campbell,1, +plugins,sociable,4,Blogplay,1, +plugins,wp-post-to-twitter,2,Glyn Mooney,1, +plugins,wp-syntax,2,Steven A. Zahm,1, +plugins,blogger-importer,3,wordpressdotorg,1, +plugins,official-statcounter-plugin-for-wordpress,2,,1, +plugins,private-buddypress,3,Dennis Morhardt,1, +plugins,wordpress-mu-domain-mapping,5,,, +plugins,localmail,2,bobbingwide,1, +plugins,acurax-social-media-widget,2,,1, +plugins,alexa-internet,2,,1, +plugins,broken-link-checker,6,Janis Elsts,1, +plugins,cookies-for-comments,2,Donncha O Caoimh,1, +plugins,custom-meta-widget,2,,1, +plugins,follow-my-blog-post,2,,1, +plugins,internal-link-manager,2,Kevin Leary,1, +plugins,powerpress,2,Blubrry,1, +plugins,searchterms-tagging-2,2,,1, +plugins,wp-statistics,2,Mostafa Soufi,1, +plugins,wysija-newsletters-norty,1,,1, +plugins,quote-rotator,1,Luke Howell,1, +plugins,oik-bwtrace-renamed,1,,1, +plugins,qtranslate-x,1,,1, +plugins,wp-seo-qtranslate-x,1,,1, +plugins,wmdum,1,,1, +plugins,calyx,1,bobbingwide,1, +plugins,get-ctrl-importer,3,bobbingwide,1, +plugins,import-users-from-csv-renamed,1,,1, +plugins,jetpack-easy-playlists,1,,1, +plugins,jetpack-extras,1,,1, +plugins,oik-bwtrace-v2.0.11,1,,1, +plugins,oik-tunes,10,bobbingwide,1, +plugins,oik-types-pregit,1,,1, +plugins,oik-weight-zone-shipping,9,bobbingwide,,1 +plugins,oik-weight-zone-shipping-pro-0.1.0,1,,1, +plugins,oik-weightcountry-shipping-pro-v1.4.1,1,,1, +plugins,oik-wzs-rates,6,bobbingwide,, +plugins,really-simple-captcha,1,Takayuki Miyoshi,1, +plugins,rss-importer,1,wordpressdotorg,1, +plugins,spam-reg-check,4,,1, +plugins,user-spam-remover,1,Joel Hardi,1, +plugins,woocommerce-2.6.12,1,,1, +plugins,wordpress-mu-domain-mapping-renamed-again,1,,1, +plugins,wordpress-social-login,2,,1,1 +plugins,hyperdb,1,,1, +plugins,foobar,8,bobbingwide,1, +plugins,force-regenerate-thumbnails,4,Pedro Elsner,1, +plugins,jetpack-3.9.4,2,,1, +plugins,oik-batch-renamed,2,,1, +plugins,oik-bbpress-ren,2,,1, +plugins,oik-clone-20171114,2,,1,1 +plugins,oik-cookie-list,5,bobbingwide,1, +plugins,oik-css-git-clone,2,,1,1 +plugins,oik-edd,6,bobbingwide,,1 +plugins,oik-infusionsoft,5,bobbingwide,1, +plugins,oik-requests,5,bobbingwide,1, +plugins,oik-thugin,3,bobbingwide,1, +plugins,oik-todo,5,bobbingwide,1, +plugins,oik-widget-cache,4,bobbingwide,, +plugins,oik-working-feedback,6,bobbingwide,1, +plugins,Shortcake,3,,1, +plugins,voce-widget-cache,3,John Ciacia Mark Parolisi,1, +plugins,wp-cli,5,,1,1 +plugins,wp-super-cache,6,,1, +plugins,wpdb-alt,2,bobbingwide,1, +plugins,bobbing,7,bobbingwide,, +plugins,oik-bwtrace-2.0.11,1,,1, +plugins,play,3,bobbingwide,1,1 +plugins,add-paragraphs-option-to-text-widget,1,,1, +plugins,hello-dolly,5,,, +plugins,multi-site-plugins-add-new,1,,1, +plugins,multisite-cloner,3,Manuel Razzari Patricio Tarantino,1, +plugins,ns-cloner-site-copier,2,,1, +plugins,oik-batch-pregit,1,,1, +plugins,oik-presentation,6,bobbingwide,1, +plugins,oik-weight-zone-shipping-pro-v0.1.0,1,,1, +plugins,woocommerce-2.6,1,,1, +plugins,woocommerce-2.6.6,1,,1, +plugins,woocommerce-3.0,1,,1, +plugins,woocommerce-add-countries,3,Daniele De Santis,1, +plugins,Automattic-developer-57628b7,1,,1, +plugins,developer-v1.0.0,1,,1, +plugins,floating-admin-menu,1,Till Krüss,1, +plugins,html5-slideshow-presentations,1,,1, +plugins,monster-widget,1,Automattic,1, +plugins,oik-book,1,bobbingwide,1, +plugins,rewrite-rules-inspector,1,Daniel Bachhuber Automattic,1, +plugins,sitepush,1,Mark Rowatt Anderson,1, +plugins,user-switching,1,John Blackbourn,1, +plugins,vip-scanner,1,Automattic (Original code by Pross Otto42 and Thorsten Ott),1, +plugins,wp-video-lightbox,1,Ruhul Amin,1, +plugins,add-linked-images-to-gallery-v01,1,,1, +plugins,bi2,1,,1, +plugins,bulk-move,1,Sudar,1, +plugins,directory,2,,1, +plugins,fff-cron-manager,1,,1, +plugins,oik-republish,2,bobbingwide,1, +plugins,paypal-framework,1,Aaron D. Campbell,1, +plugins,paypal-responder,1,,1, +plugins,wp-clean-up,1,BoLiQuan,1, +plugins,wp-crontrol,1,Edward Dale & John Blackbourn,1, +plugins,wp-slimstat,3,Camu,1, +plugins,woocommerce-extra-charges-to-payment-gateways,2,,1, +plugins,woocommerce-germanized,1,Vendidero,1, +plugins,woocommerce-jetpack,2,Algoritmika Ltd,1, +plugins,woocommerce-multilingual,2,,1, +plugins,woocommerce-poor-guys-swiss-knife,2,Uli Hake,1, +plugins,woocommerce-product-gift-wrap,2,Mike Jolley,1, +plugins,woocommerce-quantity-increment,2,Automattic WooThemes,1, +plugins,woocommerce-role-based-methods,2,WPBackOffice,1, +plugins,woocommerce-smart-coupons,2,WooThemes,1, +plugins,woocommerce-volume-discount-coupons,2,itthinx,1, +plugins,woocommerce-wholesale-prices,2,,1, +plugins,woocommerce-wholesale-prices-premium,2,,1, +plugins,woosidebars,2,WooThemes,1, +plugins,wpml-media,2,,1, +plugins,wpml-string-translation,2,,1, +plugins,wpml-translation-management,2,,1, +plugins,oik-weight-zone-shipping-pro-v0.2.2,1,,1, +plugins,dropcaps-shortcodes-and-widget,1,,1, +plugins,oik-dropcap,2,bobbingwide,1, +plugins,simple-drop-cap,1,Yudhistira Mauris,1, +plugins,genesis-layout-extras,1,David Decker - DECKERWEB,1, +plugins,wp-seo,1,Team Yoast,1, +plugins,more-privacy-options,3,,1, +plugins,wordpress-mu-domain-mapping-qw,1,,1, +plugins,easy-instagram,1,VeloMedia,1, +plugins,gtrans,1,GTranslate,1, +plugins,oik-bwtrace-too-new-for-oik-2.5,1,,1, +plugins,popover,2,WPMU DEV,1, +plugins,recent-posts,2,Barry (Incsub),1, +plugins,simple-instagram,1,Aaron Speer,1, +plugins,smart-bbboing,2,bobbingwide,1, +plugins,wp-customer-reviews,1,Go Web Solutions,1, +plugins,wpremote,1,,1,1 +plugins,oik-intouchcrm,2,bobbingwide,1, +plugins,webchemistry-core,1,Mark Edmunds,1, +plugins,webchemistry-googleplugin,1,Mark Edmunds,1, +plugins,webchemistry-heatmap,1,Mark Edmunds,1, +plugins,webchemistry-searchenginesettings,1,Mark Edmunds,1, +plugins,webchemistry-seoboost,1,Mark Edmunds,1, +plugins,webchemistry-shortcodes,1,Mark Edmunds,1, +plugins,wordpress-mu-domain-mapping-local,1,,1, +plugins,job-manager,2,Tom Townsend,1, +plugins,menu-exporter,2,Joe Hoyle - Human Made Limited,1, +plugins,ultimate-tinymce,3,,1, +plugins,user-role-editor,3,Vladimir Garagulya,1, +plugins,velvet-blues-update-urls,3,VelvetBlues.com,1, +plugins,wordpress-php-info,1,Christopher Ross,1, +plugins,wponlinebackup,3,Jason Woods @ Backup Technology,1, +plugins,google-sitemap-plugin,2,BestWebSoft,1, +plugins,googleanalytics,3,Kevin Sylvestre,1, +plugins,resume-submissions-job-postings,1,,1, +plugins,timthumb-vulnerability-scanner,3,Peter Butler,1, +plugins,wp-job-manager,1,Mike Jolley,1, +plugins,oik-renamed,2,,1, +plugins,rjd,1,,1, +plugins,ultimate-tinymce-7,1,,1, +plugins,wp-spamfree-7,1,,1, +plugins,oik-2.5,1,,1, +plugins,oik-bwtrace-2.0.6,1,,1, +plugins,username-changer,1,Daniel J Griffiths,1, +plugins,wp-email-login,2,,1, +plugins,wp-google-maps,2,,1, +plugins,bb-plugin,2,,1, +plugins,css,2,,1, +plugins,divi-builder,1,Elegant Themes,1, +plugins,gcf,2,,1, +plugins,gutenberg-2.0.0,1,,1, +plugins,gutenberg-course,2,,1, +plugins,jsforwp-blocks,2,Zac Gordon,1, +plugins,oik-batch-pre-resolving-cd-problem,2,,1,1 +plugins,phpunit,3,,1,1 +plugins,restrict-shipping-classes,3,bobbingwide,1, +plugins,shortcake-gutenberg,3,,1, +plugins,wppompey,3,bobbingwide,1, +plugins,mtouch-quiz,1,,1, +plugins,WordPress-Importer,3,,1,1 +plugins,commentluv-premium,1,Andy Bailey,1, +plugins,easy-nivo-slider,1,Phillip Bryan,1, +plugins,fatpanda-facebook-comments,1,,1, +plugins,image-widget,2,Modern Tribe Inc.,1, +plugins,infusionsoft-web-tracker,1,,1, +plugins,oik-content,2,,1, +plugins,oik-thesis-featurebox,2,bobbingwide,1, +plugins,really-simple-facebook-twitter-share-buttons,1,WhileTrue,1, +plugins,share-and-follow,1,Andy Killen,1, +plugins,shareaholic,2,Shareaholic,1, +plugins,thank-me-later,1,,1, +plugins,tweet-old-post,1,Ajay Matharu,1, +plugins,vslider,1,Mr.Vibe,1, +plugins,what-would-seth-godin-do,2,,1, +plugins,zero_tolerance,1,,1, +plugins,backupbuddy,2,Dustin Bolton,1, +plugins,cbnet-ping-optimizer,1,chipbennett,1, +plugins,commentluv,1,Andy Bailey,1, +plugins,dd-formmailer,1,Dagon Design,1, +plugins,duplicator,2,LifeInTheGrid,1, +plugins,easy-privacy-policy,1,Kevin Sparrow,1, +plugins,exec-php,1,Sören Weber,1, +plugins,featured-content-gallery,1,,1, +plugins,feed-footer,1,Sherief Mursyidi,1, +plugins,infolinks-officlial-plugin,1,,1, +plugins,maintenance-mode,2,Michael Wöhrer,1, +plugins,quick-adsense,1,Philip Ze,1, +plugins,search-and-replace,1,Frank Bültge,1, +plugins,seo-automatic-links,1,,1, +plugins,share-this,1,,1, +plugins,simple-tags,1,Amaury BALMER,1, +plugins,sitemap-generator,1,Dagon Design,1, +plugins,transposh-translation-filter-for-wordpress,1,,1, +plugins,tubepress,1,Eric D. Hough,1, +plugins,twitter-tools,2,Crowd Favorite,1, +plugins,twitter-tools-bitly-links,1,Viper007Bond,1, +plugins,ultimate-plugins-smart-update-pinger,1,Ultimate Plugins,1, +plugins,worldlogger-live-web-analytics,1,,1, +plugins,wp-db-backup,1,Austin Matzko,1, +plugins,wp-polls,1,Lester 'GaMerZ' Chan,1, +plugins,wp-postviews,1,Lester 'GaMerZ' Chan,1, +plugins,wp-print,1,Lester 'GaMerZ' Chan,1, +plugins,wp-responder-email-autoresponder-and-newsletter-plugin,1,,1, +plugins,WPRobot3,1,,1, +plugins,acf-options-page,1,Elliot Condon,1, +plugins,aryo-activity-log,1,Yakir Sitbon Maor Chasen Ariel Klikstein,1, +plugins,backupbuddy.hold,1,,1, +plugins,backupcreator.hold,1,,1, +plugins,better-recent-posts-widget,1,David Gewirtz,1, +plugins,cookie-law-info,2,Richard Ashby,1, +plugins,cool-timeline-pro,1,,1, +plugins,custom-post-type-ui,2,WebDevStudios,1, +plugins,dvteam,1,Egemenerd,1, +plugins,featured-video-plus,1,Alexander Höreth,1, +plugins,go_portfolio,1,Granth,1, +plugins,options-framework,1,Devin Price,1, +plugins,page-list,1,webvitaly,1, +plugins,post-types-order,1,Nsp Code,1, +plugins,simple-custom-css,1,John Regan Danny Van Kooten,1, +plugins,site-icon-pro,1,Luca Spiller,1, +plugins,soil,1,Roots,1, +plugins,the-grid,1,Themeone,1, +plugins,vc-extensions-bundle,1,,1, +plugins,wp-custom-cssjs,1,,1, +plugins,wp-google-maps-gold,1,WP Google Maps,1, +plugins,wp-google-maps-pro,1,WP Google Maps,1, +plugins,wp-rocket,1,WP Media,1, +plugins,wp-smushit.hold,1,,1, +plugins,CMB2,1,,1,1 +plugins,wysija-newsletters,4,,1, +plugins,mad-mimi-broken,1,,1, +plugins,sociable-broken,1,,1, +plugins,genesis-enews-extended,1,,1, +plugins,.git,1,,1, +plugins,27918,1,bobbingwide,1, +plugins,admin,1,,1, +plugins,backup-qw,1,,1, +plugins,botnet,1,,1, +plugins,bs8484,1,bobbingwide,1, +plugins,bugrit,2,,1, +plugins,cli,1,,1, +plugins,climate,1,,1, +plugins,colours2woo,1,,1, +plugins,commentason,1,bobbingwide,1, +plugins,dtib-review,2,bobbingwide,1, +plugins,effort,1,bobbingwide,1, +plugins,g-c-w,1,,1, +plugins,g-pre-g,1,,1, +plugins,genesis-header-nav-develop,1,,1, +plugins,getver,1,,1, +plugins,GlotPress-WP,1,,1, +plugins,hello,2,,1,1 +plugins,iphone-images,1,,1, +plugins,issue-49,1,,1, +plugins,kate,1,bobbingwide,1, +plugins,log-urgh,1,,1, +plugins,my-plugin,1,,1,1 +plugins,myplugins,1,,1, +plugins,OAuth1,1,,1, +plugins,oik-adr,1,bobbingwide,1, +plugins,oik-api,1,,1, +plugins,oik-business,1,bobbingwide,1, +plugins,oik-bwtrace.php,1,,1, +plugins,oik-cartcountry-shipping,1,bobbingwide,1, +plugins,oik-child-theme,1,bobbingwide,1, +plugins,oik-clone-wxr,1,bobbingwide,1, +plugins,oik-cookie-law,1,bobbingwide,1, +plugins,oik-css-broken-1029,1,,1, +plugins,oik-downloads,1,bobbingwide,1, +plugins,oik-external-link-warning-pregit,1,,1, +plugins,oik-getimage,1,,1, +plugins,oik-html-importer,1,bobbingwide,1, +plugins,oik-html2markdown,1,bobbingwide,1, +plugins,oik-i18n,1,bobbingwide,,1 +plugins,oik-jquery,1,,1, +plugins,oik-l10n,1,,1, +plugins,oik-mailchimp,1,,1, +plugins,oik-make,1,,1, +plugins,oik-money,1,bobbingwide,1, +plugins,oik-options,1,bobbingwide,1, +plugins,oik-payments,1,bobbingwide,1, +plugins,oik-pgs,1,bobbingwide,1, +plugins,oik-policies,1,,1, +plugins,oik-privacy-policy.php,1,,1, +plugins,oik-pro,1,bobbingwide,1, +plugins,oik-rewrite,1,bobbingwide,1, +plugins,oik-shutdown,1,,1, +plugins,oik-signup-user-notification,1,,1, +plugins,oik-squeeze-pregit,1,,1, +plugins,oik-syndicate,1,bobbingwide,1, +plugins,oik-tip,1,bobbingwide,, +plugins,oik-woo,3,bobbingwide,1, +plugins,oik-wzs-rates-pregit,1,,1, +plugins,oik-zip,1,bobbingwide,, +plugins,oldplay,2,,1, +plugins,oobar,2,bobbingwide,, +plugins,opcache,1,,1, +plugins,owzs-pro,1,,1, +plugins,php71-fixes,1,,1,1 +plugins,php72-fixes,1,,1,1 +plugins,play-rel1,2,,1, +plugins,play-rel2,2,,1, +plugins,plugin-dependencies,1,scribu,1, +plugins,PostMeta,1,,1, +plugins,premium-plugins,1,bobbingwide,1, +plugins,relocateme,1,,1, +plugins,sample,1,,1, +plugins,shortcode-ui,3,Fusion Engineering and community,1, +plugins,sitemap-redirect,1,,1, +plugins,slog,1,bobbingwide,, +plugins,sql-csv,1,,1, +plugins,storm10,1,Herb,1, +plugins,tennis,1,bobbingwide,1, +plugins,test-41257,1,,1,1 +plugins,testapi,1,,1, +plugins,tides,1,,1, +plugins,twentytwelve-copied-from-theme,1,,1, +plugins,txt2md,1,bobbingwide,, +plugins,unserialize,1,,1, +plugins,woocommerce-currency-switcher,1,,1, +plugins,woocommerce-uk-counties,1,Lee Willis,1, +plugins,wordpress-develop-tests-svn-symlink,1,,1, +plugins,wp-browscap,1,,1, +plugins,wp-downloads,1,,1, +plugins,WP-Parser,2,Ryan McCue Paul Gibbs Andrey "Rarst" Savchenko and Contributors,1, +plugins,y,1,,1, +plugins,z,1,bobbingwide,1, +plugins,jetpack-renamed,1,,1,1 +plugins,wp-migrate-db-0.9,1,,1, +plugins,BuddyPress,1,,1,1 +plugins,welcome-pack,1,Paul Gibbs,1, +plugins,wp-geo,1,Ben Huson,1, +plugins,better-wp-security,1,Bit51.com,1, +plugins,editorial-calendar,1,,1, +plugins,played,1,,1, +plugins,sf-author-url-control,1,Grégory Viguier,1, +plugins,import-html-pages,1,,1, +plugins,link-manager,1,WordPress,1, +plugins,members,2,Justin Tadlock,1, +plugins,oa-social-login,1,Claude Schlesser,1, +plugins,user-photo,1,Weston Ruter,1, +plugins,wordpress-simple-survey,1,,1, +plugins,wp-memory-usage,1,Alex Rabe,1, +plugins,all-in-one-favicon,1,Arne Franken,1, +plugins,Basic-Auth-master,1,,1, +plugins,custom-metadata,1,,1, +plugins,email-as-username-for-wp-members,1,New Tribes Mission (Stephen Narwold),1, +plugins,groups,1,itthinx,1, +plugins,health-check,1,The WordPress.org community,1, +plugins,inc,1,,1, +plugins,my-wp-health-check,1,,1, +plugins,OAuth1-master,1,,1, +plugins,oik-bwtrace-2.0.12,1,,1, +plugins,oik-cmb,1,bobbingwide,1,1 +plugins,oik-user-v0.5,1,,1, +plugins,pods,2,,1, +plugins,public-post-preview,1,Dominik Schilling,1, +plugins,push-syndication,1,Automattic,1, +plugins,shareadraft,1,Nikolay Bachiyski,1, +plugins,shareadraft-master,1,,1, +plugins,shipping-awd,1,Andy_P (modified by Mantish to make it state based),1, +plugins,simple-preview,1,Gabriel Nagmay,1, +plugins,spam-destroyer,1,,1, +plugins,testimonials-by-woothemes,1,,1, +plugins,woocommerce-2.5.2,1,,1, +plugins,woocommerce-weight-country-based-shipping,1,,1, +plugins,wordpress-security-lab,1,eConsultants.it Ltd,1, +plugins,youtube_oembed_fix,1,bobbingwide,1, +plugins,actions,1,,1, +plugins,cornerstone,1,,1, +plugins,oik-3.0.2,1,,1, +plugins,shortcode-reference,1,,1, +plugins,acf,1,Elliot Condon,1, +plugins,advanced-custom-fields-v4.3.9,1,,1, +plugins,advanced-theme-switcher,1,Paul Menard (Incsub),1, +plugins,cloner,1,WPMU DEV,1, +plugins,contact-form,1,AdamGold,1, +plugins,custom-content-type-manager,1,,1,1 +plugins,custompress,1,,1, +plugins,e-newsletter,1,WPMUDEV,1, +plugins,edd,1,Bobbing Wide Pippin Williamson,1, +plugins,gravity-forms-custom-post-types,1,,1, +plugins,ml-slider,1,Matcha Labs,1, +plugins,multisite-content-copier,1,WPMU DEV,1, +plugins,oik-bwtracev2.0.12,1,,1, +plugins,oik-f,1,,1, +plugins,oik-fields-ren,1,,1, +plugins,oik-ms-renamed,1,,1, +plugins,oik-nivo-slider-1.3,1,,1, +plugins,oik-rwd-ren,1,,1, +plugins,oik-sc-help-renamed,1,,1, +plugins,oik-types-1.6,1,,1, +plugins,recent-global-posts-widget,1,,1, +plugins,remember-me-checked,1,Aaron Edwards (for Incsub),1, +plugins,saved_plugins,1,,1, +plugins,slide-in,1,,1, +plugins,wp-smush-pro,1,,1, +plugins,wpmu-dev-plusone,1,,1, +plugins,aqua-page-builder,1,,1, +plugins,oik-wcs-renamed,1,,1, +plugins,paypal-pro,1,WooThemes,1, +plugins,themes,1,,1, +plugins,slideshow-manager,1,,1, +plugins,wp-simple-rss-feed-reader,1,Viancen,1, +plugins,acf-repeater,1,Elliot Condon,1, +plugins,advanced-custom-fields-fucked,1,,1, +plugins,google-map-shortcode,1,Alain Gonzalez,1, +plugins,gravityformsmailchimp,1,,1, +plugins,my-page-order,1,,1, +plugins,page-tree,1,,1, +plugins,slickr-flickr,1,Russell Jamieson,1, +plugins,social,1,Crowd Favorite,1, +plugins,subpages-widget,1,,1, +plugins,subscribe2,1,Matthew Robinson,1, +plugins,taxonomy-widget,1,Michael Fields,1, +plugins,wordpress-custom-post-type-archive,1,,1, +plugins,wpgmappity,1,,1, +themes,.idea,2,,1, +themes,altitude-pro,3,,1, +themes,bag2013,3,,1, +themes,elitist,1,,1, +themes,genesis,31,,, +themes,genesis-2.1.3,1,,1, +themes,genesis-2.2.0,1,,1, +themes,oik2012,7,,1, +themes,oik20120,5,,1, +themes,omg,1,,1, +themes,rf0122,1,,1, +themes,rjdap,2,,1, +themes,simplest,1,,1, +themes,storefront,4,,1, +themes,twentyeleven,57,,1, +themes,twentyfifteen,43,,1, +themes,twentyfourteen,51,,1, +themes,twentyseventeen,26,,1, +themes,twentysixteen,23,,1, +themes,twentyten,56,,1, +themes,twentythirteen,53,,1, +themes,twentytwelve,57,,1, +themes,wpg0216,4,,1, +themes,wpg0216bp,2,,1, +themes,act1103,2,,1, +themes,act0402,1,,1, +themes,act0404,1,,1, +themes,act0408,1,,1, +themes,act0408a,1,,1, +themes,aldworth,1,,1, +themes,aldworth0628,1,,1, +themes,Avada,1,,1, +themes,constructzine-lite,1,,1, +themes,hsoh0914,4,,1, +themes,hsoh0914a,4,,1, +themes,aumabs0402a,1,,1, +themes,aumabs0402b,1,,1, +themes,aumabs0403,1,,1, +themes,aumabs0417,1,,1, +themes,aumabs0425,2,,1, +themes,aumabs0507,2,,1, +themes,custom-community,1,,1, +themes,goodtheme-lead,1,,1, +themes,personaltrainer,2,,1, +themes,bba0605,1,,1, +themes,bba0615,1,,1, +themes,bba0622,1,,1, +themes,bba0720c,2,,1, +themes,bcs0313,1,,1, +themes,bcs0313c,1,,1, +themes,destro,1,,1, +themes,dkret3,1,,1, +themes,nuance-v1.2.3,1,,1, +themes,pinboard,1,,1, +themes,rockstar,1,,1, +themes,spartan,1,,1, +themes,survive0310,4,,1, +themes,genesis-SB,3,,, +themes,air-balloon-lite,1,,1, +themes,pictorico,1,,1, +themes,sb0515,2,,1, +themes,bwdesign1028,3,,1, +themes,bwwow1130,2,,1, +themes,bwwow1203,2,,1, +themes,classic,5,,1, +themes,cwiccer1207,3,,1, +themes,default,5,,1, +themes,gsph1103,1,,1, +themes,pob1028,1,,1, +themes,sb1028,1,,1, +themes,sb2010,1,,1, +themes,sb2010_wm,1,,1, +themes,theme465,1,,1, +themes,broad-builders,1,,1, +themes,bw2013,4,,1, +themes,bw20131004,2,,1, +themes,genesis-bw,3,,, +themes,no-sidebar-pro,2,,1, +themes,parallax-pro,5,,1, +themes,workstation-pro,2,,1, +themes,amazing-times,2,,1, +themes,bg-mobile-first,2,,1, +themes,bwblogwordpress,2,,1, +themes,bwdesign0622,1,,1, +themes,bwdesign0715,1,,1, +themes,bwdesign0830,1,,1, +themes,bwdesign0830c,1,,1, +themes,diligent,1,,1, +themes,Engage,2,,1, +themes,freprotheme,1,,1, +themes,genesis-a2z,4,,,1 +themes,genesis-broken,1,,1, +themes,genesis-hm,5,,, +themes,genesis-odea,3,,1, +themes,genesis-oik,14,,,1 +themes,journal,2,,1, +themes,minimalist-pro,2,,1, +themes,novo,1,,1, +themes,one-pager-genesis-master,1,,1, +themes,twenty-seven-pro,2,,1, +themes,ccd1001,1,,1, +themes,ccd1001c,1,,1, +themes,cjw0118,2,,1, +themes,cjw20160315,2,,1, +themes,cjw20160316,1,,1, +themes,royal,1,,1, +themes,cc0512,1,,1, +themes,genesis-cc0512,1,,, +themes,hm140702,2,,1, +themes,rf0510c,3,,1, +themes,dws,1,,, +themes,rmt4dws,1,,1, +themes,dws2016,2,,1, +themes,dws2016-original,1,,1, +themes,dwscomlaytfh,1,,1, +themes,edw0112,2,,1, +themes,edw0114,1,,1, +themes,edw0121,1,,1, +themes,edw0125,1,,1, +themes,edw0203,1,,1, +themes,edw0616,1,,1, +themes,edw0911,1,,1, +themes,edge1117,1,,1, +themes,edge1117c,1,,1, +themes,edge1202,1,,1, +themes,edge120201,3,,1, +themes,edge120201c,3,,1, +themes,edge1202c,1,,1, +themes,eft0621,2,,1, +themes,eft0712,2,,1, +themes,eft1009,2,,1, +themes,eft1017,2,,1, +themes,eft1018,2,,1, +themes,eft1018r,2,,1, +themes,heft0204,1,,1, +themes,heft0205,2,,1, +themes,heft1229,1,,1, +themes,heft1229c,2,,1, +themes,heft1229gc,1,,1, +themes,architecture,1,,1, +themes,architecture-v1-04,1,,1, +themes,eoci0112,3,,1, +themes,sds_2012,1,,1, +themes,fsp0114,1,,1, +themes,lalu1223,2,,1, +themes,gdwifa,1,,, +themes,gdwifa20140303,2,,1, +themes,genesis-gdw,2,,1, +themes,gta0422,1,,1, +themes,gta0614,1,,1, +themes,gta0621,1,,1, +themes,gta0722c,2,,1, +themes,Builder-Cohen,1,,1, +themes,Builder-Madison,1,,1, +themes,Builder-Paige,1,,1, +themes,genesis-2.2.7,1,,1, +themes,genesis-hehall,1,,, +themes,siteground-wp23,1,,1, +themes,siteground-wp63,1,,1, +themes,siteground-wp73,1,,1, +themes,Universe,1,,1, +themes,World,1,,1, +themes,eft121212,2,,1, +themes,eft20140523,1,,1, +themes,eft20140523-qw,1,,1, +themes,eft20140527,3,,1, +themes,scr0909,3,,1, +themes,sorbet,2,,1, +themes,superhero,1,,1, +themes,genesis-hms,1,,1, +themes,hms0820,2,,1, +themes,hms0826,2,,1, +themes,hms0906,2,,1, +themes,hms0907,2,,1, +themes,sh0412,1,,1, +themes,shell-lite,1,,1, +themes,DailyJournal,3,,1, +themes,dailyjournal-olc,3,,1, +themes,Corporative,1,,1, +themes,Corporative-child,1,,1, +themes,genesis-v2.2.6,2,,1, +themes,hm120129,3,,1, +themes,hm120206,4,,1, +themes,hm120206c,4,,1, +themes,hsoh0922,4,,1, +themes,hsoh0928bp,3,,1, +themes,hsoh1027bp,4,,1, +themes,BlueMist,2,,1, +themes,Feather,2,,1, +themes,InterPhase,2,,1, +themes,PureType,2,,1, +themes,responsive,1,,1, +themes,Trim,2,,1, +themes,cjw1118,1,,1, +themes,cjw1123,1,,1, +themes,cjw1123c,1,,1, +themes,cjw1124,1,,1, +themes,cjw1128,1,,1, +themes,cjw1128c,1,,1, +themes,pcs1013,1,,1, +themes,lalu0915,1,,1, +themes,Magnificent,1,,1, +themes,retro-fitted,1,,1, +themes,retro-fitted-child,1,,1, +themes,Artisteer41,3,,1, +themes,oik0808,3,,1, +themes,oik0819c,3,,1, +themes,oik0917t,4,,1, +themes,oik0918,3,,1, +themes,oik310816,5,,1, +themes,oik310816c,4,,1, +themes,oik410130,4,,1, +themes,oik410130-1.1,2,,1, +themes,oik410130c,4,,1, +themes,oik410130c-1.1,2,,1, +themes,oik410923,4,,1, +themes,oik120815,1,,1, +themes,attitude,1,,1, +themes,nivo2011,5,,1, +themes,oobit,6,,1, +themes,vantage,2,,1, +themes,dailyjournal-olc2.3,1,,1, +themes,DailyJournal2.3,2,,1, +themes,olc0618,2,,1, +themes,olc120815,2,,1, +themes,olc120815c,3,,1, +themes,oobit-extras,1,,1, +themes,alver0620,1,,1, +themes,DailyJournal2.4,1,,1, +themes,genesis-image,6,,,1 +themes,genesis-paap,2,,1, +themes,breakpoint,1,,1, +themes,in-the-beginning,1,,1, +themes,Nominal,1,,1, +themes,maximus,2,,1, +themes,maximus-rf,2,,1, +themes,rf0202,2,,1, +themes,rf0227,2,,1, +themes,rf0227c,2,,1, +themes,rf0311,5,,1, +themes,rf0311c,4,,1, +themes,rf0403,2,,1, +themes,rf0403c,2,,1, +themes,rf0510,2,,1, +themes,act0331,1,,1, +themes,bag2013-v0.1,2,,1, +themes,eps0906,1,,1, +themes,fabt120330,1,,1, +themes,gkz1116,1,,1, +themes,japics1102,2,,1, +themes,li020226,1,,1, +themes,mdt1209,1,,1, +themes,oobit v1.0,1,,1, +themes,pcs0809,1,,1, +themes,pcs0822,1,,1, +themes,pcs1003,1,,1, +themes,phoenix0516,1,,1, +themes,rcgc0318,1,,1, +themes,rcgc0818,1,,1, +themes,rcr0725,2,,1, +themes,rctc0130,2,,1, +themes,rcwd0415,1,,1, +themes,s2s0515,2,,1, +themes,s2s0515c,2,,1, +themes,st0515,1,,1, +themes,tl0515,1,,1, +themes,yellow0117,1,,1, +themes,centita,3,,1, +themes,centita3.0,2,,1, +themes,centita30c,2,,1, +themes,rjdap-0.0.3,1,,1, +themes,rjdap-clone,1,,1, +themes,__MACOSX,1,,1, +themes,centita3.0-7,1,,1, +themes,centita30c-7,1,,1, +themes,genesis-2.2.6,1,,1, +themes,imbalance,1,,1, +themes,modernbloggerpro,1,,1, +themes,rjdpp,1,,1, +themes,rngs0414,3,,1, +themes,rngs0414c,3,,1, +themes,rngs0721,2,,1, +themes,rngs0721-ren,1,,1, +themes,rngs0721-wtf,1,,1, +themes,rngs0721c,2,,1, +themes,rngs0827,2,,1, +themes,sol121012,2,,1, +themes,sol121012c,2,,1, +themes,sol150508,2,,1, +themes,Divi,1,,1, +themes,wp-pompey,3,,1, +themes,survive1210,2,,1, +themes,trcg120403,3,,1, +themes,trcg120403c,3,,1, +themes,symondson0903,1,,1, +themes,symondson0903c,1,,1, +themes,thesis_16,1,,1, +themes,lifestyle,1,,1, +themes,szerelmey,1,,1, +themes,genesis-tags,2,,, +themes,atahualpa,1,,1, +themes,genesis-sample,1,,1, +themes,genesis-wbwb,1,,1, +themes,wbwb20141021,2,,1, +themes,_oik,1,,1, +themes,2014,1,,1, +themes,2015,1,,1, +themes,2016,1,,1, +themes,aumabs0507c,1,,1, +themes,aumabs0520c,1,,1, +themes,bag2013-0616,1,,1, +themes,bag2013-0626,1,,1, +themes,bag2013-saved,1,,1, +themes,bwdesign120209,1,,1, +themes,bwdesign120209c,1,,1, +themes,bwwow111120,1,,1, +themes,cjw20160316w,1,,1, +themes,eie120910c,2,,1, +themes,genesis-aati,1,,1, +themes,genesis-image-pregit,1,,1, +themes,jquery-UI,1,,1, +themes,jquery-ui-1.12.1.custom,1,,1, +themes,jquery-ui-themes-1.12.1,1,,1, +themes,oik0917,1,,1, +themes,oik0917c,1,,1, +themes,oik0917r,1,,1, +themes,oik0917s,1,,1, +themes,oik120206,1,,1, +themes,oik120206c,1,,1, +themes,oik310816c-buggered,1,,1, +themes,oik401126,1,,1, +themes,oik401126-art4,1,,1, +themes,oik410326,2,,1, +themes,oik410923c,1,,1, +themes,oik420130,1,,1, +themes,oik420130lm,1,,1, +themes,oik420130wp,1,,1, +themes,olc130611,1,,1, +themes,psc0211,1,,1, +themes,style,1,,1, +themes,survive0310-art4,1,,1, +themes,survive1120,2,,1, +themes,t10scom0201,1,,1, +themes,t10scom120128,1,,1, +themes,thematic,1,,1, +themes,trcg121026,1,,1, +themes,trtc0104,1,,1, +themes,trtc0212,1,,1, +themes,trtc0225,1,,1, +themes,trtc0225c,1,,1, +themes,trtc1230,1,,1, +themes,Untitled,1,,1, +themes,twentyfifteen-v1.7,1,,1, +themes,twentysixteen-symlinked-gitted,1,,1, +themes,bp-default,2,,1, +themes,p2,1,,1, +themes,wpg0216bp-renamed,1,,1, +themes,bp1027,1,,1, +themes,hsoh0922bp,1,,1, +themes,hsoh1015,1,,1, +themes,boldy,1,,1, +themes,business-lite,1,,1, +themes,eie120910,1,,1, +themes,frantic,1,,1, +themes,Innova,1,,1, +themes,sh0612,1,,1, +themes,asteria-lite,1,,1, +themes,blackbird,1,,1, +themes,blackbirdtheme-trial,1,,1, +themes,match,1,,1, +themes,mystile,1,,1, +themes,nivoblackbird,1,,1, +themes,nuance-v1.2.4,1,,1, +themes,t40,1,,1, +themes,wonderflux,1,,1, +themes,minn-lite,1,,1, +themes,aventurine,1,,1, +themes,dtib0601,1,,1, +themes,dtib0601a,1,,1, +themes,dtib0723a,1,,1, +themes,genesis-2.2.3,1,,1, +themes,pcs20141209,1,,1, +themes,sleekphoto,1,,1, +themes,twentyeleven-2.1,1,,1, +themes,uf-scribe,1,,1, +themes,uf-spirit,1,,1, +themes,upfront,1,,1, +themes,Martha,1,,1, +themes,Martha1,1,,1, +themes,wporg-developer,1,,1, +themes,etiquette-wp,1,,1, +themes,yellowbrand,1,,1, +themes,yellowbrand-oik,1,,1, +Totals,1174,4009 \ No newline at end of file diff --git a/converter/counter.php b/converter/counter.php index c87e926..4d3c464 100644 --- a/converter/counter.php +++ b/converter/counter.php @@ -26,50 +26,64 @@ * - ignoring plugins with "-vn.n.n" suffices */ function oik_block_counter() { - $path = "C:/apache/htdocs"; oik_require( "converter/class-component-counter.php", "oik-block" ); $component_counter = new component_counter(); + oik_require( "converter/class-component.php", "oik-block" ); $files = scandir( $path ); foreach ( $files as $file ) { if ( is_dir( "$path/$file" ) ) { - $wp_content = "$path/$file/wp-content"; - if ( file_exists( $wp_content ) ) { - // @TODO Add mu-plugins - $plugins = count_plugins( $wp_content, "plugins", $component_counter ); - $themes = count_plugins( $wp_content, "themes", $component_counter ); - $version = oik_block_wp_version( "$path/$file" ); - echo PHP_EOL; - echo "$version,$file,$plugins,$themes"; + $version = oik_block_wp_version( "$path/$file" ); + if ( $version ) { + $wp_content = "$path/$file/wp-content"; + if ( file_exists( $wp_content ) ) { + // @TODO Add mu-plugins + $plugins = count_plugins( $wp_content, "plugins", $component_counter ); + $themes = count_plugins( $wp_content, "themes", $component_counter ); + echo PHP_EOL; + echo "\"$version\",$file,$plugins,$themes"; - echo PHP_EOL; + echo PHP_EOL; + } else { + echo "NOWPC,$file,," . PHP_EOL; + } } else { - echo "NOTWP,$file,," . PHP_EOL; + echo "NOVER,$file,," . PHP_EOL; } - - } } $component_counter->report(); } +/** + * + */ function oik_block_wp_version( $url ) { //$vp = $_SERVER['DOCUMENT_ROOT'] . $url . "/wp-includes/version.php"; $vp = $url . "/wp-includes/version.php"; global $wp_version; if ( file_exists( $vp ) ) { + $saved = $wp_version; require( $vp ); //echo ("version is $wp_version;" ); //gobang(); + $version = $wp_version; + $wp_version = $saved; } else { - $wp_version = "NOVER"; + $version = null; } - return( $wp_version ); + return $version; } - +/** + * Count components + * + * @param string $wp_content full file path to wp-content + * @param string $plugins_or_themes subdirectory + * @param string $component_counter + */ function count_plugins( $wp_content, $plugins_or_themes, $component_counter ) { $path = "$wp_content/$plugins_or_themes"; $counted = 0; @@ -78,11 +92,11 @@ function count_plugins( $wp_content, $plugins_or_themes, $component_counter ) { $files = scandir( $path ); foreach ( $files as $file ) { - if ( is_dir( "$path/$file" ) ) { + if ( is_dir( "$path/$file" ) && $file <> '.' && $file <> '..' ) { //echo $file; //echo PHP_EOL; echo '.'; - $component_counter->add( $file, $plugins_or_themes ); + $component_counter->add( $file, $plugins_or_themes, $path ); $counted++; } } diff --git a/converter/estimate.ods b/converter/estimate.ods index 8258957..2208ebd 100644 Binary files a/converter/estimate.ods and b/converter/estimate.ods differ diff --git a/converter/sites-components.csv b/converter/sites-components.csv new file mode 100644 index 0000000..27af2c0 --- /dev/null +++ b/converter/sites-components.csv @@ -0,0 +1,1176 @@ +Type,Component,Count,Author,Third Party,Tests,Site +plugins,.idea,4,,1,,. +plugins,akismet,85,Automattic,1,,. +plugins,backwpup,16,Inpsyde GmbH,1,,. +plugins,bbpress,7,The bbPress Community,1,,. +plugins,bowe-codes,1,imath,1,,. +plugins,buddypress,6,,1,,. +plugins,cookie-cat,46,bobbingwide,,1,. +plugins,debug-bar,5,wordpressdotorg,1,,. +plugins,developer,1,Automattic,1,,. +plugins,distributor,2,Taylor Lovett 10up,1,1,. +plugins,drafts-for-friends,3,bobbingwide,1,,. +plugins,easy-digital-downloads,10,Pippin Williamson and Company,,1,. +plugins,easy-fancybox,1,RavanH,1,,. +plugins,easy-pricing-tables,1,,1,,. +plugins,fancy-box,1,,1,,. +plugins,fancybox-for-wordpress,1,,1,,. +plugins,feedwordpress,1,Charles Johnson,1,,. +plugins,genesis-beta-tester,1,Nathan Rice,1,,. +plugins,genesis-variable-footer-widgets,1,,1,,. +plugins,github-release-downloads,1,Ivan Ridao Freitas,1,,. +plugins,log-deprecated-notices,2,Andrew Nacin,1,,. +plugins,membership,6,Barry (Incsub) Cole (Incsub),1,,. +plugins,oik,87,bobbingwide,,1,. +plugins,oik-batch,31,bobbingwide,,1,. +plugins,oik-batchmove,19,bobbingwide,,,. +plugins,oik-bob-bing-wide,42,bobbingwide,,1,. +plugins,oik-bob-bing-wide-1.21,1,,1,,. +plugins,oik-bp-signup-email,5,bobbingwide,1,,. +plugins,oik-bwtrace,63,bobbingwide,,1,. +plugins,oik-clone,21,bobbingwide,,,. +plugins,oik-debug-filters,14,bobbingwide,1,,. +plugins,oik-email-signature,17,bobbingwide,1,,. +plugins,oik-fields,54,bobbingwide,,,. +plugins,oik-fields-1.36,1,,1,,. +plugins,oik-nivo-slider,42,bobbingwide,,,. +plugins,oik-plugins,17,bobbingwide,,,. +plugins,oik-privacy-policy,53,bobbingwide,,,. +plugins,oik-sc-help,20,bobbingwide,,1,. +plugins,oik-sc-help-1.9,1,,1,,. +plugins,oik-shortcodes,17,bobbingwide,,,. +plugins,oik-sites,6,bobbingwide,,,. +plugins,oik-types,37,bobbingwide,,,. +plugins,popdom-themes-backup,1,,1,,. +plugins,popup-domination,2,PopUp Domination Team,1,,. +plugins,query-monitor,6,John Blackbourn,1,1,. +plugins,rfi,3,bobbingwide,1,,. +plugins,schunter,7,bobbingwide,,,. +plugins,setup,20,bobbingwide,1,,. +plugins,sg-cachepress,3,SiteGround,1,,. +plugins,shortcake-ui-demo,1,Mte90,1,,. +plugins,si-captcha-for-wordpress,11,,1,,. +plugins,toolbar-theme-switcher,1,Andrey "Rarst" Savchenko,1,,. +plugins,trac29608,5,bobbingwide,,,. +plugins,u-buddypress-forum-editor,1,,1,,. +plugins,visualizer,1,,1,,. +plugins,woocommerce,22,Automattic,,,. +plugins,wordpress-importer,27,wordpressdotorg,1,,. +plugins,wordpress-seo,66,,1,,. +plugins,wp-charts,2,,1,,. +plugins,WP-DraftsForFriends,2,Lester 'GaMerZ' Chan,1,,. +plugins,wp-mail-smtp,4,,1,,. +plugins,wp-spamfree,2,WP-SpamFree,1,,. +plugins,wp-top12,5,,,1,. +plugins,wpmudev-updates,6,,1,,. +plugins,add-to-any,9,micropat,1,,act +plugins,all-in-one-seo-pack,12,,1,,act +plugins,download-monitor,2,Mike Jolley,1,,act +plugins,download-monitor-saved,1,,1,,act +plugins,easy-digital-downloads-free-download,1,,1,,act +plugins,extended-page-lists,6,grandslambert,1,,act +plugins,featured-image-widget,13,,1,,act +plugins,google-analytics-for-wordpress,46,,1,,act +plugins,google-sitemap-generator,15,,1,,act +plugins,import-users-from-csv,4,Ulrich Sossou,1,,act +plugins,ltw-testimonials,11,LessThanWeb,1,,act +plugins,obsafe_print_r,5,bobbingwide vsgloik,1,,act +plugins,oik-fum,15,bobbingwide,,,act +plugins,pc-searchengine-verify,11,Peter Coughlin,1,,act +plugins,sexybookmarks,8,,1,,act +plugins,sharebar,3,Monjurul Dolon,1,,act +plugins,si-contact-form,15,Mike Challis Ken Carlson,1,,act +plugins,the-events-calendar,8,Modern Tribe Inc.,1,,act +plugins,updraftplus,3,UpdraftPlus.Com DavidAnderson,1,,act +plugins,allow-reinstalls,17,bobbingwide,,1,aldworth +plugins,backupwordpress,30,Human Made Limited,1,,aldworth +plugins,contact-form-7,6,,1,,aldworth +plugins,fusion-builder,3,ThemeFusion,1,,aldworth +plugins,fusion-core,3,ThemeFusion,1,,aldworth +plugins,jetpack,41,Automattic,,,aldworth +plugins,LayerSlider,1,Kreatura Media,1,,aldworth +plugins,media-file-renamer,5,Jordy Meow,1,,aldworth +plugins,oik-css,40,bobbingwide,,1,aldworth +plugins,oik-css-pregit,2,,1,,aldworth +plugins,oik-rwd,37,bobbingwide,,,aldworth +plugins,oik-window-width,11,bobbingwide,,,aldworth +plugins,post-type-switcher,16,John James Jacoby,1,,aldworth +plugins,revslider,3,ThemePunch,1,,aldworth +plugins,advanced-responsive-video-embedder,1,Nicolas Jonas,1,,aumabs +plugins,mbo,2,bobbingwide,1,,aumabs +plugins,oik-popup,10,bobbingwide,,,aumabs +plugins,oik-rating,9,bobbingwide,1,,aumabs +plugins,oik-squeeze,18,bobbingwide,,,aumabs +plugins,oik-testimonials,20,bobbingwide,,,aumabs +plugins,oik-types-v1.6,1,,1,,aumabs +plugins,oik-v2.6-alpha.0525,1,,1,,aumabs +plugins,oik-video,22,bobbingwide,,,aumabs +plugins,promotion-slider,1,,1,,aumabs +plugins,smart-google-code-inserter,1,,1,,aumabs +plugins,nextgen-gallery,13,,1,,balancingbyart +plugins,slideshow-gallery-pro,3,,1,,balancingbyart +plugins,appointments,2,Hakan Evin ,1,,bettercorestrength +plugins,contus-video-gallery,1,,1,,bettercorestrength +plugins,flagallery-skins,1,,1,,bettercorestrength +plugins,flash-album-gallery,1,,1,,bettercorestrength +plugins,image-protector,1,Hirofumi Ohta,1,,bettercorestrength +plugins,revostock-gallery,1,RevoStock,1,,bettercorestrength +plugins,sliding-youtube-gallery,1,,1,,bettercorestrength +plugins,wpcat2tag-importer,2,wordpressdotorg,1,,bettercorestrength +plugins,bigram,3,bobbingwide,,,bigram +plugins,bigram-renamed,1,,1,,bigram +plugins,d62wp,7,bobbingwide,,,bigram +plugins,frontend-uploader,1,Rinat Khaziev Daniel Bachhuber,1,,bigram +plugins,genesis-footer-widgets,10,bobbingwide,,,bigram +plugins,genesistant,15,bobbingwide,,,bigram +plugins,oik-a2z,9,bobbingwide,,1,bigram +plugins,oik-ajax,11,bobbingwide,,,bigram +plugins,oik-media,5,bobbingwide,,,bigram +plugins,rest-api,2,,1,,bigram +plugins,simple-facebook-connect,6,,1,,blogbbf +plugins,simple-twitter-connect,6,,1,,blogbbf +plugins,widget-wrangler,7,Jonathan Daggerhart,1,,blogbbf +plugins,wpautoembed,2,Corey Wilson Jason Hines Christopher John Jackson,1,,blogbbf +plugins,genesis-responsive-slider,1,StudioPress,1,,broad-builders +plugins,image-carousel,1,GhozyLab Inc.,1,,broad-builders +plugins,wonderplugin-carousel,1,,1,,broad-builders +plugins,wonderplugin-carousel-9.8,1,,1,,broad-builders +plugins,bw-types,3,bobbingwide,1,,bwcom +plugins,bw-types-pregit,1,,1,,bwcom +plugins,genesis-connect-woocommerce,3,StudioPress,1,,bwcom +plugins,greprecated,4,,,1,bwcom +plugins,network-privacy,6,,1,,bwcom +plugins,oik-blogger-redirect,10,bobbingwide,1,,bwcom +plugins,oik-bwtrace-git,1,,1,1,bwcom +plugins,oik-lib,12,bobbingwide,,,bwcom +plugins,oik-ms,18,bobbingwide,,,bwcom +plugins,oik-mshot,12,bobbingwide,,,bwcom +plugins,oik-pregit,1,,1,,bwcom +plugins,oik-theme-fields,5,bobbingwide,,,bwcom +plugins,oik-themes,12,bobbingwide,,,bwcom +plugins,oik-tos,2,bobbingwide,1,,bwcom +plugins,uk-tides,22,bobbingwide,,,bwcom +plugins,wc-call-for-price,1,,1,,bwcom +plugins,woocommerce-call-for-price,1,Algoritmika Ltd,1,,bwcom +plugins,woocommerce-gateway-paypal-express-checkout,2,Automattic,1,,bwcom +plugins,wordpress-mu-domain-mapping-renamed,3,,1,,bwcom +plugins,wp-migrate-db,7,Delicious Brains,1,,bwcom +plugins,bwdesign,2,bobbingwide,,,bwdesign +plugins,cms-tree-page-view,5,,1,,bwdesign +plugins,cron-view,2,,1,,bwdesign +plugins,Custom-Meta-Boxes,2,,1,1,bwdesign +plugins,debug-bar-cron,2,Zack Tollman Helen Hou-Sandi,1,,bwdesign +plugins,dff,1,,1,,bwdesign +plugins,five-star-rating,1,Andrew Alba,1,,bwdesign +plugins,gallery-widget,1,,1,,bwdesign +plugins,hookr,1,@explodybits,1,,bwdesign +plugins,json-rest-api,2,,1,,bwdesign +plugins,oik-bob-bing-wide-1.30.2,1,,1,,bwdesign +plugins,oik-bwtrace.2.0.11,1,,1,,bwdesign +plugins,oik-fields.x,1,,1,,bwdesign +plugins,oik-plugin-fields,4,bobbingwide,,,bwdesign +plugins,oik-popup-saved,1,,1,,bwdesign +plugins,oik-post-type-support,11,bobbingwide,,,bwdesign +plugins,oik-responsive-menu,11,bobbingwide,1,,bwdesign +plugins,oik-shortcodes-a2z,5,bobbingwide,,1,bwdesign +plugins,oik-sidebar,8,bobbingwide,1,,bwdesign +plugins,quick-pagepost-redirect-plugin,2,,1,,bwdesign +plugins,redirection,10,John Godley,1,,bwdesign +plugins,regenerate-thumbnails,8,Alex Mills (Viper007Bond),1,,bwdesign +plugins,siteorigin-panels,4,SiteOrigin,1,,bwdesign +plugins,slideshow-gallery-2,1,,1,,bwdesign +plugins,stats,1,Automattic,1,,bwdesign +plugins,sub-page-summary,4,,1,,bwdesign +plugins,tinymce-advanced,5,Andrew Ozz,1,,bwdesign +plugins,wcs-qr-code-generator,4,WP Code Snippets (Luke America),1,,bwdesign +plugins,widget-importer-exporter,5,Steven Gliebe,1,,bwdesign +plugins,widget-output-cache,1,Kaspars Dambis,1,,bwdesign +plugins,wpaudio-mp3-player,10,,1,,bwdesign +plugins,youtube-embed-plus,1,,1,,bwdesign +plugins,gravityforms,12,rocketgenius,1,,classic +plugins,portfolio-slideshow,6,Raygun,1,,classic +plugins,underconstruction,14,Jeremy Massel,1,,classic +plugins,custom-contact-forms,1,Taylor Lovett,1,,coaching2inspire +plugins,lightbox-plus,2,,1,,coaching2inspire +plugins,mailchimp-widget,1,James Lafferty,1,,coaching2inspire +plugins,sexybookmarks-broke,1,,1,,coaching2inspire +plugins,contact-form-manager,1,xyzscripts.com,1,,colours +plugins,ecwid-shopping-cart,1,Ecwid Team,1,,colours +plugins,essential-grid,1,ThemePunch,1,,colours +plugins,exploit-scanner,1,Donncha O Caoimh,1,,colours +plugins,js_composer,2,Michael M - WPBakery.com,1,,colours +plugins,limit-login-attempts,3,Johan Eenfeldt,1,,colours +plugins,mailchimp-for-wp,2,ibericode,1,,colours +plugins,master-slider,1,averta,1,,colours +plugins,masterslider,1,averta,1,,colours +plugins,screets-lc,1,Screets Team,1,,colours +plugins,Ultimate_VC_Addons,1,Brainstorm Force,1,,colours +plugins,w3-total-cache,2,Frederick Townes,1,,colours +plugins,wp-db-backup-made,1,,1,,colours +plugins,wp-maintenance-mode,1,Designmodo,1,,colours +plugins,wp-optimize,3,David Anderson Ruhani Rabin Team Updraft,1,,colours +plugins,wp-smushit,2,,1,,colours +plugins,wpclef,2,Clef,1,1,colours +plugins,yith-woocommerce-wishlist,1,,1,,colours +plugins,cookie-batch,2,,1,,cookie-cat +plugins,cookie-category,6,bobbingwide,,,cookie-cat +plugins,cookie-category-pregit,1,,1,,cookie-cat +plugins,cookie-control,3,,1,,cookie-cat +plugins,oik-bwtrace-ren,1,,1,,cookie-cat +plugins,oik-ren,1,,1,,cookie-cat +plugins,wp-to-twitter,5,Joseph Dolson,1,,cookie-cat +plugins,adamrob-parallax-scroll,1,,1,,cwiccer +plugins,audio,5,Scott Taylor,1,,cwiccer +plugins,bbboing,20,bobbingwide,,,cwiccer +plugins,beaver-builder-lite-version,1,,1,,cwiccer +plugins,classic-editor,5,WordPress Contributors,1,,cwiccer +plugins,cookie-opt-in,1,,1,,cwiccer +plugins,gutenberg,6,Gutenberg Team,1,,cwiccer +plugins,issue-19,2,,1,,cwiccer +plugins,oik-a2z-pregit,1,,1,,cwiccer +plugins,oik-bbpress,11,bobbingwide,1,,cwiccer +plugins,oik-edd-but-no-edd,1,,1,,cwiccer +plugins,oik-external-link-warning,12,bobbingwide,,,cwiccer +plugins,oik-header,11,bobbingwide,1,,cwiccer +plugins,oik-moreoptions,9,bobbingwide,,,cwiccer +plugins,oik-select-menu,2,bobbingwide,1,,cwiccer +plugins,oik-user,18,bobbingwide,,,cwiccer +plugins,oik-weight-zone-shipping-pro,13,bobbingwide,,,cwiccer +plugins,oik-weightcountry-shipping,16,bobbingwide,,,cwiccer +plugins,plugin-beta-tester,2,mitcho (Michael Yoshitaka Erlewine),1,,cwiccer +plugins,s2member-files,4,,1,,cwiccer +plugins,s2member-logs,4,,1,,cwiccer +plugins,so-widgets-bundle,3,SiteOrigin,1,,cwiccer +plugins,theme-check,1,Otto42 pross,1,,cwiccer +plugins,simple-tweet,1,wokamoto,1,,design +plugins,youtube,1,Sonicity Plugins,1,,design +plugins,diy-oik,16,bobbingwide,,,dws +plugins,dws,2,bobbingwide,,,dws +plugins,go-live-update-urls,4,Mat Lipe,1,,dws +plugins,oik-dates,10,bobbingwide,,,dws +plugins,tags,3,bobbingwide,,,dws +plugins,captcha,3,BestWebSoft,1,,eedge +plugins,eedge,4,,1,,eedge +plugins,epages,3,bobbingwide,1,,eedge +plugins,one-click-child-theme,1,tychay,1,,eft +plugins,simple-image-widget,2,,1,,eft +plugins,live-composer-page-builder,1,,1,,engarc +plugins,wordfence,6,Wordfence,1,,engarc +plugins,wp-htaccess-editor,1,Lukenzi,1,,engarc +plugins,wp-performance-score-booster,1,Dipak C. Gajjar,1,,engarc +plugins,wp-super-simple-speed,1,,1,,engarc +plugins,wpseo-local,1,,1,,engarc +plugins,image-store,1,,1,,fsp +plugins,jquery-featured-content-gallery,2,,1,,fsp +plugins,qtranslate,2,Qian Qin,1,,fsp +plugins,ga-google-analytics,1,Jeff Starr,1,,gdwifa +plugins,auto-listings,1,WP Auto Listings,1,,hallsgs +plugins,car-demon,1,CarDemons,1,,hallsgs +plugins,car-sales-pages,1,Jeff Bullins,1,,hallsgs +plugins,carousel-slider,1,Sayful Islam,1,,hallsgs +plugins,foogallery-owl-carousel-template,1,,1,,hallsgs +plugins,genesis-taxonomy-images,1,studiograsshopper themiked,1,,hallsgs +plugins,kiwi-logo-carousel,1,,1,,hallsgs +plugins,logo-carousel,1,,1,,hallsgs +plugins,logo-carousel-slider,1,,1,,hallsgs +plugins,logo-slider,1,EnigmaWeb,1,,hallsgs +plugins,motors-car-dealership-classified-listings,1,,1,,hallsgs +plugins,oik-3.0.1,1,,1,,hallsgs +plugins,oik-fields-pregit,1,,1,,hallsgs +plugins,owl-carousel,1,,1,,hallsgs +plugins,pl-car-dealer,1,Roberto Bruno,1,,hallsgs +plugins,taxonomy-images,1,Michael Fields Ben Huson,1,,hallsgs +plugins,wp-car-manager,1,Never5,1,,hallsgs +plugins,wp-carousel-free,1,ShapedPlugin,1,,hallsgs +plugins,wp-custom-taxonomy-meta,1,,1,,hallsgs +plugins,wp-term-images,1,John James Jacoby,1,,hallsgs +plugins,all-in-one-event-calendar,4,Time.ly Network Inc.,1,,hampshire-eft +plugins,all-in-one-event-calendar-effed,1,,1,,hampshire-eft +plugins,options-importer,4,Matthew Boynes,1,,hampshire-eft +plugins,plugin-activation-status,5,Curtiss Grymala,1,,hampshire-eft +plugins,revision-control,2,Dion Hulse,1,,hampshire-eft +plugins,sneak-peek,4,bobbingwide,1,,hampshire-eft +plugins,wordpress-mu-domain-mapping-disabled,1,,1,,hampshire-eft +plugins,wordpress-mu-domain-mapping-disabled-again,1,,1,,hampshire-eft +plugins,wordpress-popup,1,,1,,hampshire-eft +plugins,awd-weightcountry-shipping,3,,1,,handmadestudios +plugins,feed-them-social,1,,1,,handmadestudios +plugins,instagram-image-gallery,1,,1,,handmadestudios +plugins,mailchimp,1,MailChimp and Crowd Favorite,1,,handmadestudios +plugins,megamenu,1,Tom Hemsley,1,,handmadestudios +plugins,oik-fields-renamed,2,,1,,handmadestudios +plugins,oik-nivo-slider-renamed,1,,1,,handmadestudios +plugins,oik-rwd-renamed,1,,1,,handmadestudios +plugins,oik-types-renamed,1,,1,,handmadestudios +plugins,oik-weightcountry-shipping-pro,11,bobbingwide,,,handmadestudios +plugins,pinterest-verify,1,Phil Derksen,1,,handmadestudios +plugins,ultimate-coming-soon-page,1,SeedProd,1,,handmadestudios +plugins,woocommerce-colors,1,WooThemes,1,,handmadestudios +plugins,woocommerce-product-archive-customiser,1,,1,,handmadestudios +plugins,cart66-lite,1,,1,,happystevehook +plugins,meta-tag-manager,1,NetWebLogic LLC,1,,happystevehook +plugins,wp-simplemail,1,,1,,happystevehook +plugins,advanced-custom-fields,4,,1,,hifianswers +plugins,bainternet-posts-creation-limits,3,,1,,hifianswers +plugins,bulk-taxonomy-edits,1,Phil Meadows,1,,hifianswers +plugins,business-directory-plugin,1,D. Rodenbaugh,1,,hifianswers +plugins,capability-manager-enhanced,2,,1,,hifianswers +plugins,collapsing-categories,3,,1,,hifianswers +plugins,export-users-to-csv,1,Ulrich Sossou,1,,hifianswers +plugins,import-external-images,3,Marty Thornley,1,,hifianswers +plugins,oik-blogger-importer,3,,1,,hifianswers +plugins,oik-members,4,bobbingwide,1,,hifianswers +plugins,olc,4,bobbingwide,1,,hifianswers +plugins,olc-tweaks,2,Phil Meadows,1,,hifianswers +plugins,p3-profiler,3,GoDaddy.com,1,,hifianswers +plugins,press-permit-core,2,Agapetry Creations LLC,1,,hifianswers +plugins,s2member,3,s2Member / WebSharks Inc.,1,,hifianswers +plugins,supplier-directory,2,Phil Meadows,1,,hifianswers +plugins,tb-testimonials,7,Travis Ballard,1,,hifianswers +plugins,visual-form-builder,1,Matthew Muro,1,,hifianswers +plugins,wp-members,15,Chad Butler,1,,hifianswers +plugins,wp-pagenavi,6,Lester 'GaMerZ' Chan,1,,hifianswers +plugins,Akismet-v3.1.8,1,,1,,hm +plugins,dinlo,6,bobbingwide,,1,hm +plugins,google-analytics-for-wordpress-renamed,1,,1,,hm +plugins,gutenberg-2.1.0,2,,1,,hm +plugins,gutenberg-2.3.0,2,,1,,hm +plugins,mergebot,1,Delicious Brains,1,,hm +plugins,oik-block,4,Herb Miller,,1,hm +plugins,oik-cons,3,bobbingwide,1,,hm +plugins,oik-css3,2,bobbingwide,1,,hm +plugins,oik-git-clone,1,,1,1,hm +plugins,oik-libs,11,bobbingwide,,1,hm +plugins,oik-read-more,10,bobbingwide,,,hm +plugins,us-tides,11,bobbingwide,,,hm +plugins,wordpress-beta-tester,6,,1,,hm +plugins,wordpress-develop-tests,12,bobbingwide,,,hm +plugins,efficient-related-posts,2,Aaron D. Campbell,1,,hm0618 +plugins,sociable,4,Blogplay,1,,hm0618 +plugins,wp-post-to-twitter,2,Glyn Mooney,1,,hm0618 +plugins,wp-syntax,2,Steven A. Zahm,1,,hm0618 +plugins,blogger-importer,3,wordpressdotorg,1,,hm1013 +plugins,official-statcounter-plugin-for-wordpress,2,,1,,hosh +plugins,private-buddypress,3,Dennis Morhardt,1,,hosh +plugins,wordpress-mu-domain-mapping,5,,,,hosh +plugins,localmail,2,bobbingwide,1,,hsoh_old +plugins,acurax-social-media-widget,2,,1,,janecoomb +plugins,alexa-internet,2,,1,,janecoomb +plugins,broken-link-checker,6,Janis Elsts,1,,janecoomb +plugins,cookies-for-comments,2,Donncha O Caoimh,1,,janecoomb +plugins,custom-meta-widget,2,,1,,janecoomb +plugins,follow-my-blog-post,2,,1,,janecoomb +plugins,internal-link-manager,2,Kevin Leary,1,,janecoomb +plugins,powerpress,2,Blubrry,1,,janecoomb +plugins,searchterms-tagging-2,2,,1,,janecoomb +plugins,wp-statistics,2,Mostafa Soufi,1,,janecoomb +plugins,wysija-newsletters-norty,1,,1,,janecoomb +plugins,quote-rotator,1,Luke Howell,1,,jtth +plugins,oik-bwtrace-renamed,1,,1,,lalucouk +plugins,qtranslate-x,1,,1,,lalucouk +plugins,wp-seo-qtranslate-x,1,,1,,lalucouk +plugins,wmdum,1,,1,,lfd4u +plugins,calyx,1,bobbingwide,1,,officialcaravan +plugins,get-ctrl-importer,3,bobbingwide,1,,officialcaravan +plugins,import-users-from-csv-renamed,1,,1,,officialcaravan +plugins,jetpack-easy-playlists,1,,1,,officialcaravan +plugins,jetpack-extras,1,,1,,officialcaravan +plugins,oik-bwtrace-v2.0.11,1,,1,,officialcaravan +plugins,oik-tunes,10,bobbingwide,1,,officialcaravan +plugins,oik-types-pregit,1,,1,,officialcaravan +plugins,oik-weight-zone-shipping,9,bobbingwide,,1,officialcaravan +plugins,oik-weight-zone-shipping-pro-0.1.0,1,,1,,officialcaravan +plugins,oik-weightcountry-shipping-pro-v1.4.1,1,,1,,officialcaravan +plugins,oik-wzs-rates,6,bobbingwide,,,officialcaravan +plugins,really-simple-captcha,1,Takayuki Miyoshi,1,,officialcaravan +plugins,rss-importer,1,wordpressdotorg,1,,officialcaravan +plugins,spam-reg-check,4,,1,,officialcaravan +plugins,user-spam-remover,1,Joel Hardi,1,,officialcaravan +plugins,woocommerce-2.6.12,1,,1,,officialcaravan +plugins,wordpress-mu-domain-mapping-renamed-again,1,,1,,officialcaravan +plugins,wordpress-social-login,2,,1,1,officialcaravan +plugins,hyperdb,1,,1,,oik-plugins.uk +plugins,foobar,8,bobbingwide,1,,oikcom +plugins,force-regenerate-thumbnails,4,Pedro Elsner,1,,oikcom +plugins,jetpack-3.9.4,2,,1,,oikcom +plugins,oik-batch-renamed,2,,1,,oikcom +plugins,oik-bbpress-ren,2,,1,,oikcom +plugins,oik-clone-20171114,2,,1,1,oikcom +plugins,oik-cookie-list,5,bobbingwide,1,,oikcom +plugins,oik-css-git-clone,2,,1,1,oikcom +plugins,oik-edd,6,bobbingwide,,1,oikcom +plugins,oik-infusionsoft,5,bobbingwide,1,,oikcom +plugins,oik-requests,5,bobbingwide,1,,oikcom +plugins,oik-thugin,3,bobbingwide,1,,oikcom +plugins,oik-todo,5,bobbingwide,1,,oikcom +plugins,oik-widget-cache,4,bobbingwide,,,oikcom +plugins,oik-working-feedback,6,bobbingwide,1,,oikcom +plugins,Shortcake,3,,1,,oikcom +plugins,voce-widget-cache,3,John Ciacia Mark Parolisi,1,,oikcom +plugins,wp-cli,5,,1,1,oikcom +plugins,wp-super-cache,6,,1,,oikcom +plugins,wpdb-alt,2,bobbingwide,1,,oikcom +plugins,bobbing,7,bobbingwide,,,oikcouk +plugins,oik-bwtrace-2.0.11,1,,1,,oikcouk +plugins,play,3,bobbingwide,1,1,oikcouk +plugins,add-paragraphs-option-to-text-widget,1,,1,,oikeu +plugins,hello-dolly,5,,,,oikeu +plugins,multi-site-plugins-add-new,1,,1,,oikeu +plugins,multisite-cloner,3,Manuel Razzari Patricio Tarantino,1,,oikeu +plugins,ns-cloner-site-copier,2,,1,,oikeu +plugins,oik-batch-pregit,1,,1,,oikeu +plugins,oik-presentation,6,bobbingwide,1,,oikeu +plugins,oik-weight-zone-shipping-pro-v0.1.0,1,,1,,oikeu +plugins,woocommerce-2.6,1,,1,,oikeu +plugins,woocommerce-2.6.6,1,,1,,oikeu +plugins,woocommerce-3.0,1,,1,,oikeu +plugins,woocommerce-add-countries,3,Daniele De Santis,1,,oikeu +plugins,Automattic-developer-57628b7,1,,1,,oobit +plugins,developer-v1.0.0,1,,1,,oobit +plugins,floating-admin-menu,1,Till Krüss,1,,oobit +plugins,html5-slideshow-presentations,1,,1,,oobit +plugins,monster-widget,1,Automattic,1,,oobit +plugins,oik-book,1,bobbingwide,1,,oobit +plugins,rewrite-rules-inspector,1,Daniel Bachhuber Automattic,1,,oobit +plugins,sitepush,1,Mark Rowatt Anderson,1,,oobit +plugins,user-switching,1,John Blackbourn,1,,oobit +plugins,vip-scanner,1,Automattic (Original code by Pross Otto42 and Thorsten Ott),1,,oobit +plugins,wp-video-lightbox,1,Ruhul Amin,1,,oobit +plugins,add-linked-images-to-gallery-v01,1,,1,,ourlistenersclub +plugins,bi2,1,,1,,ourlistenersclub +plugins,bulk-move,1,Sudar,1,,ourlistenersclub +plugins,directory,2,,1,,ourlistenersclub +plugins,fff-cron-manager,1,,1,,ourlistenersclub +plugins,oik-republish,2,bobbingwide,1,,ourlistenersclub +plugins,paypal-framework,1,Aaron D. Campbell,1,,ourlistenersclub +plugins,paypal-responder,1,,1,,ourlistenersclub +plugins,wp-clean-up,1,BoLiQuan,1,,ourlistenersclub +plugins,wp-crontrol,1,Edward Dale & John Blackbourn,1,,ourlistenersclub +plugins,wp-slimstat,3,Camu,1,,ourlistenersclub +plugins,woocommerce-extra-charges-to-payment-gateways,2,,1,,owcs +plugins,woocommerce-germanized,1,Vendidero,1,,owcs +plugins,woocommerce-jetpack,2,Algoritmika Ltd,1,,owcs +plugins,woocommerce-multilingual,2,,1,,owcs +plugins,woocommerce-poor-guys-swiss-knife,2,Uli Hake,1,,owcs +plugins,woocommerce-product-gift-wrap,2,Mike Jolley,1,,owcs +plugins,woocommerce-quantity-increment,2,Automattic WooThemes,1,,owcs +plugins,woocommerce-role-based-methods,2,WPBackOffice,1,,owcs +plugins,woocommerce-smart-coupons,2,WooThemes,1,,owcs +plugins,woocommerce-volume-discount-coupons,2,itthinx,1,,owcs +plugins,woocommerce-wholesale-prices,2,,1,,owcs +plugins,woocommerce-wholesale-prices-premium,2,,1,,owcs +plugins,woosidebars,2,WooThemes,1,,owcs +plugins,wpml-media,2,,1,,owcs +plugins,wpml-string-translation,2,,1,,owcs +plugins,wpml-translation-management,2,,1,,owcs +plugins,oik-weight-zone-shipping-pro-v0.2.2,1,,1,,owzs-pro +plugins,dropcaps-shortcodes-and-widget,1,,1,,phpunit +plugins,oik-dropcap,2,bobbingwide,1,,phpunit +plugins,simple-drop-cap,1,Yudhistira Mauris,1,,phpunit +plugins,genesis-layout-extras,1,David Decker - DECKERWEB,1,,pretty +plugins,wp-seo,1,Team Yoast,1,,pretty +plugins,more-privacy-options,3,,1,,rathmorefinancial +plugins,wordpress-mu-domain-mapping-qw,1,,1,,rathmorefinancial +plugins,easy-instagram,1,VeloMedia,1,,rcwdcom +plugins,gtrans,1,GTranslate,1,,rcwdcom +plugins,oik-bwtrace-too-new-for-oik-2.5,1,,1,,rcwdcom +plugins,popover,2,WPMU DEV,1,,rcwdcom +plugins,recent-posts,2,Barry (Incsub),1,,rcwdcom +plugins,simple-instagram,1,Aaron Speer,1,,rcwdcom +plugins,smart-bbboing,2,bobbingwide,1,,rcwdcom +plugins,wp-customer-reviews,1,Go Web Solutions,1,,rcwdcom +plugins,wpremote,1,,1,1,rcwdcom +plugins,oik-intouchcrm,2,bobbingwide,1,,rf +plugins,webchemistry-core,1,Mark Edmunds,1,,rf +plugins,webchemistry-googleplugin,1,Mark Edmunds,1,,rf +plugins,webchemistry-heatmap,1,Mark Edmunds,1,,rf +plugins,webchemistry-searchenginesettings,1,Mark Edmunds,1,,rf +plugins,webchemistry-seoboost,1,Mark Edmunds,1,,rf +plugins,webchemistry-shortcodes,1,Mark Edmunds,1,,rf +plugins,wordpress-mu-domain-mapping-local,1,,1,,rf +plugins,job-manager,2,Tom Townsend,1,,rjd +plugins,menu-exporter,2,Joe Hoyle - Human Made Limited,1,,rjd +plugins,ultimate-tinymce,3,,1,,rjd +plugins,user-role-editor,3,Vladimir Garagulya,1,,rjd +plugins,velvet-blues-update-urls,3,VelvetBlues.com,1,,rjd +plugins,wordpress-php-info,1,Christopher Ross,1,,rjd +plugins,wponlinebackup,3,Jason Woods @ Backup Technology,1,,rjd +plugins,google-sitemap-plugin,2,BestWebSoft,1,,rjd2 +plugins,googleanalytics,3,Kevin Sylvestre,1,,rjd2 +plugins,resume-submissions-job-postings,1,,1,,rjd2 +plugins,timthumb-vulnerability-scanner,3,Peter Butler,1,,rjd2 +plugins,wp-job-manager,1,Mike Jolley,1,,rjd2 +plugins,oik-renamed,2,,1,,rjduk +plugins,rjd,1,,1,,rjduk +plugins,ultimate-tinymce-7,1,,1,,rjduk +plugins,wp-spamfree-7,1,,1,,rjduk +plugins,oik-2.5,1,,1,,rngs +plugins,oik-bwtrace-2.0.6,1,,1,,rngs +plugins,username-changer,1,Daniel J Griffiths,1,,rngs +plugins,wp-email-login,2,,1,,rngs +plugins,wp-google-maps,2,,1,,solentro +plugins,bb-plugin,2,,1,,src +plugins,css,2,,1,,src +plugins,divi-builder,1,Elegant Themes,1,,src +plugins,gcf,2,,1,,src +plugins,gutenberg-2.0.0,1,,1,,src +plugins,gutenberg-course,2,,1,,src +plugins,jsforwp-blocks,2,Zac Gordon,1,,src +plugins,oik-batch-pre-resolving-cd-problem,2,,1,1,src +plugins,phpunit,3,,1,1,src +plugins,restrict-shipping-classes,3,bobbingwide,1,,src +plugins,shortcake-gutenberg,3,,1,,src +plugins,wppompey,3,bobbingwide,1,,src +plugins,mtouch-quiz,1,,1,,survive +plugins,WordPress-Importer,3,,1,1,susancowemiller +plugins,commentluv-premium,1,Andy Bailey,1,,symondson +plugins,easy-nivo-slider,1,Phillip Bryan,1,,symondson +plugins,fatpanda-facebook-comments,1,,1,,symondson +plugins,image-widget,2,Modern Tribe Inc.,1,,symondson +plugins,infusionsoft-web-tracker,1,,1,,symondson +plugins,oik-content,2,,1,,symondson +plugins,oik-thesis-featurebox,2,bobbingwide,1,,symondson +plugins,really-simple-facebook-twitter-share-buttons,1,WhileTrue,1,,symondson +plugins,share-and-follow,1,Andy Killen,1,,symondson +plugins,shareaholic,2,Shareaholic,1,,symondson +plugins,thank-me-later,1,,1,,symondson +plugins,tweet-old-post,1,Ajay Matharu,1,,symondson +plugins,vslider,1,Mr.Vibe,1,,symondson +plugins,what-would-seth-godin-do,2,,1,,symondson +plugins,zero_tolerance,1,,1,,symondson +plugins,backupbuddy,2,Dustin Bolton,1,,symondson_internetMarketing +plugins,cbnet-ping-optimizer,1,chipbennett,1,,symondson_internetMarketing +plugins,commentluv,1,Andy Bailey,1,,symondson_internetMarketing +plugins,dd-formmailer,1,Dagon Design,1,,symondson_internetMarketing +plugins,duplicator,2,LifeInTheGrid,1,,symondson_internetMarketing +plugins,easy-privacy-policy,1,Kevin Sparrow,1,,symondson_internetMarketing +plugins,exec-php,1,Sören Weber,1,,symondson_internetMarketing +plugins,featured-content-gallery,1,,1,,symondson_internetMarketing +plugins,feed-footer,1,Sherief Mursyidi,1,,symondson_internetMarketing +plugins,infolinks-officlial-plugin,1,,1,,symondson_internetMarketing +plugins,maintenance-mode,2,Michael Wöhrer,1,,symondson_internetMarketing +plugins,quick-adsense,1,Philip Ze,1,,symondson_internetMarketing +plugins,search-and-replace,1,Frank Bültge,1,,symondson_internetMarketing +plugins,seo-automatic-links,1,,1,,symondson_internetMarketing +plugins,share-this,1,,1,,symondson_internetMarketing +plugins,simple-tags,1,Amaury BALMER,1,,symondson_internetMarketing +plugins,sitemap-generator,1,Dagon Design,1,,symondson_internetMarketing +plugins,transposh-translation-filter-for-wordpress,1,,1,,symondson_internetMarketing +plugins,tubepress,1,Eric D. Hough,1,,symondson_internetMarketing +plugins,twitter-tools,2,Crowd Favorite,1,,symondson_internetMarketing +plugins,twitter-tools-bitly-links,1,Viper007Bond,1,,symondson_internetMarketing +plugins,ultimate-plugins-smart-update-pinger,1,Ultimate Plugins,1,,symondson_internetMarketing +plugins,worldlogger-live-web-analytics,1,,1,,symondson_internetMarketing +plugins,wp-db-backup,1,Austin Matzko,1,,symondson_internetMarketing +plugins,wp-polls,1,Lester 'GaMerZ' Chan,1,,symondson_internetMarketing +plugins,wp-postviews,1,Lester 'GaMerZ' Chan,1,,symondson_internetMarketing +plugins,wp-print,1,Lester 'GaMerZ' Chan,1,,symondson_internetMarketing +plugins,wp-responder-email-autoresponder-and-newsletter-plugin,1,,1,,symondson_internetMarketing +plugins,WPRobot3,1,,1,,symondson_internetMarketing +plugins,acf-options-page,1,Elliot Condon,1,,szerelmey +plugins,aryo-activity-log,1,Yakir Sitbon Maor Chasen Ariel Klikstein,1,,szerelmey +plugins,backupbuddy.hold,1,,1,,szerelmey +plugins,backupcreator.hold,1,,1,,szerelmey +plugins,better-recent-posts-widget,1,David Gewirtz,1,,szerelmey +plugins,cookie-law-info,2,Richard Ashby,1,,szerelmey +plugins,cool-timeline-pro,1,,1,,szerelmey +plugins,custom-post-type-ui,2,WebDevStudios,1,,szerelmey +plugins,dvteam,1,Egemenerd,1,,szerelmey +plugins,featured-video-plus,1,Alexander Höreth,1,,szerelmey +plugins,go_portfolio,1,Granth,1,,szerelmey +plugins,options-framework,1,Devin Price,1,,szerelmey +plugins,page-list,1,webvitaly,1,,szerelmey +plugins,post-types-order,1,Nsp Code,1,,szerelmey +plugins,simple-custom-css,1,John Regan Danny Van Kooten,1,,szerelmey +plugins,site-icon-pro,1,Luca Spiller,1,,szerelmey +plugins,soil,1,Roots,1,,szerelmey +plugins,the-grid,1,Themeone,1,,szerelmey +plugins,vc-extensions-bundle,1,,1,,szerelmey +plugins,wp-custom-cssjs,1,,1,,szerelmey +plugins,wp-google-maps-gold,1,WP Google Maps,1,,szerelmey +plugins,wp-google-maps-pro,1,WP Google Maps,1,,szerelmey +plugins,wp-rocket,1,WP Media,1,,szerelmey +plugins,wp-smushit.hold,1,,1,,szerelmey +plugins,CMB2,1,,1,1,tags +plugins,wysija-newsletters,4,,1,,tags +plugins,mad-mimi-broken,1,,1,,therealc +plugins,sociable-broken,1,,1,,therealc +plugins,genesis-enews-extended,1,,1,,wholebeingwellbeing +plugins,.git,1,,1,,wordpress +plugins,27918,1,bobbingwide,1,,wordpress +plugins,admin,1,,1,,wordpress +plugins,backup-qw,1,,1,,wordpress +plugins,botnet,1,,1,,wordpress +plugins,bs8484,1,bobbingwide,1,,wordpress +plugins,bugrit,2,,1,,wordpress +plugins,cli,1,,1,,wordpress +plugins,climate,1,,1,,wordpress +plugins,colours2woo,1,,1,,wordpress +plugins,commentason,1,bobbingwide,1,,wordpress +plugins,dtib-review,2,bobbingwide,1,,wordpress +plugins,effort,1,bobbingwide,1,,wordpress +plugins,g-c-w,1,,1,,wordpress +plugins,g-pre-g,1,,1,,wordpress +plugins,genesis-header-nav-develop,1,,1,,wordpress +plugins,getver,1,,1,,wordpress +plugins,GlotPress-WP,1,,1,,wordpress +plugins,hello,2,,1,1,wordpress +plugins,iphone-images,1,,1,,wordpress +plugins,issue-49,1,,1,,wordpress +plugins,kate,1,bobbingwide,1,,wordpress +plugins,log-urgh,1,,1,,wordpress +plugins,my-plugin,1,,1,1,wordpress +plugins,myplugins,1,,1,,wordpress +plugins,OAuth1,1,,1,,wordpress +plugins,oik-adr,1,bobbingwide,1,,wordpress +plugins,oik-api,1,,1,,wordpress +plugins,oik-business,1,bobbingwide,1,,wordpress +plugins,oik-bwtrace.php,1,,1,,wordpress +plugins,oik-cartcountry-shipping,1,bobbingwide,1,,wordpress +plugins,oik-child-theme,1,bobbingwide,1,,wordpress +plugins,oik-clone-wxr,1,bobbingwide,1,,wordpress +plugins,oik-cookie-law,1,bobbingwide,1,,wordpress +plugins,oik-css-broken-1029,1,,1,,wordpress +plugins,oik-downloads,1,bobbingwide,1,,wordpress +plugins,oik-external-link-warning-pregit,1,,1,,wordpress +plugins,oik-getimage,1,,1,,wordpress +plugins,oik-html-importer,1,bobbingwide,1,,wordpress +plugins,oik-html2markdown,1,bobbingwide,1,,wordpress +plugins,oik-i18n,1,bobbingwide,,1,wordpress +plugins,oik-jquery,1,,1,,wordpress +plugins,oik-l10n,1,,1,,wordpress +plugins,oik-mailchimp,1,,1,,wordpress +plugins,oik-make,1,,1,,wordpress +plugins,oik-money,1,bobbingwide,1,,wordpress +plugins,oik-options,1,bobbingwide,1,,wordpress +plugins,oik-payments,1,bobbingwide,1,,wordpress +plugins,oik-pgs,1,bobbingwide,1,,wordpress +plugins,oik-policies,1,,1,,wordpress +plugins,oik-privacy-policy.php,1,,1,,wordpress +plugins,oik-pro,1,bobbingwide,1,,wordpress +plugins,oik-rewrite,1,bobbingwide,1,,wordpress +plugins,oik-shutdown,1,,1,,wordpress +plugins,oik-signup-user-notification,1,,1,,wordpress +plugins,oik-squeeze-pregit,1,,1,,wordpress +plugins,oik-syndicate,1,bobbingwide,1,,wordpress +plugins,oik-tip,1,bobbingwide,,,wordpress +plugins,oik-woo,3,bobbingwide,1,,wordpress +plugins,oik-wzs-rates-pregit,1,,1,,wordpress +plugins,oik-zip,1,bobbingwide,,,wordpress +plugins,oldplay,2,,1,,wordpress +plugins,oobar,2,bobbingwide,,,wordpress +plugins,opcache,1,,1,,wordpress +plugins,owzs-pro,1,,1,,wordpress +plugins,php71-fixes,1,,1,1,wordpress +plugins,php72-fixes,1,,1,1,wordpress +plugins,play-rel1,2,,1,,wordpress +plugins,play-rel2,2,,1,,wordpress +plugins,plugin-dependencies,1,scribu,1,,wordpress +plugins,PostMeta,1,,1,,wordpress +plugins,premium-plugins,1,bobbingwide,1,,wordpress +plugins,relocateme,1,,1,,wordpress +plugins,sample,1,,1,,wordpress +plugins,shortcode-ui,3,Fusion Engineering and community,1,,wordpress +plugins,sitemap-redirect,1,,1,,wordpress +plugins,slog,1,bobbingwide,,,wordpress +plugins,sql-csv,1,,1,,wordpress +plugins,storm10,1,Herb,1,,wordpress +plugins,tennis,1,bobbingwide,1,,wordpress +plugins,test-41257,1,,1,1,wordpress +plugins,testapi,1,,1,,wordpress +plugins,tides,1,,1,,wordpress +plugins,twentytwelve-copied-from-theme,1,,1,,wordpress +plugins,txt2md,1,bobbingwide,,,wordpress +plugins,unserialize,1,,1,,wordpress +plugins,woocommerce-currency-switcher,1,,1,,wordpress +plugins,woocommerce-uk-counties,1,Lee Willis,1,,wordpress +plugins,wordpress-develop-tests-svn-symlink,1,,1,,wordpress +plugins,wp-browscap,1,,1,,wordpress +plugins,wp-downloads,1,,1,,wordpress +plugins,WP-Parser,2,Ryan McCue Paul Gibbs Andrey "Rarst" Savchenko and Contributors,1,,wordpress +plugins,y,1,,1,,wordpress +plugins,z,1,bobbingwide,1,,wordpress +plugins,jetpack-renamed,1,,1,1,wp-a2z +plugins,wp-migrate-db-0.9,1,,1,,wp-a2z +plugins,BuddyPress,1,,1,1,wp-pompey +plugins,welcome-pack,1,Paul Gibbs,1,,wp-pompey +plugins,wp-geo,1,Ben Huson,1,,wp-pompey +plugins,better-wp-security,1,Bit51.com,1,,wp34 +plugins,editorial-calendar,1,,1,,wp34 +plugins,played,1,,1,,wp34 +plugins,sf-author-url-control,1,Grégory Viguier,1,,wp34 +plugins,import-html-pages,1,,1,,wp35 +plugins,link-manager,1,WordPress,1,,wp35 +plugins,members,2,Justin Tadlock,1,,wp35 +plugins,oa-social-login,1,Claude Schlesser,1,,wp35 +plugins,user-photo,1,Weston Ruter,1,,wp35 +plugins,wordpress-simple-survey,1,,1,,wp35 +plugins,wp-memory-usage,1,Alex Rabe,1,,wp35 +plugins,all-in-one-favicon,1,Arne Franken,1,,wp47 +plugins,Basic-Auth-master,1,,1,,wp47 +plugins,custom-metadata,1,,1,,wp47 +plugins,email-as-username-for-wp-members,1,New Tribes Mission (Stephen Narwold),1,,wp47 +plugins,groups,1,itthinx,1,,wp47 +plugins,health-check,1,The WordPress.org community,1,,wp47 +plugins,inc,1,,1,,wp47 +plugins,my-wp-health-check,1,,1,,wp47 +plugins,OAuth1-master,1,,1,,wp47 +plugins,oik-bwtrace-2.0.12,1,,1,,wp47 +plugins,oik-cmb,1,bobbingwide,1,1,wp47 +plugins,oik-user-v0.5,1,,1,,wp47 +plugins,pods,2,,1,,wp47 +plugins,public-post-preview,1,Dominik Schilling,1,,wp47 +plugins,push-syndication,1,Automattic,1,,wp47 +plugins,shareadraft,1,Nikolay Bachiyski,1,,wp47 +plugins,shareadraft-master,1,,1,,wp47 +plugins,shipping-awd,1,Andy_P (modified by Mantish to make it state based),1,,wp47 +plugins,simple-preview,1,Gabriel Nagmay,1,,wp47 +plugins,spam-destroyer,1,,1,,wp47 +plugins,testimonials-by-woothemes,1,,1,,wp47 +plugins,woocommerce-2.5.2,1,,1,,wp47 +plugins,woocommerce-weight-country-based-shipping,1,,1,,wp47 +plugins,wordpress-security-lab,1,eConsultants.it Ltd,1,,wp47 +plugins,youtube_oembed_fix,1,bobbingwide,1,,wp47 +plugins,actions,1,,1,,wpit +plugins,cornerstone,1,,1,,wpit +plugins,oik-3.0.2,1,,1,,wpit +plugins,shortcode-reference,1,,1,,wpit +plugins,acf,1,Elliot Condon,1,,wpms +plugins,advanced-custom-fields-v4.3.9,1,,1,,wpms +plugins,advanced-theme-switcher,1,Paul Menard (Incsub),1,,wpms +plugins,cloner,1,WPMU DEV,1,,wpms +plugins,contact-form,1,AdamGold,1,,wpms +plugins,custom-content-type-manager,1,,1,1,wpms +plugins,custompress,1,,1,,wpms +plugins,e-newsletter,1,WPMUDEV,1,,wpms +plugins,edd,1,Bobbing Wide Pippin Williamson,1,,wpms +plugins,gravity-forms-custom-post-types,1,,1,,wpms +plugins,ml-slider,1,Matcha Labs,1,,wpms +plugins,multisite-content-copier,1,WPMU DEV,1,,wpms +plugins,oik-bwtracev2.0.12,1,,1,,wpms +plugins,oik-f,1,,1,,wpms +plugins,oik-fields-ren,1,,1,,wpms +plugins,oik-ms-renamed,1,,1,,wpms +plugins,oik-nivo-slider-1.3,1,,1,,wpms +plugins,oik-rwd-ren,1,,1,,wpms +plugins,oik-sc-help-renamed,1,,1,,wpms +plugins,oik-types-1.6,1,,1,,wpms +plugins,recent-global-posts-widget,1,,1,,wpms +plugins,remember-me-checked,1,Aaron Edwards (for Incsub),1,,wpms +plugins,saved_plugins,1,,1,,wpms +plugins,slide-in,1,,1,,wpms +plugins,wp-smush-pro,1,,1,,wpms +plugins,wpmu-dev-plusone,1,,1,,wpms +plugins,aqua-page-builder,1,,1,,wporg +plugins,oik-wcs-renamed,1,,1,,wporg +plugins,paypal-pro,1,WooThemes,1,,wporg +plugins,themes,1,,1,,wporg +plugins,slideshow-manager,1,,1,,wws +plugins,wp-simple-rss-feed-reader,1,Viancen,1,,wws +plugins,acf-repeater,1,Elliot Condon,1,,yellowbrand +plugins,advanced-custom-fields-fucked,1,,1,,yellowbrand +plugins,google-map-shortcode,1,Alain Gonzalez,1,,yellowbrand +plugins,gravityformsmailchimp,1,,1,,yellowbrand +plugins,my-page-order,1,,1,,yellowbrand +plugins,page-tree,1,,1,,yellowbrand +plugins,slickr-flickr,1,Russell Jamieson,1,,yellowbrand +plugins,social,1,Crowd Favorite,1,,yellowbrand +plugins,subpages-widget,1,,1,,yellowbrand +plugins,subscribe2,1,Matthew Robinson,1,,yellowbrand +plugins,taxonomy-widget,1,Michael Fields,1,,yellowbrand +plugins,wordpress-custom-post-type-archive,1,,1,,yellowbrand +plugins,wpgmappity,1,,1,,yellowbrand +themes,.idea,2,,1,,. +themes,altitude-pro,3,,1,,. +themes,bag2013,3,,1,,. +themes,elitist,1,,1,,. +themes,genesis,31,,,,. +themes,genesis-2.1.3,1,,1,,. +themes,genesis-2.2.0,1,,1,,. +themes,oik2012,7,,1,,. +themes,oik20120,5,,1,,. +themes,omg,1,,1,,. +themes,rf0122,1,,1,,. +themes,rjdap,2,,1,,. +themes,simplest,1,,1,,. +themes,storefront,4,,1,,. +themes,twentyeleven,57,,1,,. +themes,twentyfifteen,43,,1,,. +themes,twentyfourteen,51,,1,,. +themes,twentyseventeen,26,,1,,. +themes,twentysixteen,23,,1,,. +themes,twentyten,56,,1,,. +themes,twentythirteen,53,,1,,. +themes,twentytwelve,57,,1,,. +themes,wpg0216,4,,1,,. +themes,wpg0216bp,2,,1,,. +themes,act1103,2,,1,,achoired-taste +themes,act0402,1,,1,,act +themes,act0404,1,,1,,act +themes,act0408,1,,1,,act +themes,act0408a,1,,1,,act +themes,aldworth,1,,1,,aldworth +themes,aldworth0628,1,,1,,aldworth +themes,Avada,1,,1,,aldworth +themes,constructzine-lite,1,,1,,aldworth +themes,hsoh0914,4,,1,,andrea +themes,hsoh0914a,4,,1,,andrea +themes,aumabs0402a,1,,1,,aumabs +themes,aumabs0402b,1,,1,,aumabs +themes,aumabs0403,1,,1,,aumabs +themes,aumabs0417,1,,1,,aumabs +themes,aumabs0425,2,,1,,aumabs +themes,aumabs0507,2,,1,,aumabs +themes,custom-community,1,,1,,aumabs +themes,goodtheme-lead,1,,1,,aumabs +themes,personaltrainer,2,,1,,aumabs +themes,bba0605,1,,1,,balancingbyart +themes,bba0615,1,,1,,balancingbyart +themes,bba0622,1,,1,,balancingbyart +themes,bba0720c,2,,1,,balancingbyart +themes,bcs0313,1,,1,,bettercorestrength +themes,bcs0313c,1,,1,,bettercorestrength +themes,destro,1,,1,,bettercorestrength +themes,dkret3,1,,1,,bettercorestrength +themes,nuance-v1.2.3,1,,1,,bettercorestrength +themes,pinboard,1,,1,,bettercorestrength +themes,rockstar,1,,1,,bettercorestrength +themes,spartan,1,,1,,bettercorestrength +themes,survive0310,4,,1,,bettercorestrength +themes,genesis-SB,3,,,,bigram +themes,air-balloon-lite,1,,1,,bigram-renamed +themes,pictorico,1,,1,,bigram-renamed +themes,sb0515,2,,1,,bigram-renamed +themes,bwdesign1028,3,,1,,blogbbf +themes,bwwow1130,2,,1,,blogbbf +themes,bwwow1203,2,,1,,blogbbf +themes,classic,5,,1,,blogbbf +themes,cwiccer1207,3,,1,,blogbbf +themes,default,5,,1,,blogbbf +themes,gsph1103,1,,1,,blogbbf +themes,pob1028,1,,1,,blogbbf +themes,sb1028,1,,1,,blogbbf +themes,sb2010,1,,1,,blogbbf +themes,sb2010_wm,1,,1,,blogbbf +themes,theme465,1,,1,,blogbbf +themes,broad-builders,1,,1,,broad-builders +themes,bw2013,4,,1,,bwcom +themes,bw20131004,2,,1,,bwcom +themes,genesis-bw,3,,,,bwcom +themes,no-sidebar-pro,2,,1,,bwcom +themes,parallax-pro,5,,1,,bwcom +themes,workstation-pro,2,,1,,bwcom +themes,amazing-times,2,,1,,bwdesign +themes,bg-mobile-first,2,,1,,bwdesign +themes,bwblogwordpress,2,,1,,bwdesign +themes,bwdesign0622,1,,1,,bwdesign +themes,bwdesign0715,1,,1,,bwdesign +themes,bwdesign0830,1,,1,,bwdesign +themes,bwdesign0830c,1,,1,,bwdesign +themes,diligent,1,,1,,bwdesign +themes,Engage,2,,1,,bwdesign +themes,freprotheme,1,,1,,bwdesign +themes,genesis-a2z,4,,,1,bwdesign +themes,genesis-broken,1,,1,,bwdesign +themes,genesis-hm,5,,,,bwdesign +themes,genesis-odea,3,,1,,bwdesign +themes,genesis-oik,14,,,1,bwdesign +themes,journal,2,,1,,bwdesign +themes,minimalist-pro,2,,1,,bwdesign +themes,novo,1,,1,,bwdesign +themes,one-pager-genesis-master,1,,1,,bwdesign +themes,twenty-seven-pro,2,,1,,bwdesign +themes,ccd1001,1,,1,,classic +themes,ccd1001c,1,,1,,classic +themes,cjw0118,2,,1,,coaching2inspire +themes,cjw20160315,2,,1,,coaching2inspire +themes,cjw20160316,1,,1,,coaching2inspire +themes,royal,1,,1,,colours +themes,cc0512,1,,1,,cookie-cat +themes,genesis-cc0512,1,,,,cookie-cat +themes,hm140702,2,,1,,cwiccer +themes,rf0510c,3,,1,,cwiccer +themes,dws,1,,,,dealwithstress +themes,rmt4dws,1,,1,,dealwithstress +themes,dws2016,2,,1,,dws +themes,dws2016-original,1,,1,,dws +themes,dwscomlaytfh,1,,1,,dws +themes,edw0112,2,,1,,edw +themes,edw0114,1,,1,,edw +themes,edw0121,1,,1,,edw +themes,edw0125,1,,1,,edw +themes,edw0203,1,,1,,edw +themes,edw0616,1,,1,,edw +themes,edw0911,1,,1,,edw +themes,edge1117,1,,1,,eedge +themes,edge1117c,1,,1,,eedge +themes,edge1202,1,,1,,eedge +themes,edge120201,3,,1,,eedge +themes,edge120201c,3,,1,,eedge +themes,edge1202c,1,,1,,eedge +themes,eft0621,2,,1,,eft +themes,eft0712,2,,1,,eft +themes,eft1009,2,,1,,eft +themes,eft1017,2,,1,,eft +themes,eft1018,2,,1,,eft +themes,eft1018r,2,,1,,eft +themes,heft0204,1,,1,,eft +themes,heft0205,2,,1,,eft +themes,heft1229,1,,1,,eft +themes,heft1229c,2,,1,,eft +themes,heft1229gc,1,,1,,eft +themes,architecture,1,,1,,engarc +themes,architecture-v1-04,1,,1,,engarc +themes,eoci0112,3,,1,,eoci +themes,sds_2012,1,,1,,eoci +themes,fsp0114,1,,1,,fsp +themes,lalu1223,2,,1,,fsp +themes,gdwifa,1,,,,gdwifa +themes,gdwifa20140303,2,,1,,gdwifa +themes,genesis-gdw,2,,1,,gdwifa +themes,gta0422,1,,1,,gtate +themes,gta0614,1,,1,,gtate +themes,gta0621,1,,1,,gtate +themes,gta0722c,2,,1,,gtate +themes,Builder-Cohen,1,,1,,hallsgs +themes,Builder-Madison,1,,1,,hallsgs +themes,Builder-Paige,1,,1,,hallsgs +themes,genesis-2.2.7,1,,1,,hallsgs +themes,genesis-hehall,1,,,,hallsgs +themes,siteground-wp23,1,,1,,hallsgs +themes,siteground-wp63,1,,1,,hallsgs +themes,siteground-wp73,1,,1,,hallsgs +themes,Universe,1,,1,,hallsgs +themes,World,1,,1,,hallsgs +themes,eft121212,2,,1,,hampshire-eft +themes,eft20140523,1,,1,,hampshire-eft +themes,eft20140523-qw,1,,1,,hampshire-eft +themes,eft20140527,3,,1,,hampshire-eft +themes,scr0909,3,,1,,hampshire-eft +themes,sorbet,2,,1,,hampshire-eft +themes,superhero,1,,1,,hampshire-eft +themes,genesis-hms,1,,1,,handmadestudios +themes,hms0820,2,,1,,handmadestudios +themes,hms0826,2,,1,,handmadestudios +themes,hms0906,2,,1,,handmadestudios +themes,hms0907,2,,1,,handmadestudios +themes,sh0412,1,,1,,happystevehook +themes,shell-lite,1,,1,,happystevehook +themes,DailyJournal,3,,1,,hifianswers +themes,dailyjournal-olc,3,,1,,hifianswers +themes,Corporative,1,,1,,hm +themes,Corporative-child,1,,1,,hm +themes,genesis-v2.2.6,2,,1,,hm +themes,hm120129,3,,1,,hm +themes,hm120206,4,,1,,hm +themes,hm120206c,4,,1,,hm +themes,hsoh0922,4,,1,,hosh +themes,hsoh0928bp,3,,1,,hosh +themes,hsoh1027bp,4,,1,,hosh +themes,BlueMist,2,,1,,janecoomb +themes,Feather,2,,1,,janecoomb +themes,InterPhase,2,,1,,janecoomb +themes,PureType,2,,1,,janecoomb +themes,responsive,1,,1,,janecoomb +themes,Trim,2,,1,,janecoomb +themes,cjw1118,1,,1,,jtth +themes,cjw1123,1,,1,,jtth +themes,cjw1123c,1,,1,,jtth +themes,cjw1124,1,,1,,jtth +themes,cjw1128,1,,1,,jtth +themes,cjw1128c,1,,1,,jtth +themes,pcs1013,1,,1,,jtth +themes,lalu0915,1,,1,,lalucouk +themes,Magnificent,1,,1,,lfd4u +themes,retro-fitted,1,,1,,lfd4u +themes,retro-fitted-child,1,,1,,lfd4u +themes,Artisteer41,3,,1,,oikcom +themes,oik0808,3,,1,,oikcom +themes,oik0819c,3,,1,,oikcom +themes,oik0917t,4,,1,,oikcom +themes,oik0918,3,,1,,oikcom +themes,oik310816,5,,1,,oikcom +themes,oik310816c,4,,1,,oikcom +themes,oik410130,4,,1,,oikcom +themes,oik410130-1.1,2,,1,,oikcom +themes,oik410130c,4,,1,,oikcom +themes,oik410130c-1.1,2,,1,,oikcom +themes,oik410923,4,,1,,oikcom +themes,oik120815,1,,1,,oikcouk +themes,attitude,1,,1,,oikeu +themes,nivo2011,5,,1,,oikeu +themes,oobit,6,,1,,oikeu +themes,vantage,2,,1,,oikeu +themes,dailyjournal-olc2.3,1,,1,,olc +themes,DailyJournal2.3,2,,1,,olc +themes,olc0618,2,,1,,olc +themes,olc120815,2,,1,,olc +themes,olc120815c,3,,1,,olc +themes,oobit-extras,1,,1,,oobit +themes,alver0620,1,,1,,ourlistenersclub +themes,DailyJournal2.4,1,,1,,ourlistenersclub +themes,genesis-image,6,,,1,pretty +themes,genesis-paap,2,,1,,pretty +themes,breakpoint,1,,1,,pwaep +themes,in-the-beginning,1,,1,,pwaep +themes,Nominal,1,,1,,pwaep +themes,maximus,2,,1,,rathmorefinancial +themes,maximus-rf,2,,1,,rathmorefinancial +themes,rf0202,2,,1,,rathmorefinancial +themes,rf0227,2,,1,,rathmorefinancial +themes,rf0227c,2,,1,,rathmorefinancial +themes,rf0311,5,,1,,rathmorefinancial +themes,rf0311c,4,,1,,rathmorefinancial +themes,rf0403,2,,1,,rathmorefinancial +themes,rf0403c,2,,1,,rathmorefinancial +themes,rf0510,2,,1,,rathmorefinancial +themes,act0331,1,,1,,rcwdcom +themes,bag2013-v0.1,2,,1,,rcwdcom +themes,eps0906,1,,1,,rcwdcom +themes,fabt120330,1,,1,,rcwdcom +themes,gkz1116,1,,1,,rcwdcom +themes,japics1102,2,,1,,rcwdcom +themes,li020226,1,,1,,rcwdcom +themes,mdt1209,1,,1,,rcwdcom +themes,oobit v1.0,1,,1,,rcwdcom +themes,pcs0809,1,,1,,rcwdcom +themes,pcs0822,1,,1,,rcwdcom +themes,pcs1003,1,,1,,rcwdcom +themes,phoenix0516,1,,1,,rcwdcom +themes,rcgc0318,1,,1,,rcwdcom +themes,rcgc0818,1,,1,,rcwdcom +themes,rcr0725,2,,1,,rcwdcom +themes,rctc0130,2,,1,,rcwdcom +themes,rcwd0415,1,,1,,rcwdcom +themes,s2s0515,2,,1,,rcwdcom +themes,s2s0515c,2,,1,,rcwdcom +themes,st0515,1,,1,,rcwdcom +themes,tl0515,1,,1,,rcwdcom +themes,yellow0117,1,,1,,rcwdcom +themes,centita,3,,1,,rjd +themes,centita3.0,2,,1,,rjd +themes,centita30c,2,,1,,rjd +themes,rjdap-0.0.3,1,,1,,rjd +themes,rjdap-clone,1,,1,,rjd +themes,__MACOSX,1,,1,,rjduk +themes,centita3.0-7,1,,1,,rjduk +themes,centita30c-7,1,,1,,rjduk +themes,genesis-2.2.6,1,,1,,rjduk +themes,imbalance,1,,1,,rjduk +themes,modernbloggerpro,1,,1,,rjduk +themes,rjdpp,1,,1,,rjduk +themes,rngs0414,3,,1,,rngs +themes,rngs0414c,3,,1,,rngs +themes,rngs0721,2,,1,,rngs +themes,rngs0721-ren,1,,1,,rngs +themes,rngs0721-wtf,1,,1,,rngs +themes,rngs0721c,2,,1,,rngs +themes,rngs0827,2,,1,,rngs +themes,sol121012,2,,1,,solentro +themes,sol121012c,2,,1,,solentro +themes,sol150508,2,,1,,solentro +themes,Divi,1,,1,,src +themes,wp-pompey,3,,1,,src +themes,survive1210,2,,1,,survive +themes,trcg120403,3,,1,,susancowemiller +themes,trcg120403c,3,,1,,susancowemiller +themes,symondson0903,1,,1,,symondson +themes,symondson0903c,1,,1,,symondson +themes,thesis_16,1,,1,,symondson +themes,lifestyle,1,,1,,symondson_internetMarketing +themes,szerelmey,1,,1,,szerelmey +themes,genesis-tags,2,,,,tags +themes,atahualpa,1,,1,,wholebeingwellbeing +themes,genesis-sample,1,,1,,wholebeingwellbeing +themes,genesis-wbwb,1,,1,,wholebeingwellbeing +themes,wbwb20141021,2,,1,,wholebeingwellbeing +themes,_oik,1,,1,,wordpress +themes,2014,1,,1,,wordpress +themes,2015,1,,1,,wordpress +themes,2016,1,,1,,wordpress +themes,aumabs0507c,1,,1,,wordpress +themes,aumabs0520c,1,,1,,wordpress +themes,bag2013-0616,1,,1,,wordpress +themes,bag2013-0626,1,,1,,wordpress +themes,bag2013-saved,1,,1,,wordpress +themes,bwdesign120209,1,,1,,wordpress +themes,bwdesign120209c,1,,1,,wordpress +themes,bwwow111120,1,,1,,wordpress +themes,cjw20160316w,1,,1,,wordpress +themes,eie120910c,2,,1,,wordpress +themes,genesis-aati,1,,1,,wordpress +themes,genesis-image-pregit,1,,1,,wordpress +themes,jquery-UI,1,,1,,wordpress +themes,jquery-ui-1.12.1.custom,1,,1,,wordpress +themes,jquery-ui-themes-1.12.1,1,,1,,wordpress +themes,oik0917,1,,1,,wordpress +themes,oik0917c,1,,1,,wordpress +themes,oik0917r,1,,1,,wordpress +themes,oik0917s,1,,1,,wordpress +themes,oik120206,1,,1,,wordpress +themes,oik120206c,1,,1,,wordpress +themes,oik310816c-buggered,1,,1,,wordpress +themes,oik401126,1,,1,,wordpress +themes,oik401126-art4,1,,1,,wordpress +themes,oik410326,2,,1,,wordpress +themes,oik410923c,1,,1,,wordpress +themes,oik420130,1,,1,,wordpress +themes,oik420130lm,1,,1,,wordpress +themes,oik420130wp,1,,1,,wordpress +themes,olc130611,1,,1,,wordpress +themes,psc0211,1,,1,,wordpress +themes,style,1,,1,,wordpress +themes,survive0310-art4,1,,1,,wordpress +themes,survive1120,2,,1,,wordpress +themes,t10scom0201,1,,1,,wordpress +themes,t10scom120128,1,,1,,wordpress +themes,thematic,1,,1,,wordpress +themes,trcg121026,1,,1,,wordpress +themes,trtc0104,1,,1,,wordpress +themes,trtc0212,1,,1,,wordpress +themes,trtc0225,1,,1,,wordpress +themes,trtc0225c,1,,1,,wordpress +themes,trtc1230,1,,1,,wordpress +themes,Untitled,1,,1,,wordpress +themes,twentyfifteen-v1.7,1,,1,,wp-a2z +themes,twentysixteen-symlinked-gitted,1,,1,,wp-a2z +themes,bp-default,2,,1,,wp-pompey +themes,p2,1,,1,,wp-pompey +themes,wpg0216bp-renamed,1,,1,,wp-pompey +themes,bp1027,1,,1,,wp33 +themes,hsoh0922bp,1,,1,,wp33 +themes,hsoh1015,1,,1,,wp33 +themes,boldy,1,,1,,wp34 +themes,business-lite,1,,1,,wp34 +themes,eie120910,1,,1,,wp34 +themes,frantic,1,,1,,wp34 +themes,Innova,1,,1,,wp34 +themes,sh0612,1,,1,,wp34 +themes,asteria-lite,1,,1,,wp47 +themes,blackbird,1,,1,,wp47 +themes,blackbirdtheme-trial,1,,1,,wp47 +themes,match,1,,1,,wp47 +themes,mystile,1,,1,,wp47 +themes,nivoblackbird,1,,1,,wp47 +themes,nuance-v1.2.4,1,,1,,wp47 +themes,t40,1,,1,,wp47 +themes,wonderflux,1,,1,,wp47 +themes,minn-lite,1,,1,,wpit +themes,aventurine,1,,1,,wpms +themes,dtib0601,1,,1,,wpms +themes,dtib0601a,1,,1,,wpms +themes,dtib0723a,1,,1,,wpms +themes,genesis-2.2.3,1,,1,,wpms +themes,pcs20141209,1,,1,,wpms +themes,sleekphoto,1,,1,,wpms +themes,twentyeleven-2.1,1,,1,,wpms +themes,uf-scribe,1,,1,,wpms +themes,uf-spirit,1,,1,,wpms +themes,upfront,1,,1,,wpms +themes,Martha,1,,1,,wporg +themes,Martha1,1,,1,,wporg +themes,wporg-developer,1,,1,,wporg +themes,etiquette-wp,1,,1,,wws +themes,yellowbrand,1,,1,,yellowbrand +themes,yellowbrand-oik,1,,1,,yellowbrand +Totals,1174,4009 diff --git a/converter/sites.csv b/converter/sites.csv index a9a9f60..39f1814 100644 --- a/converter/sites.csv +++ b/converter/sites.csv @@ -1,260 +1,260 @@ -3.0,dealwithstress,4,5 -3.0,design,9,6 -3.0.3,blogbbf,14,15 -3.0.5,fsp,20,12 -3.2.1,hsoh_old,19,9 -3.2.1,wp321,5,4 -3.3.1,eedge,11,10 -3.3.1,eedge1114b,12,6 -3.3.1,eft,18,15 -3.3.1,gtate,14,8 -3.3.1,happystevehook,16,6 -3.3.1,jtth,8,13 -3.3.1,symondson_internetMarketing,36,4 -3.3.2,hm0618,27,7 -3.3.2,hosh,21,9 -3.4.1,hm1013,33,7 -3.4.1,secrets,14,5 -3.4.1,wp33,11,11 -3.4.2,edw,20,11 -3.4.2,eedge1114,13,6 -3.5,eoci,7,6 -3.5,wp34,41,14 -3.5.1,bettercorestrength,23,15 -3.5.1,wp35,25,7 -3.5.1,yellowbrand,27,7 -3.6,hsoh,21,11 -3.6,wws,32,8 -3.6.1,bwcom-renamed,11,6 -3.6.1,bwdevel,11,4 -3.6.1,janecoomb,30,10 -3.6.1,lfd4u,15,12 -3.7.1,wp371,3,4 -3.8,wp38,3,5 -3.8.1,act,29,12 -3.8.1,ourlistenersclub,41,15 -3.8.1,rf,37,17 -3.8.11,rjd2,27,10 -3.9,andrea,5,7 -3.9-alpha,svn,3,7 -3.9.1,olc,35,14 -4.0,hifianswers,41,5 -4.0,oik-plugins.uk,4,5 -4.0,oobit,40,9 -4.1.1,classic,12,10 -4.1.4,wholebeingwellbeing,18,11 -4.2.10,survive,23,10 -4.2.2,balancingbyart,18,12 -4.2.2,pretty,15,9 -4.2.7,therealc,22,11 -4.3.1,aumabs,32,17 -4.3.1,handmadestudios,40,12 -4.3.6,hampshire-eft,51,19 -4.4,rcwdcom,68,38 -4.4.11,rjd,35,14 -4.4.11,rjduk,41,22 -4.4.12,rathmorefinancial,30,15 -4.4.2,coaching2inspire,16,11 -4.4.2,wp-a2z-v4.4.2,29,8 -4.4.7,wporg,66,15 -4.5.3,dws,22,8 -4.5.4,bigram-renamed,0,8 -4.5.4-alpha-38000,hm-pregit,0,0 -4.6,wp46,0,0 -4.6.1,pwaep,11,8 -4.6.1,symondson,38,10 -4.6.1,wpit4.6,0,0 -4.6.3,solentro,11,7 -4.7,phpunit,10,3 -4.7,wpml,17,0 -4.7.1,wp473,0,0 -4.7.2,engarc,20,5 -4.7.3,bwdesign,86,36 -4.7.3,cookie-cat,28,8 -4.7.3,oikcom-renamed,0,0 -4.7.3,oikplug,96,25 -4.7.3,susancowemiller,35,12 -4.7.3,wp47,86,34 -4.7.4,wpit,30,11 -4.7.5,colours,28,8 -4.7.8,bwcom,50,15 -4.7.8,rngs,26,13 -4.8,achoired-taste,2,5 -4.8,bigram,23,4 -4.8,broad-builders,14,4 -4.8,hallsgs,43,22 -4.8,officialcaravan,56,10 -4.8.1,lalucouk,26,4 -4.8.1,wp-a2z,37,15 -4.8.2,oikeu,73,19 -4.8.2,owcs,24,3 -4.9,owzs,4,4 -4.9,owzs-pro,8,4 -4.9-RC2,wpms-saved,0,0 -4.9-alpha-40977,build,5,10 -4.9.1,gdwifa,10,6 -4.9.1,oikcom,96,25 -4.9.1,oikcouk,78,14 -4.9.1,tags,20,7 -4.9.1,wpms,110,42 -4.9.2,aldworth,26,10 -4.9.4,.,66,26 -4.9.4,cwiccer,47,5 -4.9.4,hm,59,19 -4.9.4,szerelmey,42,6 -4.9.4,wordpress,231,110 -4.9.4,wp-pompey,30,8 -5.0-alpha-42125-src,src,54,16 -5.0-alpha-42125-src,wp50,46,15 -NOTWP,#,, -NOTWP,..,, -NOTWP,.idea,, -NOTWP,18may,, -NOTWP,Home - Rathmore financial_files,, -NOTWP,Pandb,, -NOTWP,WP-Parser-master,, -NOTWP,anchorgo,, -NOTWP,anchorgolfcom,, -NOTWP,bobbingw,, -NOTWP,bw,, -NOTWP,bwarchive,, -NOTWP,bwpcsupp,, -NOTWP,bwts,, -NOTWP,bwwdcouk,, -NOTWP,caravan,, -NOTWP,ccd,, -NOTWP,cjgs,, -NOTWP,classicc,, -NOTWP,cookie-category,, -NOTWP,customers,, -NOTWP,denise,, -NOTWP,deniseth,, -NOTWP,dimcl,, -NOTWP,downloads,, -NOTWP,drupal-libraries,, -NOTWP,drupal-modules,, -NOTWP,dtib,, -NOTWP,eie,, -NOTWP,fabt,, -NOTWP,findaballtees,, -NOTWP,findabalti,, -NOTWP,fionathomas,, -NOTWP,fobbonghide,, -NOTWP,foppapedretti,, -NOTWP,funkygreen,, -NOTWP,gdw,, -NOTWP,gdwifa-couk,, -NOTWP,gibberd,, -NOTWP,git,, -NOTWP,gkz,, -NOTWP,gordontate,, -NOTWP,gravity,, -NOTWP,grippii,, -NOTWP,harvest,, -NOTWP,hcc,, -NOTWP,hehall,, -NOTWP,herb,, -NOTWP,i-promote,, -NOTWP,images,, -NOTWP,insurance,, -NOTWP,itconsultant,, -NOTWP,janecoombsinfo,, -NOTWP,japics,, -NOTWP,jimmy,, -NOTWP,kamarklew,, -NOTWP,kate,, -NOTWP,laravel,, -NOTWP,lazzari,, -NOTWP,lcm,, -NOTWP,lettings-inc,, -NOTWP,lg,, -NOTWP,logos,, -NOTWP,loneworking,, -NOTWP,ltcf,, -NOTWP,marshall,, -NOTWP,mdap,, -NOTWP,mdt,, -NOTWP,mountainview,, -NOTWP,mrlc,, -NOTWP,nivo-slider-v2.7.1,, -NOTWP,nivo-slider-v3.1,, -NOTWP,nivo-slider-v3.2,, -NOTWP,oik,, -NOTWP,oik-batchmove,, -NOTWP,oik-css,, -NOTWP,oik-nivo-slider_svn,, -NOTWP,oik-plugins,, -NOTWP,oik-privacy-policy_svn,, -NOTWP,okeffed,, -NOTWP,paap,, -NOTWP,pcs,, -NOTWP,penoyre,, -NOTWP,phpDocumentor2,, -NOTWP,phpLibraries,, -NOTWP,phpMailer_v2.3,, -NOTWP,phpMailer_v5.1,, -NOTWP,phpMyAdmin,, -NOTWP,phpMyAdmin-3.2.5,, -NOTWP,phpMyAdmin-3.3.2-all-languages,, -NOTWP,phpMyAdmin-4.6.6-english,, -NOTWP,phpMyAdmin-4.7.6-all-languages,, -NOTWP,phpMyAdmin4.2.11,, -NOTWP,pkgs,, -NOTWP,premier,, -NOTWP,prettier,, -NOTWP,prettyas,, -NOTWP,prettyas_old,, -NOTWP,problem-solving,, -NOTWP,quickstart-basic,, -NOTWP,rcbnb,, -NOTWP,rcgc,, -NOTWP,rchc,, -NOTWP,rcorguk,, -NOTWP,rcr,, -NOTWP,rcroofing,, -NOTWP,rctc,, -NOTWP,react,, -NOTWP,react-SB,, -NOTWP,retirementcoach,, -NOTWP,retirementmanager,, -NOTWP,rmt,, -NOTWP,sc2,, -NOTWP,sc2-pregit,, -NOTWP,simple_html_dom,, -NOTWP,sitemap_gen-1.5,, -NOTWP,susan,, -NOTWP,susancowereiki,, -NOTWP,svn_assets,, -NOTWP,svn_plugins,, -NOTWP,svn_tools,, -NOTWP,td,, -NOTWP,techsupport,, -NOTWP,twenty-tens.com,, -NOTWP,twentyte,, -NOTWP,uk-tides_svn,, -NOTWP,uploadify,, -NOTWP,us-tides_svn,, -NOTWP,wc-logs,, -NOTWP,wc-rest,, -NOTWP,webdesign,, -NOTWP,wp-admin,, -NOTWP,wp-content,, -NOTWP,wp-includes,, -NOTWP,wp-super-cache,, -NOTWP,wp071,, -NOTWP,wp292,, -NOTWP,wp331,, -NOTWP,wp39,, -NOTWP,wpg,, -NOTWP,wpgit,, -NOTWP,wplang,, -NOTWP,wplang-3.6,, -NOTWP,wpmudev,, -NOTWP,wwwcomp,, -NOTWP,xdebug,, -NOTWP,xmas,, -NOTWP,yellow,, -NOTWP,yogatherapy.me,, -NOVER,heft,0,9 -NOVER,jbr,0,8 -NOVER,pathofbeing,0,7 +"3.0",dealwithstress,2,3 +"3.0",design,7,4 +"3.0.3",blogbbf,12,13 +"3.0.5",fsp,18,10 +"3.2.1",hsoh_old,17,7 +"3.2.1",wp321,3,2 +"3.3.1",eedge,9,8 +"3.3.1",eedge1114b,10,4 +"3.3.1",eft,16,13 +"3.3.1",gtate,12,6 +"3.3.1",happystevehook,14,4 +"3.3.1",jtth,6,11 +"3.3.1",symondson_internetMarketing,34,2 +"3.3.2",hm0618,25,5 +"3.3.2",hosh,19,7 +"3.4.1",hm1013,31,5 +"3.4.1",secrets,12,3 +"3.4.1",wp33,9,9 +"3.4.2",edw,18,9 +"3.4.2",eedge1114,11,4 +"3.5",eoci,5,4 +"3.5",wp34,39,12 +"3.5.1",bettercorestrength,21,13 +"3.5.1",wp35,23,5 +"3.5.1",yellowbrand,25,5 +"3.6",hsoh,19,9 +"3.6",wws,30,6 +"3.6.1",bwcom-renamed,9,4 +"3.6.1",bwdevel,9,2 +"3.6.1",janecoomb,28,8 +"3.6.1",lfd4u,13,10 +"3.7.1",wp371,1,2 +"3.8",wp38,1,3 +"3.8.1",act,27,10 +"3.8.1",ourlistenersclub,39,13 +"3.8.1",rf,35,15 +"3.8.11",rjd2,25,8 +"3.9",andrea,3,5 +"3.9-alpha",svn,1,5 +"3.9.1",olc,33,12 +"4.0",hifianswers,39,3 +"4.0",oik-plugins.uk,2,3 +"4.0",oobit,38,7 +"4.1.1",classic,10,8 +"4.1.4",wholebeingwellbeing,16,9 +"4.2.10",survive,21,8 +"4.2.2",balancingbyart,16,10 +"4.2.2",pretty,13,7 +"4.2.7",therealc,20,9 +"4.3.1",aumabs,30,15 +"4.3.1",handmadestudios,38,10 +"4.3.6",hampshire-eft,49,17 +"4.4",rcwdcom,66,36 +"4.4.11",rjd,33,12 +"4.4.11",rjduk,39,20 +"4.4.12",rathmorefinancial,28,13 +"4.4.2",coaching2inspire,14,9 +"4.4.2",wp-a2z-v4.4.2,27,6 +"4.4.7",wporg,64,13 +"4.5.3",dws,20,6 +"4.5.4",bigram-renamed,0,6 +"4.5.4-alpha-38000",hm-pregit,0,0 +"4.6",wp46,0,0 +"4.6.1",pwaep,9,6 +"4.6.1",symondson,36,8 +"4.6.1",wpit4.6,0,0 +"4.6.3",solentro,9,5 +"4.7",phpunit,8,1 +"4.7",wpml,15,0 +"4.7.1",wp473,0,0 +"4.7.2",engarc,18,3 +"4.7.3",bwdesign,84,34 +"4.7.3",cookie-cat,26,6 +"4.7.3",oikcom-renamed,0,0 +"4.7.3",oikplug,94,23 +"4.7.3",susancowemiller,33,10 +"4.7.3",wp47,84,32 +"4.7.4",wpit,28,9 +"4.7.5",colours,26,6 +"4.7.8",bwcom,48,13 +"4.7.8",rngs,24,11 +"4.8",achoired-taste,0,3 +"4.8",bigram,21,2 +"4.8",broad-builders,12,2 +"4.8",hallsgs,41,20 +"4.8",officialcaravan,54,8 +"4.8.1",lalucouk,24,2 +"4.8.1",wp-a2z,35,13 +"4.8.2",oikeu,71,17 +"4.8.2",owcs,22,1 +"4.9",owzs,2,2 +"4.9",owzs-pro,6,2 +"4.9-RC2",wpms-saved,0,0 +"4.9-alpha-40977",build,3,8 +"4.9.1",gdwifa,8,4 +"4.9.1",oikcom,94,23 +"4.9.1",oikcouk,76,12 +"4.9.1",tags,18,5 +"4.9.1",wpms,108,40 +"4.9.2",aldworth,24,8 +"4.9.4",.,64,24 +"4.9.4",cwiccer,45,3 +"4.9.4",hm,57,17 +"4.9.4",szerelmey,40,4 +"4.9.4",wordpress,229,108 +"4.9.4",wp-pompey,28,6 +"5.0-alpha-42125-src",src,52,14 +"5.0-alpha-42125-src",wp50,44,13 +NOVER,#,, +NOVER,..,, +NOVER,.idea,, +NOVER,18may,, +NOVER,Home - Rathmore financial_files,, +NOVER,Pandb,, +NOVER,WP-Parser-master,, +NOVER,anchorgo,, +NOVER,anchorgolfcom,, +NOVER,bobbingw,, +NOVER,bw,, +NOVER,bwarchive,, +NOVER,bwpcsupp,, +NOVER,bwts,, +NOVER,bwwdcouk,, +NOVER,caravan,, +NOVER,ccd,, +NOVER,cjgs,, +NOVER,classicc,, +NOVER,cookie-category,, +NOVER,customers,, +NOVER,denise,, +NOVER,deniseth,, +NOVER,dimcl,, +NOVER,downloads,, +NOVER,drupal-libraries,, +NOVER,drupal-modules,, +NOVER,dtib,, +NOVER,eie,, +NOVER,fabt,, +NOVER,findaballtees,, +NOVER,findabalti,, +NOVER,fionathomas,, +NOVER,fobbonghide,, +NOVER,foppapedretti,, +NOVER,funkygreen,, +NOVER,gdw,, +NOVER,gdwifa-couk,, +NOVER,gibberd,, +NOVER,git,, +NOVER,gkz,, +NOVER,gordontate,, +NOVER,gravity,, +NOVER,grippii,, +NOVER,harvest,, +NOVER,hcc,, +NOVER,heft,, +NOVER,hehall,, +NOVER,herb,, +NOVER,i-promote,, +NOVER,images,, +NOVER,insurance,, +NOVER,itconsultant,, +NOVER,janecoombsinfo,, +NOVER,japics,, +NOVER,jbr,, +NOVER,jimmy,, +NOVER,kamarklew,, +NOVER,kate,, +NOVER,laravel,, +NOVER,lazzari,, +NOVER,lcm,, +NOVER,lettings-inc,, +NOVER,lg,, +NOVER,logos,, +NOVER,loneworking,, +NOVER,ltcf,, +NOVER,marshall,, +NOVER,mdap,, +NOVER,mdt,, +NOVER,mountainview,, +NOVER,mrlc,, +NOVER,nivo-slider-v2.7.1,, +NOVER,nivo-slider-v3.1,, +NOVER,nivo-slider-v3.2,, +NOVER,oik,, +NOVER,oik-batchmove,, +NOVER,oik-css,, +NOVER,oik-nivo-slider_svn,, +NOVER,oik-plugins,, +NOVER,oik-privacy-policy_svn,, +NOVER,paap,, +NOVER,pathofbeing,, +NOVER,pcs,, +NOVER,penoyre,, +NOVER,phpDocumentor2,, +NOVER,phpLibraries,, +NOVER,phpMailer_v2.3,, +NOVER,phpMailer_v5.1,, +NOVER,phpMyAdmin,, +NOVER,phpMyAdmin-3.2.5,, +NOVER,phpMyAdmin-3.3.2-all-languages,, +NOVER,phpMyAdmin-4.6.6-english,, +NOVER,phpMyAdmin-4.7.6-all-languages,, +NOVER,phpMyAdmin4.2.11,, +NOVER,pkgs,, +NOVER,premier,, +NOVER,prettier,, +NOVER,prettyas,, +NOVER,prettyas_old,, +NOVER,problem-solving,, +NOVER,quickstart-basic,, +NOVER,rcbnb,, +NOVER,rcgc,, +NOVER,rchc,, +NOVER,rcorguk,, +NOVER,rcr,, +NOVER,rcroofing,, +NOVER,rctc,, +NOVER,react,, +NOVER,react-SB,, +NOVER,retirementcoach,, +NOVER,retirementmanager,, +NOVER,rmt,, +NOVER,sc2,, +NOVER,sc2-pregit,, +NOVER,simple_html_dom,, +NOVER,sitemap_gen-1.5,, +NOVER,susan,, +NOVER,susancowereiki,, +NOVER,svn_assets,, +NOVER,svn_plugins,, +NOVER,svn_tools,, +NOVER,td,, +NOVER,techsupport,, +NOVER,twenty-tens.com,, +NOVER,twentyte,, +NOVER,uk-tides_svn,, +NOVER,uploadify,, +NOVER,us-tides_svn,, +NOVER,wc-logs,, +NOVER,wc-rest,, +NOVER,webdesign,, +NOVER,wp-admin,, +NOVER,wp-content,, +NOVER,wp-includes,, +NOVER,wp-super-cache,, +NOVER,wp071,, +NOVER,wp292,, +NOVER,wp331,, +NOVER,wp39,, +NOVER,wpg,, +NOVER,wpgit,, +NOVER,wplang,, +NOVER,wplang-3.6,, +NOVER,wpmudev,, +NOVER,wwwcomp,, +NOVER,xdebug,, +NOVER,xmas,, +NOVER,yellow,, +NOVER,yogatherapy.me,, +NOWPC,okeffed,,