Created
April 27, 2012 20:50
-
-
Save paydro/2513002 to your computer and use it in GitHub Desktop.
MapReduce Files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# | |
# This script is run as the 'hadoop' user - which means any commands | |
# that create/update privileged areas must use sudo. | |
# Print out every command executed in this script. | |
set -x | |
# Exit this script if any of the commands below fail. | |
set -e | |
# Log all commands. If this bootstrap script breaks, | |
# look in the log file to see what's up. | |
exec > /home/hadoop/bootup.log 2>&1 | |
GITHUB_KEY="github.com,207.97.227.239 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ==" | |
# Add github host key to known_hosts so we do not | |
# get the "Are you sure you want to connect ..." message | |
# when we check stuff out with git. | |
sudo echo $GITHUB_KEY >> ~hadoop/.ssh/known_hosts | |
echo $GITHUB_KEY | sudo tee -a ~root/.ssh/known_hosts | |
sudo chown -R hadoop:hadoop ~hadoop/.ssh | |
sudo chown -R root:root ~root/.ssh | |
sudo chmod -R go-rw ~hadoop/.ssh | |
sudo chmod -R go-rw ~root/.ssh | |
# Update/remove packages | |
# Amazon's EMR machines are built off of Debian Squeeze. | |
sudo apt-get -y update | |
# Install packages you want to use here. I like | |
# having vim, curl, and git ready. | |
sudo aptitude -y install \ | |
build-essential \ | |
curl \ | |
vim \ | |
git-core | |
# Install rubygems! | |
# | |
# NOTE: The default system ruby is ruby 1.8. | |
curl http://production.cf.rubygems.org/rubygems/rubygems-1.8.21.tgz > ~/rubygems-1.8.21.tgz | |
cd ~/ | |
tar xvzf ~/rubygems-1.8.21.tgz | |
cd ~/rubygems-1.8.21 | |
sudo ruby setup.rb | |
sudo ln -s /usr/bin/gem1.8 /usr/bin/gem | |
cd ~ | |
rm -rf ~/rubygems-1.8* | |
# Install ruby gems that you need. | |
sudo /usr/bin/gem install gem1 gem2 --no-ri --no-rdoc | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/ruby -KU | |
begin | |
ARGF.each_line do |line| | |
line = line.strip | |
next if line == "" | |
parts = line.split("|") | |
puts "#{parts[1]}\t1" | |
end | |
rescue => e | |
$stderr.puts "Error: #{e.message}" | |
$stderr.puts "Backtrace:" | |
e.backtrace.each { |line| $stderr.puts(line) } | |
exit -1 | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/ruby -KU | |
out = $stdout | |
err = $stderr | |
# Wrap our logic so we can catch errors and report them. | |
begin | |
# State vars | |
prev_key = nil | |
total = 0 | |
ARGF.each_line do |line| | |
line = line.strip | |
next if line == "" | |
key, count = line.split("\t") | |
# Set the key for the first run | |
prev_key = key if prev_key.nil? | |
if key != prev_key | |
if total > 0 | |
out.puts "#{prev_key}\t#{total}" | |
end | |
# Reset | |
prev_key = key | |
total = 0 | |
end | |
total += count.to_i | |
end | |
# Output last key | |
out.puts "#{prev_key}\t#{total}" | |
rescue => e | |
err.puts "Error: #{e.message}" | |
err.puts "Backtrace:" | |
e.backtrace.each { |line| err.puts(line) } | |
exit -1 | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2012-04-17 13:49:55|1049|14 | |
2012-04-17 13:49:55|1718|98 | |
2012-04-17 13:49:55|880|41 | |
2012-04-17 13:49:55|1340|45 | |
2012-04-17 13:49:55|1666|45 | |
2012-04-17 13:49:55|1585|41 | |
2012-04-17 13:49:55|3830|45 | |
2012-04-17 13:49:55|43|45 | |
2012-04-17 13:49:55|1821|0 | |
2012-04-17 13:49:55|2843|41 | |
2012-04-17 13:49:55|1517|14 | |
2012-04-17 13:49:55|3888|45 | |
2012-04-17 13:49:55|4982|45 | |
2012-04-17 13:49:55|3633|83 | |
2012-04-17 13:49:55|3832|90 | |
2012-04-17 13:49:55|3729|14 | |
2012-04-17 13:49:55|2621|14 | |
2012-04-17 13:49:55|2843|14 | |
2012-04-17 13:49:55|2452|83 | |
2012-04-17 13:49:55|4435|98 | |
2012-04-17 13:49:55|1987|0 | |
2012-04-17 13:49:55|1|83 | |
2012-04-17 13:49:55|2833|83 | |
2012-04-17 13:49:55|1049|28 | |
2012-04-17 13:49:55|3633|14 | |
2012-04-17 13:49:55|3519|41 | |
2012-04-17 13:49:55|1|90 | |
2012-04-18 03:50:28|3116|98 | |
2012-04-18 03:50:28|2833|98 | |
2012-04-18 03:50:28|2843|98 | |
2012-04-18 03:50:28|1464|0 | |
2012-04-18 03:50:28|4881|41 | |
2012-04-18 03:50:28|3105|90 | |
2012-04-18 03:50:28|3832|28 | |
2012-04-18 03:50:28|2541|0 | |
2012-04-18 03:50:28|4267|28 | |
2012-04-18 03:50:28|331|41 | |
2012-04-18 03:50:28|2350|51 | |
2012-04-18 03:50:28|1340|98 | |
2012-04-18 03:50:28|4524|28 | |
2012-04-18 03:50:28|2452|41 | |
2012-04-18 03:50:28|2833|98 | |
2012-04-18 03:50:28|2702|41 | |
2012-04-18 03:50:28|2942|45 | |
2012-04-18 03:50:28|3888|14 | |
2012-04-18 03:50:28|2363|51 | |
2012-04-18 03:50:28|1666|83 | |
2012-04-18 03:50:28|4975|90 | |
2012-04-18 03:50:28|3466|45 | |
2012-04-18 03:50:28|2718|0 | |
2012-04-18 03:50:28|4718|51 | |
2012-04-18 03:50:28|3116|83 | |
2012-04-18 03:50:28|530|28 | |
2012-04-18 03:50:28|4435|98 | |
2012-04-18 03:50:28|1264|51 | |
2012-04-18 03:50:28|680|28 | |
2012-04-18 03:50:28|3648|90 | |
2012-04-18 03:50:28|2151|45 | |
2012-04-18 03:50:28|3577|51 | |
2012-04-18 03:50:28|2621|83 | |
2012-04-18 09:50:48|3753|83 | |
2012-04-18 09:50:48|1240|98 | |
2012-04-18 09:50:48|331|98 | |
2012-04-18 09:50:48|2843|28 | |
2012-04-18 09:50:48|4982|28 | |
2012-04-18 09:50:48|3105|45 | |
2012-04-18 09:50:48|2350|41 | |
2012-04-18 09:50:48|2203|28 | |
2012-04-18 09:50:48|1234|90 | |
2012-04-18 09:50:48|941|28 | |
2012-04-18 09:50:48|3008|28 | |
2012-04-18 09:50:48|3771|14 | |
2012-04-18 09:50:48|30|14 | |
2012-04-18 09:50:48|3008|90 | |
2012-04-18 09:50:48|43|51 | |
2012-04-18 09:50:48|2541|28 | |
2012-04-18 09:50:48|1822|90 | |
2012-04-18 09:50:48|1666|51 | |
2012-04-18 09:50:48|3707|14 | |
2012-04-18 09:50:48|1821|14 | |
2012-04-18 09:50:48|4718|41 | |
2012-04-18 09:50:48|1878|98 | |
2012-04-18 09:50:48|4881|45 | |
2012-04-18 09:50:48|3189|28 | |
2012-04-18 09:50:48|941|0 | |
2012-04-18 09:50:48|4296|51 | |
2012-04-18 09:50:48|1234|90 | |
2012-04-18 09:50:48|102|41 | |
2012-04-18 09:50:48|2541|98 | |
2012-04-18 09:50:48|530|98 | |
2012-04-18 09:50:48|2452|0 | |
2012-04-18 15:51:46|1712|90 | |
2012-04-18 15:51:46|4192|51 | |
2012-04-18 15:51:46|2028|41 | |
2012-04-18 15:51:46|4982|41 | |
2012-04-18 15:51:46|2718|14 | |
2012-04-18 15:51:46|3745|41 | |
2012-04-18 15:51:46|1585|41 | |
2012-04-18 15:51:46|680|51 | |
2012-04-18 15:51:46|1712|51 | |
2012-04-18 15:51:46|3300|45 | |
2012-04-18 15:51:46|1878|41 | |
2012-04-18 15:51:46|880|98 | |
2012-04-18 15:51:46|3833|83 | |
2012-04-18 15:51:46|2581|0 | |
2012-04-18 15:51:46|530|45 | |
2012-04-18 15:51:46|3016|83 | |
2012-04-18 15:51:46|2363|83 | |
2012-04-18 15:51:46|3300|0 | |
2012-04-18 15:51:46|4828|41 | |
2012-04-18 15:51:46|3519|90 | |
2012-04-18 15:51:46|3729|41 | |
2012-04-19 01:51:55|3648|41 | |
2012-04-19 01:51:55|3633|14 | |
2012-04-19 01:51:55|779|98 | |
2012-04-19 01:51:55|2718|90 | |
2012-04-19 01:51:55|2833|28 | |
2012-04-19 01:51:55|4828|0 | |
2012-04-19 01:51:55|160|98 | |
2012-04-19 01:51:55|3187|28 | |
2012-04-19 01:51:55|1987|41 | |
2012-04-19 01:51:55|530|14 | |
2012-04-19 01:51:55|4109|28 | |
2012-04-19 01:51:55|2843|14 | |
2012-04-19 01:51:55|1585|28 | |
2012-04-19 01:51:55|2363|51 | |
2012-04-19 01:51:55|4828|98 | |
2012-04-19 01:51:55|3300|90 | |
2012-04-19 01:51:55|3187|51 | |
2012-04-19 01:51:55|4267|0 | |
2012-04-19 01:51:55|3016|90 | |
2012-04-19 01:51:55|3633|45 | |
2012-04-19 01:51:55|2541|41 | |
2012-04-19 01:51:55|1517|0 | |
2012-04-19 01:51:55|1264|41 | |
2012-04-19 01:51:55|1821|51 | |
2012-04-19 01:51:55|2718|45 | |
2012-04-19 01:51:55|4975|0 | |
2012-04-19 01:51:55|3341|41 | |
2012-04-19 01:51:55|4911|90 | |
2012-04-19 11:51:55|30|41 | |
2012-04-19 11:51:55|4435|0 | |
2012-04-19 11:51:55|4253|51 | |
2012-04-19 11:51:55|166|14 | |
2012-04-19 11:51:55|1517|83 | |
2012-04-19 11:51:55|1874|51 | |
2012-04-19 11:51:55|3189|14 | |
2012-04-19 11:51:55|3577|41 | |
2012-04-19 11:51:55|4743|83 | |
2012-04-19 11:51:55|331|90 | |
2012-04-19 11:51:55|3888|90 | |
2012-04-19 11:51:55|4594|28 | |
2012-04-20 00:52:14|4343|41 | |
2012-04-20 00:52:14|331|14 | |
2012-04-20 00:52:14|2028|98 | |
2012-04-20 00:52:14|4435|45 | |
2012-04-20 00:52:14|3116|41 | |
2012-04-20 00:52:14|3888|28 | |
2012-04-20 00:52:14|3648|83 | |
2012-04-20 00:52:14|3833|45 | |
2012-04-20 00:52:14|2718|28 | |
2012-04-20 00:52:14|2203|90 | |
2012-04-20 00:52:14|941|45 | |
2012-04-20 00:52:14|377|83 | |
2012-04-20 00:52:14|1264|45 | |
2012-04-20 00:52:14|2718|51 | |
2012-04-20 00:52:14|1|98 | |
2012-04-20 00:52:14|4109|28 | |
2012-04-20 00:52:14|1780|90 | |
2012-04-20 00:52:14|4296|51 | |
2012-04-20 00:52:14|4267|41 | |
2012-04-20 00:52:14|1718|51 | |
2012-04-20 00:52:14|3633|41 | |
2012-04-20 00:52:14|377|28 | |
2012-04-20 00:52:14|4296|41 | |
2012-04-20 00:52:14|1234|41 | |
2012-04-20 04:53:05|2718|14 | |
2012-04-20 13:53:53|2942|14 | |
2012-04-20 13:53:53|4343|98 | |
2012-04-20 13:53:53|4340|83 | |
2012-04-20 13:53:53|4828|45 | |
2012-04-20 13:53:53|1340|45 | |
2012-04-20 13:53:53|3189|90 | |
2012-04-20 13:53:53|1565|98 | |
2012-04-20 13:53:53|880|51 | |
2012-04-20 13:53:53|2028|41 | |
2012-04-20 13:53:53|377|83 | |
2012-04-20 13:53:53|1|14 | |
2012-04-20 13:53:53|3105|83 | |
2012-04-20 13:53:53|43|45 | |
2012-04-20 13:53:53|1049|41 | |
2012-04-20 13:53:53|3016|51 | |
2012-04-20 13:53:53|3321|28 | |
2012-04-20 13:53:53|1049|98 | |
2012-04-20 13:53:53|2942|0 | |
2012-04-20 13:53:53|3341|14 | |
2012-04-20 13:53:53|941|14 | |
2012-04-21 01:54:07|1712|51 | |
2012-04-21 01:54:07|1822|98 | |
2012-04-21 01:54:07|3519|45 | |
2012-04-21 01:54:07|3341|98 | |
2012-04-21 01:54:07|4982|83 | |
2012-04-21 01:54:07|2702|90 | |
2012-04-21 01:54:07|2621|0 | |
2012-04-21 01:54:07|4253|45 | |
2012-04-21 01:54:07|3341|0 | |
2012-04-21 01:54:07|4975|83 | |
2012-04-21 01:54:07|3116|51 | |
2012-04-21 01:54:07|4343|28 | |
2012-04-21 01:54:07|3771|41 | |
2012-04-21 04:54:11|4343|14 | |
2012-04-21 04:54:11|3830|0 | |
2012-04-21 04:54:11|2152|51 | |
2012-04-21 04:54:11|3577|83 | |
2012-04-21 04:54:11|1585|41 | |
2012-04-21 04:54:11|3812|28 | |
2012-04-21 04:54:11|3729|83 | |
2012-04-21 04:54:11|3597|90 | |
2012-04-21 04:54:11|3597|98 | |
2012-04-21 04:54:11|3597|90 | |
2012-04-21 04:54:11|102|28 | |
2012-04-21 04:54:11|4594|41 | |
2012-04-21 04:54:11|1|28 | |
2012-04-21 04:54:11|4718|90 | |
2012-04-21 04:54:11|1780|14 | |
2012-04-21 04:54:11|2363|51 | |
2012-04-21 04:54:11|377|98 | |
2012-04-21 04:54:11|1517|98 | |
2012-04-21 04:54:11|2718|0 | |
2012-04-21 04:54:11|359|98 | |
2012-04-21 04:54:11|3341|14 | |
2012-04-21 04:54:11|4109|45 | |
2012-04-21 04:54:11|2581|41 | |
2012-04-21 04:54:11|3854|14 | |
2012-04-21 04:54:11|3648|51 | |
2012-04-21 04:54:11|3771|51 | |
2012-04-21 04:54:11|4296|83 | |
2012-04-21 04:54:11|3745|28 | |
2012-04-21 04:54:11|4524|14 | |
2012-04-21 04:54:11|4594|51 | |
2012-04-21 04:54:11|2363|90 | |
2012-04-21 04:54:11|3466|90 | |
2012-04-21 04:54:18|1878|28 | |
2012-04-21 04:54:18|2152|83 | |
2012-04-21 04:54:18|1313|51 | |
2012-04-21 04:54:18|3300|41 | |
2012-04-21 04:54:18|2833|28 | |
2012-04-21 04:54:18|3008|45 | |
2012-04-21 04:54:18|4524|90 | |
2012-04-21 04:54:18|3812|83 | |
2012-04-21 04:54:18|3116|0 | |
2012-04-21 04:54:18|4881|0 | |
2012-04-21 04:54:18|377|51 | |
2012-04-21 04:54:18|2152|0 | |
2012-04-21 04:54:18|4340|83 | |
2012-04-21 04:54:18|4014|41 | |
2012-04-21 04:54:18|3187|0 | |
2012-04-21 04:54:18|3753|14 | |
2012-04-21 04:54:18|1264|51 | |
2012-04-21 04:54:18|30|41 | |
2012-04-21 04:54:18|3832|41 | |
2012-04-21 04:54:18|4296|41 | |
2012-04-21 12:54:37|880|90 | |
2012-04-21 12:54:37|3016|41 | |
2012-04-21 12:54:37|2581|0 | |
2012-04-21 12:54:37|1878|98 | |
2012-04-21 12:54:37|2152|83 | |
2012-04-21 12:54:37|166|28 | |
2012-04-21 12:54:37|1987|98 | |
2012-04-21 12:54:37|3016|0 | |
2012-04-21 12:54:37|3729|98 | |
2012-04-21 12:54:37|1049|83 | |
2012-04-21 12:54:37|4253|0 | |
2012-04-21 12:54:37|3577|41 | |
2012-04-21 12:54:37|4928|14 | |
2012-04-21 12:54:37|102|28 | |
2012-04-21 12:54:37|3341|51 | |
2012-04-21 12:54:37|1313|41 | |
2012-04-21 12:54:37|3729|98 | |
2012-04-21 12:54:37|102|83 | |
2012-04-21 12:54:37|880|98 | |
2012-04-21 12:54:37|4975|41 | |
2012-04-21 12:54:37|1340|98 | |
2012-04-21 12:54:37|3771|83 | |
2012-04-21 12:54:37|1718|45 | |
2012-04-21 12:54:37|680|45 | |
2012-04-21 12:54:37|4296|14 | |
2012-04-21 12:54:37|4253|45 | |
2012-04-21 12:54:37|1878|45 | |
2012-04-21 12:54:37|3300|28 | |
2012-04-21 22:54:47|1368|28 | |
2012-04-21 22:54:47|1878|14 | |
2012-04-21 22:54:47|2605|98 | |
2012-04-21 22:54:47|3830|45 | |
2012-04-21 22:54:47|1517|98 | |
2012-04-21 22:54:47|4982|14 | |
2012-04-21 22:54:47|3466|0 | |
2012-04-21 22:54:47|2718|41 | |
2012-04-21 22:54:47|1585|41 | |
2012-04-21 22:54:47|2041|0 | |
2012-04-21 22:54:47|1313|90 | |
2012-04-21 22:54:47|1565|14 | |
2012-04-21 22:54:47|3832|14 | |
2012-04-21 22:54:47|1049|14 | |
2012-04-21 22:54:47|1340|14 | |
2012-04-21 22:54:47|1368|51 | |
2012-04-21 22:54:47|530|98 | |
2012-04-21 22:54:47|2843|0 | |
2012-04-21 22:54:47|941|45 | |
2012-04-21 22:54:47|3300|14 | |
2012-04-21 22:54:47|4296|14 | |
2012-04-21 22:54:47|1780|51 | |
2012-04-21 22:54:47|3729|0 | |
2012-04-22 07:55:21|4928|90 | |
2012-04-22 07:55:21|1368|83 | |
2012-04-22 07:55:21|2702|45 | |
2012-04-22 11:56:09|3321|0 | |
2012-04-22 11:56:09|3888|83 | |
2012-04-22 11:56:09|880|83 | |
2012-04-22 11:56:09|1368|51 | |
2012-04-22 11:56:09|2833|83 | |
2012-04-22 11:56:09|2942|51 | |
2012-04-22 11:56:09|3116|98 | |
2012-04-22 11:56:09|1368|98 | |
2012-04-22 11:56:09|2541|41 | |
2012-04-22 11:56:09|2541|28 | |
2012-04-22 11:56:09|2541|98 | |
2012-04-22 11:56:09|1368|14 | |
2012-04-22 11:56:09|3771|45 | |
2012-04-22 11:56:09|3729|45 | |
2012-04-22 11:56:09|3116|0 | |
2012-04-22 11:56:09|2702|83 | |
2012-04-22 11:56:09|1313|28 | |
2012-04-22 11:56:09|3753|28 | |
2012-04-22 11:56:09|4594|41 | |
2012-04-22 11:56:09|2028|0 | |
2012-04-22 11:56:09|1822|28 | |
2012-04-22 11:56:09|1368|51 | |
2012-04-22 11:56:09|2141|41 | |
2012-04-22 11:56:09|680|51 | |
2012-04-22 11:56:09|2350|51 | |
2012-04-22 11:56:09|359|14 | |
2012-04-22 11:56:09|4982|0 | |
2012-04-22 11:56:09|779|83 | |
2012-04-22 11:56:09|4192|51 | |
2012-04-22 11:56:09|1|41 | |
2012-04-22 11:56:09|4928|14 | |
2012-04-22 11:56:09|30|41 | |
2012-04-22 11:56:09|3648|90 | |
2012-04-22 11:56:09|880|45 | |
2012-04-22 11:56:09|30|83 | |
2012-04-22 17:56:13|2581|98 | |
2012-04-22 17:56:13|941|51 | |
2012-04-22 17:56:13|1878|45 | |
2012-04-23 03:57:06|359|45 | |
2012-04-23 03:57:06|3016|98 | |
2012-04-23 03:57:06|3341|0 | |
2012-04-23 03:57:06|3771|0 | |
2012-04-23 03:57:06|3745|14 | |
2012-04-23 03:57:06|4718|45 | |
2012-04-23 03:57:06|2028|51 | |
2012-04-23 03:57:06|1874|28 | |
2012-04-23 03:57:06|1517|83 | |
2012-04-23 03:57:06|3832|83 | |
2012-04-23 03:57:06|2702|90 | |
2012-04-23 03:57:06|3833|28 | |
2012-04-23 03:57:06|3812|14 | |
2012-04-23 03:57:06|102|0 | |
2012-04-23 03:57:06|3937|98 | |
2012-04-23 15:57:57|3648|98 | |
2012-04-23 15:57:57|3008|28 | |
2012-04-23 15:57:57|3187|98 | |
2012-04-23 15:57:57|1712|98 | |
2012-04-23 15:58:44|941|0 | |
2012-04-23 15:58:44|2942|45 | |
2012-04-23 15:58:44|4253|98 | |
2012-04-23 15:58:44|2203|45 | |
2012-04-23 15:58:44|2152|45 | |
2012-04-23 15:58:44|4524|0 | |
2012-04-24 02:59:05|3832|83 | |
2012-04-24 02:59:05|2581|83 | |
2012-04-24 02:59:05|3771|83 | |
2012-04-24 02:59:05|1234|83 | |
2012-04-24 02:59:05|2541|28 | |
2012-04-24 02:59:05|43|51 | |
2012-04-24 02:59:05|3771|51 | |
2012-04-24 02:59:05|3830|98 | |
2012-04-24 02:59:05|4975|14 | |
2012-04-24 02:59:05|3016|90 | |
2012-04-24 02:59:05|3016|0 | |
2012-04-24 02:59:05|2028|51 | |
2012-04-24 02:59:05|160|98 | |
2012-04-24 02:59:05|160|45 | |
2012-04-24 02:59:05|2152|28 | |
2012-04-24 02:59:05|1565|41 | |
2012-04-24 02:59:05|3577|98 | |
2012-04-24 02:59:05|1718|51 | |
2012-04-24 02:59:05|3187|28 | |
2012-04-24 02:59:05|3577|83 | |
2012-04-24 02:59:05|1049|83 | |
2012-04-24 02:59:05|1987|45 | |
2012-04-24 02:59:05|3832|45 | |
2012-04-24 02:59:05|3937|51 | |
2012-04-24 02:59:05|2718|51 | |
2012-04-24 02:59:05|2833|28 | |
2012-04-24 02:59:05|3854|98 | |
2012-04-24 02:59:05|102|0 | |
2012-04-24 02:59:05|1049|14 | |
2012-04-24 02:59:05|2833|41 | |
2012-04-24 02:59:05|102|90 | |
2012-04-24 02:59:05|359|90 | |
2012-04-24 02:59:05|2151|14 | |
2012-04-24 02:59:05|2702|28 | |
2012-04-24 02:59:05|30|14 | |
2012-04-24 02:59:05|2368|90 | |
2012-04-24 02:59:05|2541|45 | |
2012-04-24 03:59:46|3187|28 | |
2012-04-24 03:59:46|160|45 | |
2012-04-24 03:59:46|3648|90 | |
2012-04-24 03:59:46|4743|83 | |
2012-04-24 03:59:46|2368|83 | |
2012-04-24 03:59:46|1368|51 | |
2012-04-24 03:59:46|1718|14 | |
2012-04-24 03:59:46|3105|28 | |
2012-04-24 03:59:46|779|41 | |
2012-04-24 03:59:46|2041|0 | |
2012-04-24 03:59:46|4975|83 | |
2012-04-24 03:59:46|4752|90 | |
2012-04-24 03:59:46|4267|41 | |
2012-04-24 03:59:46|3300|98 | |
2012-04-24 03:59:46|880|0 | |
2012-04-24 03:59:46|2452|41 | |
2012-04-24 03:59:46|3729|0 | |
2012-04-24 03:59:46|1780|0 | |
2012-04-24 03:59:46|3187|14 | |
2012-04-24 03:59:46|4253|41 | |
2012-04-24 03:59:46|2621|90 | |
2012-04-24 03:59:46|1264|90 | |
2012-04-24 03:59:46|1712|45 | |
2012-04-24 03:59:46|3753|0 | |
2012-04-24 08:59:48|3187|0 | |
2012-04-24 08:59:48|4340|45 | |
2012-04-24 08:59:48|2151|14 | |
2012-04-24 08:59:48|4975|51 | |
2012-04-24 08:59:48|377|14 | |
2012-04-24 08:59:48|2833|51 | |
2012-04-24 08:59:48|359|41 | |
2012-04-24 08:59:48|3116|51 | |
2012-04-24 08:59:48|3707|41 | |
2012-04-24 08:59:48|3833|14 | |
2012-04-24 08:59:48|941|83 | |
2012-04-24 08:59:48|4752|90 | |
2012-04-24 08:59:48|1240|0 | |
2012-04-24 08:59:48|3707|90 | |
2012-04-24 08:59:48|1822|0 | |
2012-04-24 08:59:48|941|14 | |
2012-04-24 08:59:48|1240|45 | |
2012-04-24 08:59:48|530|14 | |
2012-04-24 08:59:48|3745|14 | |
2012-04-24 08:59:48|3888|0 | |
2012-04-24 08:59:48|3854|45 | |
2012-04-24 08:59:48|2141|45 | |
2012-04-24 08:59:48|3745|83 | |
2012-04-24 08:59:48|4594|90 | |
2012-04-24 10:00:08|3833|51 | |
2012-04-24 10:00:08|2141|0 | |
2012-04-24 10:00:08|2452|14 | |
2012-04-24 10:00:08|2581|98 | |
2012-04-24 10:00:08|3854|0 | |
2012-04-24 10:00:08|3577|90 | |
2012-04-24 10:00:08|1264|41 | |
2012-04-24 10:00:08|4752|51 | |
2012-04-24 10:00:08|3341|14 | |
2012-04-24 10:00:08|1874|28 | |
2012-04-24 10:00:08|2141|45 | |
2012-04-24 10:00:08|880|51 | |
2012-04-24 10:00:08|4911|45 | |
2012-04-24 10:00:08|2581|14 | |
2012-04-24 10:00:08|2152|14 | |
2012-04-24 10:00:08|3729|51 | |
2012-04-24 10:00:08|1264|14 | |
2012-04-24 10:00:08|1049|51 | |
2012-04-24 10:00:08|2621|45 | |
2012-04-24 10:00:08|4109|83 | |
2012-04-24 10:00:08|3577|14 | |
2012-04-24 10:00:08|1240|0 | |
2012-04-24 10:00:08|3729|28 | |
2012-04-24 10:00:08|2541|90 | |
2012-04-24 10:00:08|3187|51 | |
2012-04-24 10:00:08|1264|98 | |
2012-04-24 10:00:08|1049|98 | |
2012-04-24 10:00:08|1666|28 | |
2012-04-24 10:00:08|2151|28 | |
2012-04-24 10:00:08|2833|41 | |
2012-04-24 10:00:08|2350|14 | |
2012-04-24 17:00:12|941|83 | |
2012-04-24 17:00:12|1264|51 | |
2012-04-24 17:00:12|4982|45 | |
2012-04-24 17:00:12|3707|28 | |
2012-04-24 17:00:12|1234|83 | |
2012-04-24 17:00:12|1822|51 | |
2012-04-24 17:00:12|1240|28 | |
2012-04-24 17:00:12|3189|98 | |
2012-04-24 17:00:12|3321|98 | |
2012-04-24 17:00:12|2028|83 | |
2012-04-25 00:00:21|4982|98 | |
2012-04-25 00:00:21|4343|51 | |
2012-04-25 00:00:21|4975|90 | |
2012-04-25 00:00:21|3341|14 | |
2012-04-25 00:00:21|3597|98 | |
2012-04-25 00:00:21|1240|90 | |
2012-04-25 00:00:21|3729|83 | |
2012-04-25 00:00:21|1874|28 | |
2012-04-25 00:00:21|3771|45 | |
2012-04-25 00:00:21|2605|98 | |
2012-04-25 00:00:21|3187|45 | |
2012-04-25 00:00:21|3707|28 | |
2012-04-25 00:00:21|4881|45 | |
2012-04-25 00:00:21|102|98 | |
2012-04-25 00:00:21|3937|41 | |
2012-04-25 00:00:21|2718|28 | |
2012-04-25 00:00:21|1234|83 | |
2012-04-25 00:00:21|2041|83 | |
2012-04-25 00:00:21|4343|28 | |
2012-04-25 00:00:21|4911|45 | |
2012-04-25 00:00:21|3341|45 | |
2012-04-25 00:00:21|4982|14 | |
2012-04-25 00:00:21|30|45 | |
2012-04-25 00:00:21|3707|90 | |
2012-04-25 00:00:21|4982|90 | |
2012-04-25 00:00:21|4296|90 | |
2012-04-25 00:00:21|331|28 | |
2012-04-25 00:00:21|941|51 | |
2012-04-25 00:00:21|2581|90 | |
2012-04-25 00:00:21|3729|90 | |
2012-04-25 00:00:21|530|83 | |
2012-04-25 00:00:21|1874|51 | |
2012-04-25 00:00:21|3016|14 | |
2012-04-25 00:00:21|3597|98 | |
2012-04-25 00:00:21|4928|28 | |
2012-04-25 00:00:21|1565|98 | |
2012-04-25 00:01:02|3341|41 | |
2012-04-25 00:01:02|331|28 | |
2012-04-25 00:01:02|2605|45 | |
2012-04-25 00:01:02|2621|14 | |
2012-04-25 00:01:02|2203|41 | |
2012-04-25 00:01:02|2141|41 | |
2012-04-25 00:01:02|102|90 | |
2012-04-25 00:01:02|880|51 | |
2012-04-25 00:01:02|3854|14 | |
2012-04-25 00:01:02|1987|98 | |
2012-04-25 00:01:02|2368|41 | |
2012-04-25 00:01:02|1|90 | |
2012-04-25 00:01:02|3833|45 | |
2012-04-25 00:01:02|4340|41 | |
2012-04-25 00:01:02|4267|83 | |
2012-04-25 09:01:06|1049|90 | |
2012-04-25 09:01:06|3341|83 | |
2012-04-25 09:01:06|4435|41 | |
2012-04-25 09:01:06|3300|45 | |
2012-04-25 09:01:06|1987|90 | |
2012-04-25 09:01:06|3341|98 | |
2012-04-25 09:01:06|2152|90 | |
2012-04-25 09:01:06|4340|90 | |
2012-04-25 09:01:06|3830|98 | |
2012-04-25 09:01:06|1878|90 | |
2012-04-25 09:01:06|2363|14 | |
2012-04-25 16:02:04|1878|14 | |
2012-04-25 16:02:04|2363|90 | |
2012-04-25 16:02:04|1987|45 | |
2012-04-25 16:02:04|4296|14 | |
2012-04-25 16:02:04|4975|0 | |
2012-04-25 16:02:04|2350|45 | |
2012-04-25 16:02:04|102|90 | |
2012-04-25 16:02:04|1874|0 | |
2012-04-25 16:02:04|1517|45 | |
2012-04-25 16:02:42|3832|28 | |
2012-04-25 16:02:42|4192|45 | |
2012-04-25 16:02:42|2843|98 | |
2012-04-25 16:02:42|2621|14 | |
2012-04-25 16:02:42|2621|45 | |
2012-04-25 16:02:42|2368|41 | |
2012-04-25 16:02:42|1780|45 | |
2012-04-25 16:02:42|102|51 | |
2012-04-25 16:02:42|3729|98 | |
2012-04-25 16:02:42|3833|45 | |
2012-04-25 16:02:42|3577|83 | |
2012-04-25 16:02:42|3321|14 | |
2012-04-25 16:02:42|4435|51 | |
2012-04-25 23:03:04|3597|14 | |
2012-04-25 23:03:04|4340|45 | |
2012-04-25 23:03:04|3597|90 | |
2012-04-25 23:03:04|1874|0 | |
2012-04-25 23:03:04|2541|14 | |
2012-04-25 23:03:04|3105|51 | |
2012-04-25 23:03:04|1565|45 | |
2012-04-25 23:03:04|331|14 | |
2012-04-25 23:03:04|3633|90 | |
2012-04-25 23:03:04|941|98 | |
2012-04-25 23:03:04|1585|45 | |
2012-04-25 23:03:04|3830|45 | |
2012-04-25 23:03:04|3187|14 | |
2012-04-25 23:03:04|2350|41 | |
2012-04-25 23:03:04|1565|51 | |
2012-04-25 23:03:04|4192|45 | |
2012-04-25 23:03:04|4253|0 | |
2012-04-25 23:03:04|2605|28 | |
2012-04-25 23:03:04|1340|45 | |
2012-04-25 23:03:04|2041|51 | |
2012-04-25 23:03:04|3888|0 | |
2012-04-25 23:03:04|1666|41 | |
2012-04-25 23:03:04|3116|41 | |
2012-04-25 23:03:04|2028|14 | |
2012-04-25 23:03:04|2605|14 | |
2012-04-25 23:03:04|3016|83 | |
2012-04-25 23:03:04|4109|98 | |
2012-04-25 23:03:04|3519|0 | |
2012-04-25 23:03:04|1340|0 | |
2012-04-25 23:03:04|779|28 | |
2012-04-26 07:03:16|3116|0 | |
2012-04-26 07:03:16|4435|51 | |
2012-04-26 07:03:16|1822|51 | |
2012-04-26 07:03:16|2203|45 | |
2012-04-26 07:03:16|680|83 | |
2012-04-26 07:03:16|4296|51 | |
2012-04-26 07:03:16|4524|0 | |
2012-04-26 07:03:16|2363|90 | |
2012-04-26 07:03:16|3341|83 | |
2012-04-26 07:03:16|4881|14 | |
2012-04-26 07:03:16|4743|0 | |
2012-04-26 07:03:16|4340|0 | |
2012-04-26 07:03:16|4752|41 | |
2012-04-26 07:03:16|3854|83 | |
2012-04-26 07:03:16|1264|14 | |
2012-04-26 07:03:16|166|14 | |
2012-04-26 07:03:16|4982|28 | |
2012-04-26 07:03:16|4828|45 | |
2012-04-26 07:03:16|3854|14 | |
2012-04-26 07:03:16|1780|28 | |
2012-04-26 07:03:16|3633|28 | |
2012-04-26 07:03:16|4267|0 | |
2012-04-26 07:03:16|3341|51 | |
2012-04-26 07:03:16|4109|90 | |
2012-04-26 07:03:16|2605|90 | |
2012-04-26 07:03:16|2843|41 | |
2012-04-26 11:03:44|3016|90 | |
2012-04-26 11:03:44|4524|45 | |
2012-04-26 11:03:44|3753|90 | |
2012-04-26 11:03:44|3729|41 | |
2012-04-26 11:03:44|3854|28 | |
2012-04-26 11:03:44|1264|41 | |
2012-04-26 11:03:44|377|41 | |
2012-04-26 11:03:44|2833|45 | |
2012-04-26 11:03:44|2350|98 | |
2012-04-26 11:03:44|2581|98 | |
2012-04-26 11:03:44|3888|83 | |
2012-04-26 11:03:44|4594|51 | |
2012-04-26 11:03:44|4975|98 | |
2012-04-26 11:03:44|2368|90 | |
2012-04-26 11:03:44|1464|83 | |
2012-04-26 11:03:44|4982|83 | |
2012-04-26 11:03:44|2541|28 | |
2012-04-26 11:03:44|3745|51 | |
2012-04-26 11:03:44|4911|90 | |
2012-04-26 11:03:44|680|41 | |
2012-04-26 11:03:44|1718|45 | |
2012-04-26 11:03:44|3648|28 | |
2012-04-26 11:03:44|1878|98 | |
2012-04-26 11:03:44|1240|28 | |
2012-04-26 11:03:44|2363|41 | |
2012-04-26 11:03:44|4109|41 | |
2012-04-26 11:03:44|102|41 | |
2012-04-26 11:03:44|2363|14 | |
2012-04-26 17:04:41|2843|83 | |
2012-04-26 17:04:41|2942|51 | |
2012-04-26 17:04:41|3753|98 | |
2012-04-26 17:04:41|3300|98 | |
2012-04-26 17:04:41|2833|41 | |
2012-04-26 17:04:41|2151|0 | |
2012-04-26 17:04:41|4524|83 | |
2012-04-26 17:04:41|3519|98 | |
2012-04-26 17:04:41|1313|28 | |
2012-04-26 17:04:41|166|83 | |
2012-04-26 17:04:41|3597|0 | |
2012-04-26 17:04:41|2368|90 | |
2012-04-26 17:04:41|1712|0 | |
2012-04-26 17:04:41|1666|51 | |
2012-04-26 17:04:41|1874|28 | |
2012-04-26 17:04:41|377|83 | |
2012-04-26 17:04:41|2028|98 | |
2012-04-26 17:04:41|779|51 | |
2012-04-26 17:04:41|3648|98 | |
2012-04-26 17:04:41|2581|90 | |
2012-04-26 17:04:41|2041|14 | |
2012-04-27 07:05:09|3116|83 | |
2012-04-27 07:05:09|1987|28 | |
2012-04-27 12:06:04|3854|51 | |
2012-04-27 12:06:04|1666|51 | |
2012-04-27 12:06:04|1878|14 | |
2012-04-27 12:06:04|160|41 | |
2012-04-27 12:06:04|3577|45 | |
2012-04-27 12:06:04|3771|98 | |
2012-04-27 12:06:04|3189|83 | |
2012-04-27 12:06:04|3105|98 | |
2012-04-27 12:06:04|779|45 | |
2012-04-27 12:06:04|1234|14 | |
2012-04-27 12:06:04|2350|98 | |
2012-04-27 12:06:04|359|98 | |
2012-04-27 12:06:04|880|98 | |
2012-04-27 12:06:04|4014|90 | |
2012-04-27 12:06:04|3577|14 | |
2012-04-27 12:06:04|4911|51 | |
2012-04-27 12:06:04|1368|83 | |
2012-04-27 12:06:04|4253|83 | |
2012-04-27 12:06:04|1666|83 | |
2012-04-27 12:06:04|4752|83 | |
2012-04-27 12:06:04|2581|41 | |
2012-04-27 12:06:04|359|41 | |
2012-04-27 12:06:04|1234|90 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment