From 13c05d0afb614b10771e877409da539f65079955 Mon Sep 17 00:00:00 2001 From: Herb Miller Date: Sun, 11 Mar 2018 00:08:09 +0000 Subject: [PATCH] Issue #15 - record more information for components --- converter/class-component-counter.php | 25 +- converter/class-component.php | 103 ++ converter/components-sites.csv | 1690 ------------------ converter/components.csv | 2365 ++++++++++++------------- converter/counter.php | 50 +- converter/estimate.ods | Bin 26892 -> 70933 bytes converter/sites-components.csv | 1176 ++++++++++++ converter/sites.csv | 520 +++--- 8 files changed, 2765 insertions(+), 3164 deletions(-) create mode 100644 converter/class-component.php delete mode 100644 converter/components-sites.csv create mode 100644 converter/sites-components.csv 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 8258957075f4978a21b79a514441a5da7bbe98ea..2208ebdd77c8b63bdf018179fb7dad1d46eba9ff 100644 GIT binary patch delta 67580 zcmYhCWmp_dv#^oi8Z@}OJ3)g7-QW_O;O@>K2?Tct?(XjH9^BpC-M)R!`#tA9KknIU zYr3mzTB^HhcEhG17q4jWOA5AqQO@^vnuwdkRb5f!zgH5rE z5P3-}Z)g+DDxx?J@lhOOOq&fR2X0!zZX|Bn6-wK8XneVtBzHsni+c(|5bIg_k=*dY zo0{@%$Njx4R44s=O&bIR`Y(M*Qba#*^k1DqzeV*)0CBQPv~2VRI7RrA0NM|Ci`rP+ z#%h(UKkDZp-=K(p$=_|??T5PA-M_fJ>~-i_zCh&{ykbYfc_6Z!!+TK(AZogKmDyZv z2wsZ+eaS2cI%x+CxwAc&QtRirPXca`taok?c6cHSS`u-e zZY}ShfqPryhNPPZkDFtX2Dt3RM7;{z;DMzDoY(9n7j`vSKxet46o@*aZGuH0z z@3GoCrsT)lf}`^XY%Y$|&+b5==jY|tO+}4-;MH(V`1Bqe-_1ki`;dhqN>MKqHrFlQrkNzOx6v1#L^%#U03Lxt#lB0 zJ=nDau4CVa`UqAcms6JceFooF_>eO0yp}-D!A7O-KCNv{A8o6HW8YJeQ=+A~{>;Jw zj$yb6{2pwJcI`EukHW1K70B4Xj!9ed8vT1?b*!x#0gz@a*@;byQX)4;~#pLGfisFZ1>E<_P5sONvix?geOhbCs= z+RR^2`V$6M;%mvT2{ly{6ePhrYoNXJaCPBzu|tly7e~=Zj63nR>CkoI=v1qN z&itjfl+5Dk1}Q=tb?9`+&SveSqymjlM(UeYQs35(xQFmNGN|BOu~YI1x)9pkxd7Tr zvmL%{?Pp_oA2%nWJ!LYYVC4W9uR766h@HC1@gWd~aA*xR2HLTtc)){*J8(uRJ@}pg z^GG?-5Kt5Id%zUyk$t2)zm%u9SA#eta;J8^ZKSa-N%4!s5UsEZbAu8lTCrpqjZ7+M zIR$aBL~@nc!P9_s9iZ%k=jiIWz8y5IsEDejl&@Ec&IoxMaS|en(xIh_(zI72FHbHI z*vQvHGqe3WncTb7zu;#T0&pyEpD``Afjn-WBG-5gHH_#$qAla-Gs}SFzPZb+GRQ4J zOEjOw-IuL%oP5Yd55oNyGmz2Xq~0yONN2L7kjm4Rpu48vzCYmpG%F;2=An%O2Euk01;ZIuio!R zH)4^2=<}l}HP6#TxN9<|`*Ig2J8#Del2Y^qDLo{TX0$5@%XAvz-y@33&1f&NYIp@N zZ4_s^8kR;xS9|KliJeXXZrUunTys)e~L zn&kqmPC|>j%65!>V#g?t^xSqY;_<;MbfkDrJpPy_>u(a;bAwT#&Oz)8Zy_H{OEC4x z{n{m$YtKL0n6BSFaMN14RVu&Fr@cy_>j!9S)y*ZicDMurp{@K0>RoDG%#u7=l^4qA z`W*k%fHA?mrsTjnv9nsgd5i2I(SQzBE6YmKL->pIU*Cn)gb5)z8qbfAD{i(U>SfVe z|MumCe1`v)e?%mHe<2r;7){_GB3Wyr<|+%eeigteS}v+!~K~F}VT` zyfxJ67VM4%?bRpE)A^kyU}5z;DK2}PGKn^J&7Q(T{N1RQr>yS{)3}?#LK(C+99S5I z1R48pe~sp90lXWf!^n-Idx~X`QM3XjQWO>}zv($tVpk?v1h3v*Lk*fo<(W^T0p1OF(r7SXX6wjI7n(e5l8t2oQk(hJz8~$Ndod)8c-k0^zO8tMGJnV1c z*Gqj()+YM5lhss@K^gsbC&yh07V^Iq{N=N?>}cd^vMr5l|0XS^uQsJ`lfaGsB${1P zG#TN=>6@$LOfz9D^a!xP+df?^v$X12!%$N>{#mS*YEr&TE8HB?yiWj2gY&lq_Ir1T z1(Q<;FEFBgNX}VY$n)aup^u(tQ4S?rT*q8l&M8_G(roa}C<<#{Vf~6GP}c-VERoGc!a{TUE#vx3OM5zf*6H_KSgm>AFGPx zTr+Q_Z*wIG%QHsy6qcxKjT!GMkF(zO4gHz9XAQ zO;%?=7Jk+X@>U#IRMYIEm`{WwA1xKOz;qsIdYpaGhW>X%zLoiTb7yMRWOo>3elPpW zUKgqaFN7tbKo(GcII`pWtI}h(IoN1B5YqZ_@9yHs$4Uo2SV~1VyS5?_I-!?Z<=Dkb z$GK#+YVFt4DeSCWXEvbGX7TzX4CJp}c6Vlzn9kE`Y{ErYNeXVnbG7ExBH+h~XeZ05 z&i}~rw1B#$c6?L~tbgqRA0aX{9cW%;F9k0vS~Dh8@9;t>bx3M<6tuH-I-BE`Nj(jA z6rIk*)5h$spKn=Z&vL^6!lS@Oc?wUmT$7_vfDB=N*fv8RQoXycgerJi4t|+)P?xiM zwBuV(Mxm@jA)WFfR;4*}8vmqfv_fs7W}}d2R^EX_lvH%=3Ui7-Z!5;$P}ObBB&lGYT>%`W)csmG}VGnD;>=g(+f6E;%X z@@Ya^*l3mNU7vY&fz*E;%>}fkZ3--g!&WXwatefA>b6@>pS8B$>PRx~Q;(`_aUr-n z<%*pFYAnRNuN)^ZBbzQj1%o&TZv`kaWyOECx`^mqKkwfM)hJhnh8X*sbhrM%x@BAz zT~PE?27DJNa=mmVS}ceV|J_*ck{auF%OECN38!k?&G_I%cF@|Z1>vOSSZq3njU zt9$PdEj-#SYo#q9&CgDa7Q;-^u@+c_Z#_p)_Q8uJaTZBE&O>ujsR2&KQlA8Tgq{#} zq@mEukR3ozm>>V;NVA@!)gm&>opoyYa&3z-j7s9lmnCtU+;kD~ey&tjG{u8_!}V75 zUD^v^v8l_@hR}e)9ZT~{w9rAwQoy%Btm%LMi>kr&ADO(uH^CzU*eCq=G$J7gCJXg3 zW7iiT$D&Ndh`aD|eM!2%0o~WxesKjMSO0?M-?;$ZMblHEqVdB17!7pL#-H)`HRhC- zrg7ScB9%uYoj=&h=3V;|I0JFUoP{z0M_u!ydB-ycN{6WO&T&*?!?5b3#>X>Gc~d0j z4M?y=#;?5uDjASqq3W?8yL?VWwX(cfm#RM>SEtbb^#w^TFFD7I4?i_6UamhvHjn$G zCFS)4v9FC|Bx{q-IC2~#5x^cg(GH$d8Vshk$AB)}g_mm+vsKBQ$toTWLYI_Tto$~X1k+Cg?AhxEC#AODedGfwYHKCpq z0dq>yj5YMO$K$+@r+z-CQ;n!l9$o^c4+bY&99!7>nss-u&ZcXgVo%78h?!c@&;Rx> zqjcTdxlJdZW|YM#9uZ%P2tTOO9w%4JQm#czqCIh~+!8|e*tjVKFmtN`br zaRgKS7DkymH8j!N56_?uTn$X%ACI1i`=5jQKS3GNa2lz(LmeZnYqt}R)^=Ekj#K^u zA6UwI=xT@dd8HdSI*VJB7OTyrm7L6y}2-zpepS3wKT`&^R-ba?nFm+dLb zDg`V`w(<%@yM=eQuAlICprI{uulx4_G}Ow3tKEUMHk{dm|5=)5OHwE6(!S*?{LEQ@&* zK?TaimY4^Y8{S&xE@k8Ee8lU}iwuCPh;Gt& z8Z#N{o>u zd`I9b^yrX(>cj860#6kA@}{tBBkV>||GSs9b9GAy27N%Y_;&loe$3PZ(iy`^xi@W{ z`q>LbABIu3?kpmuh6+J1jc(fZVHUr0OS8}-Jef-!<^~+L|Np3cpU;72s#Xs$cz@xB zWeF02!`{ensJaHrYL&B+YN{EQKC;8><;DH^3t^4qx`{7uY6^G? z!2-$;NtsgvJPkqf_c>aUNd+_1iYi)EarM0sCr<(+hIiWKmc{vSzf%xD#Wvu{y^(KZ zGt#@Vrz&9w-mi9gHAHsog-+s*l5XMl+9&*iYvRrFWOnT+`us)c$JdsHABs(}9<{E* zR))K;XAx)1#*~s666L|>=Gq;cu$l>W#rwdOoi9NH4|d@)ve!x_4}a)z+JX1WYFz&0 z+If*)KWi{Mdc&f7g7Jc*CUBSfi8L~)SrKA%>>qb~&c|!F-6iR#`=87OxPM=pD&Dhg z(fYUh{dcQKXOryo(Hj~`d!F&Yq7x|6_e3>@X+mSp`@Cvir}XCp%POu?6B$XVY*)3ijLQgoyiWXP zE4qH>zNT81{~A||$Q`+NR0aG`EZ8*FWJZvPfZE83VKfmh}oR8F;A)bDx8YDu@BLVR;N2v~am#ea*4yk9U8e+cTF)M%Yo|7}o{uE7EGUk?b`DI+HDTxVU7JmWG zgRq6bPm}EJ0N5sB!iFy=L)jEv(3dyygpOu?fO@Hb`-sPJCv4|fv z8slkygQ3_7dbly;-w1Az9Vk=!9L|))TVLyg(E;AR(%p`C32X<-Ww7)I>qaSu^|@^5 z9tl5`CG7v*4&UL1IANA$uO~LZ8AAwZ2?g;G}IeVVO69 z%S{;66)zaeaQuwZlLgS}XwJGU9KP89XeJuJa+)v3MxrG9NEf3ImHFebc;0pP-f`Y? z4|0!dPw_|^mK5(}El~(M9q~s>`)Gyl!VvJMHTHJn{aqRFPh`lYC?=_Y4_YcO>afcLA8*Cgh|-oAB@8F^7cgyp>GsP~4Q28uW9yE9ikD#oV- za)pP6kBDsVYK`ktpQL!!pXwhDZKvC-)f*RJ-~ho_yUS%L06oY@)B7&=oP7TxeHsn7 zKH7wVh9)wlT z#&#K2xy7`5^6THCOJ}300jD5U6FjT?FM18&e8Bu+@NYJ3w@8M8!{{CMSn>LHqmLG>aWb8EZlh zmrN8;HQfWNaKdNVoo#9M_-j1oSB?QRSD4&uw1eyT(aG@b`$#=Bi^~lpduwa??-L{Q z>gADQPWJ{^4?)%#_I}wdNd`w!3(vW+G{^&S!OOv##0u@e)ja-M#2BtYWd`3&3lE77 z+eFKKjstHFO^jsj$7KTlhW9Ik2BEN^zStYFhE6Kp#;Ta*iM_}G;od(VZz*ZNeW?^< zrjhp#=wHWaPcvY9H!;v5@VQM)kzj;o0vw*Zm6%QLFq#(bDhVz+UOrRgEGL$otXmMS zd*6nAq@a}Zpw_Tkv{5hp@2{imY$f% z9lZPJc4q~19`O6(gkN6*7E933YzAOZBk@+L?D2M;=t==8Vf|`XyA1C$N+Zu8uVTil zP_or_d#iKModF#{L?!A%`P;JKbj6?X^*Xky*~t!A))X3^`MOh$MQLy|JH`{rvQ)(h zJ^G<*MQh5IC~$JgrIM0qG4tptzwc%H`&JQ^v3>og@Kx}_G2lfDw{|P8LYWAh)@-T@ zSKz82THNwdw6WS&4!33=;AY{eA1dnS7UCyKNNqSgv@&S?lR&V1;&jbT|GD>b@TgcH=2w1OT_xH6;`w5WMlm1gDsDU~TdASQr+@re|e zwU@?qbgRBK(0)=UO1E8He{g4wJQ;--X(ZU4*b{+ zJ#Xg|CIDf*3kz)gG)n3B|4CaJx{kxxW!&Fps!$T{>C$X}t{DyzI-^2#EAl(nEC!** z#X#d8`21XN{Y1{pT4Pk(?Q$26>lPgI#p_Px7tOE(8S$pQughnst2vd?1aSub+;l5| zPQTu+ozNnI>{}LK1$^GnlXSQp6?VY=oHeQ}{j0V@6saWzl+QFsY+kEGv{z9aH=&pQ z@+f_o!E^qL6T|1W;+)m+XsF%o58NO0b0c%Yl|VG3UX>W8*MW8t@rZ2>e>pMGG9ei% zN-M}vZIOU`>x0Dex>`{r1TZLU$J+sHd*AphDDP%`H5%-@$3{i$s$&T-dn7=;b#c91 z)mVxh@DAH$iQnXWEwwoZIG=)VzOe4$smM zb%HP*+;~5kLAbJakw1oP^C;CcW*0_vC2+_Aal_~D6;o|3gW6gkQs)cIHCO@X?dkEC zt2?mYqV&I?7(VjhUP#~SivCEZ#IbI6X%k&?~t>yRk2FmUJB`O3U?bTF~q)9X_+}02S^mz2#!^G7-K6k zk}S`qv!tJk;fIj$t#dPe*y{l?8NRpsn_Z<#l~V$SMdB2djChUMFo(^T2TXEIZ`64e*M@(_g8S7w=d1MZOdwNBayYKJO`jVA_ zbMZ1*IV#a%P*)$ncZ9-92vI+9}YtKAeJY*Kdl4NrnIU zhS45quT5%LA1M_AFi1Irc9`?7bz1mel1uHsc*)30lA|qE%CN^gw=5B~Q~H-q-R3Y> zlQCVAy1Jkd6GQACx}G}FFc*nGHB$}~8R!rf9f2GPfJ$=u9Yaj?V7aEb!8#owgS?B{ z^vJ~gG522@AwFo%A4$i9Elmx4nFSYZ2`wK5R1vlt7Gwp%`)@1`pOC?<-U*eu2c|@D zh_E5OA6-ZJt+L?M>cdTJVOqiEAQlS2hQR0tax~kuWZ1c^4yQI@NodezK8lG?lpem* z*1cP(!gdi+{d3z$ub-744aD~ix-TglzTEo|*39?_bjagy@%-f!#TSDYdwK#VIo3rN z4j7r|?b#!MZAZ(~=~YTc#w+jB-N`_g;X|bGDnUQQ;8Y^fCdlEZa6I9rBHmj_N6^oa zk3NfSXV2+=gw&r#;L8(egfn|^|Fjew9qSqP?%;kfiSOo8ZEnSeO)Ksp*=;7-q?u3^ zcy&TcDh{DHUSKdVp%Dftz^0IxIq-GTeg?18V%2cK!y|!z1A(GCtL~g%?}w@2)JyYG z=N4o%aaPPyaVZW4RFjXEv`8??~R_jqHPXY zx^$aB1lDVw#n}`M#q0ATS`HwPM6~vPQ~qp@()P~#H1PiLym+4jq}qH)zKpJEb8)p< zJP<`tP@y5;;>mu_e8-?ykKcv+I85RgM_6H_aDX@-<1N}*y!@RL^_S9`AsomoR zE({*>JFvx#buv_o#knjCU3rF-e;>FD43mrA?%wB{vaSo>nGg!r*EoCWTla7)hG>U zdMo9yjdR|kJ0A5M<2$PTh+r=MZRmPAZ%WPCWeR;@A(LYkpc1vo<08) z6J1v+$>Db(t>CeFQT^^fP23D-JOt=^)215+1qs2PRE%M#2afd7PK^J4a(qJ@Sc^8Y zigEjKAL73A{v;>(aS5IFC^}9o`^E`SV)|eTFG=H%SL>?}JBBezO7Tae0wFNuDKd5S zB&#~aq(d^{0zq8@t_F8z((qAKD=2i6)HpK*QQg{@>^splr)TMNli30kGd}l-L{C^~ zVB22y!uM{PlC{={HLaM=lR`d8cBUw7wB%WAGxo_YqREHJxEXb}<|H05x@^)!FIXIu3R9ea3awo`Cu!{Nqc!r_wU z-2U2D*(W!{ZYO(a@r-6;*3^Ch38j06V3t@@ONMIS5e392=|nz=}eaYd`@+1@YD zm+I?t^l;M{rQm!Gg&VU7g-dF5`|Ie;1_eLuCBk`iJZ^x?_bK0;V7m5;GFX?2z@SQB zfX_$>OwTP%wu5zs#j=HhnpI)J$0NM@FKPl-YH9+bKl*x52SZA5Le+qD_`&Ev9%nAE z4m|8kUf#E}r3pB_x9V6E%{)7glZRtv5|j9)y51frD%27CEg?0!0xD(|>0*_(2PCzj z+TI>^t*v43Hiar5=E8<}v>#Wy*sZ$qWk*RnSC)LrjZw-@_H;=f!iKH@r9ACByY)q7 z827^ho7rAf={IzJwRgbSy$`=HL$zk;r>C>CS4TXyny<(!TxYmgO`?;S=$%baikzq-b z9ELZRq^Xr*(MD(kTBO){d#!#^H2B=_?aGfNbV5dW;~Ow|`g{Vm>EX@8BKDlV7cOCU zL5M3WeAMQj{1LKYfG1Iz|Gkjnw@I+jjE%^84qBj6vlLxjs1GDOdl+O!0JB55j}4;H4~0mworVGVH3s^LtJd zU)}e=RL;NYeN-0!6wURh8=*mAycp@_A)A4p#eI%^Ecq@&ED&RHu`hE997#K_8j@Gb zf-KZ>beo)VvGhJDlTPL}DlKccz9z$m-j)SPa_9VvIrpc;V}&iY73y*2P=wh}w%=Nm z)Q{U`QW}0d&#iYHT#*F2G>h@)EY-E&PLCI+&NbL9;TdZI>xy_~ws7XAOzTA%)+!}x z9};T0bEn{oYQG%uTc{oJ59hY$uq&;fMTd0W%6hMRC**P)Bq;BaAqW$D8{Ny3Ujiy2b^2Ng0c`ujVBEG=f#X^b@z3izel)juOK( zuqUrn1r>w?f5XfAZFu)}$Iborz;*Uq#7P<&Emqr+w&>tg`u^%JYqt6S&1{*wM@SG*_N0SuyDZL4M4^>yZa1m}qR?YRZ zTCNva1J&A~f)+)IMEIDZAS09GAtTxGE(+J#^%DWxPTu{kBioF%Tnv5HA;j`=WX|~o zRA(!xb_-hs2zA#0cdblxVy+T&Vq-+`M)=F_{tsNx@0pBXk0Px)LrKwIm&4V#LF_pm zb4nVB5R8WLzC#(lVi@{O#TqdA7{s^QRE(cRW=I;EIYUks?bw==JC^gh}~1@~`qu`MEUUm6E?ZylX@+zMc} zHtlP`P!kj1H!4(arD^?rlb}mh0Zem34h4<;?flqkjt+}Hrn3<`vJBLI5fHFZ6A&2h z?b&AE+B~zDBd%?8!61XMiD(%#>NYP*PJTLo9rKm6QTWQq6onR<5|0+i@p#d=&gF0W zTXGCl;{V2bFyIoK zI&9i^AR!KjR2Q%Qp6d1lij6U_BRv~p4Shj0+A(OKXfFZLjC`0FaCd>B#v{J}&OU0F zDG9MRw{u$1wdoRQjJ3^(fZD2NZlUm%iwPY)G6fqwk^}OxaR6$IDi5kgWrC(K^Y++q zo%M){c^u12kD}?9#}iKIPYDaz+lc-}Sv4llMw73Dv>_z=S%5SWR$r_Mc3-TVqQGHQ zwwuJyj2XaSYF{x` z+!3{#*fZg9kh?fVS?iDjEouHZIBYHa!fW1W`_WU^Su6SP^hXOTydfZ2B*KqsX6h&a`(7z~12D(>U+SE)P?0FeW-r3q)(e8uIFa z6weYvP{9~|P(hLdSmmyr3=i4uV2u9xhgM9|#{qdD(7kzBU8^*eF+EYcwKEi3DOBa#|ZEPNz|3Sg?Ff=VthvZW6O?jyGg~ zuMi_EobO|@IOO+{$JywC8RH;8Rd%7Lk&O>yOwM!ivQ%^Ok`a?=V)%DN3n0aLcnV$j z{hNfu=Mu)|v^dou5n=62kzaFJ7A9`bXl)|VL~=aQ1pDG;Y1m0)K%7{B zuT2GHtg?BOB+*7LvxpzIVI(QTvDzC2|G}cd8(aH$TW?Mqg!^16gnI%)l&SHD!BvWM zc-t;osY@gz)wqQ*g;)w%7XVJ9IJ+!efyS_x{1V+~!IX+<*l0U{mAT-qp})c&O;v zHY$7!L+7kCz7)FWA6 z#Sr7uyX&{rd#2pj1gd0(M&&780s%`k0)dg*t{P&?fK>>4)Jm-NRMD@?Jp1U)6I@FS zzrY6mGEGu)1Lpj;dZku7zjb(>*Q*s;q>tEYbknRjm{Z!#%z4!}c^I(Fj@Hd1PNd8t zPH>c6v_iv#l+1|?IB?!_jLFVgQ2(_gEBjNk#TdfqzF7j!*>4b@EkQGVl04S;tzYbq0WoKu@(!>%IMCp_)z zxHbVJ_riZ(^)O#h3;Q@Mv@Tg^qn&bw8Gd)Q?p_0i`aSJl<1Iz)$!Ql}ElxyNInlLh z#CGT>1GAM^iX@%X|Fwk?Mu85_^MegZ9{vQ2a+H;kTYi8*P8){XS}BGbkWS~fFIY~W zip?g)FvtPNusz|FVp^LBwl^MZ@8NkXG*>{0NqtkU-%{DW3@J6^kJ(8VDU4;J&rF}^ zb)f}p)u06?I6JS2Eq&8Y>v9q%gfS59CXID<&@{R3?9VIMTaO*#H(Nes?CSbY>OSz> zsy*;e{Oq_UMgpk18b1KOTFhUynupP4af6Ms+D2U`OGjO!hrDo!q8^FG7&(hXcHUuX z3e~1FZCrM=R&6`&eRb?TfxMUWtQ2PJc$}pYU)-@`U)&@_w@D-HN^(M9OBIzzdJKe7 zax4vSx+ej@>_wa(p+E3Xw!(~yh8fGd4kyFA&X22gi4NI!kKe$vzB%QOqCKW9(b)*U zf*9BNL0{RIki2on5WR7e z{<Y5(2p6cDS2m?VRuJs5;b7*&vfDx?_Huy zKZU%a6m|RtPFDjDhgIjCcvT}7dh@|3^G)|9^>2c|!;44e74?C<pf&^BSxXp{^uA&TTVun=CbRiw+LNH5Tt#H6q2Icjy@s zvjIJQuA3H(j(1L^D%Tq3--B&}UNE&QZ>!ZnsgizEd}V-AdOyEzXW0DXcZn99VBW7C z4WK%hWur>ZP8o2lK(ni-*|}1B-O{9*)b$m=huIAmhVt)U!3VB9&7Zm!t6BzYW1v^b z1_+$){NbJ)p?k$UHSV+cJvKGMT98PLi*q-a?*hH$zWcjE@slu0ukxbQ(|o)eqPjd( zoXIE`!n3=ir+XE?VT}OCuzUW%?$2weJ)j%}1$yA^ov*{{_biQYU&@GgSrA=%oW&aO z2=lI;Cn_Q19ueA3_4d#<;x)~{j$oyE;hf1KAF8NEEjv&0@&%`SGmo)4w|N795&s}N zRUHD`Q~j6HG>bTqXk7DmXfFk)+T!Un>!j)u*^V=FAdtLEa*90+E_F4*xt{?LCsK?* zNpEF*0w9!qcax}O6TS?pC;J5rc! za(@!&TEfQl`MSlMgz+*~vcM*Bl{ZG|L)AVal1AIhnYF}+N}(ylR%%l zzma#v{}ebhjh+TYmJk&HJYAXM4_FF(e-cQ?o+@YDzRU2KwA`YvBi|&_q2VXcp*bX7 zWe%|KLald7x`*UKyUwPOrI|=e0Yz7t21Qq-iS%e5+VD+Z`OK4Ura%0tA?}c@9w`tg znXu6)3}wvi$aeo*ne86MkPIiN#_0$zeLZIE=3HyNGr|`g@^-Zgi1b|TiZJUD-)OXl zZ9R=7=ti@mR{oQ^_2n-(GUJ^wjc!l0D}qBOI~$(7@_QrS73l%PtOTx*dtznTkeNtg zh~>^>vEy5AmK^D!K%|P^?V%?n@>|kuz-~;ad{Qq&z)T}VU@&hmfLJy^Iew?mENXZ(4baNVEY-O;>rQhvET@e8Qxl0l*>De+ZzmlnaD*Do2XltYP6=a*rBLW+Vz0n-HG z{?`c7L4p1D`=n(zN5p3F*Xl%?f-9xGLzm-veNR9Tn)L;mmk9eo3V;OnDC89>E-BiR zjsPCDj8>`k5p|gKT(l=ktqA3}Qw=UyvzCuXhrgF|IxgJ)R$jP8Aw|Lo;t&_qVj}Di z>v6q~aG+7P#ZcRld~;mk3xN!$&iLDacT~Ym%w5V&yl1g(fLCXK??n*F+B86h-e9-B z+5{w;zvwD9$M}rtL@tgz`Y~iG@0I0b+E|qbJ~2cFp@3<+a$7hiADU;7J4QPt6%pSu zkfoZ`n>LGoljX=cBJE1GBjB3RQxUMzP!SlF=<6X44Wa7l{XJ`cKjU*wEjY13dSCCM zKbP~eK5VBjaHslI5)p&~rs>E{LlSUa5o`#wK4wuk+Q8*+B_?MmwL2-7-rl+gck4$}k?4^qJVP5R zl;>Om{Q6VN%lr`u(+~V8Wi_2iDzsbh01|))&{5~A5W(O>roP@yR0;*yJS@-KzlCZmW)vDh`eq~ zwW4Ii(kymwCG*|y%fcJ58zqjwJ7nP|=3?X~-Zk7-jFcr{h_J^CcOj!3o0$nP_*C{u z65zTlG~l|VRmY6<&>rA5{-Z@0=Bd>_wxYc)Pvp_fdNrEqDK-Ug*>A zjsrhRP8sLbn9tnY#kTs@De@)}F%mxkG18&vqHsXTK-H9Cld_nCqIM!@QF>H!;#xP1 z#}Na_|Garv82zTTsn`Ri9Gf_P64CYCDej*bu4U=;fZTHao9up}1fY3QXrOsPn+Ov* zJm}B=l}Qd2Vf>fDMs7Py}Y?cODfOG{l;wwT+9P?Zq(l*@YUWT9CptO z*N62^K0?~#PRTBoJ4f4z^wi>n^VO%}KF^FcBTp0da2mbdc5DZN(SGMYYk0#Q374}g z3sEMEhDengckZ;9j&m`dosa+AQii#GPyt8GQwm4C@3CRuaoZ`oV;D3AJSCo;Uk5@~ zK-i}7Psh_|7`?)DZU=(Vh7e$;fH>2wHpfGEMX|GDx1ReZ3s)oobe%UEbe;3!zC=9h ze9;&~Le#JS>bHxZCCBrN-RO0;eLE10_9;Je&fO_-SLxL89}AwGlZ1kI^VCFCK9;9r z&jA!LP3^8Lw%&kkKhwN@)J%pN`-ka8J~X3ORj>ju+PnN`ikItcAB+h6**++T=-I|clN zI|T>x^W3o7h5$}6b;@jn6~SehnP)9$L&f|z@@IDb!WM4G0G zx(wEZx$9EC(b$NyNtNEmhQ4X7OZR{&zfFsqd~%7@{-j$JT5{~FZ$sWe8-A_jpU<|@ zVD8G;_LaSDOpQaC|8K!(zz3LCT$|K`5-`_*5*VWDjP;TA)zk*`^D%YhOG01L*}vp; zd~%zr{NxrB>IV+;J6DnZ+J*f&4*1NgdClZvvLwq>aAS2d4-3Mdg9SNQU*xVY>1TSb zt+8T|*K@eGI!ArKNrVRBCqRQ7K7()e`8<*!^phOxXKHYZ8>Pe}d+C}5gM z-Ii=cDxXpe@M;YB{4H;Ap+N*V&>%;)i`sQnpS}e6-^epGd~L2=&Qsyu%IYc}%CEbf z(}7^LQ3Xz2%hs*KTG2NMcdrioio5bPVv0fK=GUt z_g2A^@#r>&6~|1qULZ0n-Epj;Uen6yQ?f zy_kMOG|t>{Y&9JZv4W(Mq`)q+6zn1y6JaJiw5i;%uYKJb-}txAEcA5ph#nj^D!^|% z>TA|mEiO~kxoS9LQH4XCftz`R3H&*P35T?c(g8k$jHxH4LJsqi<$}VDc>ZqiIp&us z3YeyEZgbnsU66*N*moaz)gSqUPi{`~gSZjxHk5aCnjDPtJG|WHD!tqiMuJQQ6VTuk zko!3&FejGl9uPnDa0ao3zjQ-N7ZMjjN(Kx(+kB&!?2dAN^85XT66sWQXyK?Qj_Pbqo&KK+(^q-t-L zdJBv<%RU~$F-BFLR09)}4m4e16D7&T<@B1^U@f>!23nXsWUEsvr)ZlJDHHtuVD z*L5HmZ9IYVD)xtY5}HDHP?vcL+(W!5)0w{4oeHqwoFisM)-s@^aI(QM2 zAx1Zeq!R=Qq!W$^SFHmWKg>nv7p}_{<>uVfTe!+9E7RK^Cu6J`(h-!a-5^`q| z<|L$ej@WNWDTwejRNw|u0GVOpxgFcWZXMBi;^Jasa&xT1Z9!`JsTZQcrzK9{HfJY` z1TNs3U4T0XJEGuUyC^;O)(!quM5V(j(MIBQGOCQ(H#^#+*ZEqfe-yQ?oP>uh*Xjd%`?55FeLeBs4;Ynu6J6Gr&r#7~h~8nt zw~&^UG#Xz`lA=dtm?=#gHs^09x_Qsn=$ib_iXN@D?S}xXWVL(_#y{iVD5fFDL`&QX zRr_As*J1aQP{zkZVLJ3=d_PRrn3M4f!7Qm`g<1baFyi-0)B3?(&B{$~{lka*XU)e{ z2+gluDRe1mf(xRE`0*l5#;VGovpD;fE_ah30gl@!LT11>1m-;(!OEz$+DcJ*Kea-| ztVqQsp$G)vaMnUczRWH_#Kt=y#&X4UPW|^o>an@ceQ{LnAZrF>lCB>{!MEskQIekR zfKP29`DlSnhbZy_I!v~v9F_WT3%eu*l~p2s-{Ay9^U)j*`!aLyvU9$(HgXNZUA_DqFIjr_Aw!Ez;rXOcrA{tl4Ht`1WnfS!esWpfX;Yo{hFB{-CgIv{Qi7 z6bT2K1i($rXN$ViUMB6L6R6Q1W~D7MK1ec!#S^k?=yhg;uFjC|@}d6nIad^MNE}^8 zQ;#|3Q=E#l6T81%^Xde5I)s6VHfgs#zu{6Fd!qsKpHB(ca!!*Q8~+c%Kt8`hc0LLM zz5+UsI4=AcV<7dwuz>bqUHg-kxP-%8)-Wt7YcMWhec`!(kC@>gtlBHIY9+WzKREW)ufMRpKUSx7{!mw;%h`uc{=TI&h zSrQcSEoMM&+9@ok*2qJ<7MWaoFf6G(=;R_ZI-A3tK}uLaxWJJ#6gNnm_8N<}VeV6y zOD;edmJ}d=XlgFU>9I#=6R^Nq$kV^V!O-XmGF<`Gdg7zV3z3JpNIXKJ ze6K>*bOe<(E&TL@zU^LeWx>!?VQ6OeLa9T5R5_=xoyvvT+rQ4_dV`^$ zr*B31gi)>r7@6`3O@-Ikvc<+%=wnc>kJhhHqg*5~DqH(N&lT!e1A&Vd-1>3XBodfK zSX?5u#zKAw$a1RJRy;iOSx9{L%x-dVz{rRLV5>Cpgrmr%TO5)gfKpeFiV4Va?pKfF zY$tVp@ow&)Fgk-KWjZZ3zaA%rM!CpfWJCta$pb8O8UP)~HWmVGA-S$#WON0}LdI}u z(@;Jc5P(MoPi6#kpr8;c=v$;9R~C$nvH(_DfRYe7P=bQOuQ7r;{?+GjS}rIUnNkI6 z9f2z9vE8=VK8n?VduAQEXkcVS1HkvS#&%49!x-w^*|3n&9|B2hYPAx0plKv(8|9*d zkts%yg{I-G3`)Cp3Ii($vCG9jTfYpAbGg8{q+Fn*%aGjcLtSdZknlsw@RCF*Qnf$Z zYcARU$N&nmjsNvAqhBE>^TOzDk~Fz zd)k|{4tc{BbvKG&nZf0;kGEF4P9)1ook=VCEDSl4tD4-N@J< zyOzwrPCCmcr3qB&jA4P|hd_sGdc2C{Is386*~3aO<&I=cA|Q$JDeR=b z+OTn+*dKQzv48AJG6D;I`QiC=02H}3CIV_Ac~*YhjZy%|YhR#D1O?ufGT{RmN%hN~ zoAI}LC4HIXnf-~m767*1Mj+pFDOAzsQy7`1N0(1wBzZP}V(tZaETRT=uLg^Mpf1%o zh3O26Agv3fZ84ra$v-KXEE-p1@5{thpZR^x&U`r0MHQXwzK~3X>u*V zq@)(0ccwEu8$i`^<_X)74Q{W0`Sdr>ImtBw6LYp7cJJa~Auw|(!}1**t-!+6Coq>j zpNN^{!hnep2B=kK0;WClpicT9acN)MMQ5k5k6aKi>4qTSSo;{B&4BDf_?Te?Rd(zY zM$+GN$dg(n&kc!H?#G*8w~yPm8+Ug-k0w%}-m7|`zI6vorv zo5`nnx_)ZX^;t<|Fca~%?X`~{Z%^`U{j?iL^pCZVbFd@&OCGn^KKfk5VwxxAr`R;0U=;-8sps>Rp0M&Zw@g_b`y-!W*J9|}Nfld_n*AJWJIsBP9jNg*=rLa+YfWW=0DDyX9XA`F!oQkp7-4p5+37nK^f#i7uhe-8%tYInJ`ZHqz$= zC;Vq}X(Xe@*)SsIp`mm{c zXY0~XKBpRgDbOiPcsuE_6PBm%=iNx(>ue_;-e4frKD>o!nzuiNh2(krc{h&g>zke5 z#-oz@tom@IsmlHo@XizKbCXyQLbF1~d!;A3|tP?vXk zn3Gim1MAACu1sj_QNvl}3Hn7h4%;8?xq)4&`jOi)RCcj)2BVqCR2D%HxEta zlcz9`JaxY?se9Ne``dT~b(J=}ee_q_vdDA)3zPeYj*!(lO(jsIDY#FuzsM8!3sVsP zVc0|EO(jfI#@dX^G=djVCrYa55$=4ey)G_Tfw zh|+XeUjlt}19Wq49kQG@a(zk|_H2PTRJl`lji07I(+PsRgY)r?p_EL0_b$9U1FI`U z$+~jw2d!yY(_wvS1d|&hFbVDq>Tnx}@vO1K>3v4{^akPGNKqe)@F^U=OX|P1#*wDO z`V!u=8+do)botTn1|)DIWcvo=r^onz{08IQ$Ri(%@yXd3O2kc83<1|-gWuHlw`Sqs zd~stc-N+>$yLFYOlAnDT&Ck!F1Q>p3#|*E^)<)18TAB{)3&am@GQ)#@XNG_I_5GWR z`U5m;yj<2CnHii9hfU1S-(J40eSZGM%*>uv&(6%$?3)_ml|2j8mD%~Sdl%n-zo2;X z$!_0J|FCb8*yn?}eLk@Vg+qIT`IGa>lR-)8N>?WJfL4E?A+~JmEfRi68Mc-rLXk^Q zaJ?h}uJ>#~m*(vaioB9ngY;;2-oLTmAjai$hAIil%tY-y{^|OZtx8t7>EQ$gOP7Xb zmiC2bsN={Nwq}C%O^}(I{ZoT~nCp{GNvTS&W+--f5|_NHrB@SF_U7|mP0rSHY1vbX zJ(?gFF|4v51LBPMSD z*hGcYOH6v>foT%NWHSxTbyZpAP*G3tG-t~`@qePC|L64@pP z^w1m;M?R# zA-2KX(DUB;F$w7XbAy)#IQu8ZM}bL-?VlcILiGDuCFC$w0DMtOXVa50!3yG+t=#vD8eqKp~FeEG^c#_Pg6`>Lq>alr^hiT==RPH2}84a z-`DCIg@~;KY@+k~XUI5-ds_|E(F|<%VEgCi<443yY;5oRxaQ36-nmgZ_h`j!5}5$m z-bq@Sso6I*bVZHJynl8gyrpa{Uo>;HZ;ph!G?TNZRp~c#6Mueaf;?nS#P6RR6BFAz zH#CU^BGHDJZR!4hNn(NV3iq`dkqxzZKs@=Ro1wa!!A#X5Q#CRZb?8Kuyvw*p6Ge%U zu|6<2wu6N0ht$+ldT^H9viFhqY<>!KbY1#p>YmM293(3e89Y5WM~rNcyR%~&5O-%F z^+2mJG8@|mCP(;m>0lFAdti=?lwtqe;E3*+@s0M*j~~B(pl%Z4NKj@rArDN`Yg6mw z@kzQwB#<8DW_VWb6_XvErilrVJUC6eXI@B*=lJ*(*`u@J*~CoLArmF1%0@w82Pj%4 zMwEWow5ba%r#6mO0pX^s-a!*KlM`leR&LtHlEwyRP24+CYg2xB|Ku;1E{GSJySIlh^k{gXr4%G5}EV1A6N_`uvyx-`rCLo*}{_3WJ-j9eqwesFf|tLJ8d z_D+x>46B^2OOb2Bv5(JFh$6Hyp^yDD6&gC)*D7~^jV|JWxv^u0O}W?yrig@bfUkWK z2G^dsQ~H5<5;#Qh^$JJ!z~r*`&r`z9<)shLj!UCb~wPV{?!4gHvRb z{*TX*pfoTuw69fR5@ma*2D`qx=AJU+Jno&Nt=zosY=I+w<{Ibmk$Eze)%LcUtZhL& z%*{!EtcNBkR=2*ArK#_@cZRru(W9+yT|1ygsQ1wPFmr>&1M`C&X<}q$ENt%##Wpf0 zLmr+WmqyZUG*7JUBgn_ULSCrfBaJh0=50nEBZ^KijQKLsQpj zU#lNH>?DSP_D)Y|jv?-CbtgYZO)2NS(?eHC_?V%1cNU&%(_Vb#lXh>KOsDF~$5;%$ zx@Qsvx_vp8k0ZYOYKa1lKcCoiME88%rGxR!_dUEsNg&b(vWp*jk-ecF;Lt`V5RFcM zAsU@QG&+Z9bOF%l@EoGiuO7FD>hoTTOzs&T9y~g{*%uG{Xj@Cl!X!Z7eMOhwes}fT zo7T8XU`IU;nPY7H!A&ZK4G5q1~E}d15l|;%&Vy|t8{in zs%d1ZKA5F8K}ZnU#$Qiq4|R6=IPXl3;hp^D4dKKg0TDaNs3Z`WRdgyVX;u$t*Qaz{ z(hd(@ECzSIlnjL*Fz$cFAL4*|JBO4tGw|Wxw>ls2M9wyo2Us=x_Jdg;aGY>|`S`I< zMak>2wE*+ifq056pW)?qU;mL%@zfV0{`Sd}t>ju7ov}pD_gRF+lkDBESK{gW^eyYH zdP{x%2~w|W_UsicVH=Mo#tN#0oZa zU8!BPi&0=NnH;&g@>VlM^cdBKyz2mmsu+?^K`6iDV|R^9p5fC7;+fxn!>wE04Y4$LcUH_09d{=2VD@b9>rUhC_64wk5hlBen#$`+T=!$0MZaukUF@Ubpt~%+U zDu$`tm1b}_2+SS|UzM(?tSgcYFIV=f8Rp!MF$;;1(@^%(GCj77D->hFcGd-xzaF6x zw_d-#=mxTVvLqIxQGh>c_5c-;ory#ph9b{kyGpwZ zuT&sOKC~@-IT;ZmW$Qd0EEX$h#Q?yKKUkL}2)Oml--vXt&d+Cm&n4+~Bo1Q40LOr1 z8`~icDcjizN2_*nw}kgw;r$gZ^mu$?eAO87Y z|NYPZ`dh}=0q$&nO$fUNaQ}`)j9j3!I&Ac>i>Rhs*TnmdNi+&nwiccq6dj_3?X2g| zUSHO5NK*?a-$whcNhIMCVR4Dr8VmU$gYYWtF3ASl>JCerAvKGd!Q>#AM;^ml>sjC+ z%|_p$fXJ{lhz{t=_HfLwo61%rD&#j>DO}BP{R?u-mWkAV71(DwA-X*rEqQqtO1Bz$ z8x*-vTE59$hb6DBIULKse(XqYMn{Tn5uhoRi#4-_k3;EwY>9Av?R0Pl!+K|BXKUUf z#zpp5>k4h;BSmZ7PUsopKCP@TR980!Ny#c>x?o%G9T5p|$wC6Ug4paG!QicKPz*`Z zO6_WAVQxTwU1|D!#H6bodG?Z)FVdzDq<|?L(j<=MD>mBdmeDvA&ew0O zZ$j#kCBdHMC<$vM2=^^Ptq`rTMTEtL{8cRnaoiPQ)HWW^4C1S_tCH&^vT20vCE5^| z>PCbI;a<9^*7poW>#p#)0rU|nKhLopcwc)U?BNX#Xxz?Fwt=v5G~&O2O83SE5RCPK z@FPF{@ZK8K2kk<razs)wF+(?;L9YnW!gdqV^1D(yO0q#C-|=GaY`9H?f9I0(-~Oa|&YT+PN_y+HKX zpt(xBoVrAP0R{)-f;hQ;3wfd`~=Vy-5or$iD{xL1BlY8G7AdsBe_{eg>T_289cK(tm0O zjDvjt4Cz~<-Hl#VVNIErE}SK?edzO?-*t6fxAjbqu^zp6AE~lP^6Ap+mjkGO8?_|g z+@Wixjd2_Z-3Ai>)ealNkG)s6;W!Q@P*v221%euuWGKk>;*npt@{s~}OI#N-gXl&P zO;!v6MczO&JKDiHo5{YRSy#`04_sh=oq{i;k1GQPbV}APP1b$$(p!UcJ|EAIk8qm} z?cFP8L)&T>XPdqOw2{@*$l241zMP%(#{pCSfio!h;EB7kuD?gBasnT9rjoCnGVij~vPC=3;Rf_U{WqW+P-_9|wm3JE zylq#oz$RfV_svjOEtu^Zr6iy(3PMDJK4lnm zwHBXK|C$C~-`0+{7)$5?iT8||lzAYOgvjY#fjq=JfDBN4Z*He4n`ux3rnXM5o0>TOX@c z#^aN~vxSdC-B4$2rcXAbp=AU#0z%cW0IQ)!R`JMhY_i>*Tmcl$?d=DnXf^zAEao7K z2_4PQ*6gZ(pvUuVV9&>9*xr8{s1gac_3P2#-dPhv`5>R=X7iSu#cM;PlP(bYCZhyqWpBf>Xsm&R)d=f`gyOm&;1 z7Y}naUGui!$pVg%zm6iV27Q|Dsr$*V9$g34a{BdC4UNYKwJlN zQ0My6Lw-mk42ol#kVRvFM%pP(!=;AYHl$1$IE9wY^0wf;*#8@T3MBxl)h( z=9PngPo{E?CKz8596;@+Cx!UZM5Fi;6sUVg*=^bfFOv}H*Xh{}bjUS3*v8T9W8^{I zE@!F$8egVk66vyXB%WN?~_Srn?o=; z=oTy_Bw8k%(1_EeIR>G@I?~T$5bd%UK@-=1cNtL7$_O{gJP=#<%~tfYh=4$qFX&n7 z%~a*r1<(Du#YNjKME{Bo=w}Tf_6X|J)&Pv%dwCCIn_T-4t4V-5|9sb%MuH1n{d%7) z35xhu{v3UC@LOduG{QU05Z6n4G5H6LY=U7L3j$WStZ=ny4{kQ?sfI&CTtjV&=Y`*Y zVBUQ|n<$SaaP}$GZKNh{X%KySL`P&pZ5|LX`KhLNiJDUb-NiJhBW<>rWgf`rd0G&V ziP0{^kuV0+1B1~vCetc|Ss7a~wqjhaf<>flgC0NDGZ*&AFMY)J*u$!XN8kJ=U7-y{ z_?nhcfr7Q!9XF3>8Ye*YxA*1(K9a3RnJ3G`jN-iu8?#t^us6 zZofevNxrwaEB!2jNzVtWR;QlINL`J>Ycj~M z_hEh`Q$3;750Wr-|1FL%<8F{RCi&XDdHj)J4yE7G^T4gP)?qHe(8MNqOe0P<*bZ@& z^eZ8tt8w%-q0la0Ys-kx4RF0Q7o%^}$11i!SB#Ac0-#Y31VDYgper-ZIm{>(1&h>J`XOb3s~WWltt3+d1Z64HpE0LZg{(KK&h)`G4h z+s7dWEnlK#)W=l!>;bHyqVuL;ZTBJFCa+zBofB>^<)bGIJM;sPi(-P-%7nX7AiOYe*u0uxOB`1tWB|i1Z@_1ukM}gLSUwGEj8xHO3b+X1f?gTnEWK@ZMPN2pQSHxGE?t+23N4~U6?5(zb@#QP zTC3a_3go94*=3mr>g`FwcG(JBE8l*JvF9Ln4f9j!SwTTp!vXc4w6z)yZQ~jz!BwMpx_M%No_B6M96n7j3Qs5xql zy+jzT?HFSqeV$2Wmw6x`g)#RD!!}+DV={W0j6kbi#bu#LD?Dh#=Q!^QOc_zGGrs@4m&B$)V-t|JN6tK1;V7KnvbuTdO|wb zLrlXM_v%EAuJ!;YcGlJy+7g4=(L^K;zNT1Cgm=AvBtZ9~>KTvG)nK;qc-FU2PFpPI zqh=86r-Ae};Mo={p$zYI#Wm1T0X@@Lx|$4fdnW!Fw8mJrvF!#JMK;ut1JK3g zIekt3EkQtcho5}!p0I#$fg{Yg8zfFin|U13vpyjDw?L3kKJxY7F0P+>9&P23{pSqH zxe=6qh1U0!xgA*tBq$}u%Q{X5*EdYf0}^t9fC8@)}UZ#6G`HipFwRNIq&ua|bzg9|C1+WchYP2f+@g>_9U#90ce9B_6h}TwgjQT)U;GvOr*e zG%<*-Hgj%(moO**RY_iy9`+-@xGn{jO+fl6IHN>l;;lAfnlikz-jhJOq1I1G{rLll z^I5gkb;?&Rm_)?p|z z4tAw>#g+&;DqBz*K%E-}W$+Gy+C)ZwY6eNxu8mwlHb@W}*(!ma0O1`}7I={`K{&Tw zv0aD))D6HNQz6ViJag$1t{hixdvY3GLD??9t3)$|9P%tL&aAi8!;yoM71TZKCL`G{ ze0!d~q$~^((JxDV5T?;eZZ2P7PFA{^r14VpfH;>9Y=~lerBr1|Qn+R~F)%lOFs}h3 z3~$v|&1Ok}xh;E$Q-4J>v>XQZh~U6_j$GeQaYFbb{T zVvnI^N5q3BXMY4#)CQ9iZU;zJU$Nzj4CzLHheQ4acGuGPwyhU0FMfXc_WjG}nmtNI zh{p^Iu`>v-(yoKkq$a~Ij)WakF1WoV-U{nRe}}{T72XmibSwT+HK_7`5i=Zw*uc9| zyV3(+VTZO7%s3z}p$WIL)9so)!l{an8X(`e+#y*p`OvoKz(4`?KHqMlxk}-41L)jo zQwkGoJBjD*08dZCZY9%;lB`S0e8fE6R+*|4O}TF{U6rJfN`6Hsa2prj)x zd*cfl@gxvP`c!9sL|CtdZg-d)cl*>XiMu79&3ziDbuL}Rbj#Wu@)R%CQ>0>5%?58A zlG8)l+X(%Da1e@DI8-M%J3`7PD{~x-$%fcYLISUqJH?j)UP(X0dgn_}cSPP){x(>H z<+L5-0@bYqhHyZru%y%Mb!Bh3jYH#ARE4m8BmRidO1C_Jb5HSXe2k+(oj-LueT>cl z+LWa{5)%PkQFYT@OTFfZtU~l2>lR%!cY~cC$s%!ZTdz@i$%t#cIJ17Bohig;(keA$ zgk!{9-HA-~*$nUO}P zBBYUP3WHR`0=9d4?)Z8oo^}J|**y=cCY*c+M=N1U{8sbe1ZCmiTr*G{1a-_hqOvyfj-!A; z$=Y@T>H?MW9pCjd1_7~kNrJM0^aGK0daE?|VN`236LrLliniW~`vYNgnS{jp)fY&A zv+)}zqfu~YCB|--IT&z^&I>ui;~knW;GKlhv%W+gwqBEv$ltFU7)OC8e;9-8YVC%I z1g=lQIIVZOja#^7B#t@~px@OV-8l^~Yz>?px|JW6SZHHVTDnkO$*Y_h_*V5Zws8W) z!h=F2dQg8T`o}2dJLz4#3Y{MeihJyTQ>++G;#Lx{5I%`MXf|?lKIPP^XG+t;|IEeq zM$H1YJ;Gg@L_*F=5`#&IVcp~|ftzk!;~`fgXCnN>kq;hV#3iulHj+Q6*G9Vjaf2f3 zE%6YwzGs*Sq}xLnx1*U*#+G<1teeX6kVp7QPCB<M8P-#jJ^ z8*o=?*I{&xBRe3`+ID^HuAzkSplYR`kh-1uWdNq(Hun*=3e{WbOG`-OEWZMjRw-mv z007NtWWA@<MMbmZYq_EkY0IPvP1^aRoYD=PYGlq z`Fi52>Ht8HD2VU|^{eoH!VHHy>k@JO3hGqdHU{!xh`H{fS||iZiH$#~Q--Z9Lh}>F z)(=$9y=7Zn)h!vXx+-OJ`S?6Wp?vm`ZnUcqa3H_~>j%U4b zc?0YU?FNe8?10L~Z6pK^W2i70Y)pju>IfH(mN@Wqi^6wDl-C|y|B+y}vqKsYu!8}x zQETc)*7E?lYe#~h9a2kw-56oLL5v1+<~xFJvNokYDnf%{k1z}w=qnuJs^L`nz0iI| zy`U@Ad7Z6?Ia!$pMF9vbvlA=b29N5P;6sc4l1BTP!#Q~zsbLU{YZ{N0`kMhDJVL@x@x5AM=A*8Z>~#XVa-5~Xb(MBQxpzdix-&pNyc#|b zv?q66P5_|Iyq$H4sczSZ86UeL9~=0xB49Lg9Q)P_8gQ_H&dD>4bWP;PkqKZ|WN9@4 zZ9Jg+liU=L$a;r=Jh)nb4P1LMF*vR?bD0-S6A>q%sTk0`;?Ic3h;ivihYrzgvui@u z4d6Pv${hvSQN|EOXw^!I>d#o!sD6zR>quPB9A!KT4;b;C9W$~)uKYg@h^ree4oCHs z;xF_0WeU1fk=+>U9d^(;&ub)?00Wy z09~cs*Jy{?RY1H}9wqph$)77>$huVVNzER>MD?23Iu`1eC2Kn^Tt-@%LVu01^_~Pl zSGJDkqKu>95QwcUzT~%srqLk?{VF{eq#T;NMgB zJtH`Rs=^0<8VHeimQ!nejbh55zCxFn{YUn9>q4Tu8xS|AW2&YXRpFZmZGfcrpvS)Y z0BoNu35xg@o3oA8Ax;A@R|M9%?moUv@DBp-TxdNnlZwOz&3GzX{7Ee)eIvCVLWk>brqMtbyr`A znJ0OF5?3iTWUjwC1JOnOh6Jx=AL?2#8DPwtTu zk5ChT0j~z}BoHL^sNH}@P!1`m9`F)H2@b5c=;KGki1h}^_gzA*cZi`#ZnJdTBUCRO zg%bnvN?r+eTpx!-zP^*wpq*y)FqE^k_0kIyFrC54C9mcr`|)Vb+_$}QcA*^TWn!nD}h%)yZR0ahJ)unj0{6|)W z1hTp?aLk&Co%K$xGErxW!JE?vM}lHS?SO2soy4Aea64g82NMd{nbv=s=_L}@YZB{! z7GtjnYHw@6TrIH}*u1Sp86<>VA6c)F(-Hr98;1tQ)tt3h-8RGR%=3UkGc+L!A8)Pa zbQfv2pRKI@2xIOOhHbnwzI3H_!T1CFHS_pQBrcDJi0V!E}Xo1^PfE8t(GT9W_J6LBJ-`rN)8vJ;6a& z!qNuTb-}u|*MxlvYwJ0VtRIrj@V2=v>zy6ocwA=ie)8=}AfE{_B zx@8GPKv}xQT~~|xEtR;8#z?pQf+yhyh)M$6Ad~e1TkQ)DnTujevcXT5=q!A zvP^H|1v(64kX`11=+-rR#)=Am1p9aDz}^@J9O&y9md%YbRiTizYdct=^g@GH#`i)Z zT%TIs+(bhDopPTDv_{rT7T_(3@SnPYb9YNz7c&F(D($9u8PKF7tOG(l%p&WZQUh2& zM($ZRAblI;GoY^0uJEyqH#id9c2R&M4*?PQ{I1Wr!M52v!Up+##IOT@1!dUNFf{r- zVM$=Upn-|#^&H1?r^p2ogu`7=3hZ;p;V+SOMU!PmYDk*PrH?|yro9JY*xBEtd!gCL zjn~|af1yeupf$D=VtY8$O>Tb>o&{c0nP2<Betn_Y6I9ks$MH^b%LeDp>tC?xzv6o-)Hj6xS>ymIz z`uHH;STn1Bcl zTq@xlqgJB%4N3xk>lJajQ&Z25X&4)7K5}=MaWvm5J#s5OjuhCJI6};`zWFh7dE#^? z_F>9KR%>@j)fp~^Rl1R>V!pzcQxYN4%96fsu*azNGT>krL^g1lqFhT2wyU%&NSLD8 z-XwuScQ#m?yC`bs1)^`ToMh{HB7&~K+nnvH9074ZxvR^6-e5+SP$&M1umJE&QdnQm zWaS6iT@Gnf)hEVvS`G+v0gGr*KiemP^#Zds#~nelxxu^!SU5?rwr>kbVvh*j0t^R( z`w}CMZgm^Jsbk#?uxa4hVvEtbji+D?o(-Nq&t)ZX91uAL9%0xOlmR&*2G<7Hr^NLi z331mp@}ygT%5_US9|~y_TmPZk*i8jgJ@AbY-`Nq_(Dq*Fr68^_{+#VlNA`|do@Q*% zIj|Je9$68A0{fBM(Wo7vcSLzuw8+%1OJ6K4ZxKybY z7>-td!Z*;a#0!+J3AO{YwMn!DD%%9=HNRCgs+ng!w(&N4p2A%Hd?ikkMIJY&R`{<6)$qF8LsQQ~CP| zYCUI3q+78-QwHbsc$Q4Ck)u;L&_N|y3SP*6pnf-mN!J>S6^=;K5$%WBG9Cd3PD!8{ z3=X4Zs+~gCIMGc2cpK;Sm;$o$MN1>miJt`4v#={E6-pgqj<{4~gMheeW-rtKX@-Ww zpv<}Y=uaplxHC7~?&Rm_)?rGMVqjgN-S=+fPB%5;*LA5K9S+$-5WnRoMHyg-mS@RFrwPPRX zCR|W%zxo=5@l%?F!Bd7K>pkvFgwM#W>vm&?Sy^Bhcz_mC;KR#w=++a3@GD;efp_R? zI&)IyNPM`6(M0;V?LA0vg?3Bn$Nb2DgRZDhO-TC)I3RUy9|i}LyIzjJL*NS-yHp74 z9ohv{H!C!iB^z)#T!yjWcHn9ThQqL&4!%PN10)b>VtkBa+O<9T;E{(Tmtft32M1at zaT3i2ZlWGd06GZ-2~`P6R~>>{*__hIj?qfDMm^1jZpt?`nuNT6-4-t8 zO0F3+4nnn$Vu|Z?f;1bx*%UV5O{aIl_%t9u?lfr1<_dcBrcgqw(7cpOw!NgZofqX^ z`Ir&Bv@Yd-YDc_|TySJ^E_GA(N;)B~kJD{R3llF_MBrD_iHbVnS(`Jt)nF`PKp9c- zj~GR`m3Iv&DF2#1LpPx8Y~==jk*tjOQ4P`5-V$%6g42#907(M zO+@0fGRi?C;>wA&-qbWTT7cP*^HHHYzKa9`IyV3t<`8&;BkS3j^&iOZNZ!y7&!>a` zpS^cmavR6;yDkJ3-FK`Cu#A7-p1wJebQ&qP$Gb>ImMbe9$tOs=K~6@kz+H z$3JMupiS;LqW!H_GP#WgO7sQT?uO8LsmT7N~`gJ`U^UT+n7BBQ>#_V1SaiHPdP#h+(Vt;@zEp!1wCRqxTq^E^5~#g)wR z{NVrSW^~o9iBEZd8bCuJ_jCG3doff@R5H2F{ig!`+PdO^^p$mGCZ>h;uDN*xvilr& z-Fjusd*A2?gD{cpT7Gl5i)paTb+NM!lQahL+>Imw%z$~^Fo#OA(y7!kCr&2Wn$)62 z=wf{dj-%EoO;B8qn&ua+5mjOrkM=c}2p(=JQ#Co!$!=lp8Mw5eJnj>jkS)I?cOuLQ{J%N?u-3<|js?qqgx@BH#A!4;C93SD_1>mt$HSZX2io=WXv!kpc|LOL&rqzrL zeSObOe^WTV4)O3~?CSf|@#-Vu{_2^nv#@-9Dzkq++{)ALPOc&k z6M-ACn&E!HsA$*RsCUWrsyhv9Q*>F0snrd``}ettZr(Sxao)4Ta2O}~I9rkZthf~<=29e;zh+Ou2*y=PjPO=>=Wh0};`q+2W=J+)Iw6M;+Q+%6FxZ{OMY zjc9z4^|ztbu{AGLtz7mkcf4%%ekwL3)a-u8y=_OvKphLiMBnQv9#dLpS%AbAiCf7=sv&4tXZ-LUt%_hDo%%i9ot zY;v)@lSFr=w0z~-i6lp1WbPmuZYd8tDMu-}?S|JjOvKfP!7)ShkA1^6Ym#&Oo+Oj4 zJrty;wx9IwLe{lb1IE1s+Q%qN*POzohQthUMor_H!9M2o3EMVgDm1P4V_JM8!Z-kG zuL_xSDlrX=f$`_S*cEGOsAkVS{CK8+hXfFlUi)V+V>Bgq0vPu>ZWjrs?VCWXHQzR- zPVCxy8-dpkz;U1B3eCM&f;8w&I@S3D$=Ne&!tHRHiC`^uN(kvdcAw+s+Llo`e;8d( zg9K?pN2eZ*(pu zM*=5^^5G*G0D2}ei1A+CX+*Xy zPUhVsZP^sjeirW`dudeD$l$Yo-~P~UWcFn(of7_AY>$Q_( z>|6c%1$!B<{u{EZhktJz6yHgfKJ-7xxt9g2WvFa1%2d-APr2Cq`S8JiX^@R<)BfpA z){HX5`1-~3pR%vM{yDKr@137l1K?iAt-D6mUWND#YrhhNykFd8+O(a&>R84CXhPm`Q?i(K!lU>7d zZ3R`|X;OpnKe))gwXT@TSR#*d@qWksP`Jf}qk@5&JPwph0#($l8$yUphmMjqV%~>s$cb2UC z*EoO7Nl1_nMJCf0A;dgB_!}OF*CB&P@Hm9WhkwK4@TOAW5j^%e>@UAO|MJ_i0lj*I}o3+)f?k)vk@EfiL9WQ7H6M1K=5ZIwmcEBIi}|mJT+*nggfI zHlryAZ7<=_HDw$cEu9iQ_z~VMSu=;+;0a?z+-^@E8x$|YvpD6w>Xn3e{9QK!Vx*N= zy=eKkN*@Mcq_osT#nXqcT>;6RqUo(3Mtx_spX%{CL%YvWzR)o#jAc)9Zo2=rgtL7V zIdv34lUg_JQ#G_ueWBZ(&2B3@<~ z*6ocE6p`F^-lV$T4AdqraAGU7vDmj4RA%&1F{b}WO&zbfm@-o>WTF1qKYkWZ*JXlu zm2oZk_C@pwXkC;xunO$KpWw%XX*j;xM`EV$+%|Qq*F9dqNmZnKZ8=iIVy2lgD2+Z0 zvyX`!HnK3{cR;SNEW}DhR1aC9$XO*5vy~V5^L~;aDAsDkp}7$}q~QEiij-^3@)Jev zPd~GwMHSC4=N}sAGJkXS$Eyh{k+y{(fp1Sp-F6+0!2G=#2%Ngik$%%+^g6nSR=*ZK zQd~?(UnKSWZfJEy=+UT+KVtCxl_Z}ML=0_;3WC^$fuOb~5L-Fkkl9jl1-NCWp*Nw2Z&S1lkQdc?XyH@%K zoz!J|?<3qZlkk8e0(ccNY%?l!o)QQ{yWqjRpazOy)Qup&U~SRY_%1G zV|VDG9K%{TD--_}BFwt*fCvft1aB9**u%{ykfWbASr$&?Q;-g>g5W~%$hi9h#5wEudtPI`F=k z-)lW)1@-E?XXA4t!lS6Uz=Z_;??Jq5c;8OQQ+5^UwBYlPfT!z&ic1|6QCf7m?SH}5 z1+^AeFeH99BfD7kt$%~w8%>kJur9g+FxmKynMg2Fj##ky>++Nu^`fCTAH~?z89sQ< zr%>otOMFk70X(1;Df8R(8la5JT4BP{%9MN;!Iw&Ty33~O8Y0S*PVFpdRInZ}?ach3hliybb=0gj{5O$$?KwMoKsvFc8i8 z1fSd1zZ*&b2KW5;>@Ol0Eg+M3(}zrr{QiUz-1H@4o50Jb7dA)|KsRL3j;2Eo8Bdo3 zNq!yQy;di_Ja;7c=L9najclAE&baAK>Tg#b0`+Xb5+O0N>%{n~Ml%J!eSHAam_=kf z8cv}!5?k>5h6joI6VF%nG*%&S1o2=X{%zU%3wc{(qbH{WW+cxS3S6|b2=Yf8RjFIe zSH7`=2>(}{sga;BK=Zi}XlctYbln5$S8zP~lM%G2Z4e^yUgx`8%MLbqov6>Mjx#c3 z@6^E9{BH+zf0meS3Xr)xWyucAUhsYJeHV0qlV|i%61|)=Zjp*EYvt3VJi!h(i56+$0sqn*o$B3%A>orQ`eq3SL$dX}krJIbBgBxM$jtru zfacc=X(J+sIDu`zsEyW`rgi&0@UZpxdHBw5JY>fYSt)^*SmfScWEMW+b(pd&DZR(u zZg+i7f`9+n5Oy|iqfIli-sWe;XGofqQO@z1PAIqUQRFF4=IqTj1`Qn>bt`=WJ|{FC7CJ9j z%-x7g%=E1JR@@UITcQoi3s2o)%5}y->998MGeDFv0re}oj{GM80@G`XU_}@J6%JVW z1D-xD1%!YQ5_QeY_q;b1nLS^W>x4( TgO0|u0+{ehiO%Y0XLXoclgYf=#c-C-N& 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%0A^ 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 MK#(-n,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,,