50% of accounts with ratios >1 reach 1.0 and never dip below, stockpiling buffer 5. Raw numbers a. total torrents, seeders, leechers b. average seeds/leechs per torrent c. average snatches/user d. average seeding torrents/user e. users on ratio watch 6. Distribution graph of seedership vs. torrent percentage a. graph showing that the top 1% of torrents has 50% of seeders or whatever the numbers might be 7. Effects of economic changes a. number of users changed by ratio being changed b. project effects with intelligent mathematical analysis of a 24, 48 or 72 hour freeleech */ if(!check_perms('site_view_flow')) { error(403); } show_header('Economy'); if (!$EconomicStats = $Cache->get_value('new_economic_stats')) { $DB->query("SELECT SUM(Uploaded), SUM(Downloaded), COUNT(ID) FROM users_main WHERE Enabled='1'"); list($TotalUpload, $TotalDownload, $NumUsers) = $DB->next_record(); $DB->query("SELECT SUM(Bounty) FROM requests_votes"); list($TotalBounty) = $DB->next_record(); $DB->query("SELECT SUM(rv.Bounty) FROM requests_votes AS rv JOIN requests AS r ON r.ID=rv.RequestID WHERE TorrentID>0"); list($AvailableBounty) = $DB->next_record(); $DB->query("SELECT SUM(Snatched), COUNT(ID) FROM torrents"); list($TotalSnatches, $TotalTorrents) = $DB->next_record(); // This is the total number of snatches for torrents that still exist $DB->query("SELECT COUNT(uid) FROM xbt_snatched"); list($TotalOverallSnatches) = $DB->next_record(); $DB->query("SELECT COUNT(fid) FROM xbt_files_users WHERE remaining=0"); list($TotalSeeders) = $DB->next_record(); $DB->query("SELECT COUNT(fid) FROM xbt_files_users"); list($TotalPeers) = $DB->next_record(); $DB->query("SELECT COUNT(ID) FROM users_main WHERE(SELECT COUNT(uid) FROM xbt_files_users WHERE uid=users_main.ID)>0"); list($TotalPeerUsers) = $DB->next_record(); $Cache->cache_value('new_economic_stats', array($TotalUpload,$TotalDownload,$NumUsers,$TotalBounty, $AvailableBounty,$TotalSnatches,$TotalTorrents, $TotalOverallSnatches,$TotalSeeders,$TotalPeers, $TotalPeerUsers), 3600); } else { list($TotalUpload,$TotalDownload,$NumUsers,$TotalBounty,$AvailableBounty, $TotalSnatches,$TotalTorrents,$TotalOverallSnatches,$TotalSeeders, $TotalPeers,$TotalPeerUsers) = $EconomicStats; } $TotalLeechers = $TotalPeers - $TotalSeeders; ?>
Overall stats
  • Total upload:
  • Total download:
  • Total buffer:

  • Mean ratio:
  • Mean upload:
  • Mean download:
  • Mean buffer:

  • Total request bounty:
  • Available request bounty:

Swarms and snatches
  • Total seeders:
  • Total leechers:
  • Total peers:
  • Total snatches:
  • Seeder/leecher ratio:
  • Seeder/snatch ratio:

  • Mean seeders per torrent:
  • Mean leechers per torrent:
  • Mean snatches per torrent:

  • Mean seeding per user:
  • Mean leeching per user:
  • Mean snatches per user:

  • Total users in at least 1 swarm:
  • Mean seeding per user in at least 1 swarm:
  • Mean leeching per user in at least 1 swarm:
  • Mean snatches per user in at least 1 swarm: