gamertag 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,9 @@
1
+ coverage
2
+ rdoc
3
+ doc
4
+ .yardoc
5
+ .bundle
6
+ pkg
7
+ Gemfile.lock
8
+ *.swp
9
+ *.gem
data/.rvmrc ADDED
@@ -0,0 +1 @@
1
+ rvm use ruby-1.9.2@gamertag_gem --create
@@ -0,0 +1,8 @@
1
+ # gamertag 1.0.1
2
+
3
+ * Updates to project organization, code improvements and specs
4
+ * Add ability to initialize a SimpleProfile from existing JSON data [hypomodern]
5
+
6
+ # gamertag 1.0.0
7
+
8
+ * Initial release
data/Gemfile CHANGED
@@ -1,8 +1,4 @@
1
1
  source "http://rubygems.org"
2
2
 
3
- gem 'json'
4
- gem 'hashie'
5
- gem 'nokogiri'
6
-
7
3
  # Specify your gem's dependencies in gamertag.gemspec
8
4
  gemspec
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2011 Baris Balic, David Czarnecki
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -1,9 +1,18 @@
1
1
  # Gamertag
2
2
 
3
- An interface for accessing your xbox live profile and game data.
3
+ An interface for accessing your XBOX Live profile and game data.
4
4
 
5
5
  ## Install
6
- gem install gamertag.
6
+
7
+ ```ruby
8
+ gem install gamertag
9
+ ```
10
+
11
+ Gemfile:
12
+
13
+ ```ruby
14
+ gem 'gamertag'
15
+ ```
7
16
 
8
17
  ## Usage
9
18
  This gem fetches data from two independent sources, which has several implications such as one of the sources not being available, or an increased overhead when you only want to access some of the data. To this end the interface will allow you to access all data, just the profile data or just the played games data.
@@ -62,7 +71,7 @@ This gem fetches data from two independent sources, which has several implicatio
62
71
  game.earned_achievements
63
72
  game.available_achievements
64
73
  game.average_gamerscore
65
- game.relative_gamerscore => :above_average || :below_average
74
+ game.relative_gamerscore => :above_average || :below_average || :undefined
66
75
  end
67
76
 
68
77
 
@@ -76,4 +85,4 @@ This gem fetches data from two independent sources, which has several implicatio
76
85
 
77
86
  ## Copyright
78
87
 
79
- Copyright (c) 2011 Baris Balic.
88
+ Copyright (c) 2011 Baris Balic, David Czarnecki.
data/Rakefile CHANGED
@@ -1,2 +1,12 @@
1
1
  require 'bundler'
2
2
  Bundler::GemHelper.install_tasks
3
+
4
+ require 'rake'
5
+ require 'rspec/core/rake_task'
6
+
7
+ RSpec::Core::RakeTask.new(:spec) do |spec|
8
+ spec.pattern = 'spec/**/*_spec.rb'
9
+ spec.rspec_opts = ['--backtrace']
10
+ end
11
+
12
+ task :default => :spec
@@ -6,11 +6,11 @@ Gem::Specification.new do |s|
6
6
  s.name = "gamertag"
7
7
  s.version = Gamertag::VERSION
8
8
  s.platform = Gem::Platform::RUBY
9
- s.authors = ["Baris Balic"]
10
- s.email = ["baris@webloch.co.uk"]
11
- s.homepage = ""
12
- s.summary = %q{A gem for retrieving your xbox live gamertag info}
13
- s.description = %q{A gem for retrieving your xbox live gamertag info}
9
+ s.authors = ["Baris Balic", "David Czarnecki"]
10
+ s.email = ["baris@webloch.co.uk", "dczarnecki@agoragames.com"]
11
+ s.homepage = "https://github.com/barisbalic/gamertag"
12
+ s.summary = %q{A gem for retrieving your XBOX Live gamertag information}
13
+ s.description = %q{A gem for retrieving your XBOX Live gamertag information}
14
14
 
15
15
  s.rubyforge_project = "gamertag"
16
16
 
@@ -18,4 +18,13 @@ Gem::Specification.new do |s|
18
18
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
19
19
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
20
20
  s.require_paths = ["lib"]
21
+
22
+ s.add_dependency('json', '~> 1.5.3')
23
+ s.add_dependency('hashie', '~> 1.1.0')
24
+ s.add_dependency('nokogiri', '~> 1.5.0')
25
+
26
+ s.add_development_dependency('rake')
27
+ s.add_development_dependency('rspec', '~> 2.6.0')
28
+ s.add_development_dependency('vcr', '~> 1.11.1')
29
+ s.add_development_dependency('fakeweb', '1.3.0')
21
30
  end
@@ -1,9 +1,10 @@
1
1
  require 'net/http'
2
2
  require 'date'
3
- require 'JSON'
3
+ require 'json'
4
4
  require 'hashie'
5
5
  require 'nokogiri'
6
6
 
7
7
  require 'gamertag/simple_profile'
8
8
  require 'gamertag/played_games'
9
9
  require 'gamertag/profile'
10
+ require 'gamertag/version'
@@ -26,8 +26,9 @@ module Gamertag
26
26
  naming = cells[1].css("p")
27
27
  gamerscore = cells[2].css("div[class='percentage-container']").first.text.strip!.split('/')
28
28
  achievements = (cells[2].css("div[class='percentage-container']").last.text).strip!.split('/')
29
+
29
30
  average_gamerscore = cells[3].css('span').text.strip!
30
- relative_gamerscore = (cells[3].css('span').attribute('title').text.include?('above average') ? :above_average : :below_average)
31
+ relative_gamerscore = cells[3].css('span').attribute('title').text.include?('above average') ? :above_average : :below_average rescue :undefined
31
32
 
32
33
  Hashie::Mash.new({'image' => cells[0].css('img').attribute('src').text,
33
34
  'title' => naming.first.text,
@@ -1,7 +1,16 @@
1
1
  module Gamertag
2
2
  class SimpleProfile
3
- def initialize(gamertag)
4
- @profile = fetch(gamertag)
3
+ def initialize(gamertag, seed_data = nil)
4
+ if seed_data
5
+ @profile = seed_data
6
+ else
7
+ @profile = fetch(gamertag)
8
+ end
9
+ end
10
+
11
+ def self.from_json(data)
12
+ data = JSON.parse(data)
13
+ new(data["gamertag"], data)
5
14
  end
6
15
 
7
16
  def method_missing(method_name, args = nil)
@@ -19,8 +28,8 @@ module Gamertag
19
28
  end
20
29
 
21
30
  private
22
- def fetch(gamertag)
23
- uri = URI.parse("http://api.xboxleaders.com/newapi.php?gamertag=#{gamertag}&version=2.0&format=json")
31
+ def fetch(gamertag)
32
+ uri = URI.parse("http://api.xboxleaders.com/v2/?gamertag=#{gamertag}&format=json")
24
33
  response = Net::HTTP.get_response(uri)
25
34
  hash = JSON.parse(response.body)
26
35
  hash['user']
@@ -1,3 +1,3 @@
1
1
  module Gamertag
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
@@ -0,0 +1,2082 @@
1
+ ---
2
+ - !ruby/struct:VCR::HTTPInteraction
3
+ request: !ruby/struct:VCR::Request
4
+ method: :get
5
+ uri: http://api.xboxleaders.com:80/v2/?gamertag=Belial1984&format=json
6
+ body:
7
+ headers:
8
+ response: !ruby/struct:VCR::Response
9
+ status: !ruby/struct:VCR::ResponseStatus
10
+ code: 200
11
+ message: OK
12
+ headers:
13
+ date:
14
+ - Wed, 24 Aug 2011 16:38:21 GMT
15
+ server:
16
+ - Apache/2.0.63 (Unix) mod_ssl/2.0.63 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 PHP/5.2.13
17
+ x-powered-by:
18
+ - PHP/5.2.13
19
+ expires:
20
+ - Mon, 26 Jul 1997 05:00:00 GMT
21
+ last-modified:
22
+ - Wed, 24 Aug 2011 16:38:24GMT
23
+ cache-control:
24
+ - no-cache, must-revalidate
25
+ pragma:
26
+ - no-cache
27
+ content-length:
28
+ - "3225"
29
+ content-type:
30
+ - application/json
31
+ body: "{\"user\":{\"gamertag\":\"belial1984\",\"is_valid\":1,\"profile_link\":\"http:\\/\\/live.xbox.com\\/member\\/belial1984\",\"launch_team\":{\"xbl\":0,\"nxe\":0,\"kinect\":0},\"account_status\":\"Gold\",\"gender\":\"Male\",\"is_cheater\":0,\"online\":0,\"online_status\":\"Last seen 8\\/22\\/2011 playing Modern Warfare® 2\",\"avatars\":{\"gamer_tile\":\"http:\\/\\/avatar.xboxlive.com\\/avatar\\/belial1984\\/avatarpic-l.png\",\"small_gamerpic\":\"http:\\/\\/avatar.xboxlive.com\\/avatar\\/belial1984\\/avatarpic-s.png\",\"large_gamerpic\":\"http:\\/\\/avatar.xboxlive.com\\/avatar\\/belial1984\\/avatarpic-l.png\",\"body_gamerpic\":\"http:\\/\\/avatar.xboxlive.com\\/avatar\\/belial1984\\/avatar-body.png\"},\"reputation\":100,\"gamerscore\":11910,\"location\":\"london\",\"motto\":\"\",\"name\":\"baris balic\",\"bio\":\"\",\"recent_games\":{\"1\":{\"title\":\"Modern Warfare® 2\",\"tid\":1096157207,\"marketplace_url\":\"http:\\/\\/marketplace.xbox.com\\/Title\\/1096157207\",\"compare_url\":\"http:\\/\\/live.xbox.com\\/en-US\\/GameCenter\\/Achievements?title=1096157207&compareTo=belial1984\",\"image\":\"http:\\/\\/tiles.xbox.com\\/tiles\\/l6\\/Vi\\/0Gdsb2JhbA9ECgQJGgYfVl5UL2ljb24vMC84MDAwIAAAAAAAAP9NpYg=.jpg\",\"last_played\":\"1313967600\",\"earned_gamerscore\":930,\"available_gamerscore\":1000,\"earned_achievements\":43,\"available_achievements\":50,\"percentage_complete\":86},\"2\":{\"title\":\"Halo: Reach\",\"tid\":1297287259,\"marketplace_url\":\"http:\\/\\/marketplace.xbox.com\\/Title\\/1297287259\",\"compare_url\":\"http:\\/\\/live.xbox.com\\/en-US\\/GameCenter\\/Achievements?title=1297287259&compareTo=belial1984\",\"image\":\"http:\\/\\/tiles.xbox.com\\/tiles\\/ih\\/ew\\/0Wdsb2JhbA9ECgR8GgMfVlohL2ljb24vMC84MDAwIAAAAAAAAP6fF5U=.jpg\",\"last_played\":\"1299542400\",\"earned_gamerscore\":375,\"available_gamerscore\":1400,\"earned_achievements\":26,\"available_achievements\":59,\"percentage_complete\":44},\"3\":{\"title\":\"Portal 2\",\"tid\":1161890066,\"marketplace_url\":\"http:\\/\\/marketplace.xbox.com\\/Title\\/1161890066\",\"compare_url\":\"http:\\/\\/live.xbox.com\\/en-US\\/GameCenter\\/Achievements?title=1161890066&compareTo=belial1984\",\"image\":\"http:\\/\\/tiles.xbox.com\\/tiles\\/x2\\/5+\\/1mdsb2JhbA9ECgQNGwEfV15RL2ljb24vMC84MDAwIAAAAAAAAPlRbtg=.jpg\",\"last_played\":\"\",\"earned_gamerscore\":345,\"available_gamerscore\":1000,\"earned_achievements\":21,\"available_achievements\":50,\"percentage_complete\":42},\"4\":{\"title\":\"SUPER STREETFIGHTER IV\",\"tid\":1128466428,\"marketplace_url\":\"http:\\/\\/marketplace.xbox.com\\/Title\\/1128466428\",\"compare_url\":\"http:\\/\\/live.xbox.com\\/en-US\\/GameCenter\\/Achievements?title=1128466428&compareTo=belial1984\",\"image\":\"http:\\/\\/tiles.xbox.com\\/tiles\\/oX\\/8i\\/0Wdsb2JhbA9ECgQLGwMfWSkgL2ljb24vMC84MDAwIAAAAAAAAP4Nf74=.jpg\",\"last_played\":\"1309906800\",\"earned_gamerscore\":470,\"available_gamerscore\":1160,\"earned_achievements\":28,\"available_achievements\":58,\"percentage_complete\":48},\"5\":{\"title\":\"Child of Eden\",\"tid\":1431504972,\"marketplace_url\":\"http:\\/\\/marketplace.xbox.com\\/Title\\/1431504972\",\"compare_url\":\"http:\\/\\/live.xbox.com\\/en-US\\/GameCenter\\/Achievements?title=1431504972&compareTo=belial1984\",\"image\":\"http:\\/\\/tiles.xbox.com\\/tiles\\/z2\\/Jl\\/1mdsb2JhbA9ECgUNGgMfVlsgL2ljb24vMC84MDAwIAAAAAAAAPlKYtA=.jpg\",\"last_played\":\"\",\"earned_gamerscore\":0,\"available_gamerscore\":1000,\"earned_achievements\":0,\"available_achievements\":49,\"percentage_complete\":0}}}}"
32
+ http_version: "1.1"
33
+ - !ruby/struct:VCR::HTTPInteraction
34
+ request: !ruby/struct:VCR::Request
35
+ method: :get
36
+ uri: http://www.xboxgamertag.com:80/search/Belial1984/
37
+ body:
38
+ headers:
39
+ response: !ruby/struct:VCR::Response
40
+ status: !ruby/struct:VCR::ResponseStatus
41
+ code: 200
42
+ message: OK
43
+ headers:
44
+ set-cookie:
45
+ - PHPSESSID=2326af0d94256b418c099cbdf1807553; path=/
46
+ expires:
47
+ - Thu, 19 Nov 1981 08:52:00 GMT
48
+ cache-control:
49
+ - no-store, no-cache, must-revalidate, post-check=0, pre-check=0
50
+ pragma:
51
+ - no-cache
52
+ vary:
53
+ - Accept-Encoding
54
+ content-type:
55
+ - text/html; charset=UTF-8
56
+ content-length:
57
+ - "102939"
58
+ date:
59
+ - Wed, 24 Aug 2011 16:38:25 GMT
60
+ x-varnish:
61
+ - "659547934"
62
+ age:
63
+ - "0"
64
+ connection:
65
+ - keep-alive
66
+ server:
67
+ - Xbox Gamertag
68
+ body: "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n\
69
+ <html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:og=\"http://ogp.me/ns#\"\n xmlns:fb=\"https://www.facebook.com/2008/fbml\" lang=\"en\">\n\
70
+ <head>\n\
71
+ <title>belial1984 - Xbox Live Gamertag </title>\n\
72
+ <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\n\
73
+ <meta name=\"description\" content=\"View the full xbox live profile of belial1984's. belial1984's gamerscore is 11,910. To search for any other Xbox Live user visit our homepage.\" />\n\
74
+ <meta name=\"keywords\" content=\"xbox, xbox gamertag, gamertag, gamertag search, xbox gamertag search, xbox live, gamercards, gamertag generator, gamercard generator\" />\n\
75
+ <meta name=\"robots\" content=\"index, follow\" />\n\
76
+ <meta name=\"google-site-verification\" content=\"DawowDmV2J68zDd4Ej0RdjF9C4mPykmq7smE1F2bgTw\" />\n\
77
+ <link rel=\"canonical\" href=\"http://www.xboxgamertag.com\" />\n\n <meta property=\"og:title\" content=\"belial1984 - Xbox Gamertag - Xbox Gamertag\"/>\n <meta property=\"og:type\" content=\"website\"/>\n <meta property=\"og:url\" content=\"http://www.xboxgamertag.com/search/belial1984/\"/>\n <meta property=\"og:image\" content=\"http://avatar.xboxlive.com/avatar/belial1984/avatarpic-l.png\"/>\n <meta property=\"og:site_name\" content=\"XboxGamertag\"/>\n <meta property=\"og:description\" content=\"belial1984 - Xbox Gamertag. Gamerscore: 11,910\"/>\n\n\
78
+ <!-- Stylesheets -->\n\
79
+ <link rel=\"stylesheet\" type=\"text/css\" href=\"/resources/css/main.css?1313399553\" />\n\
80
+ <link rel=\"stylesheet\" type=\"text/css\" href=\"/resources/css/content/gamertag.css?1313399553\" />\n\n\
81
+ <!-- Javascript -->\n\
82
+ <script type=\"text/javascript\" src=\"/resources/scripts/jquery-1.4.4.min.js?1313399553\"></script>\n\
83
+ \t<script type=\"text/javascript\" src=\"/resources/scripts/jquery-ui.min.js?1313399553\"></script>\n\
84
+ \t<link rel=\"stylesheet\" type=\"text/css\" href=\"/resources/scripts/jqueryui/xgt-theme/jquery-ui-1.8.6.custom.css?1313399553\" />\n\
85
+ \t<script type=\"text/javascript\" src=\"/resources/scripts/content/gamertag.js?1313399553\"></script>\n\n\n\
86
+ \t\n\n\n\
87
+ <!--[if lt IE 7]>\n\
88
+ <script type=\"text/javascript\" src=\"/resources/scripts/supersleight.plugin.js?1313399553\"></script>\n\
89
+ <script>\n\
90
+ $(document).ready(function()\n\
91
+ {\n\
92
+ \t$('img, div, input').supersleight();\n\
93
+ });\n\
94
+ </script>\n\
95
+ <![endif]-->\n\
96
+ <noscript>For full functionality of this page it is necessary to enable JavaScript. Here are the <a href=\"http://www.enable-javascript.com&quot; target=\"_blank\"> instructions how to enable JavaScript in your web browser</a></noscript>\n\n\
97
+ <!-- BuySellAds.com Ad Code -->\n\
98
+ <script type=\"text/javascript\">\n\
99
+ (function(){\n var bsa = document.createElement('script');\n bsa.type = 'text/javascript';\n bsa.async = true;\n bsa.src = '//s3.buysellads.com/ac/bsa.js';\n (document.getElementsByTagName('head')[0]||document.getElementsByTagName('body')[0]).appendChild(bsa);\n\
100
+ })();\n\
101
+ </script>\n\
102
+ <!-- End BuySellAds.com Ad Code -->\n\n\n\
103
+ </head>\n\n\
104
+ <body>\n\
105
+ <div id=\"container\">\n\n\
106
+ \t\n\
107
+ \t<h1 id=\"MainTitle\"><a href=\"http://www.xboxgamertag.com/\">Xbox Gamertag</a></h1>\n\
108
+ \t\t\t\t\t\t\t\t\n\n\
109
+ <div class=\"topAd\">\n\n\
110
+ <script type=\"text/javascript\"><!--\n\
111
+ google_ad_client = \"ca-pub-5544850898506231\";\n\
112
+ /* top */\n\
113
+ google_ad_slot = \"7701256685\";\n\
114
+ google_ad_width = 468;\n\
115
+ google_ad_height = 60;\n\
116
+ //-->\n\
117
+ </script>\n\
118
+ <script type=\"text/javascript\"\n\
119
+ src=\"http://pagead2.googlesyndication.com/pagead/show_ads.js\">\n\
120
+ </script>\n\n\n\n\
121
+ <!-- BuySellAds.com Zone Code -->\n\
122
+ <!---<div id=\"bsap_1263149\" class=\"bsarocks bsap_98d6915731db38cdebc72e15b7b23b2b\"></div>-->\n\
123
+ <!-- End BuySellAds.com Zone Code -->\n\n\n\n\n\n\n\n\
124
+ </div>\t\n\
125
+ \t\n\
126
+ \t<div id=\"topLinks\">\n\
127
+ \t\t<ul>\n\
128
+ \t\t\t\t\t\t<li><a href=\"/register/\"><strong>Register</strong></a> | </li>\n\
129
+ \t\t\t<li><a href=\"/login/\">Login</a></li>\n\
130
+ \t\t\t\t\t\t\n\
131
+ \t\t</ul>\n\
132
+ \t</div>\n\
133
+ \t<div id=\"XGTHeader\">\n\
134
+ \t\t<ul id=\"Menu\">\n\
135
+ \t\t\t<li class=\"image\"><a href=\"/\"><img src=\"/resources/images/homeHouse.png\" alt=\"xboxgamertag\" /></a></li>\n\
136
+ \t\t\t<li class=\"left\"><a href=\"/gamercard/\">Gamercards</a></li>\n\
137
+ \t\t\t<li class=\"left\"><a href=\"/gamertag-generator/\">Gamertag Generator</a></li>\n\
138
+ \t\t\t<li class=\"left\"><a href=\"/achievements/\">Achievements</a></li>\n\
139
+ \t\t\t<li class=\"left\"><a href=\"/leaderboards/\">Leaderboards</a></li>\n\
140
+ \t\t\t\t\t\t<li class=\"left\"><a href=\"http://www.youtube.com/user/XboxGamertagCom\" target=\"_blank\"rel=\"nofollow\">- Youtube Channel -</a></li>\n\
141
+ \t\t\t<!---<li class=\"rightOption\"><a href=\"/forum/\">Forums</a></li>-->\n\
142
+ \t\t\t\n\
143
+ \t\t\t<li class=\"rightOption\"><a href=\"http://www.facebook.com/pages/Xbox-Gamertag/134742809876061\" rel=\"nofollow\" target=\"_blank\">Share Your Gamertag</a></li>\n\n\
144
+ \t\t</ul>\n\
145
+ \t\t\t</div>\n\
146
+ \t\n \t<!-----<div id=\"status-msg\"></div>--->\n\
147
+ \t\n\
148
+ \t<div id=\"XGTMain\">\n\n\
149
+ <div id=\"s-text\">\n\
150
+ <p>belial1984 is an Xbox Live Gold user.<p>\n\
151
+ <p>They have 11,910 gamerscore.</p>\n\
152
+ <p>Their motto is and their bio is </p>\n\
153
+ \t<p>They play games such as: Modern Warfare\xC2\xAE 2,Halo: Reach,Portal 2,SUPER STREETFIGHTER IV,Child of Eden,Geometry Wars Evolved\xC2\xB2,Bulletstorm,LUMINES LIVE!,MEGA MAN 10,Call of Duty Black Ops,The Orange Box,Portal: Still Alive,Burnout Paradise,Super Meat Boy,Fallout: New Vegas,Braid,NFS Hot Pursuit,LIMBO,PAC-MAN CE DX,SuperStreetFighter2THD,BAYONETTA,Dead Space\xE2\x84\xA2,STREET FIGHTER IV,LOST PLANET 2,N+,SCOTT PILGRIM THE GAME,E4,Battlefield: Bad Co. 2,Mercenaries 2,Halo 3: ODST,Halo 3,NINJA GAIDEN 2,Crackdown,Left 4 Dead,Darksiders,RESIDENT EVIL 5,Fable II,Borderlands,Halo Waypoint,Call of Duty 4,[PROTOTYPE]\xE2\x84\xA2,Geometry Wars Evolved,Gears of War 2,Fallout 3,Guitar Hero III,Castle Crashers,GTA IV,Worms,Gears of War,Pac-Man C.E.,TC's RainbowSix Vegas,DEAD RISING,skate.,BioShock,LOST PLANET,Battlestations: Midway,Kane and Lynch:DeadMen,Enchanted Arms,Puzzle Fighter HD,Geon,Sonic The Hedgehog 2,Fatal Fury Special,Small Arms,Street Fighter II' HF,Paperboy,Bomberman LIVE,Perfect Dark Zero,Burnout Revenge,Condemned,Band of Bugs,Castlevania: SOTN,Eets: Chowdown,Hexic HD,Smash TV,Assault Heroes,Novadrome,Heavy Weapon,Catan,Boom Boom Rocket,Double Dragon,XEVIOUS,TMNT 1989 Arcade,Rush'n Attack,DEAD OR ALIVE 4,Viva Pi\xC3\xB1ata,Texas Hold'em,Outpost Kaloki X,PGR 3,</p>\n\
154
+ </div>\n\
155
+ <div id=\"topLeft\">\n\
156
+ \t<img src=\"http://avatar.xboxlive.com/avatar/belial1984/avatarpic-l.png\" alt=\"belial1984's Avatar\" title=\"belial1984's Avatar\" class=\"avatarTile\"/>\n\
157
+ \t<h2 class=\"tierGamertag gold\">belial1984</h2> <img src=\"/resources/images/flags/gb.png\" alt=\"From gb\"/> <p class=\"rightGS\"><img src=\"/resources/images/gamerscore_icon.png\" alt=\"11,910 Gamerscore\" title=\"11,910 Gamerscore\"> 11,910</p><p class=\"topc\">Last seen 8/22/2011 playing Modern Warfare\xC2\xAE 2</p>\n\
158
+ \t<p class=\"topc\"></p>\n\
159
+ </div>\n\
160
+ <div class=\"lowerPart\" style=\"margin-bottom:10px;\">\n\
161
+ <p>Online Status: <i>Offline</i> || Xbox Membership: Gold || Zone: Underground || Country: United Kingdom</p>\n\
162
+ </div>\n\
163
+ <div class=\"rightColGT\" style=\"margin-top:-10px;\">\n\
164
+ <div class=\"topRC\">\n\
165
+ \t<div>\n\
166
+ \t\t<p class=\"\">Total Games Played: 88</p>\n\
167
+ \t\t<p class=\"\">Games Completed: 2</p>\n\
168
+ \t\t<p class=\"\">Average Completion: 21%</p>\n\
169
+ \t</div>\n\n\
170
+ <div class=\"share-item-float\">\n\
171
+ <iframe src=\"http://www.facebook.com/plugins/like.php?app_id=166470226749675&amp;href=http%3A%2F%2Fwww.xboxgamertag.com%2Fsearch%2Fbelial1984%2F&amp;send=false&amp;layout=button_count&amp;width=100&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font&amp;height=21\" scrolling=\"no\" frameborder=\"0\" style=\"border:none; overflow:hidden; width:80px; height:21px;\" allowTransparency=\"true\"></iframe>\n\
172
+ </div>\n\
173
+ <div class=\"share-item\">\n\
174
+ \t<a href=\"http://twitter.com/share\" class=\"twitter-share-button\" data-url=\"http://www.xboxgamertag.com/search/belial1984/\"data-count=\"none\" data-via=\"xboxgamertagcom\">Tweet</a>\n\
175
+ \t<script type=\"text/javascript\" src=\"http://platform.twitter.com/widgets.js\"></script>\n\
176
+ </div>\n\n\
177
+ </div>\n\
178
+ <div class=\"avatarSection\">\n\
179
+ <p class=\"bio-right\"></p>\n\
180
+ \t\t<img src=\"http://avatar.xboxlive.com/avatar/belial1984/avatar-body.png\" alt=\"belial1984's Avatar\" title=\"belial1984's Avatar\" class=\"avatarBig\" />\n\
181
+ \t\t\t<p class=\"bio-right\"></p>\n\n\
182
+ \t\t<br />\t\n\n\
183
+ \t\n\
184
+ \t\n\
185
+ \t</div>\n\
186
+ \t</div>\n\
187
+ <!---<div style=\"margin:0px auto;padding:0px;padding-top:7px;padding-bottom:5px;\">-->\n\n\n\
188
+ <div class=\"adsensefloat\">\n\
189
+ <script type=\"text/javascript\"><!--\n\
190
+ google_ad_client = \"pub-5544850898506231\";\n\
191
+ /* 728x90, created 8/15/11 */\n\
192
+ google_ad_slot = \"8470868236\";\n\
193
+ google_ad_width = 728;\n\
194
+ google_ad_height = 90;\n\
195
+ //-->\n\
196
+ </script>\n\
197
+ <script type=\"text/javascript\"\n\
198
+ src=\"http://pagead2.googlesyndication.com/pagead/show_ads.js\">\n\
199
+ </script></div>\n\n\n\
200
+ \t\n\n\n\
201
+ <!--<div class=\"bysellgt\">\n\
202
+ <p>Advertisement - (<a href=\"http://buysellads.com/buy/detail/64568\" target=\"_blank\" rel=\"nofollow\">Advertise here?</a> - <a href=\"/contact/\" rel=\"nofollow\">Report Ad</a>)</p>\n\
203
+ <!-- BuySellAds.com Zone Code\n\
204
+ <div id=\"bsap_1263151\" class=\"bsarocks bsap_98d6915731db38cdebc72e15b7b23b2b\"></div>\n\
205
+ <!-- End BuySellAds.com Zone Code --><!--</div>-->\n\n\n\n\
206
+ <!--</div>-->\n\
207
+ \t\n\
208
+ \t<div id=\"recentgames\" class=\"section\">\t\n\
209
+ \t\t<h3 class=\"subtitle\">Recent Games</h3>\n\
210
+ \t\t<table id=\"recentGamesTable\" cellspacing=\"0\" cellpadding=\"0\">\n\
211
+ \t\t\t\t\t\t\t\t\t\t<tr class=\"tr2\">\n\
212
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Modern-Warfare%C2%AE-2/\"><img src=\"http://tiles.xbox.com/tiles/CE/Vx/0Gdsb2JhbC9ECgQJGgYfVl5UL2ljb24vMC84MDAwAAAAAAAAAP9eRRc=.jpg\" alt=\"Modern Warfare\xC2\xAE 2\" title=\"Modern Warfare\xC2\xAE 2\" /></a></td>\n\
213
+ \t\t\t\t\t<td>\n\
214
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Modern-Warfare%C2%AE-2/\">Modern Warfare\xC2\xAE 2</a></p>\n\
215
+ \t\t\t\t\t\t<p>Last played at Mon, 22 Aug 2011 19:00:07 GMT</p>\n\
216
+ \t\t\t\t\t</td>\n\
217
+ \t\t\t\t\t<td>\n\
218
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
219
+ \t\t\t\t\t\t\t<div style=\"width: 93%;\"><span title=\"930 gamerscore earned out of a total of 1000 gamerscore\">930/1000</span></div>\n\
220
+ \t\t\t\t\t\t</div>\n\
221
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
222
+ \t\t\t\t\t\t\t<div style=\"width: 86%;\"><span title=\"43 achievements unlocked out of a total of 50 achievements\">43/50</span></div>\n\
223
+ \t\t\t\t\t\t</div>\n\
224
+ \t\t\t\t\t</td>\n\
225
+ \t\t\t\t\t<td>\n\
226
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
227
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Modern Warfare\xC2\xAE 2 is above average\"><img src=\"/resources/images/icons/up.png\" alt=\"Up Arrow\" />\n\
228
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t375</span>\n\
229
+ \t\t\t\t\t\t\t</p>\n\
230
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
231
+ \t\t\t\t</tr>\n\
232
+ \t\t\t\t\t\t\t<tr class=\"tr1\">\n\
233
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Halo%3A-Reach/\"><img src=\"http://tiles.xbox.com/tiles/Ff/ej/0Wdsb2JhbC9ECgR8GgMfVlohL2ljb24vMC84MDAwAAAAAAAAAP6M9wo=.jpg\" alt=\"Halo: Reach\" title=\"Halo: Reach\" /></a></td>\n\
234
+ \t\t\t\t\t<td>\n\
235
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Halo%3A-Reach/\">Halo: Reach</a></p>\n\
236
+ \t\t\t\t\t\t<p>Last played at Tue, 08 Mar 2011 21:20:33 GMT</p>\n\
237
+ \t\t\t\t\t</td>\n\
238
+ \t\t\t\t\t<td>\n\
239
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
240
+ \t\t\t\t\t\t\t<div style=\"width: 26.7857142857%;\"><span title=\"375 gamerscore earned out of a total of 1400 gamerscore\">375/1400</span></div>\n\
241
+ \t\t\t\t\t\t</div>\n\
242
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
243
+ \t\t\t\t\t\t\t<div style=\"width: 44.0677966102%;\"><span title=\"26 achievements unlocked out of a total of 59 achievements\">26/59</span></div>\n\
244
+ \t\t\t\t\t\t</div>\n\
245
+ \t\t\t\t\t</td>\n\
246
+ \t\t\t\t\t<td>\n\
247
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
248
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Halo: Reach is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
249
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t402</span>\n\
250
+ \t\t\t\t\t\t\t</p>\n\
251
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
252
+ \t\t\t\t</tr>\n\
253
+ \t\t\t\t\t\t\t<tr class=\"tr2\">\n\
254
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Portal-2/\"><img src=\"http://tiles.xbox.com/tiles/WI/5t/1mdsb2JhbC9ECgQNGwEfV15RL2ljb24vMC84MDAwAAAAAAAAAPlCjkc=.jpg\" alt=\"Portal 2\" title=\"Portal 2\" /></a></td>\n\
255
+ \t\t\t\t\t<td>\n\
256
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Portal-2/\">Portal 2</a></p>\n\
257
+ \t\t\t\t\t\t<p>Last played at Mon, 01 Jan 1753 00:00:00 GMT</p>\n\
258
+ \t\t\t\t\t</td>\n\
259
+ \t\t\t\t\t<td>\n\
260
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
261
+ \t\t\t\t\t\t\t<div style=\"width: 34.5%;\"><span title=\"345 gamerscore earned out of a total of 1000 gamerscore\">345/1000</span></div>\n\
262
+ \t\t\t\t\t\t</div>\n\
263
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
264
+ \t\t\t\t\t\t\t<div style=\"width: 42%;\"><span title=\"21 achievements unlocked out of a total of 50 achievements\">21/50</span></div>\n\
265
+ \t\t\t\t\t\t</div>\n\
266
+ \t\t\t\t\t</td>\n\
267
+ \t\t\t\t\t<td>\n\
268
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
269
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Portal 2 is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
270
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t356</span>\n\
271
+ \t\t\t\t\t\t\t</p>\n\
272
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
273
+ \t\t\t\t</tr>\n\
274
+ \t\t\t\t\t\t\t<tr class=\"tr1\">\n\
275
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/SUPER-STREETFIGHTER-IV/\"><img src=\"http://tiles.xbox.com/tiles/Pp/8x/0Wdsb2JhbC9ECgQLGwMfWSkgL2ljb24vMC84MDAwAAAAAAAAAP4enyE=.jpg\" alt=\"SUPER STREETFIGHTER IV\" title=\"SUPER STREETFIGHTER IV\" /></a></td>\n\
276
+ \t\t\t\t\t<td>\n\
277
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/SUPER-STREETFIGHTER-IV/\">SUPER STREETFIGHTER IV</a></p>\n\
278
+ \t\t\t\t\t\t<p>Last played at Wed, 06 Jul 2011 21:16:30 GMT</p>\n\
279
+ \t\t\t\t\t</td>\n\
280
+ \t\t\t\t\t<td>\n\
281
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
282
+ \t\t\t\t\t\t\t<div style=\"width: 40.5172413793%;\"><span title=\"470 gamerscore earned out of a total of 1160 gamerscore\">470/1160</span></div>\n\
283
+ \t\t\t\t\t\t</div>\n\
284
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
285
+ \t\t\t\t\t\t\t<div style=\"width: 48.275862069%;\"><span title=\"28 achievements unlocked out of a total of 58 achievements\">28/58</span></div>\n\
286
+ \t\t\t\t\t\t</div>\n\
287
+ \t\t\t\t\t</td>\n\
288
+ \t\t\t\t\t<td>\n\
289
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
290
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for SUPER STREETFIGHTER IV is above average\"><img src=\"/resources/images/icons/up.png\" alt=\"Up Arrow\" />\n\
291
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t180</span>\n\
292
+ \t\t\t\t\t\t\t</p>\n\
293
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
294
+ \t\t\t\t</tr>\n\
295
+ \t\t\t\t\t\t\t<tr class=\"tr2\">\n\
296
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Child-of-Eden/\"><img src=\"http://tiles.xbox.com/tiles/UI/J2/1mdsb2JhbC9ECgUNGgMfVlsgL2ljb24vMC84MDAwAAAAAAAAAPlZgk8=.jpg\" alt=\"Child of Eden\" title=\"Child of Eden\" /></a></td>\n\
297
+ \t\t\t\t\t<td>\n\
298
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Child-of-Eden/\">Child of Eden</a></p>\n\
299
+ \t\t\t\t\t\t<p>Last played at Mon, 01 Jan 1753 00:00:00 GMT</p>\n\
300
+ \t\t\t\t\t</td>\n\
301
+ \t\t\t\t\t<td>\n\
302
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
303
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 gamerscore earned out of a total of 1000 gamerscore\">0/1000</span></div>\n\
304
+ \t\t\t\t\t\t</div>\n\
305
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
306
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 achievements unlocked out of a total of 49 achievements\">0/49</span></div>\n\
307
+ \t\t\t\t\t\t</div>\n\
308
+ \t\t\t\t\t</td>\n\
309
+ \t\t\t\t\t<td>\n\
310
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
311
+ \t\t\t\t</tr>\n\
312
+ \t\t\t\t\t\t\t<tr class=\"tr1\">\n\
313
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Geometry-Wars-Evolved%C2%B2/\"><img src=\"http://tiles.xbox.com/tiles/DQ/Bg/0Gdsb2JhbC9ECgUAGwEfViklL2ljb24vMC84MDAwAAAAAAAAAP9PABI=.jpg\" alt=\"Geometry Wars Evolved\xC2\xB2\" title=\"Geometry Wars Evolved\xC2\xB2\" /></a></td>\n\
314
+ \t\t\t\t\t<td>\n\
315
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Geometry-Wars-Evolved%C2%B2/\">Geometry Wars Evolved\xC2\xB2</a></p>\n\
316
+ \t\t\t\t\t\t<p>Last played at Sun, 24 Jul 2011 19:33:40 GMT</p>\n\
317
+ \t\t\t\t\t</td>\n\
318
+ \t\t\t\t\t<td>\n\
319
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
320
+ \t\t\t\t\t\t\t<div style=\"width: 100%;\"><span title=\"200 gamerscore earned out of a total of 200 gamerscore\">200/200</span></div>\n\
321
+ \t\t\t\t\t\t</div>\n\
322
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
323
+ \t\t\t\t\t\t\t<div style=\"width: 100%;\"><span title=\"12 achievements unlocked out of a total of 12 achievements\">12/12</span></div>\n\
324
+ \t\t\t\t\t\t</div>\n\
325
+ \t\t\t\t\t</td>\n\
326
+ \t\t\t\t\t<td>\n\
327
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
328
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Geometry Wars Evolved\xC2\xB2 is above average\"><img src=\"/resources/images/icons/up.png\" alt=\"Up Arrow\" />\n\
329
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t94</span>\n\
330
+ \t\t\t\t\t\t\t</p>\n\
331
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
332
+ \t\t\t\t</tr>\n\
333
+ \t\t\t\t\t\t\t<tr class=\"tr2\">\n\
334
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Bulletstorm/\"><img src=\"http://tiles.xbox.com/tiles/yZ/Gw/0Gdsb2JhbC9ECgQNGwEfViolL2ljb24vMC84MDAwAAAAAAAAAP+fkdY=.jpg\" alt=\"Bulletstorm\" title=\"Bulletstorm\" /></a></td>\n\
335
+ \t\t\t\t\t<td>\n\
336
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Bulletstorm/\">Bulletstorm</a></p>\n\
337
+ \t\t\t\t\t\t<p>Last played at Sun, 24 Jul 2011 17:32:02 GMT</p>\n\
338
+ \t\t\t\t\t</td>\n\
339
+ \t\t\t\t\t<td>\n\
340
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
341
+ \t\t\t\t\t\t\t<div style=\"width: 40%;\"><span title=\"500 gamerscore earned out of a total of 1250 gamerscore\">500/1250</span></div>\n\
342
+ \t\t\t\t\t\t</div>\n\
343
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
344
+ \t\t\t\t\t\t\t<div style=\"width: 46.6666666667%;\"><span title=\"28 achievements unlocked out of a total of 60 achievements\">28/60</span></div>\n\
345
+ \t\t\t\t\t\t</div>\n\
346
+ \t\t\t\t\t</td>\n\
347
+ \t\t\t\t\t<td>\n\
348
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
349
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Bulletstorm is above average\"><img src=\"/resources/images/icons/up.png\" alt=\"Up Arrow\" />\n\
350
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t292</span>\n\
351
+ \t\t\t\t\t\t\t</p>\n\
352
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
353
+ \t\t\t\t</tr>\n\
354
+ \t\t\t\t\t\t\t<tr class=\"tr1\">\n\
355
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/LUMINES-LIVE%21/\"><img src=\"http://tiles.xbox.com/tiles/tP/bz/0Gdsb2JhbC9ECgUAGwEfWSlbL2ljb24vMC84MDAwAAAAAAAAAP-c9qs=.jpg\" alt=\"LUMINES LIVE!\" title=\"LUMINES LIVE!\" /></a></td>\n\
356
+ \t\t\t\t\t<td>\n\
357
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/LUMINES-LIVE%21/\">LUMINES LIVE!</a></p>\n\
358
+ \t\t\t\t\t\t<p>Last played at Wed, 15 Sep 2010 18:39:52 GMT</p>\n\
359
+ \t\t\t\t\t</td>\n\
360
+ \t\t\t\t\t<td>\n\
361
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
362
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 gamerscore earned out of a total of 200 gamerscore\">0/200</span></div>\n\
363
+ \t\t\t\t\t\t</div>\n\
364
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
365
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\
366
+ \t\t\t\t\t\t</div>\n\
367
+ \t\t\t\t\t</td>\n\
368
+ \t\t\t\t\t<td>\n\
369
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
370
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for LUMINES LIVE! is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
371
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t27</span>\n\
372
+ \t\t\t\t\t\t\t</p>\n\
373
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
374
+ \t\t\t\t</tr>\n\
375
+ \t\t\t\t\t\t\t<tr class=\"tr2\">\n\
376
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/MEGA-MAN-10/\"><img src=\"http://tiles.xbox.com/tiles/xR/Zb/1Gdsb2JhbC9ECgUAGwEfVyomL2ljb24vMC84MDAwAAAAAAAAAPt0Fto=.jpg\" alt=\"MEGA MAN 10\" title=\"MEGA MAN 10\" /></a></td>\n\
377
+ \t\t\t\t\t<td>\n\
378
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/MEGA-MAN-10/\">MEGA MAN 10</a></p>\n\
379
+ \t\t\t\t\t\t<p>Last played at Sun, 03 Jul 2011 15:55:32 GMT</p>\n\
380
+ \t\t\t\t\t</td>\n\
381
+ \t\t\t\t\t<td>\n\
382
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
383
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 gamerscore earned out of a total of 200 gamerscore\">0/200</span></div>\n\
384
+ \t\t\t\t\t\t</div>\n\
385
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
386
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\
387
+ \t\t\t\t\t\t</div>\n\
388
+ \t\t\t\t\t</td>\n\
389
+ \t\t\t\t\t<td>\n\
390
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
391
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for MEGA MAN 10 is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
392
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t37</span>\n\
393
+ \t\t\t\t\t\t\t</p>\n\
394
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
395
+ \t\t\t\t</tr>\n\
396
+ \t\t\t\t\t\t\t<tr class=\"tr1\">\n\
397
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Call-of-Duty-Black-Ops/\"><img src=\"http://tiles.xbox.com/tiles/2p/0j/1Wdsb2JhbC9ECgQJGgYfVlpWL2ljb24vMC84MDAwAAAAAAAAAPoMncU=.jpg\" alt=\"Call of Duty Black Ops\" title=\"Call of Duty Black Ops\" /></a></td>\n\
398
+ \t\t\t\t\t<td>\n\
399
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Call-of-Duty-Black-Ops/\">Call of Duty Black Ops</a></p>\n\
400
+ \t\t\t\t\t\t<p>Last played at Mon, 20 Jun 2011 00:45:48 GMT</p>\n\
401
+ \t\t\t\t\t</td>\n\
402
+ \t\t\t\t\t<td>\n\
403
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
404
+ \t\t\t\t\t\t\t<div style=\"width: 20.2941176471%;\"><span title=\"345 gamerscore earned out of a total of 1700 gamerscore\">345/1700</span></div>\n\
405
+ \t\t\t\t\t\t</div>\n\
406
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
407
+ \t\t\t\t\t\t\t<div style=\"width: 23.9436619718%;\"><span title=\"17 achievements unlocked out of a total of 71 achievements\">17/71</span></div>\n\
408
+ \t\t\t\t\t\t</div>\n\
409
+ \t\t\t\t\t</td>\n\
410
+ \t\t\t\t\t<td>\n\
411
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
412
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Call of Duty Black Ops is above average\"><img src=\"/resources/images/icons/up.png\" alt=\"Up Arrow\" />\n\
413
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t292</span>\n\
414
+ \t\t\t\t\t\t\t</p>\n\
415
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
416
+ \t\t\t\t</tr>\n\
417
+ \t\t\t\t\t\t\t<tr class=\"tr2\">\n\
418
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/The-Orange-Box/\"><img src=\"http://tiles.xbox.com/tiles/ol/Kj/1mdsb2JhbC9ECgQNGwEfVl8lL2ljb24vMC84MDAwAAAAAAAAAPmMUr0=.jpg\" alt=\"The Orange Box\" title=\"The Orange Box\" /></a></td>\n\
419
+ \t\t\t\t\t<td>\n\
420
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/The-Orange-Box/\">The Orange Box</a></p>\n\
421
+ \t\t\t\t\t\t<p>Last played at Sun, 12 Jun 2011 11:03:43 GMT</p>\n\
422
+ \t\t\t\t\t</td>\n\
423
+ \t\t\t\t\t<td>\n\
424
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
425
+ \t\t\t\t\t\t\t<div style=\"width: 32%;\"><span title=\"320 gamerscore earned out of a total of 1000 gamerscore\">320/1000</span></div>\n\
426
+ \t\t\t\t\t\t</div>\n\
427
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
428
+ \t\t\t\t\t\t\t<div style=\"width: 40.404040404%;\"><span title=\"40 achievements unlocked out of a total of 99 achievements\">40/99</span></div>\n\
429
+ \t\t\t\t\t\t</div>\n\
430
+ \t\t\t\t\t</td>\n\
431
+ \t\t\t\t\t<td>\n\
432
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
433
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for The Orange Box is above average\"><img src=\"/resources/images/icons/up.png\" alt=\"Up Arrow\" />\n\
434
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t234</span>\n\
435
+ \t\t\t\t\t\t\t</p>\n\
436
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
437
+ \t\t\t\t</tr>\n\
438
+ \t\t\t\t\t\t\t<tr class=\"tr1\">\n\
439
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Portal%3A-Still-Alive/\"><img src=\"http://tiles.xbox.com/tiles/Ts/fv/02dsb2JhbC9ECgUAGwEfV1lTL2ljb24vMC84MDAwAAAAAAAAAPzAx1E=.jpg\" alt=\"Portal: Still Alive\" title=\"Portal: Still Alive\" /></a></td>\n\
440
+ \t\t\t\t\t<td>\n\
441
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Portal%3A-Still-Alive/\">Portal: Still Alive</a></p>\n\
442
+ \t\t\t\t\t\t<p>Last played at Sun, 08 May 2011 16:31:27 GMT</p>\n\
443
+ \t\t\t\t\t</td>\n\
444
+ \t\t\t\t\t<td>\n\
445
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
446
+ \t\t\t\t\t\t\t<div style=\"width: 52.5%;\"><span title=\"105 gamerscore earned out of a total of 200 gamerscore\">105/200</span></div>\n\
447
+ \t\t\t\t\t\t</div>\n\
448
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
449
+ \t\t\t\t\t\t\t<div style=\"width: 58.3333333333%;\"><span title=\"7 achievements unlocked out of a total of 12 achievements\">7/12</span></div>\n\
450
+ \t\t\t\t\t\t</div>\n\
451
+ \t\t\t\t\t</td>\n\
452
+ \t\t\t\t\t<td>\n\
453
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
454
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Portal: Still Alive is above average\"><img src=\"/resources/images/icons/up.png\" alt=\"Up Arrow\" />\n\
455
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t66</span>\n\
456
+ \t\t\t\t\t\t\t</p>\n\
457
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
458
+ \t\t\t\t</tr>\n\
459
+ \t\t\t\t\t\t\t<tr class=\"tr2\">\n\
460
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Burnout-Paradise/\"><img src=\"http://tiles.xbox.com/tiles/iX/a0/12dsb2JhbC9ECgQNGwEfVl9VL2ljb24vMC84MDAwAAAAAAAAAPibdpY=.jpg\" alt=\"Burnout Paradise\" title=\"Burnout Paradise\" /></a></td>\n\
461
+ \t\t\t\t\t<td>\n\
462
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Burnout-Paradise/\">Burnout Paradise</a></p>\n\
463
+ \t\t\t\t\t\t<p>Last played at Sun, 17 Apr 2011 14:55:49 GMT</p>\n\
464
+ \t\t\t\t\t</td>\n\
465
+ \t\t\t\t\t<td>\n\
466
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
467
+ \t\t\t\t\t\t\t<div style=\"width: 11.2%;\"><span title=\"140 gamerscore earned out of a total of 1250 gamerscore\">140/1250</span></div>\n\
468
+ \t\t\t\t\t\t</div>\n\
469
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
470
+ \t\t\t\t\t\t\t<div style=\"width: 18.3333333333%;\"><span title=\"11 achievements unlocked out of a total of 60 achievements\">11/60</span></div>\n\
471
+ \t\t\t\t\t\t</div>\n\
472
+ \t\t\t\t\t</td>\n\
473
+ \t\t\t\t\t<td>\n\
474
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
475
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Burnout Paradise is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
476
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t282</span>\n\
477
+ \t\t\t\t\t\t\t</p>\n\
478
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
479
+ \t\t\t\t</tr>\n\
480
+ \t\t\t\t\t\t\t<tr class=\"tr1\">\n\
481
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Super-Meat-Boy/\"><img src=\"http://tiles.xbox.com/tiles/Lw/-G/0Wdsb2JhbC9ECgUAGwEfL1oiL2ljb24vMC84MDAwAAAAAAAAAP7pDzA=.jpg\" alt=\"Super Meat Boy\" title=\"Super Meat Boy\" /></a></td>\n\
482
+ \t\t\t\t\t<td>\n\
483
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Super-Meat-Boy/\">Super Meat Boy</a></p>\n\
484
+ \t\t\t\t\t\t<p>Last played at Tue, 05 Apr 2011 19:17:33 GMT</p>\n\
485
+ \t\t\t\t\t</td>\n\
486
+ \t\t\t\t\t<td>\n\
487
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
488
+ \t\t\t\t\t\t\t<div style=\"width: 25%;\"><span title=\"50 gamerscore earned out of a total of 200 gamerscore\">50/200</span></div>\n\
489
+ \t\t\t\t\t\t</div>\n\
490
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
491
+ \t\t\t\t\t\t\t<div style=\"width: 33.3333333333%;\"><span title=\"4 achievements unlocked out of a total of 12 achievements\">4/12</span></div>\n\
492
+ \t\t\t\t\t\t</div>\n\
493
+ \t\t\t\t\t</td>\n\
494
+ \t\t\t\t\t<td>\n\
495
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
496
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Super Meat Boy is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
497
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t60</span>\n\
498
+ \t\t\t\t\t\t\t</p>\n\
499
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
500
+ \t\t\t\t</tr>\n\
501
+ \t\t\t\t\t\t\t<tr class=\"tr2\">\n\
502
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Fallout%3A-New-Vegas/\"><img src=\"http://tiles.xbox.com/tiles/Rn/ZQ/02dsb2JhbC9ECgQKGgMfWSpTL2ljb24vMC84MDAwAAAAAAAAAPx-dlk=.jpg\" alt=\"Fallout: New Vegas\" title=\"Fallout: New Vegas\" /></a></td>\n\
503
+ \t\t\t\t\t<td>\n\
504
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Fallout%3A-New-Vegas/\">Fallout: New Vegas</a></p>\n\
505
+ \t\t\t\t\t\t<p>Last played at Tue, 08 Mar 2011 21:43:00 GMT</p>\n\
506
+ \t\t\t\t\t</td>\n\
507
+ \t\t\t\t\t<td>\n\
508
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
509
+ \t\t\t\t\t\t\t<div style=\"width: 17.793594306%;\"><span title=\"250 gamerscore earned out of a total of 1405 gamerscore\">250/1405</span></div>\n\
510
+ \t\t\t\t\t\t</div>\n\
511
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
512
+ \t\t\t\t\t\t\t<div style=\"width: 24.6153846154%;\"><span title=\"16 achievements unlocked out of a total of 65 achievements\">16/65</span></div>\n\
513
+ \t\t\t\t\t\t</div>\n\
514
+ \t\t\t\t\t</td>\n\
515
+ \t\t\t\t\t<td>\n\
516
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
517
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Fallout: New Vegas is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
518
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t302</span>\n\
519
+ \t\t\t\t\t\t\t</p>\n\
520
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
521
+ \t\t\t\t</tr>\n\
522
+ \t\t\t\t\t\t\t<tr class=\"tr1\">\n\
523
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Braid/\"><img src=\"http://tiles.xbox.com/tiles/wJ/N1/0Wdsb2JhbC9ECgUAGwEfViwmL2ljb24vMC84MDAwAAAAAAAAAP5ak98=.jpg\" alt=\"Braid\" title=\"Braid\" /></a></td>\n\
524
+ \t\t\t\t\t<td>\n\
525
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Braid/\">Braid</a></p>\n\
526
+ \t\t\t\t\t\t<p>Last played at Sun, 06 Mar 2011 22:30:44 GMT</p>\n\
527
+ \t\t\t\t\t</td>\n\
528
+ \t\t\t\t\t<td>\n\
529
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
530
+ \t\t\t\t\t\t\t<div style=\"width: 92.5%;\"><span title=\"185 gamerscore earned out of a total of 200 gamerscore\">185/200</span></div>\n\
531
+ \t\t\t\t\t\t</div>\n\
532
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
533
+ \t\t\t\t\t\t\t<div style=\"width: 91.6666666667%;\"><span title=\"11 achievements unlocked out of a total of 12 achievements\">11/12</span></div>\n\
534
+ \t\t\t\t\t\t</div>\n\
535
+ \t\t\t\t\t</td>\n\
536
+ \t\t\t\t\t<td>\n\
537
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
538
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Braid is above average\"><img src=\"/resources/images/icons/up.png\" alt=\"Up Arrow\" />\n\
539
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t120</span>\n\
540
+ \t\t\t\t\t\t\t</p>\n\
541
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
542
+ \t\t\t\t</tr>\n\
543
+ \t\t\t\t\t\t\t<tr class=\"tr2\">\n\
544
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/NFS-Hot-Pursuit/\"><img src=\"http://tiles.xbox.com/tiles/R8/Uq/0mdsb2JhbC9ECgQNGwEfV19QL2ljb24vMC84MDAwAAAAAAAAAP0FxVg=.jpg\" alt=\"NFS Hot Pursuit\" title=\"NFS Hot Pursuit\" /></a></td>\n\
545
+ \t\t\t\t\t<td>\n\
546
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/NFS-Hot-Pursuit/\">NFS Hot Pursuit</a></p>\n\
547
+ \t\t\t\t\t\t<p>Last played at Fri, 11 Feb 2011 16:51:34 GMT</p>\n\
548
+ \t\t\t\t\t</td>\n\
549
+ \t\t\t\t\t<td>\n\
550
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
551
+ \t\t\t\t\t\t\t<div style=\"width: 0.719424460432%;\"><span title=\"10 gamerscore earned out of a total of 1390 gamerscore\">10/1390</span></div>\n\
552
+ \t\t\t\t\t\t</div>\n\
553
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
554
+ \t\t\t\t\t\t\t<div style=\"width: 1.38888888889%;\"><span title=\"1 achievements unlocked out of a total of 72 achievements\">1/72</span></div>\n\
555
+ \t\t\t\t\t\t</div>\n\
556
+ \t\t\t\t\t</td>\n\
557
+ \t\t\t\t\t<td>\n\
558
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
559
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for NFS Hot Pursuit is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
560
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t272</span>\n\
561
+ \t\t\t\t\t\t\t</p>\n\
562
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
563
+ \t\t\t\t</tr>\n\
564
+ \t\t\t\t\t\t\t<tr class=\"tr1\">\n\
565
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/LIMBO/\"><img src=\"http://tiles.xbox.com/tiles/uT/rl/1Wdsb2JhbC9ECgUAGwEfVytSL2ljb24vMC84MDAwAAAAAAAAAPrKOqY=.jpg\" alt=\"LIMBO\" title=\"LIMBO\" /></a></td>\n\
566
+ \t\t\t\t\t<td>\n\
567
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/LIMBO/\">LIMBO</a></p>\n\
568
+ \t\t\t\t\t\t<p>Last played at Sat, 25 Dec 2010 23:49:46 GMT</p>\n\
569
+ \t\t\t\t\t</td>\n\
570
+ \t\t\t\t\t<td>\n\
571
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
572
+ \t\t\t\t\t\t\t<div style=\"width: 60%;\"><span title=\"120 gamerscore earned out of a total of 200 gamerscore\">120/200</span></div>\n\
573
+ \t\t\t\t\t\t</div>\n\
574
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
575
+ \t\t\t\t\t\t\t<div style=\"width: 33.3333333333%;\"><span title=\"4 achievements unlocked out of a total of 12 achievements\">4/12</span></div>\n\
576
+ \t\t\t\t\t\t</div>\n\
577
+ \t\t\t\t\t</td>\n\
578
+ \t\t\t\t\t<td>\n\
579
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
580
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for LIMBO is above average\"><img src=\"/resources/images/icons/up.png\" alt=\"Up Arrow\" />\n\
581
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t100</span>\n\
582
+ \t\t\t\t\t\t\t</p>\n\
583
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
584
+ \t\t\t\t</tr>\n\
585
+ \t\t\t\t\t\t\t<tr class=\"tr2\">\n\
586
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/PAC-MAN-CE-DX/\"><img src=\"http://tiles.xbox.com/tiles/YV/Ua/12dsb2JhbC9ECgUAGwEfL1cgL2ljb24vMC84MDAwAAAAAAAAAPg1VX4=.jpg\" alt=\"PAC-MAN CE DX\" title=\"PAC-MAN CE DX\" /></a></td>\n\
587
+ \t\t\t\t\t<td>\n\
588
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/PAC-MAN-CE-DX/\">PAC-MAN CE DX</a></p>\n\
589
+ \t\t\t\t\t\t<p>Last played at Sat, 04 Dec 2010 15:12:27 GMT</p>\n\
590
+ \t\t\t\t\t</td>\n\
591
+ \t\t\t\t\t<td>\n\
592
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
593
+ \t\t\t\t\t\t\t<div style=\"width: 45%;\"><span title=\"90 gamerscore earned out of a total of 200 gamerscore\">90/200</span></div>\n\
594
+ \t\t\t\t\t\t</div>\n\
595
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
596
+ \t\t\t\t\t\t\t<div style=\"width: 58.3333333333%;\"><span title=\"7 achievements unlocked out of a total of 12 achievements\">7/12</span></div>\n\
597
+ \t\t\t\t\t\t</div>\n\
598
+ \t\t\t\t\t</td>\n\
599
+ \t\t\t\t\t<td>\n\
600
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
601
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for PAC-MAN CE DX is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
602
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t142</span>\n\
603
+ \t\t\t\t\t\t\t</p>\n\
604
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
605
+ \t\t\t\t</tr>\n\
606
+ \t\t\t\t\t\t\t<tr class=\"tr1\">\n\
607
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/SuperStreetFighter2THD/\"><img src=\"http://tiles.xbox.com/tiles/gt/vL/0mdsb2JhbC9ECgUAGwEfVi5XL2ljb24vMC84MDAwAAAAAAAAAP3k250=.jpg\" alt=\"SuperStreetFighter2THD\" title=\"SuperStreetFighter2THD\" /></a></td>\n\
608
+ \t\t\t\t\t<td>\n\
609
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/SuperStreetFighter2THD/\">SuperStreetFighter2THD</a></p>\n\
610
+ \t\t\t\t\t\t<p>Last played at Wed, 24 Nov 2010 23:43:59 GMT</p>\n\
611
+ \t\t\t\t\t</td>\n\
612
+ \t\t\t\t\t<td>\n\
613
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
614
+ \t\t\t\t\t\t\t<div style=\"width: 15%;\"><span title=\"30 gamerscore earned out of a total of 200 gamerscore\">30/200</span></div>\n\
615
+ \t\t\t\t\t\t</div>\n\
616
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
617
+ \t\t\t\t\t\t\t<div style=\"width: 16.6666666667%;\"><span title=\"2 achievements unlocked out of a total of 12 achievements\">2/12</span></div>\n\
618
+ \t\t\t\t\t\t</div>\n\
619
+ \t\t\t\t\t</td>\n\
620
+ \t\t\t\t\t<td>\n\
621
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
622
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for SuperStreetFighter2THD is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
623
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t61</span>\n\
624
+ \t\t\t\t\t\t\t</p>\n\
625
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
626
+ \t\t\t\t</tr>\n\
627
+ \t\t\t\t\t\t\t<tr class=\"tr2\">\n\
628
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/BAYONETTA/\"><img src=\"http://tiles.xbox.com/tiles/cm/Xf/0Wdsb2JhbC9ECgULGwUfVl5QL2ljb24vMC84MDAwAAAAAAAAAP7wZW0=.jpg\" alt=\"BAYONETTA\" title=\"BAYONETTA\" /></a></td>\n\
629
+ \t\t\t\t\t<td>\n\
630
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/BAYONETTA/\">BAYONETTA</a></p>\n\
631
+ \t\t\t\t\t\t<p>Last played at Sun, 21 Nov 2010 10:41:47 GMT</p>\n\
632
+ \t\t\t\t\t</td>\n\
633
+ \t\t\t\t\t<td>\n\
634
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
635
+ \t\t\t\t\t\t\t<div style=\"width: 2.5%;\"><span title=\"25 gamerscore earned out of a total of 1000 gamerscore\">25/1000</span></div>\n\
636
+ \t\t\t\t\t\t</div>\n\
637
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
638
+ \t\t\t\t\t\t\t<div style=\"width: 6%;\"><span title=\"3 achievements unlocked out of a total of 50 achievements\">3/50</span></div>\n\
639
+ \t\t\t\t\t\t</div>\n\
640
+ \t\t\t\t\t</td>\n\
641
+ \t\t\t\t\t<td>\n\
642
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
643
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for BAYONETTA is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
644
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t325</span>\n\
645
+ \t\t\t\t\t\t\t</p>\n\
646
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
647
+ \t\t\t\t</tr>\n\
648
+ \t\t\t\t\t\t\t<tr class=\"tr1\">\n\
649
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Dead-Space%E2%84%A2/\"><img src=\"http://tiles.xbox.com/tiles/lG/Rn/1Gdsb2JhbC9ECgQNGwEfVlpUL2ljb24vMC84MDAwAAAAAAAAAPtIZIs=.jpg\" alt=\"Dead Space\xE2\x84\xA2\" title=\"Dead Space\xE2\x84\xA2\" /></a></td>\n\
650
+ \t\t\t\t\t<td>\n\
651
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Dead-Space%E2%84%A2/\">Dead Space\xE2\x84\xA2</a></p>\n\
652
+ \t\t\t\t\t\t<p>Last played at Fri, 12 Nov 2010 02:08:01 GMT</p>\n\
653
+ \t\t\t\t\t</td>\n\
654
+ \t\t\t\t\t<td>\n\
655
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
656
+ \t\t\t\t\t\t\t<div style=\"width: 40%;\"><span title=\"400 gamerscore earned out of a total of 1000 gamerscore\">400/1000</span></div>\n\
657
+ \t\t\t\t\t\t</div>\n\
658
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
659
+ \t\t\t\t\t\t\t<div style=\"width: 41.6666666667%;\"><span title=\"20 achievements unlocked out of a total of 48 achievements\">20/48</span></div>\n\
660
+ \t\t\t\t\t\t</div>\n\
661
+ \t\t\t\t\t</td>\n\
662
+ \t\t\t\t\t<td>\n\
663
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
664
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Dead Space\xE2\x84\xA2 is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
665
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t421</span>\n\
666
+ \t\t\t\t\t\t\t</p>\n\
667
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
668
+ \t\t\t\t</tr>\n\
669
+ \t\t\t\t\t\t\t<tr class=\"tr2\">\n\
670
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/STREET-FIGHTER-IV/\"><img src=\"http://tiles.xbox.com/tiles/sx/0O/1Gdsb2JhbC9ECgQLGwMfWSpSL2ljb24vMC84MDAwAAAAAAAAAPshHaw=.jpg\" alt=\"STREET FIGHTER IV\" title=\"STREET FIGHTER IV\" /></a></td>\n\
671
+ \t\t\t\t\t<td>\n\
672
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/STREET-FIGHTER-IV/\">STREET FIGHTER IV</a></p>\n\
673
+ \t\t\t\t\t\t<p>Last played at Sun, 24 Oct 2010 22:11:59 GMT</p>\n\
674
+ \t\t\t\t\t</td>\n\
675
+ \t\t\t\t\t<td>\n\
676
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
677
+ \t\t\t\t\t\t\t<div style=\"width: 42%;\"><span title=\"420 gamerscore earned out of a total of 1000 gamerscore\">420/1000</span></div>\n\
678
+ \t\t\t\t\t\t</div>\n\
679
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
680
+ \t\t\t\t\t\t\t<div style=\"width: 52.0833333333%;\"><span title=\"25 achievements unlocked out of a total of 48 achievements\">25/48</span></div>\n\
681
+ \t\t\t\t\t\t</div>\n\
682
+ \t\t\t\t\t</td>\n\
683
+ \t\t\t\t\t<td>\n\
684
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
685
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for STREET FIGHTER IV is above average\"><img src=\"/resources/images/icons/up.png\" alt=\"Up Arrow\" />\n\
686
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t172</span>\n\
687
+ \t\t\t\t\t\t\t</p>\n\
688
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
689
+ \t\t\t\t</tr>\n\
690
+ \t\t\t\t\t\t\t<tr class=\"tr1\">\n\
691
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/LOST-PLANET-2/\"><img src=\"http://tiles.xbox.com/tiles/0H/r3/0Wdsb2JhbC9ECgQLGwMfWSonL2ljb24vMC84MDAwAAAAAAAAAP7Yes8=.jpg\" alt=\"LOST PLANET 2\" title=\"LOST PLANET 2\" /></a></td>\n\
692
+ \t\t\t\t\t<td>\n\
693
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/LOST-PLANET-2/\">LOST PLANET 2</a></p>\n\
694
+ \t\t\t\t\t\t<p>Last played at Sat, 09 Oct 2010 14:00:22 GMT</p>\n\
695
+ \t\t\t\t\t</td>\n\
696
+ \t\t\t\t\t<td>\n\
697
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
698
+ \t\t\t\t\t\t\t<div style=\"width: 1%;\"><span title=\"10 gamerscore earned out of a total of 1000 gamerscore\">10/1000</span></div>\n\
699
+ \t\t\t\t\t\t</div>\n\
700
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
701
+ \t\t\t\t\t\t\t<div style=\"width: 2%;\"><span title=\"1 achievements unlocked out of a total of 50 achievements\">1/50</span></div>\n\
702
+ \t\t\t\t\t\t</div>\n\
703
+ \t\t\t\t\t</td>\n\
704
+ \t\t\t\t\t<td>\n\
705
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
706
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for LOST PLANET 2 is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
707
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t108</span>\n\
708
+ \t\t\t\t\t\t\t</p>\n\
709
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
710
+ \t\t\t\t</tr>\n\
711
+ \t\t\t\t\t\t\t<tr class=\"tr2\">\n\
712
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/N%2B/\"><img src=\"http://tiles.xbox.com/tiles/rf/XD/1mdsb2JhbC9ECgUAGwEfVlogL2ljb24vMC84MDAwAAAAAAAAAPns9bI=.jpg\" alt=\"N+\" title=\"N+\" /></a></td>\n\
713
+ \t\t\t\t\t<td>\n\
714
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/N%2B/\">N+</a></p>\n\
715
+ \t\t\t\t\t\t<p>Last played at Sat, 09 Oct 2010 09:25:14 GMT</p>\n\
716
+ \t\t\t\t\t</td>\n\
717
+ \t\t\t\t\t<td>\n\
718
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
719
+ \t\t\t\t\t\t\t<div style=\"width: 22.5%;\"><span title=\"45 gamerscore earned out of a total of 200 gamerscore\">45/200</span></div>\n\
720
+ \t\t\t\t\t\t</div>\n\
721
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
722
+ \t\t\t\t\t\t\t<div style=\"width: 25%;\"><span title=\"3 achievements unlocked out of a total of 12 achievements\">3/12</span></div>\n\
723
+ \t\t\t\t\t\t</div>\n\
724
+ \t\t\t\t\t</td>\n\
725
+ \t\t\t\t\t<td>\n\
726
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
727
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for N+ is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
728
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t61</span>\n\
729
+ \t\t\t\t\t\t\t</p>\n\
730
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
731
+ \t\t\t\t</tr>\n\
732
+ \t\t\t\t\t\t\t<tr class=\"tr1\">\n\
733
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/SCOTT-PILGRIM-THE-GAME/\"><img src=\"http://tiles.xbox.com/tiles/i-/B6/0mdsb2JhbC9ECgUAGwEfL10gL2ljb24vMC84MDAwAAAAAAAAAP1V8JQ=.jpg\" alt=\"SCOTT PILGRIM THE GAME\" title=\"SCOTT PILGRIM THE GAME\" /></a></td>\n\
734
+ \t\t\t\t\t<td>\n\
735
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/SCOTT-PILGRIM-THE-GAME/\">SCOTT PILGRIM THE GAME</a></p>\n\
736
+ \t\t\t\t\t\t<p>Last played at Fri, 08 Oct 2010 22:41:37 GMT</p>\n\
737
+ \t\t\t\t\t</td>\n\
738
+ \t\t\t\t\t<td>\n\
739
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
740
+ \t\t\t\t\t\t\t<div style=\"width: 8%;\"><span title=\"20 gamerscore earned out of a total of 250 gamerscore\">20/250</span></div>\n\
741
+ \t\t\t\t\t\t</div>\n\
742
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
743
+ \t\t\t\t\t\t\t<div style=\"width: 13.3333333333%;\"><span title=\"2 achievements unlocked out of a total of 15 achievements\">2/15</span></div>\n\
744
+ \t\t\t\t\t\t</div>\n\
745
+ \t\t\t\t\t</td>\n\
746
+ \t\t\t\t\t<td>\n\
747
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
748
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for SCOTT PILGRIM THE GAME is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
749
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t68</span>\n\
750
+ \t\t\t\t\t\t\t</p>\n\
751
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
752
+ \t\t\t\t</tr>\n\
753
+ \t\t\t\t\t\t\t<tr class=\"tr2\">\n\
754
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/E4/\"><img src=\"http://tiles.xbox.com/tiles/77/19/1Wdsb2JhbC9ECgUAGwEfVlhRL2ljb24vMC84MDAwAAAAAAAAAPpSvfA=.jpg\" alt=\"E4\" title=\"E4\" /></a></td>\n\
755
+ \t\t\t\t\t<td>\n\
756
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/E4/\">E4</a></p>\n\
757
+ \t\t\t\t\t\t<p>Last played at Wed, 15 Sep 2010 18:48:17 GMT</p>\n\
758
+ \t\t\t\t\t</td>\n\
759
+ \t\t\t\t\t<td>\n\
760
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
761
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 gamerscore earned out of a total of 200 gamerscore\">0/200</span></div>\n\
762
+ \t\t\t\t\t\t</div>\n\
763
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
764
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\
765
+ \t\t\t\t\t\t</div>\n\
766
+ \t\t\t\t\t</td>\n\
767
+ \t\t\t\t\t<td>\n\
768
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
769
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for E4 is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
770
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t40</span>\n\
771
+ \t\t\t\t\t\t\t</p>\n\
772
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
773
+ \t\t\t\t</tr>\n\
774
+ \t\t\t\t\t\t\t<tr class=\"tr1\">\n\
775
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Battlefield%3A-Bad-Co.-2/\"><img src=\"http://tiles.xbox.com/tiles/v1/Lg/02dsb2JhbC9ECgQNGwEfVi5bL2ljb24vMC84MDAwAAAAAAAAAPzPUqA=.jpg\" alt=\"Battlefield: Bad Co. 2\" title=\"Battlefield: Bad Co. 2\" /></a></td>\n\
776
+ \t\t\t\t\t<td>\n\
777
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Battlefield%3A-Bad-Co.-2/\">Battlefield: Bad Co. 2</a></p>\n\
778
+ \t\t\t\t\t\t<p>Last played at Sun, 05 Sep 2010 14:06:01 GMT</p>\n\
779
+ \t\t\t\t\t</td>\n\
780
+ \t\t\t\t\t<td>\n\
781
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
782
+ \t\t\t\t\t\t\t<div style=\"width: 2.0979020979%;\"><span title=\"30 gamerscore earned out of a total of 1430 gamerscore\">30/1430</span></div>\n\
783
+ \t\t\t\t\t\t</div>\n\
784
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
785
+ \t\t\t\t\t\t\t<div style=\"width: 2.77777777778%;\"><span title=\"2 achievements unlocked out of a total of 72 achievements\">2/72</span></div>\n\
786
+ \t\t\t\t\t\t</div>\n\
787
+ \t\t\t\t\t</td>\n\
788
+ \t\t\t\t\t<td>\n\
789
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
790
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Battlefield: Bad Co. 2 is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
791
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t456</span>\n\
792
+ \t\t\t\t\t\t\t</p>\n\
793
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
794
+ \t\t\t\t</tr>\n\
795
+ \t\t\t\t\t\t\t<tr class=\"tr2\">\n\
796
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Mercenaries-2/\"><img src=\"http://tiles.xbox.com/tiles/V+/St/0Wdsb2JhbC9ECgQNGwEfVl1bL2ljb24vMC84MDAwAAAAAAAAAP6C5Eg=.jpg\" alt=\"Mercenaries 2\" title=\"Mercenaries 2\" /></a></td>\n\
797
+ \t\t\t\t\t<td>\n\
798
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Mercenaries-2/\">Mercenaries 2</a></p>\n\
799
+ \t\t\t\t\t\t<p>Last played at Sat, 14 Aug 2010 15:15:20 GMT</p>\n\
800
+ \t\t\t\t\t</td>\n\
801
+ \t\t\t\t\t<td>\n\
802
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
803
+ \t\t\t\t\t\t\t<div style=\"width: 24%;\"><span title=\"240 gamerscore earned out of a total of 1000 gamerscore\">240/1000</span></div>\n\
804
+ \t\t\t\t\t\t</div>\n\
805
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
806
+ \t\t\t\t\t\t\t<div style=\"width: 27.5%;\"><span title=\"11 achievements unlocked out of a total of 40 achievements\">11/40</span></div>\n\
807
+ \t\t\t\t\t\t</div>\n\
808
+ \t\t\t\t\t</td>\n\
809
+ \t\t\t\t\t<td>\n\
810
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
811
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Mercenaries 2 is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
812
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t391</span>\n\
813
+ \t\t\t\t\t\t\t</p>\n\
814
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
815
+ \t\t\t\t</tr>\n\
816
+ \t\t\t\t\t\t\t<tr class=\"tr1\">\n\
817
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Halo-3%3A-ODST/\"><img src=\"http://tiles.xbox.com/tiles/97/yQ/12dsb2JhbC9ECgR8GgMfVlhUL2ljb24vMC84MDAwAAAAAAAAAPi-vOg=.jpg\" alt=\"Halo 3: ODST\" title=\"Halo 3: ODST\" /></a></td>\n\
818
+ \t\t\t\t\t<td>\n\
819
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Halo-3%3A-ODST/\">Halo 3: ODST</a></p>\n\
820
+ \t\t\t\t\t\t<p>Last played at Sun, 08 Aug 2010 18:50:59 GMT</p>\n\
821
+ \t\t\t\t\t</td>\n\
822
+ \t\t\t\t\t<td>\n\
823
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
824
+ \t\t\t\t\t\t\t<div style=\"width: 76%;\"><span title=\"760 gamerscore earned out of a total of 1000 gamerscore\">760/1000</span></div>\n\
825
+ \t\t\t\t\t\t</div>\n\
826
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
827
+ \t\t\t\t\t\t\t<div style=\"width: 72.3404255319%;\"><span title=\"34 achievements unlocked out of a total of 47 achievements\">34/47</span></div>\n\
828
+ \t\t\t\t\t\t</div>\n\
829
+ \t\t\t\t\t</td>\n\
830
+ \t\t\t\t\t<td>\n\
831
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
832
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Halo 3: ODST is above average\"><img src=\"/resources/images/icons/up.png\" alt=\"Up Arrow\" />\n\
833
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t390</span>\n\
834
+ \t\t\t\t\t\t\t</p>\n\
835
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
836
+ \t\t\t\t</tr>\n\
837
+ \t\t\t\t\t\t\t<tr class=\"tr2\">\n\
838
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Halo-3/\"><img src=\"http://tiles.xbox.com/tiles/zS/3N/1Wdsb2JhbC9ECgR8GgMfWSpVL2ljb24vMC84MDAwAAAAAAAAAPriLdI=.jpg\" alt=\"Halo 3\" title=\"Halo 3\" /></a></td>\n\
839
+ \t\t\t\t\t<td>\n\
840
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Halo-3/\">Halo 3</a></p>\n\
841
+ \t\t\t\t\t\t<p>Last played at Mon, 12 Jul 2010 21:22:33 GMT</p>\n\
842
+ \t\t\t\t\t</td>\n\
843
+ \t\t\t\t\t<td>\n\
844
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
845
+ \t\t\t\t\t\t\t<div style=\"width: 41.1428571429%;\"><span title=\"720 gamerscore earned out of a total of 1750 gamerscore\">720/1750</span></div>\n\
846
+ \t\t\t\t\t\t</div>\n\
847
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
848
+ \t\t\t\t\t\t\t<div style=\"width: 44.3037974684%;\"><span title=\"35 achievements unlocked out of a total of 79 achievements\">35/79</span></div>\n\
849
+ \t\t\t\t\t\t</div>\n\
850
+ \t\t\t\t\t</td>\n\
851
+ \t\t\t\t\t<td>\n\
852
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
853
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Halo 3 is above average\"><img src=\"/resources/images/icons/up.png\" alt=\"Up Arrow\" />\n\
854
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t521</span>\n\
855
+ \t\t\t\t\t\t\t</p>\n\
856
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
857
+ \t\t\t\t</tr>\n\
858
+ \t\t\t\t\t\t\t<tr class=\"tr1\">\n\
859
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/NINJA-GAIDEN-2/\"><img src=\"http://tiles.xbox.com/tiles/Rf/Lj/1mdsb2JhbC9ECgUMGwMfWStWL2ljb24vMC84MDAwAAAAAAAAAPnM8lo=.jpg\" alt=\"NINJA GAIDEN 2\" title=\"NINJA GAIDEN 2\" /></a></td>\n\
860
+ \t\t\t\t\t<td>\n\
861
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/NINJA-GAIDEN-2/\">NINJA GAIDEN 2</a></p>\n\
862
+ \t\t\t\t\t\t<p>Last played at Thu, 18 Jun 2009 20:06:57 GMT</p>\n\
863
+ \t\t\t\t\t</td>\n\
864
+ \t\t\t\t\t<td>\n\
865
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
866
+ \t\t\t\t\t\t\t<div style=\"width: 56%;\"><span title=\"700 gamerscore earned out of a total of 1250 gamerscore\">700/1250</span></div>\n\
867
+ \t\t\t\t\t\t</div>\n\
868
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
869
+ \t\t\t\t\t\t\t<div style=\"width: 65.7142857143%;\"><span title=\"46 achievements unlocked out of a total of 70 achievements\">46/70</span></div>\n\
870
+ \t\t\t\t\t\t</div>\n\
871
+ \t\t\t\t\t</td>\n\
872
+ \t\t\t\t\t<td>\n\
873
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
874
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for NINJA GAIDEN 2 is above average\"><img src=\"/resources/images/icons/up.png\" alt=\"Up Arrow\" />\n\
875
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t257</span>\n\
876
+ \t\t\t\t\t\t\t</p>\n\
877
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
878
+ \t\t\t\t</tr>\n\
879
+ \t\t\t\t\t\t\t<tr class=\"tr2\">\n\
880
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Crackdown/\"><img src=\"http://tiles.xbox.com/tiles/WU/EQ/1Wdsb2JhbC9ECgR8GgMfWSsgL2ljb24vMC84MDAwAAAAAAAAAPo-QUY=.jpg\" alt=\"Crackdown\" title=\"Crackdown\" /></a></td>\n\
881
+ \t\t\t\t\t<td>\n\
882
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Crackdown/\">Crackdown</a></p>\n\
883
+ \t\t\t\t\t\t<p>Last played at Sat, 12 Jun 2010 19:24:45 GMT</p>\n\
884
+ \t\t\t\t\t</td>\n\
885
+ \t\t\t\t\t<td>\n\
886
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
887
+ \t\t\t\t\t\t\t<div style=\"width: 30.8%;\"><span title=\"385 gamerscore earned out of a total of 1250 gamerscore\">385/1250</span></div>\n\
888
+ \t\t\t\t\t\t</div>\n\
889
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
890
+ \t\t\t\t\t\t\t<div style=\"width: 46%;\"><span title=\"23 achievements unlocked out of a total of 50 achievements\">23/50</span></div>\n\
891
+ \t\t\t\t\t\t</div>\n\
892
+ \t\t\t\t\t</td>\n\
893
+ \t\t\t\t\t<td>\n\
894
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
895
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Crackdown is above average\"><img src=\"/resources/images/icons/up.png\" alt=\"Up Arrow\" />\n\
896
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t368</span>\n\
897
+ \t\t\t\t\t\t\t</p>\n\
898
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
899
+ \t\t\t\t</tr>\n\
900
+ \t\t\t\t\t\t\t<tr class=\"tr1\">\n\
901
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Left-4-Dead/\"><img src=\"http://tiles.xbox.com/tiles/j9/MR/1mdsb2JhbC9ECgQNGwEfVlxTL2ljb24vMC84MDAwAAAAAAAAAPk+05A=.jpg\" alt=\"Left 4 Dead\" title=\"Left 4 Dead\" /></a></td>\n\
902
+ \t\t\t\t\t<td>\n\
903
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Left-4-Dead/\">Left 4 Dead</a></p>\n\
904
+ \t\t\t\t\t\t<p>Last played at Sun, 28 Mar 2010 13:21:37 GMT</p>\n\
905
+ \t\t\t\t\t</td>\n\
906
+ \t\t\t\t\t<td>\n\
907
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
908
+ \t\t\t\t\t\t\t<div style=\"width: 8%;\"><span title=\"120 gamerscore earned out of a total of 1500 gamerscore\">120/1500</span></div>\n\
909
+ \t\t\t\t\t\t</div>\n\
910
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
911
+ \t\t\t\t\t\t\t<div style=\"width: 13.8461538462%;\"><span title=\"9 achievements unlocked out of a total of 65 achievements\">9/65</span></div>\n\
912
+ \t\t\t\t\t\t</div>\n\
913
+ \t\t\t\t\t</td>\n\
914
+ \t\t\t\t\t<td>\n\
915
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
916
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Left 4 Dead is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
917
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t417</span>\n\
918
+ \t\t\t\t\t\t\t</p>\n\
919
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
920
+ \t\t\t\t</tr>\n\
921
+ \t\t\t\t\t\t\t<tr class=\"tr2\">\n\
922
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Darksiders/\"><img src=\"http://tiles.xbox.com/tiles/As/84/1mdsb2JhbC9ECgUMGgEfWSpVL2ljb24vMC84MDAwAAAAAAAAAPkXzx0=.jpg\" alt=\"Darksiders\" title=\"Darksiders\" /></a></td>\n\
923
+ \t\t\t\t\t<td>\n\
924
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Darksiders/\">Darksiders</a></p>\n\
925
+ \t\t\t\t\t\t<p>Last played at Wed, 24 Mar 2010 22:35:40 GMT</p>\n\
926
+ \t\t\t\t\t</td>\n\
927
+ \t\t\t\t\t<td>\n\
928
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
929
+ \t\t\t\t\t\t\t<div style=\"width: 34.5%;\"><span title=\"345 gamerscore earned out of a total of 1000 gamerscore\">345/1000</span></div>\n\
930
+ \t\t\t\t\t\t</div>\n\
931
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
932
+ \t\t\t\t\t\t\t<div style=\"width: 46.511627907%;\"><span title=\"20 achievements unlocked out of a total of 43 achievements\">20/43</span></div>\n\
933
+ \t\t\t\t\t\t</div>\n\
934
+ \t\t\t\t\t</td>\n\
935
+ \t\t\t\t\t<td>\n\
936
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
937
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Darksiders is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
938
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t391</span>\n\
939
+ \t\t\t\t\t\t\t</p>\n\
940
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
941
+ \t\t\t\t</tr>\n\
942
+ \t\t\t\t\t\t\t<tr class=\"tr1\">\n\
943
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/RESIDENT-EVIL-5/\"><img src=\"http://tiles.xbox.com/tiles/DF/XE/1Wdsb2JhbC9ECgQLGwMfWStXL2ljb24vMC84MDAwAAAAAAAAAPrrVRM=.jpg\" alt=\"RESIDENT EVIL 5\" title=\"RESIDENT EVIL 5\" /></a></td>\n\
944
+ \t\t\t\t\t<td>\n\
945
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/RESIDENT-EVIL-5/\">RESIDENT EVIL 5</a></p>\n\
946
+ \t\t\t\t\t\t<p>Last played at Sun, 31 Jan 2010 00:57:14 GMT</p>\n\
947
+ \t\t\t\t\t</td>\n\
948
+ \t\t\t\t\t<td>\n\
949
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
950
+ \t\t\t\t\t\t\t<div style=\"width: 2.14285714286%;\"><span title=\"30 gamerscore earned out of a total of 1400 gamerscore\">30/1400</span></div>\n\
951
+ \t\t\t\t\t\t</div>\n\
952
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
953
+ \t\t\t\t\t\t\t<div style=\"width: 2.85714285714%;\"><span title=\"2 achievements unlocked out of a total of 70 achievements\">2/70</span></div>\n\
954
+ \t\t\t\t\t\t</div>\n\
955
+ \t\t\t\t\t</td>\n\
956
+ \t\t\t\t\t<td>\n\
957
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
958
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for RESIDENT EVIL 5 is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
959
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t476</span>\n\
960
+ \t\t\t\t\t\t\t</p>\n\
961
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
962
+ \t\t\t\t</tr>\n\
963
+ \t\t\t\t\t\t\t<tr class=\"tr2\">\n\
964
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Fable-II/\"><img src=\"http://tiles.xbox.com/tiles/I8/gL/1Wdsb2JhbC9ECgR8GgMfWSlSL2ljb24vMC84MDAwAAAAAAAAAPokyDw=.jpg\" alt=\"Fable II\" title=\"Fable II\" /></a></td>\n\
965
+ \t\t\t\t\t<td>\n\
966
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Fable-II/\">Fable II</a></p>\n\
967
+ \t\t\t\t\t\t<p>Last played at Thu, 28 Jan 2010 19:37:10 GMT</p>\n\
968
+ \t\t\t\t\t</td>\n\
969
+ \t\t\t\t\t<td>\n\
970
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
971
+ \t\t\t\t\t\t\t<div style=\"width: 17.037037037%;\"><span title=\"230 gamerscore earned out of a total of 1350 gamerscore\">230/1350</span></div>\n\
972
+ \t\t\t\t\t\t</div>\n\
973
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
974
+ \t\t\t\t\t\t\t<div style=\"width: 18.1818181818%;\"><span title=\"12 achievements unlocked out of a total of 66 achievements\">12/66</span></div>\n\
975
+ \t\t\t\t\t\t</div>\n\
976
+ \t\t\t\t\t</td>\n\
977
+ \t\t\t\t\t<td>\n\
978
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
979
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Fable II is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
980
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t520</span>\n\
981
+ \t\t\t\t\t\t\t</p>\n\
982
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
983
+ \t\t\t\t</tr>\n\
984
+ \t\t\t\t\t\t\t<tr class=\"tr1\">\n\
985
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Borderlands/\"><img src=\"http://tiles.xbox.com/tiles/ot/8Y/0Gdsb2JhbC9ECgUMGgQfWSpUL2ljb24vMC84MDAwAAAAAAAAAP83370=.jpg\" alt=\"Borderlands\" title=\"Borderlands\" /></a></td>\n\
986
+ \t\t\t\t\t<td>\n\
987
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Borderlands/\">Borderlands</a></p>\n\
988
+ \t\t\t\t\t\t<p>Last played at Wed, 06 Jan 2010 19:34:56 GMT</p>\n\
989
+ \t\t\t\t\t</td>\n\
990
+ \t\t\t\t\t<td>\n\
991
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
992
+ \t\t\t\t\t\t\t<div style=\"width: 6%;\"><span title=\"105 gamerscore earned out of a total of 1750 gamerscore\">105/1750</span></div>\n\
993
+ \t\t\t\t\t\t</div>\n\
994
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
995
+ \t\t\t\t\t\t\t<div style=\"width: 8.75%;\"><span title=\"7 achievements unlocked out of a total of 80 achievements\">7/80</span></div>\n\
996
+ \t\t\t\t\t\t</div>\n\
997
+ \t\t\t\t\t</td>\n\
998
+ \t\t\t\t\t<td>\n\
999
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1000
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Borderlands is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
1001
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t697</span>\n\
1002
+ \t\t\t\t\t\t\t</p>\n\
1003
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1004
+ \t\t\t\t</tr>\n\
1005
+ \t\t\t\t\t\t\t<tr class=\"tr2\">\n\
1006
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Halo-Waypoint/\"><img src=\"http://tiles.xbox.com/tiles/kN/F2/12dsb2JhbC9ECgR8GgMfViwmL2ljb24vMC84MDAwAAAAAAAAAPhZ0Y8=.jpg\" alt=\"Halo Waypoint\" title=\"Halo Waypoint\" /></a></td>\n\
1007
+ \t\t\t\t\t<td>\n\
1008
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Halo-Waypoint/\">Halo Waypoint</a></p>\n\
1009
+ \t\t\t\t\t\t<p>Last played at Mon, 23 Nov 2009 21:03:08 GMT</p>\n\
1010
+ \t\t\t\t\t</td>\n\
1011
+ \t\t\t\t\t<td>\n\
1012
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1013
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 gamerscore earned out of a total of 0 gamerscore\">0/0</span></div>\n\
1014
+ \t\t\t\t\t\t</div>\n\
1015
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1016
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 achievements unlocked out of a total of 0 achievements\">0/0</span></div>\n\
1017
+ \t\t\t\t\t\t</div>\n\
1018
+ \t\t\t\t\t</td>\n\
1019
+ \t\t\t\t\t<td>\n\
1020
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1021
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Halo Waypoint is above average\"><img src=\"/resources/images/icons/up.png\" alt=\"Up Arrow\" />\n\
1022
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t0</span>\n\
1023
+ \t\t\t\t\t\t\t</p>\n\
1024
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1025
+ \t\t\t\t</tr>\n\
1026
+ \t\t\t\t\t\t\t<tr class=\"tr1\">\n\
1027
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Call-of-Duty-4/\"><img src=\"http://tiles.xbox.com/tiles/sa/Fy/1mdsb2JhbC9ECgQJGgYfWSpVL2ljb24vMC84MDAwAAAAAAAAAPldoa4=.jpg\" alt=\"Call of Duty 4\" title=\"Call of Duty 4\" /></a></td>\n\
1028
+ \t\t\t\t\t<td>\n\
1029
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Call-of-Duty-4/\">Call of Duty 4</a></p>\n\
1030
+ \t\t\t\t\t\t<p>Last played at Tue, 10 Nov 2009 23:09:50 GMT</p>\n\
1031
+ \t\t\t\t\t</td>\n\
1032
+ \t\t\t\t\t<td>\n\
1033
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1034
+ \t\t\t\t\t\t\t<div style=\"width: 10%;\"><span title=\"100 gamerscore earned out of a total of 1000 gamerscore\">100/1000</span></div>\n\
1035
+ \t\t\t\t\t\t</div>\n\
1036
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1037
+ \t\t\t\t\t\t\t<div style=\"width: 13.5135135135%;\"><span title=\"5 achievements unlocked out of a total of 37 achievements\">5/37</span></div>\n\
1038
+ \t\t\t\t\t\t</div>\n\
1039
+ \t\t\t\t\t</td>\n\
1040
+ \t\t\t\t\t<td>\n\
1041
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1042
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Call of Duty 4 is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
1043
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t361</span>\n\
1044
+ \t\t\t\t\t\t\t</p>\n\
1045
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1046
+ \t\t\t\t</tr>\n\
1047
+ \t\t\t\t\t\t\t<tr class=\"tr2\">\n\
1048
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/%5BPROTOTYPE%5D%E2%84%A2/\"><img src=\"http://tiles.xbox.com/tiles/Br/IQ/0Wdsb2JhbC9ECgQJGgYfVlsmL2ljb24vMC84MDAwAAAAAAAAAP4-shk=.jpg\" alt=\"[PROTOTYPE]\xE2\x84\xA2\" title=\"[PROTOTYPE]\xE2\x84\xA2\" /></a></td>\n\
1049
+ \t\t\t\t\t<td>\n\
1050
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/%5BPROTOTYPE%5D%E2%84%A2/\">[PROTOTYPE]\xE2\x84\xA2</a></p>\n\
1051
+ \t\t\t\t\t\t<p>Last played at Wed, 04 Nov 2009 20:40:25 GMT</p>\n\
1052
+ \t\t\t\t\t</td>\n\
1053
+ \t\t\t\t\t<td>\n\
1054
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1055
+ \t\t\t\t\t\t\t<div style=\"width: 3%;\"><span title=\"30 gamerscore earned out of a total of 1000 gamerscore\">30/1000</span></div>\n\
1056
+ \t\t\t\t\t\t</div>\n\
1057
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1058
+ \t\t\t\t\t\t\t<div style=\"width: 7.5%;\"><span title=\"3 achievements unlocked out of a total of 40 achievements\">3/40</span></div>\n\
1059
+ \t\t\t\t\t\t</div>\n\
1060
+ \t\t\t\t\t</td>\n\
1061
+ \t\t\t\t\t<td>\n\
1062
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1063
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for [PROTOTYPE]\xE2\x84\xA2 is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
1064
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t221</span>\n\
1065
+ \t\t\t\t\t\t\t</p>\n\
1066
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1067
+ \t\t\t\t</tr>\n\
1068
+ \t\t\t\t\t\t\t<tr class=\"tr1\">\n\
1069
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Geometry-Wars-Evolved/\"><img src=\"http://tiles.xbox.com/tiles/Zs/of/0Gdsb2JhbC9ECgUAGwEfWSonL2ljb24vMC84MDAwAAAAAAAAAP8wynk=.jpg\" alt=\"Geometry Wars Evolved\" title=\"Geometry Wars Evolved\" /></a></td>\n\
1070
+ \t\t\t\t\t<td>\n\
1071
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Geometry-Wars-Evolved/\">Geometry Wars Evolved</a></p>\n\
1072
+ \t\t\t\t\t\t<p>Last played at Tue, 06 Oct 2009 19:17:57 GMT</p>\n\
1073
+ \t\t\t\t\t</td>\n\
1074
+ \t\t\t\t\t<td>\n\
1075
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1076
+ \t\t\t\t\t\t\t<div style=\"width: 75%;\"><span title=\"150 gamerscore earned out of a total of 200 gamerscore\">150/200</span></div>\n\
1077
+ \t\t\t\t\t\t</div>\n\
1078
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1079
+ \t\t\t\t\t\t\t<div style=\"width: 83.3333333333%;\"><span title=\"10 achievements unlocked out of a total of 12 achievements\">10/12</span></div>\n\
1080
+ \t\t\t\t\t\t</div>\n\
1081
+ \t\t\t\t\t</td>\n\
1082
+ \t\t\t\t\t<td>\n\
1083
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1084
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Geometry Wars Evolved is above average\"><img src=\"/resources/images/icons/up.png\" alt=\"Up Arrow\" />\n\
1085
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t27</span>\n\
1086
+ \t\t\t\t\t\t\t</p>\n\
1087
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1088
+ \t\t\t\t</tr>\n\
1089
+ \t\t\t\t\t\t\t<tr class=\"tr2\">\n\
1090
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Gears-of-War-2/\"><img src=\"http://tiles.xbox.com/tiles/EQ/uS/12dsb2JhbC9ECgR8GgMfVl0nL2ljb24vMC84MDAwAAAAAAAAAPi9Cw4=.jpg\" alt=\"Gears of War 2\" title=\"Gears of War 2\" /></a></td>\n\
1091
+ \t\t\t\t\t<td>\n\
1092
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Gears-of-War-2/\">Gears of War 2</a></p>\n\
1093
+ \t\t\t\t\t\t<p>Last played at Fri, 20 Feb 2009 23:11:45 GMT</p>\n\
1094
+ \t\t\t\t\t</td>\n\
1095
+ \t\t\t\t\t<td>\n\
1096
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1097
+ \t\t\t\t\t\t\t<div style=\"width: 26.2857142857%;\"><span title=\"460 gamerscore earned out of a total of 1750 gamerscore\">460/1750</span></div>\n\
1098
+ \t\t\t\t\t\t</div>\n\
1099
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1100
+ \t\t\t\t\t\t\t<div style=\"width: 36.7088607595%;\"><span title=\"29 achievements unlocked out of a total of 79 achievements\">29/79</span></div>\n\
1101
+ \t\t\t\t\t\t</div>\n\
1102
+ \t\t\t\t\t</td>\n\
1103
+ \t\t\t\t\t<td>\n\
1104
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1105
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Gears of War 2 is above average\"><img src=\"/resources/images/icons/up.png\" alt=\"Up Arrow\" />\n\
1106
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t425</span>\n\
1107
+ \t\t\t\t\t\t\t</p>\n\
1108
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1109
+ \t\t\t\t</tr>\n\
1110
+ \t\t\t\t\t\t\t<tr class=\"tr1\">\n\
1111
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Fallout-3/\"><img src=\"http://tiles.xbox.com/tiles/+T/6a/0mdsb2JhbC9ECgQKGgMfWStWL2ljb24vMC84MDAwAAAAAAAAAP21PuY=.jpg\" alt=\"Fallout 3\" title=\"Fallout 3\" /></a></td>\n\
1112
+ \t\t\t\t\t<td>\n\
1113
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Fallout-3/\">Fallout 3</a></p>\n\
1114
+ \t\t\t\t\t\t<p>Last played at Fri, 04 Sep 2009 23:12:03 GMT</p>\n\
1115
+ \t\t\t\t\t</td>\n\
1116
+ \t\t\t\t\t<td>\n\
1117
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1118
+ \t\t\t\t\t\t\t<div style=\"width: 42.5806451613%;\"><span title=\"660 gamerscore earned out of a total of 1550 gamerscore\">660/1550</span></div>\n\
1119
+ \t\t\t\t\t\t</div>\n\
1120
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1121
+ \t\t\t\t\t\t\t<div style=\"width: 47.2222222222%;\"><span title=\"34 achievements unlocked out of a total of 72 achievements\">34/72</span></div>\n\
1122
+ \t\t\t\t\t\t</div>\n\
1123
+ \t\t\t\t\t</td>\n\
1124
+ \t\t\t\t\t<td>\n\
1125
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1126
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Fallout 3 is above average\"><img src=\"/resources/images/icons/up.png\" alt=\"Up Arrow\" />\n\
1127
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t510</span>\n\
1128
+ \t\t\t\t\t\t\t</p>\n\
1129
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1130
+ \t\t\t\t</tr>\n\
1131
+ \t\t\t\t\t\t\t<tr class=\"tr2\">\n\
1132
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Guitar-Hero-III/\"><img src=\"http://tiles.xbox.com/tiles/L8/b-/0Wdsb2JhbC9ECgQJGgYfWSlUL2ljb24vMC84MDAwAAAAAAAAAP7QxjA=.jpg\" alt=\"Guitar Hero III\" title=\"Guitar Hero III\" /></a></td>\n\
1133
+ \t\t\t\t\t<td>\n\
1134
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Guitar-Hero-III/\">Guitar Hero III</a></p>\n\
1135
+ \t\t\t\t\t\t<p>Last played at Fri, 27 Feb 2009 20:48:46 GMT</p>\n\
1136
+ \t\t\t\t\t</td>\n\
1137
+ \t\t\t\t\t<td>\n\
1138
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1139
+ \t\t\t\t\t\t\t<div style=\"width: 0.5%;\"><span title=\"5 gamerscore earned out of a total of 1000 gamerscore\">5/1000</span></div>\n\
1140
+ \t\t\t\t\t\t</div>\n\
1141
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1142
+ \t\t\t\t\t\t\t<div style=\"width: 1.69491525424%;\"><span title=\"1 achievements unlocked out of a total of 59 achievements\">1/59</span></div>\n\
1143
+ \t\t\t\t\t\t</div>\n\
1144
+ \t\t\t\t\t</td>\n\
1145
+ \t\t\t\t\t<td>\n\
1146
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1147
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Guitar Hero III is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
1148
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t107</span>\n\
1149
+ \t\t\t\t\t\t\t</p>\n\
1150
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1151
+ \t\t\t\t</tr>\n\
1152
+ \t\t\t\t\t\t\t<tr class=\"tr1\">\n\
1153
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Castle-Crashers/\"><img src=\"http://tiles.xbox.com/tiles/zD/2A/12dsb2JhbC9ECgUAGwEfVi1UL2ljb24vMC84MDAwAAAAAAAAAPivPdM=.jpg\" alt=\"Castle Crashers\" title=\"Castle Crashers\" /></a></td>\n\
1154
+ \t\t\t\t\t<td>\n\
1155
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Castle-Crashers/\">Castle Crashers</a></p>\n\
1156
+ \t\t\t\t\t\t<p>Last played at Sun, 28 Dec 2008 19:34:54 GMT</p>\n\
1157
+ \t\t\t\t\t</td>\n\
1158
+ \t\t\t\t\t<td>\n\
1159
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1160
+ \t\t\t\t\t\t\t<div style=\"width: 42.5%;\"><span title=\"85 gamerscore earned out of a total of 200 gamerscore\">85/200</span></div>\n\
1161
+ \t\t\t\t\t\t</div>\n\
1162
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1163
+ \t\t\t\t\t\t\t<div style=\"width: 41.6666666667%;\"><span title=\"5 achievements unlocked out of a total of 12 achievements\">5/12</span></div>\n\
1164
+ \t\t\t\t\t\t</div>\n\
1165
+ \t\t\t\t\t</td>\n\
1166
+ \t\t\t\t\t<td>\n\
1167
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1168
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Castle Crashers is above average\"><img src=\"/resources/images/icons/up.png\" alt=\"Up Arrow\" />\n\
1169
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t82</span>\n\
1170
+ \t\t\t\t\t\t\t</p>\n\
1171
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1172
+ \t\t\t\t</tr>\n\
1173
+ \t\t\t\t\t\t\t<tr class=\"tr2\">\n\
1174
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/GTA-IV/\"><img src=\"http://tiles.xbox.com/tiles/nL/sY/0mdsb2JhbC9ECgUMGgQfWSlRL2ljb24vMC84MDAwAAAAAAAAAP03u4M=.jpg\" alt=\"GTA IV\" title=\"GTA IV\" /></a></td>\n\
1175
+ \t\t\t\t\t<td>\n\
1176
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/GTA-IV/\">GTA IV</a></p>\n\
1177
+ \t\t\t\t\t\t<p>Last played at Fri, 27 Feb 2009 21:34:36 GMT</p>\n\
1178
+ \t\t\t\t\t</td>\n\
1179
+ \t\t\t\t\t<td>\n\
1180
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1181
+ \t\t\t\t\t\t\t<div style=\"width: 5.66666666667%;\"><span title=\"85 gamerscore earned out of a total of 1500 gamerscore\">85/1500</span></div>\n\
1182
+ \t\t\t\t\t\t</div>\n\
1183
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1184
+ \t\t\t\t\t\t\t<div style=\"width: 9.23076923077%;\"><span title=\"6 achievements unlocked out of a total of 65 achievements\">6/65</span></div>\n\
1185
+ \t\t\t\t\t\t</div>\n\
1186
+ \t\t\t\t\t</td>\n\
1187
+ \t\t\t\t\t<td>\n\
1188
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1189
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for GTA IV is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
1190
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t230</span>\n\
1191
+ \t\t\t\t\t\t\t</p>\n\
1192
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1193
+ \t\t\t\t</tr>\n\
1194
+ \t\t\t\t\t\t\t<tr class=\"tr1\">\n\
1195
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Worms/\"><img src=\"http://tiles.xbox.com/tiles/eY/FY/1Gdsb2JhbC9ECgUAGwEfWSsmL2ljb24vMC84MDAwAAAAAAAAAPt3gWY=.jpg\" alt=\"Worms\" title=\"Worms\" /></a></td>\n\
1196
+ \t\t\t\t\t<td>\n\
1197
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Worms/\">Worms</a></p>\n\
1198
+ \t\t\t\t\t\t<p>Last played at Sun, 22 Feb 2009 03:57:45 GMT</p>\n\
1199
+ \t\t\t\t\t</td>\n\
1200
+ \t\t\t\t\t<td>\n\
1201
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1202
+ \t\t\t\t\t\t\t<div style=\"width: 100%;\"><span title=\"200 gamerscore earned out of a total of 200 gamerscore\">200/200</span></div>\n\
1203
+ \t\t\t\t\t\t</div>\n\
1204
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1205
+ \t\t\t\t\t\t\t<div style=\"width: 100%;\"><span title=\"12 achievements unlocked out of a total of 12 achievements\">12/12</span></div>\n\
1206
+ \t\t\t\t\t\t</div>\n\
1207
+ \t\t\t\t\t</td>\n\
1208
+ \t\t\t\t\t<td>\n\
1209
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1210
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Worms is above average\"><img src=\"/resources/images/icons/up.png\" alt=\"Up Arrow\" />\n\
1211
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t68</span>\n\
1212
+ \t\t\t\t\t\t\t</p>\n\
1213
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1214
+ \t\t\t\t</tr>\n\
1215
+ \t\t\t\t\t\t\t<tr class=\"tr2\">\n\
1216
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Gears-of-War/\"><img src=\"http://tiles.xbox.com/tiles/Au/dM/02dsb2JhbC9ECgR8GgMfWStWL2ljb24vMC84MDAwAAAAAAAAAPxj5x0=.jpg\" alt=\"Gears of War\" title=\"Gears of War\" /></a></td>\n\
1217
+ \t\t\t\t\t<td>\n\
1218
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Gears-of-War/\">Gears of War</a></p>\n\
1219
+ \t\t\t\t\t\t<p>Last played at Sat, 28 Jun 2008 15:01:31 GMT</p>\n\
1220
+ \t\t\t\t\t</td>\n\
1221
+ \t\t\t\t\t<td>\n\
1222
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1223
+ \t\t\t\t\t\t\t<div style=\"width: 9.6%;\"><span title=\"120 gamerscore earned out of a total of 1250 gamerscore\">120/1250</span></div>\n\
1224
+ \t\t\t\t\t\t</div>\n\
1225
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1226
+ \t\t\t\t\t\t\t<div style=\"width: 19.298245614%;\"><span title=\"11 achievements unlocked out of a total of 57 achievements\">11/57</span></div>\n\
1227
+ \t\t\t\t\t\t</div>\n\
1228
+ \t\t\t\t\t</td>\n\
1229
+ \t\t\t\t\t<td>\n\
1230
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1231
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Gears of War is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
1232
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t266</span>\n\
1233
+ \t\t\t\t\t\t\t</p>\n\
1234
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1235
+ \t\t\t\t</tr>\n\
1236
+ \t\t\t\t\t\t\t<tr class=\"tr1\">\n\
1237
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Pac-Man-C.E./\"><img src=\"http://tiles.xbox.com/tiles/p-/6T/0Wdsb2JhbC9ECgUAGwEfVlhUL2ljb24vMC84MDAwAAAAAAAAAP68-rg=.jpg\" alt=\"Pac-Man C.E.\" title=\"Pac-Man C.E.\" /></a></td>\n\
1238
+ \t\t\t\t\t<td>\n\
1239
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Pac-Man-C.E./\">Pac-Man C.E.</a></p>\n\
1240
+ \t\t\t\t\t\t<p>Last played at Sat, 17 Jan 2009 01:23:19 GMT</p>\n\
1241
+ \t\t\t\t\t</td>\n\
1242
+ \t\t\t\t\t<td>\n\
1243
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1244
+ \t\t\t\t\t\t\t<div style=\"width: 85%;\"><span title=\"170 gamerscore earned out of a total of 200 gamerscore\">170/200</span></div>\n\
1245
+ \t\t\t\t\t\t</div>\n\
1246
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1247
+ \t\t\t\t\t\t\t<div style=\"width: 91.6666666667%;\"><span title=\"11 achievements unlocked out of a total of 12 achievements\">11/12</span></div>\n\
1248
+ \t\t\t\t\t\t</div>\n\
1249
+ \t\t\t\t\t</td>\n\
1250
+ \t\t\t\t\t<td>\n\
1251
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1252
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Pac-Man C.E. is above average\"><img src=\"/resources/images/icons/up.png\" alt=\"Up Arrow\" />\n\
1253
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t49</span>\n\
1254
+ \t\t\t\t\t\t\t</p>\n\
1255
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1256
+ \t\t\t\t</tr>\n\
1257
+ \t\t\t\t\t\t\t<tr class=\"tr2\">\n\
1258
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/TC%27s-RainbowSix-Vegas/\"><img src=\"http://tiles.xbox.com/tiles/YB/h7/02dsb2JhbC9ECgUNGgMfWStVL2ljb24vMC84MDAwAAAAAAAAAPxUGH8=.jpg\" alt=\"TC's RainbowSix Vegas\" title=\"TC's RainbowSix Vegas\" /></a></td>\n\
1259
+ \t\t\t\t\t<td>\n\
1260
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/TC%27s-RainbowSix-Vegas/\">TC's RainbowSix Vegas</a></p>\n\
1261
+ \t\t\t\t\t\t<p>Last played at Mon, 01 Jan 1753 00:00:00 GMT</p>\n\
1262
+ \t\t\t\t\t</td>\n\
1263
+ \t\t\t\t\t<td>\n\
1264
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1265
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 gamerscore earned out of a total of 1000 gamerscore\">0/1000</span></div>\n\
1266
+ \t\t\t\t\t\t</div>\n\
1267
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1268
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 achievements unlocked out of a total of 36 achievements\">0/36</span></div>\n\
1269
+ \t\t\t\t\t\t</div>\n\
1270
+ \t\t\t\t\t</td>\n\
1271
+ \t\t\t\t\t<td>\n\
1272
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1273
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for TC's RainbowSix Vegas is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
1274
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t198</span>\n\
1275
+ \t\t\t\t\t\t\t</p>\n\
1276
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1277
+ \t\t\t\t</tr>\n\
1278
+ \t\t\t\t\t\t\t<tr class=\"tr1\">\n\
1279
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/DEAD-RISING/\"><img src=\"http://tiles.xbox.com/tiles/fN/eP/0mdsb2JhbC9ECgQLGwMfWStRL2ljb24vMC84MDAwAAAAAAAAAP2g12M=.jpg\" alt=\"DEAD RISING\" title=\"DEAD RISING\" /></a></td>\n\
1280
+ \t\t\t\t\t<td>\n\
1281
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/DEAD-RISING/\">DEAD RISING</a></p>\n\
1282
+ \t\t\t\t\t\t<p>Last played at Wed, 28 May 2008 18:56:06 GMT</p>\n\
1283
+ \t\t\t\t\t</td>\n\
1284
+ \t\t\t\t\t<td>\n\
1285
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1286
+ \t\t\t\t\t\t\t<div style=\"width: 18%;\"><span title=\"180 gamerscore earned out of a total of 1000 gamerscore\">180/1000</span></div>\n\
1287
+ \t\t\t\t\t\t</div>\n\
1288
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1289
+ \t\t\t\t\t\t\t<div style=\"width: 18%;\"><span title=\"9 achievements unlocked out of a total of 50 achievements\">9/50</span></div>\n\
1290
+ \t\t\t\t\t\t</div>\n\
1291
+ \t\t\t\t\t</td>\n\
1292
+ \t\t\t\t\t<td>\n\
1293
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1294
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for DEAD RISING is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
1295
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t240</span>\n\
1296
+ \t\t\t\t\t\t\t</p>\n\
1297
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1298
+ \t\t\t\t</tr>\n\
1299
+ \t\t\t\t\t\t\t<tr class=\"tr2\">\n\
1300
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/skate./\"><img src=\"http://tiles.xbox.com/tiles/Nj/5+/1mdsb2JhbC9ECgQNGwEfVl5QL2ljb24vMC84MDAwAAAAAAAAAPlRPik=.jpg\" alt=\"skate.\" title=\"skate.\" /></a></td>\n\
1301
+ \t\t\t\t\t<td>\n\
1302
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/skate./\">skate.</a></p>\n\
1303
+ \t\t\t\t\t\t<p>Last played at Wed, 07 May 2008 20:25:01 GMT</p>\n\
1304
+ \t\t\t\t\t</td>\n\
1305
+ \t\t\t\t\t<td>\n\
1306
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1307
+ \t\t\t\t\t\t\t<div style=\"width: 2%;\"><span title=\"20 gamerscore earned out of a total of 1000 gamerscore\">20/1000</span></div>\n\
1308
+ \t\t\t\t\t\t</div>\n\
1309
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1310
+ \t\t\t\t\t\t\t<div style=\"width: 6.81818181818%;\"><span title=\"3 achievements unlocked out of a total of 44 achievements\">3/44</span></div>\n\
1311
+ \t\t\t\t\t\t</div>\n\
1312
+ \t\t\t\t\t</td>\n\
1313
+ \t\t\t\t\t<td>\n\
1314
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1315
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for skate. is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
1316
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t171</span>\n\
1317
+ \t\t\t\t\t\t\t</p>\n\
1318
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1319
+ \t\t\t\t</tr>\n\
1320
+ \t\t\t\t\t\t\t<tr class=\"tr1\">\n\
1321
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/BioShock/\"><img src=\"http://tiles.xbox.com/tiles/4i/qM/0Wdsb2JhbC9ECgUMGgQfWStbL2ljb24vMC84MDAwAAAAAAAAAP6jKv0=.jpg\" alt=\"BioShock\" title=\"BioShock\" /></a></td>\n\
1322
+ \t\t\t\t\t<td>\n\
1323
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/BioShock/\">BioShock</a></p>\n\
1324
+ \t\t\t\t\t\t<p>Last played at Sat, 19 Apr 2008 00:12:02 GMT</p>\n\
1325
+ \t\t\t\t\t</td>\n\
1326
+ \t\t\t\t\t<td>\n\
1327
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1328
+ \t\t\t\t\t\t\t<div style=\"width: 7.27272727273%;\"><span title=\"80 gamerscore earned out of a total of 1100 gamerscore\">80/1100</span></div>\n\
1329
+ \t\t\t\t\t\t</div>\n\
1330
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1331
+ \t\t\t\t\t\t\t<div style=\"width: 15.6862745098%;\"><span title=\"8 achievements unlocked out of a total of 51 achievements\">8/51</span></div>\n\
1332
+ \t\t\t\t\t\t</div>\n\
1333
+ \t\t\t\t\t</td>\n\
1334
+ \t\t\t\t\t<td>\n\
1335
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1336
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for BioShock is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
1337
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t481</span>\n\
1338
+ \t\t\t\t\t\t\t</p>\n\
1339
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1340
+ \t\t\t\t</tr>\n\
1341
+ \t\t\t\t\t\t\t<tr class=\"tr2\">\n\
1342
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/LOST-PLANET/\"><img src=\"http://tiles.xbox.com/tiles/lJ/fs/02dsb2JhbC9ECgQLGwMfWStQL2ljb24vMC84MDAwAAAAAAAAAPzDl4s=.jpg\" alt=\"LOST PLANET\" title=\"LOST PLANET\" /></a></td>\n\
1343
+ \t\t\t\t\t<td>\n\
1344
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/LOST-PLANET/\">LOST PLANET</a></p>\n\
1345
+ \t\t\t\t\t\t<p>Last played at Fri, 11 Apr 2008 17:38:21 GMT</p>\n\
1346
+ \t\t\t\t\t</td>\n\
1347
+ \t\t\t\t\t<td>\n\
1348
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1349
+ \t\t\t\t\t\t\t<div style=\"width: 19.5%;\"><span title=\"195 gamerscore earned out of a total of 1000 gamerscore\">195/1000</span></div>\n\
1350
+ \t\t\t\t\t\t</div>\n\
1351
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1352
+ \t\t\t\t\t\t\t<div style=\"width: 31.4285714286%;\"><span title=\"11 achievements unlocked out of a total of 35 achievements\">11/35</span></div>\n\
1353
+ \t\t\t\t\t\t</div>\n\
1354
+ \t\t\t\t\t</td>\n\
1355
+ \t\t\t\t\t<td>\n\
1356
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1357
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for LOST PLANET is above average\"><img src=\"/resources/images/icons/up.png\" alt=\"Up Arrow\" />\n\
1358
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t159</span>\n\
1359
+ \t\t\t\t\t\t\t</p>\n\
1360
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1361
+ \t\t\t\t</tr>\n\
1362
+ \t\t\t\t\t\t\t<tr class=\"tr1\">\n\
1363
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Battlestations%3A-Midway/\"><img src=\"http://tiles.xbox.com/tiles/Wx/dH/1mdsb2JhbC9ECgULGwMfWStaL2ljb24vMC84MDAwAAAAAAAAAPloF0Q=.jpg\" alt=\"Battlestations: Midway\" title=\"Battlestations: Midway\" /></a></td>\n\
1364
+ \t\t\t\t\t<td>\n\
1365
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Battlestations%3A-Midway/\">Battlestations: Midway</a></p>\n\
1366
+ \t\t\t\t\t\t<p>Last played at Mon, 07 Apr 2008 22:54:05 GMT</p>\n\
1367
+ \t\t\t\t\t</td>\n\
1368
+ \t\t\t\t\t<td>\n\
1369
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1370
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 gamerscore earned out of a total of 1000 gamerscore\">0/1000</span></div>\n\
1371
+ \t\t\t\t\t\t</div>\n\
1372
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1373
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 achievements unlocked out of a total of 22 achievements\">0/22</span></div>\n\
1374
+ \t\t\t\t\t\t</div>\n\
1375
+ \t\t\t\t\t</td>\n\
1376
+ \t\t\t\t\t<td>\n\
1377
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1378
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Battlestations: Midway is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
1379
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t184</span>\n\
1380
+ \t\t\t\t\t\t\t</p>\n\
1381
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1382
+ \t\t\t\t</tr>\n\
1383
+ \t\t\t\t\t\t\t<tr class=\"tr2\">\n\
1384
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Kane-and-Lynch%3ADeadMen/\"><img src=\"http://tiles.xbox.com/tiles/a2/CY/0Gdsb2JhbC9ECgULGwMfWSpTL2ljb24vMC84MDAwAAAAAAAAAP+3YHQ=.jpg\" alt=\"Kane and Lynch:DeadMen\" title=\"Kane and Lynch:DeadMen\" /></a></td>\n\
1385
+ \t\t\t\t\t<td>\n\
1386
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Kane-and-Lynch%3ADeadMen/\">Kane and Lynch:DeadMen</a></p>\n\
1387
+ \t\t\t\t\t\t<p>Last played at Sat, 09 Feb 2008 17:01:04 GMT</p>\n\
1388
+ \t\t\t\t\t</td>\n\
1389
+ \t\t\t\t\t<td>\n\
1390
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1391
+ \t\t\t\t\t\t\t<div style=\"width: 4%;\"><span title=\"50 gamerscore earned out of a total of 1250 gamerscore\">50/1250</span></div>\n\
1392
+ \t\t\t\t\t\t</div>\n\
1393
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1394
+ \t\t\t\t\t\t\t<div style=\"width: 5.76923076923%;\"><span title=\"3 achievements unlocked out of a total of 52 achievements\">3/52</span></div>\n\
1395
+ \t\t\t\t\t\t</div>\n\
1396
+ \t\t\t\t\t</td>\n\
1397
+ \t\t\t\t\t<td>\n\
1398
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1399
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Kane and Lynch:DeadMen is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
1400
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t238</span>\n\
1401
+ \t\t\t\t\t\t\t</p>\n\
1402
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1403
+ \t\t\t\t</tr>\n\
1404
+ \t\t\t\t\t\t\t<tr class=\"tr1\">\n\
1405
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Enchanted-Arms/\"><img src=\"http://tiles.xbox.com/tiles/lx/Nf/1mdsb2JhbC9ECgUNGgMfWSpVL2ljb24vMC84MDAwAAAAAAAAAPlwE4g=.jpg\" alt=\"Enchanted Arms\" title=\"Enchanted Arms\" /></a></td>\n\
1406
+ \t\t\t\t\t<td>\n\
1407
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Enchanted-Arms/\">Enchanted Arms</a></p>\n\
1408
+ \t\t\t\t\t\t<p>Last played at Mon, 24 Dec 2007 22:30:31 GMT</p>\n\
1409
+ \t\t\t\t\t</td>\n\
1410
+ \t\t\t\t\t<td>\n\
1411
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1412
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 gamerscore earned out of a total of 1000 gamerscore\">0/1000</span></div>\n\
1413
+ \t\t\t\t\t\t</div>\n\
1414
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1415
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 achievements unlocked out of a total of 25 achievements\">0/25</span></div>\n\
1416
+ \t\t\t\t\t\t</div>\n\
1417
+ \t\t\t\t\t</td>\n\
1418
+ \t\t\t\t\t<td>\n\
1419
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1420
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Enchanted Arms is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
1421
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t443</span>\n\
1422
+ \t\t\t\t\t\t\t</p>\n\
1423
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1424
+ \t\t\t\t</tr>\n\
1425
+ \t\t\t\t\t\t\t<tr class=\"tr2\">\n\
1426
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Puzzle-Fighter-HD/\"><img src=\"http://tiles.xbox.com/tiles/q1/Bm/12dsb2JhbC9ECgUAGwEfVlkmL2ljb24vMC84MDAwAAAAAAAAAPhJULQ=.jpg\" alt=\"Puzzle Fighter HD\" title=\"Puzzle Fighter HD\" /></a></td>\n\
1427
+ \t\t\t\t\t<td>\n\
1428
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Puzzle-Fighter-HD/\">Puzzle Fighter HD</a></p>\n\
1429
+ \t\t\t\t\t\t<p>Last played at Fri, 02 Nov 2007 21:43:22 GMT</p>\n\
1430
+ \t\t\t\t\t</td>\n\
1431
+ \t\t\t\t\t<td>\n\
1432
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1433
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 gamerscore earned out of a total of 200 gamerscore\">0/200</span></div>\n\
1434
+ \t\t\t\t\t\t</div>\n\
1435
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1436
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\
1437
+ \t\t\t\t\t\t</div>\n\
1438
+ \t\t\t\t\t</td>\n\
1439
+ \t\t\t\t\t<td>\n\
1440
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1441
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Puzzle Fighter HD is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
1442
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t34</span>\n\
1443
+ \t\t\t\t\t\t\t</p>\n\
1444
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1445
+ \t\t\t\t</tr>\n\
1446
+ \t\t\t\t\t\t\t<tr class=\"tr1\">\n\
1447
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Geon/\"><img src=\"http://tiles.xbox.com/tiles/6R/jY/1Gdsb2JhbC9ECgUAGwEfVltXL2ljb24vMC84MDAwAAAAAAAAAPv3GPY=.jpg\" alt=\"Geon\" title=\"Geon\" /></a></td>\n\
1448
+ \t\t\t\t\t<td>\n\
1449
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Geon/\">Geon</a></p>\n\
1450
+ \t\t\t\t\t\t<p>Last played at Fri, 02 Nov 2007 21:36:15 GMT</p>\n\
1451
+ \t\t\t\t\t</td>\n\
1452
+ \t\t\t\t\t<td>\n\
1453
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1454
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 gamerscore earned out of a total of 200 gamerscore\">0/200</span></div>\n\
1455
+ \t\t\t\t\t\t</div>\n\
1456
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1457
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\
1458
+ \t\t\t\t\t\t</div>\n\
1459
+ \t\t\t\t\t</td>\n\
1460
+ \t\t\t\t\t<td>\n\
1461
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1462
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Geon is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
1463
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t29</span>\n\
1464
+ \t\t\t\t\t\t\t</p>\n\
1465
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1466
+ \t\t\t\t</tr>\n\
1467
+ \t\t\t\t\t\t\t<tr class=\"tr2\">\n\
1468
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Sonic-The-Hedgehog-2/\"><img src=\"http://tiles.xbox.com/tiles/8P/Y6/0Wdsb2JhbC9ECgUAGwEfVllQL2ljb24vMC84MDAwAAAAAAAAAP4V9u8=.jpg\" alt=\"Sonic The Hedgehog 2\" title=\"Sonic The Hedgehog 2\" /></a></td>\n\
1469
+ \t\t\t\t\t<td>\n\
1470
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Sonic-The-Hedgehog-2/\">Sonic The Hedgehog 2</a></p>\n\
1471
+ \t\t\t\t\t\t<p>Last played at Sun, 14 Oct 2007 00:15:36 GMT</p>\n\
1472
+ \t\t\t\t\t</td>\n\
1473
+ \t\t\t\t\t<td>\n\
1474
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1475
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 gamerscore earned out of a total of 200 gamerscore\">0/200</span></div>\n\
1476
+ \t\t\t\t\t\t</div>\n\
1477
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1478
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\
1479
+ \t\t\t\t\t\t</div>\n\
1480
+ \t\t\t\t\t</td>\n\
1481
+ \t\t\t\t\t<td>\n\
1482
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1483
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Sonic The Hedgehog 2 is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
1484
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t50</span>\n\
1485
+ \t\t\t\t\t\t\t</p>\n\
1486
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1487
+ \t\t\t\t</tr>\n\
1488
+ \t\t\t\t\t\t\t<tr class=\"tr1\">\n\
1489
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Fatal-Fury-Special/\"><img src=\"http://tiles.xbox.com/tiles/-g/Fb/0Gdsb2JhbC9ECgUAGwEfVlwiL2ljb24vMC84MDAwAAAAAAAAAP90AeE=.jpg\" alt=\"Fatal Fury Special\" title=\"Fatal Fury Special\" /></a></td>\n\
1490
+ \t\t\t\t\t<td>\n\
1491
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Fatal-Fury-Special/\">Fatal Fury Special</a></p>\n\
1492
+ \t\t\t\t\t\t<p>Last played at Sun, 14 Oct 2007 00:00:43 GMT</p>\n\
1493
+ \t\t\t\t\t</td>\n\
1494
+ \t\t\t\t\t<td>\n\
1495
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1496
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 gamerscore earned out of a total of 200 gamerscore\">0/200</span></div>\n\
1497
+ \t\t\t\t\t\t</div>\n\
1498
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1499
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\
1500
+ \t\t\t\t\t\t</div>\n\
1501
+ \t\t\t\t\t</td>\n\
1502
+ \t\t\t\t\t<td>\n\
1503
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1504
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Fatal Fury Special is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
1505
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t30</span>\n\
1506
+ \t\t\t\t\t\t\t</p>\n\
1507
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1508
+ \t\t\t\t</tr>\n\
1509
+ \t\t\t\t\t\t\t<tr class=\"tr2\">\n\
1510
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Small-Arms/\"><img src=\"http://tiles.xbox.com/tiles/Uq/VP/1Wdsb2JhbC9ECgUAGwEfWStWL2ljb24vMC84MDAwAAAAAAAAAPpgpU0=.jpg\" alt=\"Small Arms\" title=\"Small Arms\" /></a></td>\n\
1511
+ \t\t\t\t\t<td>\n\
1512
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Small-Arms/\">Small Arms</a></p>\n\
1513
+ \t\t\t\t\t\t<p>Last played at Sat, 13 Oct 2007 23:55:23 GMT</p>\n\
1514
+ \t\t\t\t\t</td>\n\
1515
+ \t\t\t\t\t<td>\n\
1516
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1517
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 gamerscore earned out of a total of 235 gamerscore\">0/235</span></div>\n\
1518
+ \t\t\t\t\t\t</div>\n\
1519
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1520
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 achievements unlocked out of a total of 14 achievements\">0/14</span></div>\n\
1521
+ \t\t\t\t\t\t</div>\n\
1522
+ \t\t\t\t\t</td>\n\
1523
+ \t\t\t\t\t<td>\n\
1524
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1525
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Small Arms is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
1526
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t54</span>\n\
1527
+ \t\t\t\t\t\t\t</p>\n\
1528
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1529
+ \t\t\t\t</tr>\n\
1530
+ \t\t\t\t\t\t\t<tr class=\"tr1\">\n\
1531
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Street-Fighter-II%27-HF/\"><img src=\"http://tiles.xbox.com/tiles/O8/nm/12dsb2JhbC9ECgUAGwEfWSlXL2ljb24vMC84MDAwAAAAAAAAAPjJySQ=.jpg\" alt=\"Street Fighter II' HF\" title=\"Street Fighter II' HF\" /></a></td>\n\
1532
+ \t\t\t\t\t<td>\n\
1533
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Street-Fighter-II%27-HF/\">Street Fighter II' HF</a></p>\n\
1534
+ \t\t\t\t\t\t<p>Last played at Sat, 13 Oct 2007 23:54:44 GMT</p>\n\
1535
+ \t\t\t\t\t</td>\n\
1536
+ \t\t\t\t\t<td>\n\
1537
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1538
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 gamerscore earned out of a total of 200 gamerscore\">0/200</span></div>\n\
1539
+ \t\t\t\t\t\t</div>\n\
1540
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1541
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\
1542
+ \t\t\t\t\t\t</div>\n\
1543
+ \t\t\t\t\t</td>\n\
1544
+ \t\t\t\t\t<td>\n\
1545
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1546
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Street Fighter II' HF is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
1547
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t24</span>\n\
1548
+ \t\t\t\t\t\t\t</p>\n\
1549
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1550
+ \t\t\t\t</tr>\n\
1551
+ \t\t\t\t\t\t\t<tr class=\"tr2\">\n\
1552
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Paperboy/\"><img src=\"http://tiles.xbox.com/tiles/DR/Lw/1mdsb2JhbC9ECgUAGwEfVl1aL2ljb24vMC84MDAwAAAAAAAAAPnfEhI=.jpg\" alt=\"Paperboy\" title=\"Paperboy\" /></a></td>\n\
1553
+ \t\t\t\t\t<td>\n\
1554
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Paperboy/\">Paperboy</a></p>\n\
1555
+ \t\t\t\t\t\t<p>Last played at Sat, 13 Oct 2007 23:54:04 GMT</p>\n\
1556
+ \t\t\t\t\t</td>\n\
1557
+ \t\t\t\t\t<td>\n\
1558
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1559
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 gamerscore earned out of a total of 200 gamerscore\">0/200</span></div>\n\
1560
+ \t\t\t\t\t\t</div>\n\
1561
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1562
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\
1563
+ \t\t\t\t\t\t</div>\n\
1564
+ \t\t\t\t\t</td>\n\
1565
+ \t\t\t\t\t<td>\n\
1566
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1567
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Paperboy is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
1568
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t33</span>\n\
1569
+ \t\t\t\t\t\t\t</p>\n\
1570
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1571
+ \t\t\t\t</tr>\n\
1572
+ \t\t\t\t\t\t\t<tr class=\"tr1\">\n\
1573
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Bomberman-LIVE/\"><img src=\"http://tiles.xbox.com/tiles/Zs/Nz/1mdsb2JhbC9ECgUAGwEfVlwlL2ljb24vMC84MDAwAAAAAAAAAPlcw3k=.jpg\" alt=\"Bomberman LIVE\" title=\"Bomberman LIVE\" /></a></td>\n\
1574
+ \t\t\t\t\t<td>\n\
1575
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Bomberman-LIVE/\">Bomberman LIVE</a></p>\n\
1576
+ \t\t\t\t\t\t<p>Last played at Sat, 13 Oct 2007 23:45:58 GMT</p>\n\
1577
+ \t\t\t\t\t</td>\n\
1578
+ \t\t\t\t\t<td>\n\
1579
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1580
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 gamerscore earned out of a total of 200 gamerscore\">0/200</span></div>\n\
1581
+ \t\t\t\t\t\t</div>\n\
1582
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1583
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\
1584
+ \t\t\t\t\t\t</div>\n\
1585
+ \t\t\t\t\t</td>\n\
1586
+ \t\t\t\t\t<td>\n\
1587
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1588
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Bomberman LIVE is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
1589
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t40</span>\n\
1590
+ \t\t\t\t\t\t\t</p>\n\
1591
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1592
+ \t\t\t\t</tr>\n\
1593
+ \t\t\t\t\t\t\t<tr class=\"tr2\">\n\
1594
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Perfect-Dark-Zero/\"><img src=\"http://tiles.xbox.com/tiles/cm/UH/1Gdsb2JhbC9ECgR8GgMfWStQL2ljb24vMC84MDAwAAAAAAAAAPsoZW0=.jpg\" alt=\"Perfect Dark Zero\" title=\"Perfect Dark Zero\" /></a></td>\n\
1595
+ \t\t\t\t\t<td>\n\
1596
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Perfect-Dark-Zero/\">Perfect Dark Zero</a></p>\n\
1597
+ \t\t\t\t\t\t<p>Last played at Tue, 31 Jul 2007 21:36:09 GMT</p>\n\
1598
+ \t\t\t\t\t</td>\n\
1599
+ \t\t\t\t\t<td>\n\
1600
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1601
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 gamerscore earned out of a total of 1000 gamerscore\">0/1000</span></div>\n\
1602
+ \t\t\t\t\t\t</div>\n\
1603
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1604
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 achievements unlocked out of a total of 50 achievements\">0/50</span></div>\n\
1605
+ \t\t\t\t\t\t</div>\n\
1606
+ \t\t\t\t\t</td>\n\
1607
+ \t\t\t\t\t<td>\n\
1608
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1609
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Perfect Dark Zero is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
1610
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t109</span>\n\
1611
+ \t\t\t\t\t\t\t</p>\n\
1612
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1613
+ \t\t\t\t</tr>\n\
1614
+ \t\t\t\t\t\t\t<tr class=\"tr1\">\n\
1615
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Burnout-Revenge/\"><img src=\"http://tiles.xbox.com/tiles/u7/Ut/1Wdsb2JhbC9ECgQNGwEfWSsgL2ljb24vMC84MDAwAAAAAAAAAPoCtaQ=.jpg\" alt=\"Burnout Revenge\" title=\"Burnout Revenge\" /></a></td>\n\
1616
+ \t\t\t\t\t<td>\n\
1617
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Burnout-Revenge/\">Burnout Revenge</a></p>\n\
1618
+ \t\t\t\t\t\t<p>Last played at Sat, 28 Jul 2007 19:56:29 GMT</p>\n\
1619
+ \t\t\t\t\t</td>\n\
1620
+ \t\t\t\t\t<td>\n\
1621
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1622
+ \t\t\t\t\t\t\t<div style=\"width: 1.5%;\"><span title=\"15 gamerscore earned out of a total of 1000 gamerscore\">15/1000</span></div>\n\
1623
+ \t\t\t\t\t\t</div>\n\
1624
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1625
+ \t\t\t\t\t\t\t<div style=\"width: 2.77777777778%;\"><span title=\"1 achievements unlocked out of a total of 36 achievements\">1/36</span></div>\n\
1626
+ \t\t\t\t\t\t</div>\n\
1627
+ \t\t\t\t\t</td>\n\
1628
+ \t\t\t\t\t<td>\n\
1629
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1630
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Burnout Revenge is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
1631
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t148</span>\n\
1632
+ \t\t\t\t\t\t\t</p>\n\
1633
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1634
+ \t\t\t\t</tr>\n\
1635
+ \t\t\t\t\t\t\t<tr class=\"tr2\">\n\
1636
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Condemned/\"><img src=\"http://tiles.xbox.com/tiles/PI/r4/0mdsb2JhbC9ECgULGwUfWStRL2ljb24vMC84MDAwAAAAAAAAAP3XiiM=.jpg\" alt=\"Condemned\" title=\"Condemned\" /></a></td>\n\
1637
+ \t\t\t\t\t<td>\n\
1638
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Condemned/\">Condemned</a></p>\n\
1639
+ \t\t\t\t\t\t<p>Last played at Wed, 27 Jun 2007 21:42:35 GMT</p>\n\
1640
+ \t\t\t\t\t</td>\n\
1641
+ \t\t\t\t\t<td>\n\
1642
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1643
+ \t\t\t\t\t\t\t<div style=\"width: 16.4948453608%;\"><span title=\"160 gamerscore earned out of a total of 970 gamerscore\">160/970</span></div>\n\
1644
+ \t\t\t\t\t\t</div>\n\
1645
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1646
+ \t\t\t\t\t\t\t<div style=\"width: 24%;\"><span title=\"12 achievements unlocked out of a total of 50 achievements\">12/50</span></div>\n\
1647
+ \t\t\t\t\t\t</div>\n\
1648
+ \t\t\t\t\t</td>\n\
1649
+ \t\t\t\t\t<td>\n\
1650
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1651
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Condemned is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
1652
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t340</span>\n\
1653
+ \t\t\t\t\t\t\t</p>\n\
1654
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1655
+ \t\t\t\t</tr>\n\
1656
+ \t\t\t\t\t\t\t<tr class=\"tr1\">\n\
1657
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Band-of-Bugs/\"><img src=\"http://tiles.xbox.com/tiles/kc/hX/02dsb2JhbC9ECgUAGwEfVl0lL2ljb24vMC84MDAwAAAAAAAAAPx4yI4=.jpg\" alt=\"Band of Bugs\" title=\"Band of Bugs\" /></a></td>\n\
1658
+ \t\t\t\t\t<td>\n\
1659
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Band-of-Bugs/\">Band of Bugs</a></p>\n\
1660
+ \t\t\t\t\t\t<p>Last played at Sun, 24 Jun 2007 13:15:32 GMT</p>\n\
1661
+ \t\t\t\t\t</td>\n\
1662
+ \t\t\t\t\t<td>\n\
1663
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1664
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 gamerscore earned out of a total of 250 gamerscore\">0/250</span></div>\n\
1665
+ \t\t\t\t\t\t</div>\n\
1666
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1667
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 achievements unlocked out of a total of 15 achievements\">0/15</span></div>\n\
1668
+ \t\t\t\t\t\t</div>\n\
1669
+ \t\t\t\t\t</td>\n\
1670
+ \t\t\t\t\t<td>\n\
1671
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1672
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Band of Bugs is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
1673
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t37</span>\n\
1674
+ \t\t\t\t\t\t\t</p>\n\
1675
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1676
+ \t\t\t\t</tr>\n\
1677
+ \t\t\t\t\t\t\t<tr class=\"tr2\">\n\
1678
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Castlevania%3A-SOTN/\"><img src=\"http://tiles.xbox.com/tiles/0d/l9/12dsb2JhbC9ECgUAGwEfVltUL2ljb24vMC84MDAwAAAAAAAAAPhS2c4=.jpg\" alt=\"Castlevania: SOTN\" title=\"Castlevania: SOTN\" /></a></td>\n\
1679
+ \t\t\t\t\t<td>\n\
1680
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Castlevania%3A-SOTN/\">Castlevania: SOTN</a></p>\n\
1681
+ \t\t\t\t\t\t<p>Last played at Tue, 05 Jun 2007 21:20:33 GMT</p>\n\
1682
+ \t\t\t\t\t</td>\n\
1683
+ \t\t\t\t\t<td>\n\
1684
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1685
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 gamerscore earned out of a total of 200 gamerscore\">0/200</span></div>\n\
1686
+ \t\t\t\t\t\t</div>\n\
1687
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1688
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\
1689
+ \t\t\t\t\t\t</div>\n\
1690
+ \t\t\t\t\t</td>\n\
1691
+ \t\t\t\t\t<td>\n\
1692
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1693
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Castlevania: SOTN is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
1694
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t48</span>\n\
1695
+ \t\t\t\t\t\t\t</p>\n\
1696
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1697
+ \t\t\t\t</tr>\n\
1698
+ \t\t\t\t\t\t\t<tr class=\"tr1\">\n\
1699
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Eets%3A-Chowdown/\"><img src=\"http://tiles.xbox.com/tiles/gi/3l/0Wdsb2JhbC9ECgUAGwEfVl1WL2ljb24vMC84MDAwAAAAAAAAAP7KLZ0=.jpg\" alt=\"Eets: Chowdown\" title=\"Eets: Chowdown\" /></a></td>\n\
1700
+ \t\t\t\t\t<td>\n\
1701
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Eets%3A-Chowdown/\">Eets: Chowdown</a></p>\n\
1702
+ \t\t\t\t\t\t<p>Last played at Thu, 07 Jun 2007 19:28:34 GMT</p>\n\
1703
+ \t\t\t\t\t</td>\n\
1704
+ \t\t\t\t\t<td>\n\
1705
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1706
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 gamerscore earned out of a total of 200 gamerscore\">0/200</span></div>\n\
1707
+ \t\t\t\t\t\t</div>\n\
1708
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1709
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\
1710
+ \t\t\t\t\t\t</div>\n\
1711
+ \t\t\t\t\t</td>\n\
1712
+ \t\t\t\t\t<td>\n\
1713
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1714
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Eets: Chowdown is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
1715
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t23</span>\n\
1716
+ \t\t\t\t\t\t\t</p>\n\
1717
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1718
+ \t\t\t\t</tr>\n\
1719
+ \t\t\t\t\t\t\t<tr class=\"tr2\">\n\
1720
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Hexic-HD/\"><img src=\"http://tiles.xbox.com/tiles/8q/bC/0Gdsb2JhbC9ECgUAGwEfWStSL2ljb24vMC84MDAwAAAAAAAAAP-tpu0=.jpg\" alt=\"Hexic HD\" title=\"Hexic HD\" /></a></td>\n\
1721
+ \t\t\t\t\t<td>\n\
1722
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Hexic-HD/\">Hexic HD</a></p>\n\
1723
+ \t\t\t\t\t\t<p>Last played at Sat, 09 Jun 2007 23:57:22 GMT</p>\n\
1724
+ \t\t\t\t\t</td>\n\
1725
+ \t\t\t\t\t<td>\n\
1726
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1727
+ \t\t\t\t\t\t\t<div style=\"width: 5%;\"><span title=\"10 gamerscore earned out of a total of 200 gamerscore\">10/200</span></div>\n\
1728
+ \t\t\t\t\t\t</div>\n\
1729
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1730
+ \t\t\t\t\t\t\t<div style=\"width: 16.6666666667%;\"><span title=\"2 achievements unlocked out of a total of 12 achievements\">2/12</span></div>\n\
1731
+ \t\t\t\t\t\t</div>\n\
1732
+ \t\t\t\t\t</td>\n\
1733
+ \t\t\t\t\t<td>\n\
1734
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1735
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Hexic HD is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
1736
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t31</span>\n\
1737
+ \t\t\t\t\t\t\t</p>\n\
1738
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1739
+ \t\t\t\t</tr>\n\
1740
+ \t\t\t\t\t\t\t<tr class=\"tr1\">\n\
1741
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Smash-TV/\"><img src=\"http://tiles.xbox.com/tiles/Ba/3m/1Wdsb2JhbC9ECgUAGwEfWSpSL2ljb24vMC84MDAwAAAAAAAAAPrJrRo=.jpg\" alt=\"Smash TV\" title=\"Smash TV\" /></a></td>\n\
1742
+ \t\t\t\t\t<td>\n\
1743
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Smash-TV/\">Smash TV</a></p>\n\
1744
+ \t\t\t\t\t\t<p>Last played at Sat, 09 Jun 2007 19:40:01 GMT</p>\n\
1745
+ \t\t\t\t\t</td>\n\
1746
+ \t\t\t\t\t<td>\n\
1747
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1748
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 gamerscore earned out of a total of 200 gamerscore\">0/200</span></div>\n\
1749
+ \t\t\t\t\t\t</div>\n\
1750
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1751
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\
1752
+ \t\t\t\t\t\t</div>\n\
1753
+ \t\t\t\t\t</td>\n\
1754
+ \t\t\t\t\t<td>\n\
1755
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1756
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Smash TV is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
1757
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t28</span>\n\
1758
+ \t\t\t\t\t\t\t</p>\n\
1759
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1760
+ \t\t\t\t</tr>\n\
1761
+ \t\t\t\t\t\t\t<tr class=\"tr2\">\n\
1762
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Assault-Heroes/\"><img src=\"http://tiles.xbox.com/tiles/+K/2S/12dsb2JhbC9ECgUAGwEfWSkmL2ljb24vMC84MDAwAAAAAAAAAPi9rec=.jpg\" alt=\"Assault Heroes\" title=\"Assault Heroes\" /></a></td>\n\
1763
+ \t\t\t\t\t<td>\n\
1764
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Assault-Heroes/\">Assault Heroes</a></p>\n\
1765
+ \t\t\t\t\t\t<p>Last played at Thu, 07 Jun 2007 20:26:41 GMT</p>\n\
1766
+ \t\t\t\t\t</td>\n\
1767
+ \t\t\t\t\t<td>\n\
1768
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1769
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 gamerscore earned out of a total of 200 gamerscore\">0/200</span></div>\n\
1770
+ \t\t\t\t\t\t</div>\n\
1771
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1772
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\
1773
+ \t\t\t\t\t\t</div>\n\
1774
+ \t\t\t\t\t</td>\n\
1775
+ \t\t\t\t\t<td>\n\
1776
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1777
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Assault Heroes is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
1778
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t51</span>\n\
1779
+ \t\t\t\t\t\t\t</p>\n\
1780
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1781
+ \t\t\t\t</tr>\n\
1782
+ \t\t\t\t\t\t\t<tr class=\"tr1\">\n\
1783
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Novadrome/\"><img src=\"http://tiles.xbox.com/tiles/Kp/F+/12dsb2JhbC9ECgUAGwEfWSpaL2ljb24vMC84MDAwAAAAAAAAAPhRkTU=.jpg\" alt=\"Novadrome\" title=\"Novadrome\" /></a></td>\n\
1784
+ \t\t\t\t\t<td>\n\
1785
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Novadrome/\">Novadrome</a></p>\n\
1786
+ \t\t\t\t\t\t<p>Last played at Thu, 07 Jun 2007 20:16:42 GMT</p>\n\
1787
+ \t\t\t\t\t</td>\n\
1788
+ \t\t\t\t\t<td>\n\
1789
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1790
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 gamerscore earned out of a total of 200 gamerscore\">0/200</span></div>\n\
1791
+ \t\t\t\t\t\t</div>\n\
1792
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1793
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\
1794
+ \t\t\t\t\t\t</div>\n\
1795
+ \t\t\t\t\t</td>\n\
1796
+ \t\t\t\t\t<td>\n\
1797
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1798
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Novadrome is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
1799
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t18</span>\n\
1800
+ \t\t\t\t\t\t\t</p>\n\
1801
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1802
+ \t\t\t\t</tr>\n\
1803
+ \t\t\t\t\t\t\t<tr class=\"tr2\">\n\
1804
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Heavy-Weapon/\"><img src=\"http://tiles.xbox.com/tiles/vE/nl/02dsb2JhbC9ECgUAGwEfVl5TL2ljb24vMC84MDAwAAAAAAAAAPzKSaM=.jpg\" alt=\"Heavy Weapon\" title=\"Heavy Weapon\" /></a></td>\n\
1805
+ \t\t\t\t\t<td>\n\
1806
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Heavy-Weapon/\">Heavy Weapon</a></p>\n\
1807
+ \t\t\t\t\t\t<p>Last played at Thu, 07 Jun 2007 20:00:11 GMT</p>\n\
1808
+ \t\t\t\t\t</td>\n\
1809
+ \t\t\t\t\t<td>\n\
1810
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1811
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 gamerscore earned out of a total of 200 gamerscore\">0/200</span></div>\n\
1812
+ \t\t\t\t\t\t</div>\n\
1813
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1814
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\
1815
+ \t\t\t\t\t\t</div>\n\
1816
+ \t\t\t\t\t</td>\n\
1817
+ \t\t\t\t\t<td>\n\
1818
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1819
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Heavy Weapon is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
1820
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t41</span>\n\
1821
+ \t\t\t\t\t\t\t</p>\n\
1822
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1823
+ \t\t\t\t</tr>\n\
1824
+ \t\t\t\t\t\t\t<tr class=\"tr1\">\n\
1825
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Catan/\"><img src=\"http://tiles.xbox.com/tiles/Xg/LW/1Wdsb2JhbC9ECgUAGwEfVlwmL2ljb24vMC84MDAwAAAAAAAAAPr5AkE=.jpg\" alt=\"Catan\" title=\"Catan\" /></a></td>\n\
1826
+ \t\t\t\t\t<td>\n\
1827
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Catan/\">Catan</a></p>\n\
1828
+ \t\t\t\t\t\t<p>Last played at Thu, 07 Jun 2007 19:27:28 GMT</p>\n\
1829
+ \t\t\t\t\t</td>\n\
1830
+ \t\t\t\t\t<td>\n\
1831
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1832
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 gamerscore earned out of a total of 200 gamerscore\">0/200</span></div>\n\
1833
+ \t\t\t\t\t\t</div>\n\
1834
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1835
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\
1836
+ \t\t\t\t\t\t</div>\n\
1837
+ \t\t\t\t\t</td>\n\
1838
+ \t\t\t\t\t<td>\n\
1839
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1840
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Catan is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
1841
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t49</span>\n\
1842
+ \t\t\t\t\t\t\t</p>\n\
1843
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1844
+ \t\t\t\t</tr>\n\
1845
+ \t\t\t\t\t\t\t<tr class=\"tr2\">\n\
1846
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Boom-Boom-Rocket/\"><img src=\"http://tiles.xbox.com/tiles/C1/Pr/0mdsb2JhbC9ECgUAGwEfVlkiL2ljb24vMC84MDAwAAAAAAAAAP3EUxQ=.jpg\" alt=\"Boom Boom Rocket\" title=\"Boom Boom Rocket\" /></a></td>\n\
1847
+ \t\t\t\t\t<td>\n\
1848
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Boom-Boom-Rocket/\">Boom Boom Rocket</a></p>\n\
1849
+ \t\t\t\t\t\t<p>Last played at Thu, 07 Jun 2007 19:24:54 GMT</p>\n\
1850
+ \t\t\t\t\t</td>\n\
1851
+ \t\t\t\t\t<td>\n\
1852
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1853
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 gamerscore earned out of a total of 200 gamerscore\">0/200</span></div>\n\
1854
+ \t\t\t\t\t\t</div>\n\
1855
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1856
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\
1857
+ \t\t\t\t\t\t</div>\n\
1858
+ \t\t\t\t\t</td>\n\
1859
+ \t\t\t\t\t<td>\n\
1860
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1861
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Boom Boom Rocket is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
1862
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t30</span>\n\
1863
+ \t\t\t\t\t\t\t</p>\n\
1864
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1865
+ \t\t\t\t</tr>\n\
1866
+ \t\t\t\t\t\t\t<tr class=\"tr1\">\n\
1867
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Double-Dragon/\"><img src=\"http://tiles.xbox.com/tiles/5b/Yt/0mdsb2JhbC9ECgUAGwEfVlolL2ljb24vMC84MDAwAAAAAAAAAP0Ctvo=.jpg\" alt=\"Double Dragon\" title=\"Double Dragon\" /></a></td>\n\
1868
+ \t\t\t\t\t<td>\n\
1869
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Double-Dragon/\">Double Dragon</a></p>\n\
1870
+ \t\t\t\t\t\t<p>Last played at Tue, 05 Jun 2007 21:15:46 GMT</p>\n\
1871
+ \t\t\t\t\t</td>\n\
1872
+ \t\t\t\t\t<td>\n\
1873
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1874
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 gamerscore earned out of a total of 200 gamerscore\">0/200</span></div>\n\
1875
+ \t\t\t\t\t\t</div>\n\
1876
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1877
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\
1878
+ \t\t\t\t\t\t</div>\n\
1879
+ \t\t\t\t\t</td>\n\
1880
+ \t\t\t\t\t<td>\n\
1881
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1882
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Double Dragon is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
1883
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t29</span>\n\
1884
+ \t\t\t\t\t\t\t</p>\n\
1885
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1886
+ \t\t\t\t</tr>\n\
1887
+ \t\t\t\t\t\t\t<tr class=\"tr2\">\n\
1888
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/XEVIOUS/\"><img src=\"http://tiles.xbox.com/tiles/d8/PC/0Gdsb2JhbC9ECgUAGwEfVlZXL2ljb24vMC84MDAwAAAAAAAAAP-tw2g=.jpg\" alt=\"XEVIOUS\" title=\"XEVIOUS\" /></a></td>\n\
1889
+ \t\t\t\t\t<td>\n\
1890
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/XEVIOUS/\">XEVIOUS</a></p>\n\
1891
+ \t\t\t\t\t\t<p>Last played at Thu, 31 May 2007 22:28:56 GMT</p>\n\
1892
+ \t\t\t\t\t</td>\n\
1893
+ \t\t\t\t\t<td>\n\
1894
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1895
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 gamerscore earned out of a total of 200 gamerscore\">0/200</span></div>\n\
1896
+ \t\t\t\t\t\t</div>\n\
1897
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1898
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\
1899
+ \t\t\t\t\t\t</div>\n\
1900
+ \t\t\t\t\t</td>\n\
1901
+ \t\t\t\t\t<td>\n\
1902
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1903
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for XEVIOUS is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
1904
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t37</span>\n\
1905
+ \t\t\t\t\t\t\t</p>\n\
1906
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1907
+ \t\t\t\t</tr>\n\
1908
+ \t\t\t\t\t\t\t<tr class=\"tr1\">\n\
1909
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/TMNT-1989-Arcade/\"><img src=\"http://tiles.xbox.com/tiles/Pz/y7/12dsb2JhbC9ECgUAGwEfVlhTL2ljb24vMC84MDAwAAAAAAAAAPiUPCA=.jpg\" alt=\"TMNT 1989 Arcade\" title=\"TMNT 1989 Arcade\" /></a></td>\n\
1910
+ \t\t\t\t\t<td>\n\
1911
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/TMNT-1989-Arcade/\">TMNT 1989 Arcade</a></p>\n\
1912
+ \t\t\t\t\t\t<p>Last played at Thu, 24 May 2007 21:36:31 GMT</p>\n\
1913
+ \t\t\t\t\t</td>\n\
1914
+ \t\t\t\t\t<td>\n\
1915
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1916
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 gamerscore earned out of a total of 200 gamerscore\">0/200</span></div>\n\
1917
+ \t\t\t\t\t\t</div>\n\
1918
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1919
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\
1920
+ \t\t\t\t\t\t</div>\n\
1921
+ \t\t\t\t\t</td>\n\
1922
+ \t\t\t\t\t<td>\n\
1923
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1924
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for TMNT 1989 Arcade is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
1925
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t38</span>\n\
1926
+ \t\t\t\t\t\t\t</p>\n\
1927
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1928
+ \t\t\t\t</tr>\n\
1929
+ \t\t\t\t\t\t\t<tr class=\"tr2\">\n\
1930
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Rush%27n-Attack/\"><img src=\"http://tiles.xbox.com/tiles/ez/Ue/0Gdsb2JhbC9ECgUAGwEfVl5aL2ljb24vMC84MDAwAAAAAAAAAP8xNWQ=.jpg\" alt=\"Rush'n Attack\" title=\"Rush'n Attack\" /></a></td>\n\
1931
+ \t\t\t\t\t<td>\n\
1932
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Rush%27n-Attack/\">Rush'n Attack</a></p>\n\
1933
+ \t\t\t\t\t\t<p>Last played at Thu, 24 May 2007 21:20:35 GMT</p>\n\
1934
+ \t\t\t\t\t</td>\n\
1935
+ \t\t\t\t\t<td>\n\
1936
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1937
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 gamerscore earned out of a total of 200 gamerscore\">0/200</span></div>\n\
1938
+ \t\t\t\t\t\t</div>\n\
1939
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1940
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\
1941
+ \t\t\t\t\t\t</div>\n\
1942
+ \t\t\t\t\t</td>\n\
1943
+ \t\t\t\t\t<td>\n\
1944
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1945
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Rush'n Attack is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
1946
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t25</span>\n\
1947
+ \t\t\t\t\t\t\t</p>\n\
1948
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1949
+ \t\t\t\t</tr>\n\
1950
+ \t\t\t\t\t\t\t<tr class=\"tr1\">\n\
1951
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/DEAD-OR-ALIVE-4/\"><img src=\"http://tiles.xbox.com/tiles/5f/Fu/02dsb2JhbC9ECgUMGwMfWStSL2ljb24vMC84MDAwAAAAAAAAAPxB8fo=.jpg\" alt=\"DEAD OR ALIVE 4\" title=\"DEAD OR ALIVE 4\" /></a></td>\n\
1952
+ \t\t\t\t\t<td>\n\
1953
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/DEAD-OR-ALIVE-4/\">DEAD OR ALIVE 4</a></p>\n\
1954
+ \t\t\t\t\t\t<p>Last played at Mon, 01 Jan 1753 00:00:00 GMT</p>\n\
1955
+ \t\t\t\t\t</td>\n\
1956
+ \t\t\t\t\t<td>\n\
1957
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1958
+ \t\t\t\t\t\t\t<div style=\"width: 1%;\"><span title=\"10 gamerscore earned out of a total of 1000 gamerscore\">10/1000</span></div>\n\
1959
+ \t\t\t\t\t\t</div>\n\
1960
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1961
+ \t\t\t\t\t\t\t<div style=\"width: 2.22222222222%;\"><span title=\"1 achievements unlocked out of a total of 45 achievements\">1/45</span></div>\n\
1962
+ \t\t\t\t\t\t</div>\n\
1963
+ \t\t\t\t\t</td>\n\
1964
+ \t\t\t\t\t<td>\n\
1965
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1966
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for DEAD OR ALIVE 4 is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
1967
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t153</span>\n\
1968
+ \t\t\t\t\t\t\t</p>\n\
1969
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1970
+ \t\t\t\t</tr>\n\
1971
+ \t\t\t\t\t\t\t<tr class=\"tr2\">\n\
1972
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Viva-Pi%C3%B1ata/\"><img src=\"http://tiles.xbox.com/tiles/Gw/mu/1mdsb2JhbC9ECgR8GgMfWSlRL2ljb24vMC84MDAwAAAAAAAAAPmBCQQ=.jpg\" alt=\"Viva Pi\xC3\xB1ata\" title=\"Viva Pi\xC3\xB1ata\" /></a></td>\n\
1973
+ \t\t\t\t\t<td>\n\
1974
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Viva-Pi%C3%B1ata/\">Viva Pi\xC3\xB1ata</a></p>\n\
1975
+ \t\t\t\t\t\t<p>Last played at Mon, 01 Jan 1753 00:00:00 GMT</p>\n\
1976
+ \t\t\t\t\t</td>\n\
1977
+ \t\t\t\t\t<td>\n\
1978
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1979
+ \t\t\t\t\t\t\t<div style=\"width: 4%;\"><span title=\"40 gamerscore earned out of a total of 1000 gamerscore\">40/1000</span></div>\n\
1980
+ \t\t\t\t\t\t</div>\n\
1981
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
1982
+ \t\t\t\t\t\t\t<div style=\"width: 4%;\"><span title=\"2 achievements unlocked out of a total of 50 achievements\">2/50</span></div>\n\
1983
+ \t\t\t\t\t\t</div>\n\
1984
+ \t\t\t\t\t</td>\n\
1985
+ \t\t\t\t\t<td>\n\
1986
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
1987
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Viva Pi\xC3\xB1ata is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
1988
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t311</span>\n\
1989
+ \t\t\t\t\t\t\t</p>\n\
1990
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
1991
+ \t\t\t\t</tr>\n\
1992
+ \t\t\t\t\t\t\t<tr class=\"tr1\">\n\
1993
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Texas-Hold%27em/\"><img src=\"http://tiles.xbox.com/tiles/60/gg/1Wdsb2JhbC9ECgUAGwEfWSlVL2ljb24vMC84MDAwAAAAAAAAAPoPSPQ=.jpg\" alt=\"Texas Hold'em\" title=\"Texas Hold'em\" /></a></td>\n\
1994
+ \t\t\t\t\t<td>\n\
1995
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Texas-Hold%27em/\">Texas Hold'em</a></p>\n\
1996
+ \t\t\t\t\t\t<p>Last played at Mon, 01 Jan 1753 00:00:00 GMT</p>\n\
1997
+ \t\t\t\t\t</td>\n\
1998
+ \t\t\t\t\t<td>\n\
1999
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
2000
+ \t\t\t\t\t\t\t<div style=\"width: 17.5%;\"><span title=\"35 gamerscore earned out of a total of 200 gamerscore\">35/200</span></div>\n\
2001
+ \t\t\t\t\t\t</div>\n\
2002
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
2003
+ \t\t\t\t\t\t\t<div style=\"width: 16.6666666667%;\"><span title=\"2 achievements unlocked out of a total of 12 achievements\">2/12</span></div>\n\
2004
+ \t\t\t\t\t\t</div>\n\
2005
+ \t\t\t\t\t</td>\n\
2006
+ \t\t\t\t\t<td>\n\
2007
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
2008
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Texas Hold'em is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
2009
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t57</span>\n\
2010
+ \t\t\t\t\t\t\t</p>\n\
2011
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
2012
+ \t\t\t\t</tr>\n\
2013
+ \t\t\t\t\t\t\t<tr class=\"tr2\">\n\
2014
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Outpost-Kaloki-X/\"><img src=\"http://tiles.xbox.com/tiles/4U/Nw/0mdsb2JhbC9ECgUAGwEfWSshL2ljb24vMC84MDAwAAAAAAAAAP1fQ-4=.jpg\" alt=\"Outpost Kaloki X\" title=\"Outpost Kaloki X\" /></a></td>\n\
2015
+ \t\t\t\t\t<td>\n\
2016
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/Outpost-Kaloki-X/\">Outpost Kaloki X</a></p>\n\
2017
+ \t\t\t\t\t\t<p>Last played at Mon, 01 Jan 1753 00:00:00 GMT</p>\n\
2018
+ \t\t\t\t\t</td>\n\
2019
+ \t\t\t\t\t<td>\n\
2020
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
2021
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 gamerscore earned out of a total of 200 gamerscore\">0/200</span></div>\n\
2022
+ \t\t\t\t\t\t</div>\n\
2023
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
2024
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\
2025
+ \t\t\t\t\t\t</div>\n\
2026
+ \t\t\t\t\t</td>\n\
2027
+ \t\t\t\t\t<td>\n\
2028
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
2029
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for Outpost Kaloki X is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
2030
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t25</span>\n\
2031
+ \t\t\t\t\t\t\t</p>\n\
2032
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
2033
+ \t\t\t\t</tr>\n\
2034
+ \t\t\t\t\t\t\t<tr class=\"tr1\">\n\
2035
+ \t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/PGR-3/\"><img src=\"http://tiles.xbox.com/tiles/ou/TB/1mdsb2JhbC9ECgR8GgMfWStSL2ljb24vMC84MDAwAAAAAAAAAPnu5L0=.jpg\" alt=\"PGR 3\" title=\"PGR 3\" /></a></td>\n\
2036
+ \t\t\t\t\t<td>\n\
2037
+ \t\t\t\t\t\t<p class=\"gameName\"><a href=\"/game/PGR-3/\">PGR 3</a></p>\n\
2038
+ \t\t\t\t\t\t<p>Last played at Mon, 01 Jan 1753 00:00:00 GMT</p>\n\
2039
+ \t\t\t\t\t</td>\n\
2040
+ \t\t\t\t\t<td>\n\
2041
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
2042
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 gamerscore earned out of a total of 1000 gamerscore\">0/1000</span></div>\n\
2043
+ \t\t\t\t\t\t</div>\n\
2044
+ \t\t\t\t\t\t<div class=\"percentage-container\"> \n\
2045
+ \t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 achievements unlocked out of a total of 25 achievements\">0/25</span></div>\n\
2046
+ \t\t\t\t\t\t</div>\n\
2047
+ \t\t\t\t\t</td>\n\
2048
+ \t\t\t\t\t<td>\n\
2049
+ \t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average: \n\
2050
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for PGR 3 is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down Arrow\" />\n\
2051
+ \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t161</span>\n\
2052
+ \t\t\t\t\t\t\t</p>\n\
2053
+ \t\t\t\t\t\t\t\t\t\t\t</td>\n\
2054
+ \t\t\t\t</tr>\n\
2055
+ \t\t\t\t\t</table>\n\
2056
+ \t</div>\n\
2057
+ </div>\n\
2058
+ \t<div class=\"XGTFooter\">\n\
2059
+ \t\t<div class=\"rightCol\">\n\
2060
+ \t\t\t<p><!--GCF:API--> <!---PF:Cache--></p>\n\
2061
+ \t\t</div>\n\
2062
+ \t\t\n\
2063
+ \t</div>\n\
2064
+ </div>\n\
2065
+ <div class=\"XGTFooter\">\n\
2066
+ \t<div class=\"leftCol\">\n\
2067
+ \t\t<a href=\"/contact/\">Contact Us</a> - <a href=\"/legal/terms/\">Terms of Use</a> - <a href=\"/legal/privacy/\">Privacy Policy</a> - <a href=\"/sitemap/\">Sitemap</a>\n\
2068
+ \t\t\n\
2069
+ \t\t<br />\n\
2070
+ \t\tFollow us on: <a href=\"http://www.facebook.com/pages/Xbox-Gamertag/134742809876061\" target=_blank\" rel=\"nofollow\">Facebook</a> - <a href=\"http://twitter.com/XboxGamerTagCom\" target=_blank\" rel=\"nofollow\">Twitter</a> - <a href=\"http://www.youtube.com/user/XboxGamertagCom\" target=_blank\" rel=\"nofollow\">Youtube</a>\n\
2071
+ \t</div>\n\
2072
+ \t<div class=\"rightCol\">\n\
2073
+ \t\t<p>Xboxgamertag.com &#169 2011</p>\n\
2074
+ \t\t<p>XboxGamertag.com is a member of the Xbox Community Developer Program (XCDP)</p>\n\
2075
+ \t\t<p>We are not affiliated with Microsoft or Xbox</p>\n\
2076
+ \t</div>\t\n\
2077
+ </div>\n\
2078
+ <script type=\"text/javascript\"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-16948229-1']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })();</script>\n\
2079
+ <!-- Start Quantcast tag --><script type=\"text/javascript\">_qoptions={qacct:\"p-aftsHHTxJeedw\"};</script><script type=\"text/javascript\" src=\"http://edge.quantserve.com/quant.js\"></script><noscript><p><img src=\"http://pixel.quantserve.com/pixel/p-aftsHHTxJeedw.gif\" style=\"display: none;\" height=\"1\" width=\"1\" alt=\"Quantcast\"/></p></noscript><!-- End Quantcast tag -->\n\n\
2080
+ </body>\n\
2081
+ </html>\n"
2082
+ http_version: "1.1"