gamertag 1.0.2 → 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --colour
2
+ --format doc
3
+
data/.rvmrc CHANGED
@@ -1 +1 @@
1
- rvm use ruby-1.9.2@gamertag_gem --create
1
+ rvm use 1.9.3@gamertag_gem --create
@@ -1,8 +1,18 @@
1
- # gamertag 1.0.1
1
+ # CHANGELOG
2
2
 
3
- * Updates to project organization, code improvements and specs
4
- * Add ability to initialize a SimpleProfile from existing JSON data [hypomodern]
3
+ ## 1.0.3
4
+
5
+ * Escaping user input when creating an URI. Thanks to [lunks](https://github.com/lunks) for the pull request.
6
+
7
+ ## 1.0.2
8
+
9
+ * Fixed each method on PlayedGames so that it works correctly
10
+
11
+ ## 1.0.1
12
+
13
+ * Updates to project organization, code improvements and specs
14
+ * Add ability to initialize a SimpleProfile from existing JSON data [hypomodern]
5
15
 
6
- # gamertag 1.0.0
16
+ ## 1.0.0
7
17
 
8
- * Initial release
18
+ * Initial release
@@ -74,6 +74,9 @@ This gem fetches data from two independent sources, which has several implicatio
74
74
  game.relative_gamerscore => :above_average || :below_average || :undefined
75
75
  end
76
76
 
77
+ ## Documentation
78
+
79
+ You can find [online documentation](http://rubydoc.info/github/barisbalic/gamertag/master/frames) that describes the API in more detail.
77
80
 
78
81
  ## Note on Patches/Pull Requests
79
82
 
@@ -85,4 +88,4 @@ This gem fetches data from two independent sources, which has several implicatio
85
88
 
86
89
  ## Copyright
87
90
 
88
- Copyright (c) 2011 Baris Balic, David Czarnecki.
91
+ Copyright (c) 2011-2012 Baris Balic, David Czarnecki.
@@ -19,12 +19,12 @@ Gem::Specification.new do |s|
19
19
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
20
20
  s.require_paths = ["lib"]
21
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')
22
+ s.add_dependency('json')
23
+ s.add_dependency('hashie')
24
+ s.add_dependency('nokogiri')
25
25
 
26
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')
27
+ s.add_development_dependency('rspec')
28
+ s.add_development_dependency('vcr')
29
+ s.add_development_dependency('fakeweb')
30
30
  end
@@ -1,27 +1,50 @@
1
+ require 'cgi'
1
2
  module Gamertag
2
3
  class PlayedGames
3
-
4
+ # Create a new instacne of +PlayedGames+ with a given gamertag. You will
5
+ # then be able to iterate over the items returned from xboxgamertag.com
6
+ # using iterator methods such as +first+, +last+, +each+, +count+, and
7
+ # +to_hash+.
8
+ #
9
+ # @param gamertag [String] XBOX gamertag to retrieve played games for.
4
10
  def initialize(gamertag)
5
11
  @played_games = fetch(gamertag)
6
12
  end
7
-
13
+
14
+ # Iterator over each of the played games using a block.
15
+ #
16
+ # @param block [block] Each played game for the gamertag will be passed to the block.
8
17
  def each(&block)
9
18
  @played_games.each(&block)
10
19
  end
11
-
20
+
21
+ # +first+, +last+, +count+, and +to_hash+ will be sent to the
22
+ # internal class variable holding the played games information.
12
23
  def method_missing(method_name, args = nil)
13
24
  [:first, :last, :count, :to_hash].each {|method| return @played_games.send(method) if method_name == method }
14
25
  @played_games[method_name.to_s]
15
26
  end
16
-
27
+
17
28
  private
29
+
30
+ # Fetch played game information for a given XBOX gamertag.
31
+ #
32
+ # @param gamertag [String] XBOX gamertag to retrieve played games for.
33
+ #
34
+ # @return A +Hashie::Mash+ of the "parsed" played game information.
18
35
  def fetch(gamertag)
19
- uri = URI.parse("http://www.xboxgamertag.com/search/#{gamertag}/")
36
+ uri = URI.parse("http://www.xboxgamertag.com/search/#{CGI.escape gamertag}/")
20
37
  response = Net::HTTP.get_response(uri)
21
38
  document = Nokogiri::HTML(response.body)
22
39
  parse_rows(document)
23
40
  end
24
-
41
+
42
+ # Parse the HTML from xboxgamertag.com to retrieve played game
43
+ # information such as title, earned_achievements, etc.
44
+ #
45
+ # @param document [Nokogiri::HTML] HTML document
46
+ #
47
+ # @return A +Hashie::Mash+ of the "parsed" played game information.
25
48
  def parse_rows(document)
26
49
  # Nasty HTML scraping hack, maybe pull into another class?
27
50
  document.css("[id='recentGamesTable']").css('tr').map do |table_row|
@@ -30,7 +53,7 @@ module Gamertag
30
53
  naming = cells[1].css("p")
31
54
  gamerscore = cells[2].css("div[class='percentage-container']").first.text.strip!.split('/')
32
55
  achievements = (cells[2].css("div[class='percentage-container']").last.text).strip!.split('/')
33
-
56
+
34
57
  average_gamerscore = cells[3].css('span').text.strip!
35
58
  relative_gamerscore = cells[3].css('span').attribute('title').text.include?('above average') ? :above_average : :below_average rescue :undefined
36
59
 
@@ -47,4 +70,4 @@ module Gamertag
47
70
  end
48
71
  end
49
72
  end
50
- end
73
+ end
@@ -2,6 +2,9 @@ module Gamertag
2
2
  class Profile < SimpleProfile
3
3
  attr_reader :played_games
4
4
 
5
+ # Create a new profile for an XBOX gamertag.
6
+ #
7
+ # @param gamertag [String] XBOX gamertag to retrieve +Gamertag::PlayedGames+ for.
5
8
  def initialize(gamertag)
6
9
  super(gamertag)
7
10
  @played_games = PlayedGames.new(gamertag)
@@ -1,5 +1,11 @@
1
+ require 'cgi'
1
2
  module Gamertag
2
3
  class SimpleProfile
4
+ # Retrieve XBOX profile information for a given XBOX gamertag from
5
+ # xboxleaders.com
6
+ #
7
+ # @param gamertag [String] XBOX gamertag to retrieve profile information for.
8
+ # @param seed_data [Hash, nil] Seed data to be used for profile information.
3
9
  def initialize(gamertag, seed_data = nil)
4
10
  if seed_data
5
11
  @profile = seed_data
@@ -7,32 +13,56 @@ module Gamertag
7
13
  @profile = fetch(gamertag)
8
14
  end
9
15
  end
10
-
16
+
17
+ # Parse profile information from JSON data.
18
+ #
19
+ # @param data [String] JSON data containing XBOX profile information.
20
+ #
21
+ # @return Parsed profile information from JSON data.
11
22
  def self.from_json(data)
12
23
  data = JSON.parse(data)
13
24
  new(data["gamertag"], data)
14
25
  end
15
26
 
27
+ # Dispatch method names like +gamertag+ or +gamerscore+ to the profile Hash.
28
+ #
29
+ # @param method_name [Symbol] Method name.
30
+ # @param args [Array, nil] Method arguments.
31
+ #
32
+ # @return Information from the profile Hash or +nil+ if not found.
16
33
  def method_missing(method_name, args = nil)
17
34
  @profile[method_name.to_s]
18
35
  end
19
36
 
37
+ # Retrieve the recent games from the profile.
38
+ #
39
+ # @return Recent games from the profile.
20
40
  def recent_games
21
41
  @profile['recent_games'].map do |k, v|
22
42
  Hashie::Mash.new(v.merge({'last_played' => Time.at(v['last_played'].to_i)}))
23
43
  end
24
44
  end
25
-
45
+
46
+ # Retrieve the various avatars in use for a profile.
47
+ #
48
+ # @return The various avatars in use for a profile.
26
49
  def avatars
27
50
  Hashie::Mash.new(@profile['avatars'])
28
51
  end
29
52
 
30
53
  private
31
- def fetch(gamertag)
32
- uri = URI.parse("http://api.xboxleaders.com/v2/?gamertag=#{gamertag}&format=json")
54
+
55
+ # Retrieve the profile information as JSON from xboxleaders.com for a given
56
+ # XBOX gamertag.
57
+ #
58
+ # @param gamertag [String] XBOX gamertag to retrieve profile information for.
59
+ #
60
+ # @return Hash of profile information from xboxleaders.com.
61
+ def fetch(gamertag)
62
+ uri = URI.parse("http://api.xboxleaders.com/v2/?gamertag=#{CGI.escape gamertag}&format=json")
33
63
  response = Net::HTTP.get_response(uri)
34
64
  hash = JSON.parse(response.body)
35
65
  hash['user']
36
66
  end
37
67
  end
38
- end
68
+ end
@@ -1,3 +1,3 @@
1
1
  module Gamertag
2
- VERSION = "1.0.2"
2
+ VERSION = "1.0.3"
3
3
  end
@@ -1,2082 +1,1309 @@
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
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://api.xboxleaders.com/v2/?gamertag=Belial1984&format=json
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers: {}
10
+ response:
11
+ status:
10
12
  code: 200
11
13
  message: OK
12
- headers:
13
- date:
14
+ headers:
15
+ Date:
14
16
  - 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:
17
+ Server:
18
+ - Apache/2.0.63 (Unix) mod_ssl/2.0.63 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1
19
+ mod_bwlimited/1.4 FrontPage/5.0.2.2635 PHP/5.2.13
20
+ X-Powered-By:
18
21
  - PHP/5.2.13
19
- expires:
22
+ Expires:
20
23
  - Mon, 26 Jul 1997 05:00:00 GMT
21
- last-modified:
24
+ Last-Modified:
22
25
  - Wed, 24 Aug 2011 16:38:24GMT
23
- cache-control:
26
+ Cache-Control:
24
27
  - no-cache, must-revalidate
25
- pragma:
28
+ Pragma:
26
29
  - no-cache
27
- content-length:
28
- - "3225"
29
- content-type:
30
+ Content-Length:
31
+ - '3225'
32
+ Content-Type:
30
33
  - 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&#174; 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&#174; 2\",\"tid\":1096157207,\"marketplace_url\":\"http:\\/\\/marketplace.xbox.com\\/Title\\/1096157207\",\"compare_url\":\"http:\\/\\/live.xbox.com\\/en-US\\/GameCenter\\/Achievements?title=1096157207&amp;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&amp;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&amp;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&amp;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&amp;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
34
+ body:
35
+ encoding: UTF-8
36
+ string: ! '{"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
37
+ seen 8\/22\/2011 playing Modern Warfare&#174; 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
38
+ balic","bio":"","recent_games":{"1":{"title":"Modern Warfare&#174; 2","tid":1096157207,"marketplace_url":"http:\/\/marketplace.xbox.com\/Title\/1096157207","compare_url":"http:\/\/live.xbox.com\/en-US\/GameCenter\/Achievements?title=1096157207&amp;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:
39
+ Reach","tid":1297287259,"marketplace_url":"http:\/\/marketplace.xbox.com\/Title\/1297287259","compare_url":"http:\/\/live.xbox.com\/en-US\/GameCenter\/Achievements?title=1297287259&amp;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
40
+ 2","tid":1161890066,"marketplace_url":"http:\/\/marketplace.xbox.com\/Title\/1161890066","compare_url":"http:\/\/live.xbox.com\/en-US\/GameCenter\/Achievements?title=1161890066&amp;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
41
+ STREETFIGHTER IV","tid":1128466428,"marketplace_url":"http:\/\/marketplace.xbox.com\/Title\/1128466428","compare_url":"http:\/\/live.xbox.com\/en-US\/GameCenter\/Achievements?title=1128466428&amp;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
42
+ of Eden","tid":1431504972,"marketplace_url":"http:\/\/marketplace.xbox.com\/Title\/1431504972","compare_url":"http:\/\/live.xbox.com\/en-US\/GameCenter\/Achievements?title=1431504972&amp;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}}}}'
43
+ http_version: '1.1'
44
+ recorded_at: Thu, 25 Aug 2011 00:52:26 GMT
45
+ - request:
46
+ method: get
47
+ uri: http://www.xboxgamertag.com/search/Belial1984/
48
+ body:
49
+ encoding: US-ASCII
50
+ string: ''
51
+ headers: {}
52
+ response:
53
+ status:
41
54
  code: 200
42
55
  message: OK
43
- headers:
44
- set-cookie:
56
+ headers:
57
+ Set-Cookie:
45
58
  - PHPSESSID=2326af0d94256b418c099cbdf1807553; path=/
46
- expires:
59
+ Expires:
47
60
  - Thu, 19 Nov 1981 08:52:00 GMT
48
- cache-control:
61
+ Cache-Control:
49
62
  - no-store, no-cache, must-revalidate, post-check=0, pre-check=0
50
- pragma:
63
+ Pragma:
51
64
  - no-cache
52
- vary:
65
+ Vary:
53
66
  - Accept-Encoding
54
- content-type:
67
+ Content-Type:
55
68
  - text/html; charset=UTF-8
56
- content-length:
57
- - "102939"
58
- date:
69
+ Content-Length:
70
+ - '102939'
71
+ Date:
59
72
  - Wed, 24 Aug 2011 16:38:25 GMT
60
- x-varnish:
61
- - "659547934"
62
- age:
63
- - "0"
64
- connection:
73
+ X-Varnish:
74
+ - '659547934'
75
+ Age:
76
+ - '0'
77
+ Connection:
65
78
  - keep-alive
66
- server:
79
+ Server:
67
80
  - 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"
81
+ body:
82
+ encoding: UTF-8
83
+ string: ! "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n<html
84
+ xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:og=\"http://ogp.me/ns#\"\n xmlns:fb=\"https://www.facebook.com/2008/fbml\"
85
+ lang=\"en\">\n<head>\n<title>belial1984 - Xbox Live Gamertag </title>\n<meta
86
+ http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\n<meta
87
+ name=\"description\" content=\"View the full xbox live profile of belial1984's.
88
+ belial1984's gamerscore is 11,910. To search for any other Xbox Live user
89
+ visit our homepage.\" />\n<meta name=\"keywords\" content=\"xbox, xbox gamertag,
90
+ gamertag, gamertag search, xbox gamertag search, xbox live, gamercards, gamertag
91
+ generator, gamercard generator\" />\n<meta name=\"robots\" content=\"index,
92
+ follow\" />\n<meta name=\"google-site-verification\" content=\"DawowDmV2J68zDd4Ej0RdjF9C4mPykmq7smE1F2bgTw\"
93
+ />\n<link rel=\"canonical\" href=\"http://www.xboxgamertag.com\" />\n\n <meta
94
+ property=\"og:title\" content=\"belial1984 - Xbox Gamertag - Xbox Gamertag\"/>\n
95
+ \ <meta property=\"og:type\" content=\"website\"/>\n <meta property=\"og:url\"
96
+ content=\"http://www.xboxgamertag.com/search/belial1984/\"/>\n <meta property=\"og:image\"
97
+ content=\"http://avatar.xboxlive.com/avatar/belial1984/avatarpic-l.png\"/>\n
98
+ \ <meta property=\"og:site_name\" content=\"XboxGamertag\"/>\n <meta
99
+ property=\"og:description\" content=\"belial1984 - Xbox Gamertag. Gamerscore:
100
+ 11,910\"/>\n\n<!-- Stylesheets -->\n<link rel=\"stylesheet\" type=\"text/css\"
101
+ href=\"/resources/css/main.css?1313399553\" />\n<link rel=\"stylesheet\" type=\"text/css\"
102
+ href=\"/resources/css/content/gamertag.css?1313399553\" />\n\n<!-- Javascript
103
+ -->\n<script type=\"text/javascript\" src=\"/resources/scripts/jquery-1.4.4.min.js?1313399553\"></script>\n\t<script
104
+ type=\"text/javascript\" src=\"/resources/scripts/jquery-ui.min.js?1313399553\"></script>\n\t<link
105
+ rel=\"stylesheet\" type=\"text/css\" href=\"/resources/scripts/jqueryui/xgt-theme/jquery-ui-1.8.6.custom.css?1313399553\"
106
+ />\n\t<script type=\"text/javascript\" src=\"/resources/scripts/content/gamertag.js?1313399553\"></script>\n\n\n\t\n\n\n<!--[if
107
+ lt IE 7]>\n<script type=\"text/javascript\" src=\"/resources/scripts/supersleight.plugin.js?1313399553\"></script>\n<script>\n$(document).ready(function()\n{\n\t$('img,
108
+ div, input').supersleight();\n});\n</script>\n<![endif]-->\n<noscript>For
109
+ full functionality of this page it is necessary to enable JavaScript. Here
110
+ are the <a href=\"http://www.enable-javascript.com&quot; target=\"_blank\">
111
+ instructions how to enable JavaScript in your web browser</a></noscript>\n\n<!--
112
+ BuySellAds.com Ad Code -->\n<script type=\"text/javascript\">\n(function(){\n
113
+ \ var bsa = document.createElement('script');\n bsa.type = 'text/javascript';\n
114
+ \ bsa.async = true;\n bsa.src = '//s3.buysellads.com/ac/bsa.js';\n
115
+ \ (document.getElementsByTagName('head')[0]||document.getElementsByTagName('body')[0]).appendChild(bsa);\n})();\n</script>\n<!--
116
+ End BuySellAds.com Ad Code -->\n\n\n</head>\n\n<body>\n<div id=\"container\">\n\n\t\n\t<h1
117
+ id=\"MainTitle\"><a href=\"http://www.xboxgamertag.com/\">Xbox Gamertag</a></h1>\n\t\t\t\t\t\t\t\t\n\n<div
118
+ class=\"topAd\">\n\n<script type=\"text/javascript\"><!--\ngoogle_ad_client
119
+ = \"ca-pub-5544850898506231\";\n/* top */\ngoogle_ad_slot = \"7701256685\";\ngoogle_ad_width
120
+ = 468;\ngoogle_ad_height = 60;\n//-->\n</script>\n<script type=\"text/javascript\"\nsrc=\"http://pagead2.googlesyndication.com/pagead/show_ads.js\">\n</script>\n\n\n\n<!--
121
+ BuySellAds.com Zone Code -->\n<!---<div id=\"bsap_1263149\" class=\"bsarocks
122
+ bsap_98d6915731db38cdebc72e15b7b23b2b\"></div>-->\n<!-- End BuySellAds.com
123
+ Zone Code -->\n\n\n\n\n\n\n\n</div>\t\n\t\n\t<div id=\"topLinks\">\n\t\t<ul>\n\t\t\t\t\t\t<li><a
124
+ href=\"/register/\"><strong>Register</strong></a> | </li>\n\t\t\t<li><a href=\"/login/\">Login</a></li>\n\t\t\t\t\t\t\n\t\t</ul>\n\t</div>\n\t<div
125
+ id=\"XGTHeader\">\n\t\t<ul id=\"Menu\">\n\t\t\t<li class=\"image\"><a href=\"/\"><img
126
+ src=\"/resources/images/homeHouse.png\" alt=\"xboxgamertag\" /></a></li>\n\t\t\t<li
127
+ class=\"left\"><a href=\"/gamercard/\">Gamercards</a></li>\n\t\t\t<li class=\"left\"><a
128
+ href=\"/gamertag-generator/\">Gamertag Generator</a></li>\n\t\t\t<li class=\"left\"><a
129
+ href=\"/achievements/\">Achievements</a></li>\n\t\t\t<li class=\"left\"><a
130
+ href=\"/leaderboards/\">Leaderboards</a></li>\n\t\t\t\t\t\t<li class=\"left\"><a
131
+ href=\"http://www.youtube.com/user/XboxGamertagCom\" target=\"_blank\"rel=\"nofollow\">-
132
+ Youtube Channel -</a></li>\n\t\t\t<!---<li class=\"rightOption\"><a href=\"/forum/\">Forums</a></li>-->\n\t\t\t\n\t\t\t<li
133
+ class=\"rightOption\"><a href=\"http://www.facebook.com/pages/Xbox-Gamertag/134742809876061\"
134
+ rel=\"nofollow\" target=\"_blank\">Share Your Gamertag</a></li>\n\n\t\t</ul>\n\t\t\t</div>\n\t\n
135
+ \t<!-----<div id=\"status-msg\"></div>--->\n\t\n\t<div id=\"XGTMain\">\n\n<div
136
+ id=\"s-text\">\n<p>belial1984 is an Xbox Live Gold user.<p>\n<p>They have
137
+ 11,910 gamerscore.</p>\n<p>Their motto is and their bio is </p>\n\t<p>They
138
+ play games such as: Modern Warfare® 2,Halo: Reach,Portal 2,SUPER STREETFIGHTER
139
+ IV,Child of Eden,Geometry Wars Evolved²,Bulletstorm,LUMINES LIVE!,MEGA MAN
140
+ 10,Call of Duty Black Ops,The Orange Box,Portal: Still Alive,Burnout Paradise,Super
141
+ Meat Boy,Fallout: New Vegas,Braid,NFS Hot Pursuit,LIMBO,PAC-MAN CE DX,SuperStreetFighter2THD,BAYONETTA,Dead
142
+ Spaceâ\x84¢,STREET FIGHTER IV,LOST PLANET 2,N+,SCOTT PILGRIM THE GAME,E4,Battlefield:
143
+ Bad Co. 2,Mercenaries 2,Halo 3: ODST,Halo 3,NINJA GAIDEN 2,Crackdown,Left
144
+ 4 Dead,Darksiders,RESIDENT EVIL 5,Fable II,Borderlands,Halo Waypoint,Call
145
+ of Duty 4,[PROTOTYPE]â\x84¢,Geometry Wars Evolved,Gears of War 2,Fallout 3,Guitar
146
+ Hero III,Castle Crashers,GTA IV,Worms,Gears of War,Pac-Man C.E.,TC's RainbowSix
147
+ Vegas,DEAD RISING,skate.,BioShock,LOST PLANET,Battlestations: Midway,Kane
148
+ and Lynch:DeadMen,Enchanted Arms,Puzzle Fighter HD,Geon,Sonic The Hedgehog
149
+ 2,Fatal Fury Special,Small Arms,Street Fighter II' HF,Paperboy,Bomberman LIVE,Perfect
150
+ Dark Zero,Burnout Revenge,Condemned,Band of Bugs,Castlevania: SOTN,Eets: Chowdown,Hexic
151
+ HD,Smash TV,Assault Heroes,Novadrome,Heavy Weapon,Catan,Boom Boom Rocket,Double
152
+ Dragon,XEVIOUS,TMNT 1989 Arcade,Rush'n Attack,DEAD OR ALIVE 4,Viva Piñata,Texas
153
+ Hold'em,Outpost Kaloki X,PGR 3,</p>\n</div>\n<div id=\"topLeft\">\n\t<img
154
+ src=\"http://avatar.xboxlive.com/avatar/belial1984/avatarpic-l.png\" alt=\"belial1984's
155
+ Avatar\" title=\"belial1984's Avatar\" class=\"avatarTile\"/>\n\t<h2 class=\"tierGamertag
156
+ gold\">belial1984</h2> <img src=\"/resources/images/flags/gb.png\" alt=\"From
157
+ gb\"/> <p class=\"rightGS\"><img src=\"/resources/images/gamerscore_icon.png\"
158
+ alt=\"11,910 Gamerscore\" title=\"11,910 Gamerscore\"> 11,910</p><p class=\"topc\">Last
159
+ seen 8/22/2011 playing Modern Warfare® 2</p>\n\t<p class=\"topc\"></p>\n</div>\n<div
160
+ class=\"lowerPart\" style=\"margin-bottom:10px;\">\n<p>Online Status: <i>Offline</i>
161
+ || Xbox Membership: Gold || Zone: Underground || Country: United Kingdom</p>\n</div>\n<div
162
+ class=\"rightColGT\" style=\"margin-top:-10px;\">\n<div class=\"topRC\">\n\t<div>\n\t\t<p
163
+ class=\"\">Total Games Played: 88</p>\n\t\t<p class=\"\">Games Completed:
164
+ 2</p>\n\t\t<p class=\"\">Average Completion: 21%</p>\n\t</div>\n\n<div class=\"share-item-float\">\n<iframe
165
+ 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\"
166
+ scrolling=\"no\" frameborder=\"0\" style=\"border:none; overflow:hidden; width:80px;
167
+ height:21px;\" allowTransparency=\"true\"></iframe>\n</div>\n<div class=\"share-item\">\n\t<a
168
+ href=\"http://twitter.com/share\" class=\"twitter-share-button\" data-url=\"http://www.xboxgamertag.com/search/belial1984/\"data-count=\"none\"
169
+ data-via=\"xboxgamertagcom\">Tweet</a>\n\t<script type=\"text/javascript\"
170
+ src=\"http://platform.twitter.com/widgets.js\"></script>\n</div>\n\n</div>\n<div
171
+ class=\"avatarSection\">\n<p class=\"bio-right\"></p>\n\t\t<img src=\"http://avatar.xboxlive.com/avatar/belial1984/avatar-body.png\"
172
+ alt=\"belial1984's Avatar\" title=\"belial1984's Avatar\" class=\"avatarBig\"
173
+ />\n\t\t\t<p class=\"bio-right\"></p>\n\n\t\t<br />\t\n\n\t\n\t\n\t</div>\n\t</div>\n<!---<div
174
+ style=\"margin:0px auto;padding:0px;padding-top:7px;padding-bottom:5px;\">-->\n\n\n<div
175
+ class=\"adsensefloat\">\n<script type=\"text/javascript\"><!--\ngoogle_ad_client
176
+ = \"pub-5544850898506231\";\n/* 728x90, created 8/15/11 */\ngoogle_ad_slot
177
+ = \"8470868236\";\ngoogle_ad_width = 728;\ngoogle_ad_height = 90;\n//-->\n</script>\n<script
178
+ type=\"text/javascript\"\nsrc=\"http://pagead2.googlesyndication.com/pagead/show_ads.js\">\n</script></div>\n\n\n\t\n\n\n<!--<div
179
+ class=\"bysellgt\">\n<p>Advertisement - (<a href=\"http://buysellads.com/buy/detail/64568\"
180
+ target=\"_blank\" rel=\"nofollow\">Advertise here?</a> - <a href=\"/contact/\"
181
+ rel=\"nofollow\">Report Ad</a>)</p>\n<!-- BuySellAds.com Zone Code\n<div id=\"bsap_1263151\"
182
+ class=\"bsarocks bsap_98d6915731db38cdebc72e15b7b23b2b\"></div>\n<!-- End
183
+ BuySellAds.com Zone Code --><!--</div>-->\n\n\n\n<!--</div>-->\n\t\n\t<div
184
+ id=\"recentgames\" class=\"section\">\t\n\t\t<h3 class=\"subtitle\">Recent
185
+ Games</h3>\n\t\t<table id=\"recentGamesTable\" cellspacing=\"0\" cellpadding=\"0\">\n\t\t\t\t\t\t\t\t\t\t<tr
186
+ class=\"tr2\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Modern-Warfare%C2%AE-2/\"><img
187
+ src=\"http://tiles.xbox.com/tiles/CE/Vx/0Gdsb2JhbC9ECgQJGgYfVl5UL2ljb24vMC84MDAwAAAAAAAAAP9eRRc=.jpg\"
188
+ alt=\"Modern Warfare® 2\" title=\"Modern Warfare® 2\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
189
+ class=\"gameName\"><a href=\"/game/Modern-Warfare%C2%AE-2/\">Modern Warfare®
190
+ 2</a></p>\n\t\t\t\t\t\t<p>Last played at Mon, 22 Aug 2011 19:00:07 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
191
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
192
+ 93%;\"><span title=\"930 gamerscore earned out of a total of 1000 gamerscore\">930/1000</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
193
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
194
+ 86%;\"><span title=\"43 achievements unlocked out of a total of 50 achievements\">43/50</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
195
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
196
+ Modern Warfare® 2 is above average\"><img src=\"/resources/images/icons/up.png\"
197
+ alt=\"Up Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t375</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
198
+ class=\"tr1\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Halo%3A-Reach/\"><img
199
+ src=\"http://tiles.xbox.com/tiles/Ff/ej/0Wdsb2JhbC9ECgR8GgMfVlohL2ljb24vMC84MDAwAAAAAAAAAP6M9wo=.jpg\"
200
+ alt=\"Halo: Reach\" title=\"Halo: Reach\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
201
+ class=\"gameName\"><a href=\"/game/Halo%3A-Reach/\">Halo: Reach</a></p>\n\t\t\t\t\t\t<p>Last
202
+ played at Tue, 08 Mar 2011 21:20:33 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
203
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
204
+ 26.7857142857%;\"><span title=\"375 gamerscore earned out of a total of 1400
205
+ gamerscore\">375/1400</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div class=\"percentage-container\">
206
+ \ \n\t\t\t\t\t\t\t<div style=\"width: 44.0677966102%;\"><span title=\"26
207
+ achievements unlocked out of a total of 59 achievements\">26/59</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
208
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
209
+ Halo: Reach is below average\"><img src=\"/resources/images/icons/down.png\"
210
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t402</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
211
+ class=\"tr2\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Portal-2/\"><img
212
+ src=\"http://tiles.xbox.com/tiles/WI/5t/1mdsb2JhbC9ECgQNGwEfV15RL2ljb24vMC84MDAwAAAAAAAAAPlCjkc=.jpg\"
213
+ alt=\"Portal 2\" title=\"Portal 2\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
214
+ class=\"gameName\"><a href=\"/game/Portal-2/\">Portal 2</a></p>\n\t\t\t\t\t\t<p>Last
215
+ played at Mon, 01 Jan 1753 00:00:00 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
216
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
217
+ 34.5%;\"><span title=\"345 gamerscore earned out of a total of 1000 gamerscore\">345/1000</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
218
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
219
+ 42%;\"><span title=\"21 achievements unlocked out of a total of 50 achievements\">21/50</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
220
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
221
+ Portal 2 is below average\"><img src=\"/resources/images/icons/down.png\"
222
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t356</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
223
+ class=\"tr1\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/SUPER-STREETFIGHTER-IV/\"><img
224
+ src=\"http://tiles.xbox.com/tiles/Pp/8x/0Wdsb2JhbC9ECgQLGwMfWSkgL2ljb24vMC84MDAwAAAAAAAAAP4enyE=.jpg\"
225
+ alt=\"SUPER STREETFIGHTER IV\" title=\"SUPER STREETFIGHTER IV\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
226
+ class=\"gameName\"><a href=\"/game/SUPER-STREETFIGHTER-IV/\">SUPER STREETFIGHTER
227
+ IV</a></p>\n\t\t\t\t\t\t<p>Last played at Wed, 06 Jul 2011 21:16:30 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
228
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
229
+ 40.5172413793%;\"><span title=\"470 gamerscore earned out of a total of 1160
230
+ gamerscore\">470/1160</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div class=\"percentage-container\">
231
+ \ \n\t\t\t\t\t\t\t<div style=\"width: 48.275862069%;\"><span title=\"28
232
+ achievements unlocked out of a total of 58 achievements\">28/58</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
233
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
234
+ SUPER STREETFIGHTER IV is above average\"><img src=\"/resources/images/icons/up.png\"
235
+ alt=\"Up Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t180</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
236
+ class=\"tr2\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Child-of-Eden/\"><img
237
+ src=\"http://tiles.xbox.com/tiles/UI/J2/1mdsb2JhbC9ECgUNGgMfVlsgL2ljb24vMC84MDAwAAAAAAAAAPlZgk8=.jpg\"
238
+ alt=\"Child of Eden\" title=\"Child of Eden\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
239
+ class=\"gameName\"><a href=\"/game/Child-of-Eden/\">Child of Eden</a></p>\n\t\t\t\t\t\t<p>Last
240
+ played at Mon, 01 Jan 1753 00:00:00 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
241
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
242
+ 0%;\"><span title=\"0 gamerscore earned out of a total of 1000 gamerscore\">0/1000</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
243
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
244
+ 0%;\"><span title=\"0 achievements unlocked out of a total of 49 achievements\">0/49</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
245
+ class=\"tr1\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Geometry-Wars-Evolved%C2%B2/\"><img
246
+ src=\"http://tiles.xbox.com/tiles/DQ/Bg/0Gdsb2JhbC9ECgUAGwEfViklL2ljb24vMC84MDAwAAAAAAAAAP9PABI=.jpg\"
247
+ alt=\"Geometry Wars Evolved²\" title=\"Geometry Wars Evolved²\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
248
+ class=\"gameName\"><a href=\"/game/Geometry-Wars-Evolved%C2%B2/\">Geometry
249
+ Wars Evolved²</a></p>\n\t\t\t\t\t\t<p>Last played at Sun, 24 Jul 2011 19:33:40
250
+ GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div class=\"percentage-container\">
251
+ \ \n\t\t\t\t\t\t\t<div style=\"width: 100%;\"><span title=\"200 gamerscore
252
+ earned out of a total of 200 gamerscore\">200/200</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
253
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
254
+ 100%;\"><span title=\"12 achievements unlocked out of a total of 12 achievements\">12/12</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
255
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
256
+ Geometry Wars Evolved² is above average\"><img src=\"/resources/images/icons/up.png\"
257
+ alt=\"Up Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t94</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
258
+ class=\"tr2\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Bulletstorm/\"><img
259
+ src=\"http://tiles.xbox.com/tiles/yZ/Gw/0Gdsb2JhbC9ECgQNGwEfViolL2ljb24vMC84MDAwAAAAAAAAAP+fkdY=.jpg\"
260
+ alt=\"Bulletstorm\" title=\"Bulletstorm\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
261
+ class=\"gameName\"><a href=\"/game/Bulletstorm/\">Bulletstorm</a></p>\n\t\t\t\t\t\t<p>Last
262
+ played at Sun, 24 Jul 2011 17:32:02 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
263
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
264
+ 40%;\"><span title=\"500 gamerscore earned out of a total of 1250 gamerscore\">500/1250</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
265
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
266
+ 46.6666666667%;\"><span title=\"28 achievements unlocked out of a total of
267
+ 60 achievements\">28/60</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
268
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
269
+ Bulletstorm is above average\"><img src=\"/resources/images/icons/up.png\"
270
+ alt=\"Up Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t292</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
271
+ class=\"tr1\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/LUMINES-LIVE%21/\"><img
272
+ src=\"http://tiles.xbox.com/tiles/tP/bz/0Gdsb2JhbC9ECgUAGwEfWSlbL2ljb24vMC84MDAwAAAAAAAAAP-c9qs=.jpg\"
273
+ alt=\"LUMINES LIVE!\" title=\"LUMINES LIVE!\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
274
+ class=\"gameName\"><a href=\"/game/LUMINES-LIVE%21/\">LUMINES LIVE!</a></p>\n\t\t\t\t\t\t<p>Last
275
+ played at Wed, 15 Sep 2010 18:39:52 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
276
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
277
+ 0%;\"><span title=\"0 gamerscore earned out of a total of 200 gamerscore\">0/200</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
278
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
279
+ 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
280
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
281
+ LUMINES LIVE! is below average\"><img src=\"/resources/images/icons/down.png\"
282
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t27</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
283
+ class=\"tr2\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/MEGA-MAN-10/\"><img
284
+ src=\"http://tiles.xbox.com/tiles/xR/Zb/1Gdsb2JhbC9ECgUAGwEfVyomL2ljb24vMC84MDAwAAAAAAAAAPt0Fto=.jpg\"
285
+ alt=\"MEGA MAN 10\" title=\"MEGA MAN 10\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
286
+ class=\"gameName\"><a href=\"/game/MEGA-MAN-10/\">MEGA MAN 10</a></p>\n\t\t\t\t\t\t<p>Last
287
+ played at Sun, 03 Jul 2011 15:55:32 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
288
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
289
+ 0%;\"><span title=\"0 gamerscore earned out of a total of 200 gamerscore\">0/200</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
290
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
291
+ 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
292
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
293
+ MEGA MAN 10 is below average\"><img src=\"/resources/images/icons/down.png\"
294
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t37</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
295
+ class=\"tr1\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Call-of-Duty-Black-Ops/\"><img
296
+ src=\"http://tiles.xbox.com/tiles/2p/0j/1Wdsb2JhbC9ECgQJGgYfVlpWL2ljb24vMC84MDAwAAAAAAAAAPoMncU=.jpg\"
297
+ alt=\"Call of Duty Black Ops\" title=\"Call of Duty Black Ops\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
298
+ class=\"gameName\"><a href=\"/game/Call-of-Duty-Black-Ops/\">Call of Duty
299
+ Black Ops</a></p>\n\t\t\t\t\t\t<p>Last played at Mon, 20 Jun 2011 00:45:48
300
+ GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div class=\"percentage-container\">
301
+ \ \n\t\t\t\t\t\t\t<div style=\"width: 20.2941176471%;\"><span title=\"345
302
+ gamerscore earned out of a total of 1700 gamerscore\">345/1700</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
303
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
304
+ 23.9436619718%;\"><span title=\"17 achievements unlocked out of a total of
305
+ 71 achievements\">17/71</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
306
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
307
+ Call of Duty Black Ops is above average\"><img src=\"/resources/images/icons/up.png\"
308
+ alt=\"Up Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t292</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
309
+ class=\"tr2\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/The-Orange-Box/\"><img
310
+ src=\"http://tiles.xbox.com/tiles/ol/Kj/1mdsb2JhbC9ECgQNGwEfVl8lL2ljb24vMC84MDAwAAAAAAAAAPmMUr0=.jpg\"
311
+ alt=\"The Orange Box\" title=\"The Orange Box\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
312
+ class=\"gameName\"><a href=\"/game/The-Orange-Box/\">The Orange Box</a></p>\n\t\t\t\t\t\t<p>Last
313
+ played at Sun, 12 Jun 2011 11:03:43 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
314
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
315
+ 32%;\"><span title=\"320 gamerscore earned out of a total of 1000 gamerscore\">320/1000</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
316
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
317
+ 40.404040404%;\"><span title=\"40 achievements unlocked out of a total of
318
+ 99 achievements\">40/99</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
319
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
320
+ The Orange Box is above average\"><img src=\"/resources/images/icons/up.png\"
321
+ alt=\"Up Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t234</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
322
+ class=\"tr1\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Portal%3A-Still-Alive/\"><img
323
+ src=\"http://tiles.xbox.com/tiles/Ts/fv/02dsb2JhbC9ECgUAGwEfV1lTL2ljb24vMC84MDAwAAAAAAAAAPzAx1E=.jpg\"
324
+ alt=\"Portal: Still Alive\" title=\"Portal: Still Alive\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
325
+ class=\"gameName\"><a href=\"/game/Portal%3A-Still-Alive/\">Portal: Still
326
+ Alive</a></p>\n\t\t\t\t\t\t<p>Last played at Sun, 08 May 2011 16:31:27 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
327
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
328
+ 52.5%;\"><span title=\"105 gamerscore earned out of a total of 200 gamerscore\">105/200</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
329
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
330
+ 58.3333333333%;\"><span title=\"7 achievements unlocked out of a total of
331
+ 12 achievements\">7/12</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
332
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
333
+ Portal: Still Alive is above average\"><img src=\"/resources/images/icons/up.png\"
334
+ alt=\"Up Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t66</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
335
+ class=\"tr2\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Burnout-Paradise/\"><img
336
+ src=\"http://tiles.xbox.com/tiles/iX/a0/12dsb2JhbC9ECgQNGwEfVl9VL2ljb24vMC84MDAwAAAAAAAAAPibdpY=.jpg\"
337
+ alt=\"Burnout Paradise\" title=\"Burnout Paradise\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
338
+ class=\"gameName\"><a href=\"/game/Burnout-Paradise/\">Burnout Paradise</a></p>\n\t\t\t\t\t\t<p>Last
339
+ played at Sun, 17 Apr 2011 14:55:49 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
340
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
341
+ 11.2%;\"><span title=\"140 gamerscore earned out of a total of 1250 gamerscore\">140/1250</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
342
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
343
+ 18.3333333333%;\"><span title=\"11 achievements unlocked out of a total of
344
+ 60 achievements\">11/60</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
345
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
346
+ Burnout Paradise is below average\"><img src=\"/resources/images/icons/down.png\"
347
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t282</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
348
+ class=\"tr1\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Super-Meat-Boy/\"><img
349
+ src=\"http://tiles.xbox.com/tiles/Lw/-G/0Wdsb2JhbC9ECgUAGwEfL1oiL2ljb24vMC84MDAwAAAAAAAAAP7pDzA=.jpg\"
350
+ alt=\"Super Meat Boy\" title=\"Super Meat Boy\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
351
+ class=\"gameName\"><a href=\"/game/Super-Meat-Boy/\">Super Meat Boy</a></p>\n\t\t\t\t\t\t<p>Last
352
+ played at Tue, 05 Apr 2011 19:17:33 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
353
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
354
+ 25%;\"><span title=\"50 gamerscore earned out of a total of 200 gamerscore\">50/200</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
355
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
356
+ 33.3333333333%;\"><span title=\"4 achievements unlocked out of a total of
357
+ 12 achievements\">4/12</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
358
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
359
+ Super Meat Boy is below average\"><img src=\"/resources/images/icons/down.png\"
360
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t60</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
361
+ class=\"tr2\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Fallout%3A-New-Vegas/\"><img
362
+ src=\"http://tiles.xbox.com/tiles/Rn/ZQ/02dsb2JhbC9ECgQKGgMfWSpTL2ljb24vMC84MDAwAAAAAAAAAPx-dlk=.jpg\"
363
+ alt=\"Fallout: New Vegas\" title=\"Fallout: New Vegas\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
364
+ class=\"gameName\"><a href=\"/game/Fallout%3A-New-Vegas/\">Fallout: New Vegas</a></p>\n\t\t\t\t\t\t<p>Last
365
+ played at Tue, 08 Mar 2011 21:43:00 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
366
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
367
+ 17.793594306%;\"><span title=\"250 gamerscore earned out of a total of 1405
368
+ gamerscore\">250/1405</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div class=\"percentage-container\">
369
+ \ \n\t\t\t\t\t\t\t<div style=\"width: 24.6153846154%;\"><span title=\"16
370
+ achievements unlocked out of a total of 65 achievements\">16/65</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
371
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
372
+ Fallout: New Vegas is below average\"><img src=\"/resources/images/icons/down.png\"
373
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t302</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
374
+ class=\"tr1\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Braid/\"><img
375
+ src=\"http://tiles.xbox.com/tiles/wJ/N1/0Wdsb2JhbC9ECgUAGwEfViwmL2ljb24vMC84MDAwAAAAAAAAAP5ak98=.jpg\"
376
+ alt=\"Braid\" title=\"Braid\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
377
+ class=\"gameName\"><a href=\"/game/Braid/\">Braid</a></p>\n\t\t\t\t\t\t<p>Last
378
+ played at Sun, 06 Mar 2011 22:30:44 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
379
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
380
+ 92.5%;\"><span title=\"185 gamerscore earned out of a total of 200 gamerscore\">185/200</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
381
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
382
+ 91.6666666667%;\"><span title=\"11 achievements unlocked out of a total of
383
+ 12 achievements\">11/12</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
384
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
385
+ Braid is above average\"><img src=\"/resources/images/icons/up.png\" alt=\"Up
386
+ Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t120</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
387
+ class=\"tr2\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/NFS-Hot-Pursuit/\"><img
388
+ src=\"http://tiles.xbox.com/tiles/R8/Uq/0mdsb2JhbC9ECgQNGwEfV19QL2ljb24vMC84MDAwAAAAAAAAAP0FxVg=.jpg\"
389
+ alt=\"NFS Hot Pursuit\" title=\"NFS Hot Pursuit\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
390
+ class=\"gameName\"><a href=\"/game/NFS-Hot-Pursuit/\">NFS Hot Pursuit</a></p>\n\t\t\t\t\t\t<p>Last
391
+ played at Fri, 11 Feb 2011 16:51:34 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
392
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
393
+ 0.719424460432%;\"><span title=\"10 gamerscore earned out of a total of 1390
394
+ gamerscore\">10/1390</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div class=\"percentage-container\">
395
+ \ \n\t\t\t\t\t\t\t<div style=\"width: 1.38888888889%;\"><span title=\"1
396
+ achievements unlocked out of a total of 72 achievements\">1/72</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
397
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
398
+ NFS Hot Pursuit is below average\"><img src=\"/resources/images/icons/down.png\"
399
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t272</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
400
+ class=\"tr1\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/LIMBO/\"><img
401
+ src=\"http://tiles.xbox.com/tiles/uT/rl/1Wdsb2JhbC9ECgUAGwEfVytSL2ljb24vMC84MDAwAAAAAAAAAPrKOqY=.jpg\"
402
+ alt=\"LIMBO\" title=\"LIMBO\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
403
+ class=\"gameName\"><a href=\"/game/LIMBO/\">LIMBO</a></p>\n\t\t\t\t\t\t<p>Last
404
+ played at Sat, 25 Dec 2010 23:49:46 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
405
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
406
+ 60%;\"><span title=\"120 gamerscore earned out of a total of 200 gamerscore\">120/200</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
407
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
408
+ 33.3333333333%;\"><span title=\"4 achievements unlocked out of a total of
409
+ 12 achievements\">4/12</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
410
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
411
+ LIMBO is above average\"><img src=\"/resources/images/icons/up.png\" alt=\"Up
412
+ Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t100</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
413
+ class=\"tr2\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/PAC-MAN-CE-DX/\"><img
414
+ src=\"http://tiles.xbox.com/tiles/YV/Ua/12dsb2JhbC9ECgUAGwEfL1cgL2ljb24vMC84MDAwAAAAAAAAAPg1VX4=.jpg\"
415
+ alt=\"PAC-MAN CE DX\" title=\"PAC-MAN CE DX\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
416
+ class=\"gameName\"><a href=\"/game/PAC-MAN-CE-DX/\">PAC-MAN CE DX</a></p>\n\t\t\t\t\t\t<p>Last
417
+ played at Sat, 04 Dec 2010 15:12:27 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
418
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
419
+ 45%;\"><span title=\"90 gamerscore earned out of a total of 200 gamerscore\">90/200</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
420
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
421
+ 58.3333333333%;\"><span title=\"7 achievements unlocked out of a total of
422
+ 12 achievements\">7/12</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
423
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
424
+ PAC-MAN CE DX is below average\"><img src=\"/resources/images/icons/down.png\"
425
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t142</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
426
+ class=\"tr1\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/SuperStreetFighter2THD/\"><img
427
+ src=\"http://tiles.xbox.com/tiles/gt/vL/0mdsb2JhbC9ECgUAGwEfVi5XL2ljb24vMC84MDAwAAAAAAAAAP3k250=.jpg\"
428
+ alt=\"SuperStreetFighter2THD\" title=\"SuperStreetFighter2THD\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
429
+ class=\"gameName\"><a href=\"/game/SuperStreetFighter2THD/\">SuperStreetFighter2THD</a></p>\n\t\t\t\t\t\t<p>Last
430
+ played at Wed, 24 Nov 2010 23:43:59 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
431
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
432
+ 15%;\"><span title=\"30 gamerscore earned out of a total of 200 gamerscore\">30/200</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
433
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
434
+ 16.6666666667%;\"><span title=\"2 achievements unlocked out of a total of
435
+ 12 achievements\">2/12</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
436
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
437
+ SuperStreetFighter2THD is below average\"><img src=\"/resources/images/icons/down.png\"
438
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t61</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
439
+ class=\"tr2\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/BAYONETTA/\"><img
440
+ src=\"http://tiles.xbox.com/tiles/cm/Xf/0Wdsb2JhbC9ECgULGwUfVl5QL2ljb24vMC84MDAwAAAAAAAAAP7wZW0=.jpg\"
441
+ alt=\"BAYONETTA\" title=\"BAYONETTA\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
442
+ class=\"gameName\"><a href=\"/game/BAYONETTA/\">BAYONETTA</a></p>\n\t\t\t\t\t\t<p>Last
443
+ played at Sun, 21 Nov 2010 10:41:47 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
444
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
445
+ 2.5%;\"><span title=\"25 gamerscore earned out of a total of 1000 gamerscore\">25/1000</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
446
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
447
+ 6%;\"><span title=\"3 achievements unlocked out of a total of 50 achievements\">3/50</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
448
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
449
+ BAYONETTA is below average\"><img src=\"/resources/images/icons/down.png\"
450
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t325</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
451
+ class=\"tr1\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Dead-Space%E2%84%A2/\"><img
452
+ src=\"http://tiles.xbox.com/tiles/lG/Rn/1Gdsb2JhbC9ECgQNGwEfVlpUL2ljb24vMC84MDAwAAAAAAAAAPtIZIs=.jpg\"
453
+ alt=\"Dead Spaceâ\x84¢\" title=\"Dead Spaceâ\x84¢\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
454
+ class=\"gameName\"><a href=\"/game/Dead-Space%E2%84%A2/\">Dead Spaceâ\x84¢</a></p>\n\t\t\t\t\t\t<p>Last
455
+ played at Fri, 12 Nov 2010 02:08:01 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
456
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
457
+ 40%;\"><span title=\"400 gamerscore earned out of a total of 1000 gamerscore\">400/1000</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
458
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
459
+ 41.6666666667%;\"><span title=\"20 achievements unlocked out of a total of
460
+ 48 achievements\">20/48</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
461
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
462
+ Dead Spaceâ\x84¢ is below average\"><img src=\"/resources/images/icons/down.png\"
463
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t421</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
464
+ class=\"tr2\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/STREET-FIGHTER-IV/\"><img
465
+ src=\"http://tiles.xbox.com/tiles/sx/0O/1Gdsb2JhbC9ECgQLGwMfWSpSL2ljb24vMC84MDAwAAAAAAAAAPshHaw=.jpg\"
466
+ alt=\"STREET FIGHTER IV\" title=\"STREET FIGHTER IV\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
467
+ class=\"gameName\"><a href=\"/game/STREET-FIGHTER-IV/\">STREET FIGHTER IV</a></p>\n\t\t\t\t\t\t<p>Last
468
+ played at Sun, 24 Oct 2010 22:11:59 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
469
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
470
+ 42%;\"><span title=\"420 gamerscore earned out of a total of 1000 gamerscore\">420/1000</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
471
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
472
+ 52.0833333333%;\"><span title=\"25 achievements unlocked out of a total of
473
+ 48 achievements\">25/48</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
474
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
475
+ STREET FIGHTER IV is above average\"><img src=\"/resources/images/icons/up.png\"
476
+ alt=\"Up Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t172</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
477
+ class=\"tr1\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/LOST-PLANET-2/\"><img
478
+ src=\"http://tiles.xbox.com/tiles/0H/r3/0Wdsb2JhbC9ECgQLGwMfWSonL2ljb24vMC84MDAwAAAAAAAAAP7Yes8=.jpg\"
479
+ alt=\"LOST PLANET 2\" title=\"LOST PLANET 2\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
480
+ class=\"gameName\"><a href=\"/game/LOST-PLANET-2/\">LOST PLANET 2</a></p>\n\t\t\t\t\t\t<p>Last
481
+ played at Sat, 09 Oct 2010 14:00:22 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
482
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
483
+ 1%;\"><span title=\"10 gamerscore earned out of a total of 1000 gamerscore\">10/1000</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
484
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
485
+ 2%;\"><span title=\"1 achievements unlocked out of a total of 50 achievements\">1/50</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
486
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
487
+ LOST PLANET 2 is below average\"><img src=\"/resources/images/icons/down.png\"
488
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t108</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
489
+ class=\"tr2\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/N%2B/\"><img
490
+ src=\"http://tiles.xbox.com/tiles/rf/XD/1mdsb2JhbC9ECgUAGwEfVlogL2ljb24vMC84MDAwAAAAAAAAAPns9bI=.jpg\"
491
+ alt=\"N+\" title=\"N+\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p class=\"gameName\"><a
492
+ href=\"/game/N%2B/\">N+</a></p>\n\t\t\t\t\t\t<p>Last played at Sat, 09 Oct
493
+ 2010 09:25:14 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div class=\"percentage-container\">
494
+ \ \n\t\t\t\t\t\t\t<div style=\"width: 22.5%;\"><span title=\"45 gamerscore
495
+ earned out of a total of 200 gamerscore\">45/200</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
496
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
497
+ 25%;\"><span title=\"3 achievements unlocked out of a total of 12 achievements\">3/12</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
498
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
499
+ N+ is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down
500
+ Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t61</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
501
+ class=\"tr1\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/SCOTT-PILGRIM-THE-GAME/\"><img
502
+ src=\"http://tiles.xbox.com/tiles/i-/B6/0mdsb2JhbC9ECgUAGwEfL10gL2ljb24vMC84MDAwAAAAAAAAAP1V8JQ=.jpg\"
503
+ alt=\"SCOTT PILGRIM THE GAME\" title=\"SCOTT PILGRIM THE GAME\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
504
+ class=\"gameName\"><a href=\"/game/SCOTT-PILGRIM-THE-GAME/\">SCOTT PILGRIM
505
+ THE GAME</a></p>\n\t\t\t\t\t\t<p>Last played at Fri, 08 Oct 2010 22:41:37
506
+ GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div class=\"percentage-container\">
507
+ \ \n\t\t\t\t\t\t\t<div style=\"width: 8%;\"><span title=\"20 gamerscore
508
+ earned out of a total of 250 gamerscore\">20/250</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
509
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
510
+ 13.3333333333%;\"><span title=\"2 achievements unlocked out of a total of
511
+ 15 achievements\">2/15</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
512
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
513
+ SCOTT PILGRIM THE GAME is below average\"><img src=\"/resources/images/icons/down.png\"
514
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t68</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
515
+ class=\"tr2\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/E4/\"><img
516
+ src=\"http://tiles.xbox.com/tiles/77/19/1Wdsb2JhbC9ECgUAGwEfVlhRL2ljb24vMC84MDAwAAAAAAAAAPpSvfA=.jpg\"
517
+ alt=\"E4\" title=\"E4\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p class=\"gameName\"><a
518
+ href=\"/game/E4/\">E4</a></p>\n\t\t\t\t\t\t<p>Last played at Wed, 15 Sep 2010
519
+ 18:48:17 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div class=\"percentage-container\">
520
+ \ \n\t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 gamerscore
521
+ earned out of a total of 200 gamerscore\">0/200</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
522
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
523
+ 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
524
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
525
+ E4 is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down
526
+ Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t40</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
527
+ class=\"tr1\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Battlefield%3A-Bad-Co.-2/\"><img
528
+ src=\"http://tiles.xbox.com/tiles/v1/Lg/02dsb2JhbC9ECgQNGwEfVi5bL2ljb24vMC84MDAwAAAAAAAAAPzPUqA=.jpg\"
529
+ alt=\"Battlefield: Bad Co. 2\" title=\"Battlefield: Bad Co. 2\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
530
+ class=\"gameName\"><a href=\"/game/Battlefield%3A-Bad-Co.-2/\">Battlefield:
531
+ Bad Co. 2</a></p>\n\t\t\t\t\t\t<p>Last played at Sun, 05 Sep 2010 14:06:01
532
+ GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div class=\"percentage-container\">
533
+ \ \n\t\t\t\t\t\t\t<div style=\"width: 2.0979020979%;\"><span title=\"30
534
+ gamerscore earned out of a total of 1430 gamerscore\">30/1430</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
535
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
536
+ 2.77777777778%;\"><span title=\"2 achievements unlocked out of a total of
537
+ 72 achievements\">2/72</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
538
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
539
+ Battlefield: Bad Co. 2 is below average\"><img src=\"/resources/images/icons/down.png\"
540
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t456</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
541
+ class=\"tr2\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Mercenaries-2/\"><img
542
+ src=\"http://tiles.xbox.com/tiles/V+/St/0Wdsb2JhbC9ECgQNGwEfVl1bL2ljb24vMC84MDAwAAAAAAAAAP6C5Eg=.jpg\"
543
+ alt=\"Mercenaries 2\" title=\"Mercenaries 2\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
544
+ class=\"gameName\"><a href=\"/game/Mercenaries-2/\">Mercenaries 2</a></p>\n\t\t\t\t\t\t<p>Last
545
+ played at Sat, 14 Aug 2010 15:15:20 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
546
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
547
+ 24%;\"><span title=\"240 gamerscore earned out of a total of 1000 gamerscore\">240/1000</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
548
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
549
+ 27.5%;\"><span title=\"11 achievements unlocked out of a total of 40 achievements\">11/40</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
550
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
551
+ Mercenaries 2 is below average\"><img src=\"/resources/images/icons/down.png\"
552
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t391</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
553
+ class=\"tr1\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Halo-3%3A-ODST/\"><img
554
+ src=\"http://tiles.xbox.com/tiles/97/yQ/12dsb2JhbC9ECgR8GgMfVlhUL2ljb24vMC84MDAwAAAAAAAAAPi-vOg=.jpg\"
555
+ alt=\"Halo 3: ODST\" title=\"Halo 3: ODST\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
556
+ class=\"gameName\"><a href=\"/game/Halo-3%3A-ODST/\">Halo 3: ODST</a></p>\n\t\t\t\t\t\t<p>Last
557
+ played at Sun, 08 Aug 2010 18:50:59 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
558
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
559
+ 76%;\"><span title=\"760 gamerscore earned out of a total of 1000 gamerscore\">760/1000</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
560
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
561
+ 72.3404255319%;\"><span title=\"34 achievements unlocked out of a total of
562
+ 47 achievements\">34/47</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
563
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
564
+ Halo 3: ODST is above average\"><img src=\"/resources/images/icons/up.png\"
565
+ alt=\"Up Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t390</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
566
+ class=\"tr2\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Halo-3/\"><img
567
+ src=\"http://tiles.xbox.com/tiles/zS/3N/1Wdsb2JhbC9ECgR8GgMfWSpVL2ljb24vMC84MDAwAAAAAAAAAPriLdI=.jpg\"
568
+ alt=\"Halo 3\" title=\"Halo 3\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
569
+ class=\"gameName\"><a href=\"/game/Halo-3/\">Halo 3</a></p>\n\t\t\t\t\t\t<p>Last
570
+ played at Mon, 12 Jul 2010 21:22:33 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
571
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
572
+ 41.1428571429%;\"><span title=\"720 gamerscore earned out of a total of 1750
573
+ gamerscore\">720/1750</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div class=\"percentage-container\">
574
+ \ \n\t\t\t\t\t\t\t<div style=\"width: 44.3037974684%;\"><span title=\"35
575
+ achievements unlocked out of a total of 79 achievements\">35/79</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
576
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
577
+ Halo 3 is above average\"><img src=\"/resources/images/icons/up.png\" alt=\"Up
578
+ Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t521</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
579
+ class=\"tr1\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/NINJA-GAIDEN-2/\"><img
580
+ src=\"http://tiles.xbox.com/tiles/Rf/Lj/1mdsb2JhbC9ECgUMGwMfWStWL2ljb24vMC84MDAwAAAAAAAAAPnM8lo=.jpg\"
581
+ alt=\"NINJA GAIDEN 2\" title=\"NINJA GAIDEN 2\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
582
+ class=\"gameName\"><a href=\"/game/NINJA-GAIDEN-2/\">NINJA GAIDEN 2</a></p>\n\t\t\t\t\t\t<p>Last
583
+ played at Thu, 18 Jun 2009 20:06:57 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
584
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
585
+ 56%;\"><span title=\"700 gamerscore earned out of a total of 1250 gamerscore\">700/1250</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
586
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
587
+ 65.7142857143%;\"><span title=\"46 achievements unlocked out of a total of
588
+ 70 achievements\">46/70</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
589
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
590
+ NINJA GAIDEN 2 is above average\"><img src=\"/resources/images/icons/up.png\"
591
+ alt=\"Up Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t257</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
592
+ class=\"tr2\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Crackdown/\"><img
593
+ src=\"http://tiles.xbox.com/tiles/WU/EQ/1Wdsb2JhbC9ECgR8GgMfWSsgL2ljb24vMC84MDAwAAAAAAAAAPo-QUY=.jpg\"
594
+ alt=\"Crackdown\" title=\"Crackdown\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
595
+ class=\"gameName\"><a href=\"/game/Crackdown/\">Crackdown</a></p>\n\t\t\t\t\t\t<p>Last
596
+ played at Sat, 12 Jun 2010 19:24:45 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
597
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
598
+ 30.8%;\"><span title=\"385 gamerscore earned out of a total of 1250 gamerscore\">385/1250</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
599
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
600
+ 46%;\"><span title=\"23 achievements unlocked out of a total of 50 achievements\">23/50</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
601
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
602
+ Crackdown is above average\"><img src=\"/resources/images/icons/up.png\" alt=\"Up
603
+ Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t368</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
604
+ class=\"tr1\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Left-4-Dead/\"><img
605
+ src=\"http://tiles.xbox.com/tiles/j9/MR/1mdsb2JhbC9ECgQNGwEfVlxTL2ljb24vMC84MDAwAAAAAAAAAPk+05A=.jpg\"
606
+ alt=\"Left 4 Dead\" title=\"Left 4 Dead\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
607
+ class=\"gameName\"><a href=\"/game/Left-4-Dead/\">Left 4 Dead</a></p>\n\t\t\t\t\t\t<p>Last
608
+ played at Sun, 28 Mar 2010 13:21:37 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
609
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
610
+ 8%;\"><span title=\"120 gamerscore earned out of a total of 1500 gamerscore\">120/1500</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
611
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
612
+ 13.8461538462%;\"><span title=\"9 achievements unlocked out of a total of
613
+ 65 achievements\">9/65</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
614
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
615
+ Left 4 Dead is below average\"><img src=\"/resources/images/icons/down.png\"
616
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t417</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
617
+ class=\"tr2\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Darksiders/\"><img
618
+ src=\"http://tiles.xbox.com/tiles/As/84/1mdsb2JhbC9ECgUMGgEfWSpVL2ljb24vMC84MDAwAAAAAAAAAPkXzx0=.jpg\"
619
+ alt=\"Darksiders\" title=\"Darksiders\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
620
+ class=\"gameName\"><a href=\"/game/Darksiders/\">Darksiders</a></p>\n\t\t\t\t\t\t<p>Last
621
+ played at Wed, 24 Mar 2010 22:35:40 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
622
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
623
+ 34.5%;\"><span title=\"345 gamerscore earned out of a total of 1000 gamerscore\">345/1000</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
624
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
625
+ 46.511627907%;\"><span title=\"20 achievements unlocked out of a total of
626
+ 43 achievements\">20/43</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
627
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
628
+ Darksiders is below average\"><img src=\"/resources/images/icons/down.png\"
629
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t391</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
630
+ class=\"tr1\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/RESIDENT-EVIL-5/\"><img
631
+ src=\"http://tiles.xbox.com/tiles/DF/XE/1Wdsb2JhbC9ECgQLGwMfWStXL2ljb24vMC84MDAwAAAAAAAAAPrrVRM=.jpg\"
632
+ alt=\"RESIDENT EVIL 5\" title=\"RESIDENT EVIL 5\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
633
+ class=\"gameName\"><a href=\"/game/RESIDENT-EVIL-5/\">RESIDENT EVIL 5</a></p>\n\t\t\t\t\t\t<p>Last
634
+ played at Sun, 31 Jan 2010 00:57:14 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
635
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
636
+ 2.14285714286%;\"><span title=\"30 gamerscore earned out of a total of 1400
637
+ gamerscore\">30/1400</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div class=\"percentage-container\">
638
+ \ \n\t\t\t\t\t\t\t<div style=\"width: 2.85714285714%;\"><span title=\"2
639
+ achievements unlocked out of a total of 70 achievements\">2/70</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
640
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
641
+ RESIDENT EVIL 5 is below average\"><img src=\"/resources/images/icons/down.png\"
642
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t476</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
643
+ class=\"tr2\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Fable-II/\"><img
644
+ src=\"http://tiles.xbox.com/tiles/I8/gL/1Wdsb2JhbC9ECgR8GgMfWSlSL2ljb24vMC84MDAwAAAAAAAAAPokyDw=.jpg\"
645
+ alt=\"Fable II\" title=\"Fable II\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
646
+ class=\"gameName\"><a href=\"/game/Fable-II/\">Fable II</a></p>\n\t\t\t\t\t\t<p>Last
647
+ played at Thu, 28 Jan 2010 19:37:10 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
648
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
649
+ 17.037037037%;\"><span title=\"230 gamerscore earned out of a total of 1350
650
+ gamerscore\">230/1350</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div class=\"percentage-container\">
651
+ \ \n\t\t\t\t\t\t\t<div style=\"width: 18.1818181818%;\"><span title=\"12
652
+ achievements unlocked out of a total of 66 achievements\">12/66</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
653
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
654
+ Fable II is below average\"><img src=\"/resources/images/icons/down.png\"
655
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t520</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
656
+ class=\"tr1\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Borderlands/\"><img
657
+ src=\"http://tiles.xbox.com/tiles/ot/8Y/0Gdsb2JhbC9ECgUMGgQfWSpUL2ljb24vMC84MDAwAAAAAAAAAP83370=.jpg\"
658
+ alt=\"Borderlands\" title=\"Borderlands\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
659
+ class=\"gameName\"><a href=\"/game/Borderlands/\">Borderlands</a></p>\n\t\t\t\t\t\t<p>Last
660
+ played at Wed, 06 Jan 2010 19:34:56 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
661
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
662
+ 6%;\"><span title=\"105 gamerscore earned out of a total of 1750 gamerscore\">105/1750</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
663
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
664
+ 8.75%;\"><span title=\"7 achievements unlocked out of a total of 80 achievements\">7/80</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
665
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
666
+ Borderlands is below average\"><img src=\"/resources/images/icons/down.png\"
667
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t697</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
668
+ class=\"tr2\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Halo-Waypoint/\"><img
669
+ src=\"http://tiles.xbox.com/tiles/kN/F2/12dsb2JhbC9ECgR8GgMfViwmL2ljb24vMC84MDAwAAAAAAAAAPhZ0Y8=.jpg\"
670
+ alt=\"Halo Waypoint\" title=\"Halo Waypoint\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
671
+ class=\"gameName\"><a href=\"/game/Halo-Waypoint/\">Halo Waypoint</a></p>\n\t\t\t\t\t\t<p>Last
672
+ played at Mon, 23 Nov 2009 21:03:08 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
673
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
674
+ 0%;\"><span title=\"0 gamerscore earned out of a total of 0 gamerscore\">0/0</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
675
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
676
+ 0%;\"><span title=\"0 achievements unlocked out of a total of 0 achievements\">0/0</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
677
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
678
+ Halo Waypoint is above average\"><img src=\"/resources/images/icons/up.png\"
679
+ alt=\"Up Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t0</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
680
+ class=\"tr1\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Call-of-Duty-4/\"><img
681
+ src=\"http://tiles.xbox.com/tiles/sa/Fy/1mdsb2JhbC9ECgQJGgYfWSpVL2ljb24vMC84MDAwAAAAAAAAAPldoa4=.jpg\"
682
+ alt=\"Call of Duty 4\" title=\"Call of Duty 4\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
683
+ class=\"gameName\"><a href=\"/game/Call-of-Duty-4/\">Call of Duty 4</a></p>\n\t\t\t\t\t\t<p>Last
684
+ played at Tue, 10 Nov 2009 23:09:50 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
685
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
686
+ 10%;\"><span title=\"100 gamerscore earned out of a total of 1000 gamerscore\">100/1000</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
687
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
688
+ 13.5135135135%;\"><span title=\"5 achievements unlocked out of a total of
689
+ 37 achievements\">5/37</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
690
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
691
+ Call of Duty 4 is below average\"><img src=\"/resources/images/icons/down.png\"
692
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t361</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
693
+ class=\"tr2\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/%5BPROTOTYPE%5D%E2%84%A2/\"><img
694
+ src=\"http://tiles.xbox.com/tiles/Br/IQ/0Wdsb2JhbC9ECgQJGgYfVlsmL2ljb24vMC84MDAwAAAAAAAAAP4-shk=.jpg\"
695
+ alt=\"[PROTOTYPE]â\x84¢\" title=\"[PROTOTYPE]â\x84¢\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
696
+ class=\"gameName\"><a href=\"/game/%5BPROTOTYPE%5D%E2%84%A2/\">[PROTOTYPE]â\x84¢</a></p>\n\t\t\t\t\t\t<p>Last
697
+ played at Wed, 04 Nov 2009 20:40:25 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
698
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
699
+ 3%;\"><span title=\"30 gamerscore earned out of a total of 1000 gamerscore\">30/1000</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
700
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
701
+ 7.5%;\"><span title=\"3 achievements unlocked out of a total of 40 achievements\">3/40</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
702
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
703
+ [PROTOTYPE]â\x84¢ is below average\"><img src=\"/resources/images/icons/down.png\"
704
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t221</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
705
+ class=\"tr1\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Geometry-Wars-Evolved/\"><img
706
+ src=\"http://tiles.xbox.com/tiles/Zs/of/0Gdsb2JhbC9ECgUAGwEfWSonL2ljb24vMC84MDAwAAAAAAAAAP8wynk=.jpg\"
707
+ alt=\"Geometry Wars Evolved\" title=\"Geometry Wars Evolved\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
708
+ class=\"gameName\"><a href=\"/game/Geometry-Wars-Evolved/\">Geometry Wars
709
+ Evolved</a></p>\n\t\t\t\t\t\t<p>Last played at Tue, 06 Oct 2009 19:17:57 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
710
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
711
+ 75%;\"><span title=\"150 gamerscore earned out of a total of 200 gamerscore\">150/200</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
712
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
713
+ 83.3333333333%;\"><span title=\"10 achievements unlocked out of a total of
714
+ 12 achievements\">10/12</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
715
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
716
+ Geometry Wars Evolved is above average\"><img src=\"/resources/images/icons/up.png\"
717
+ alt=\"Up Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t27</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
718
+ class=\"tr2\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Gears-of-War-2/\"><img
719
+ src=\"http://tiles.xbox.com/tiles/EQ/uS/12dsb2JhbC9ECgR8GgMfVl0nL2ljb24vMC84MDAwAAAAAAAAAPi9Cw4=.jpg\"
720
+ alt=\"Gears of War 2\" title=\"Gears of War 2\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
721
+ class=\"gameName\"><a href=\"/game/Gears-of-War-2/\">Gears of War 2</a></p>\n\t\t\t\t\t\t<p>Last
722
+ played at Fri, 20 Feb 2009 23:11:45 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
723
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
724
+ 26.2857142857%;\"><span title=\"460 gamerscore earned out of a total of 1750
725
+ gamerscore\">460/1750</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div class=\"percentage-container\">
726
+ \ \n\t\t\t\t\t\t\t<div style=\"width: 36.7088607595%;\"><span title=\"29
727
+ achievements unlocked out of a total of 79 achievements\">29/79</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
728
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
729
+ Gears of War 2 is above average\"><img src=\"/resources/images/icons/up.png\"
730
+ alt=\"Up Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t425</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
731
+ class=\"tr1\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Fallout-3/\"><img
732
+ src=\"http://tiles.xbox.com/tiles/+T/6a/0mdsb2JhbC9ECgQKGgMfWStWL2ljb24vMC84MDAwAAAAAAAAAP21PuY=.jpg\"
733
+ alt=\"Fallout 3\" title=\"Fallout 3\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
734
+ class=\"gameName\"><a href=\"/game/Fallout-3/\">Fallout 3</a></p>\n\t\t\t\t\t\t<p>Last
735
+ played at Fri, 04 Sep 2009 23:12:03 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
736
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
737
+ 42.5806451613%;\"><span title=\"660 gamerscore earned out of a total of 1550
738
+ gamerscore\">660/1550</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div class=\"percentage-container\">
739
+ \ \n\t\t\t\t\t\t\t<div style=\"width: 47.2222222222%;\"><span title=\"34
740
+ achievements unlocked out of a total of 72 achievements\">34/72</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
741
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
742
+ Fallout 3 is above average\"><img src=\"/resources/images/icons/up.png\" alt=\"Up
743
+ Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t510</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
744
+ class=\"tr2\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Guitar-Hero-III/\"><img
745
+ src=\"http://tiles.xbox.com/tiles/L8/b-/0Wdsb2JhbC9ECgQJGgYfWSlUL2ljb24vMC84MDAwAAAAAAAAAP7QxjA=.jpg\"
746
+ alt=\"Guitar Hero III\" title=\"Guitar Hero III\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
747
+ class=\"gameName\"><a href=\"/game/Guitar-Hero-III/\">Guitar Hero III</a></p>\n\t\t\t\t\t\t<p>Last
748
+ played at Fri, 27 Feb 2009 20:48:46 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
749
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
750
+ 0.5%;\"><span title=\"5 gamerscore earned out of a total of 1000 gamerscore\">5/1000</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
751
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
752
+ 1.69491525424%;\"><span title=\"1 achievements unlocked out of a total of
753
+ 59 achievements\">1/59</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
754
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
755
+ Guitar Hero III is below average\"><img src=\"/resources/images/icons/down.png\"
756
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t107</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
757
+ class=\"tr1\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Castle-Crashers/\"><img
758
+ src=\"http://tiles.xbox.com/tiles/zD/2A/12dsb2JhbC9ECgUAGwEfVi1UL2ljb24vMC84MDAwAAAAAAAAAPivPdM=.jpg\"
759
+ alt=\"Castle Crashers\" title=\"Castle Crashers\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
760
+ class=\"gameName\"><a href=\"/game/Castle-Crashers/\">Castle Crashers</a></p>\n\t\t\t\t\t\t<p>Last
761
+ played at Sun, 28 Dec 2008 19:34:54 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
762
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
763
+ 42.5%;\"><span title=\"85 gamerscore earned out of a total of 200 gamerscore\">85/200</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
764
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
765
+ 41.6666666667%;\"><span title=\"5 achievements unlocked out of a total of
766
+ 12 achievements\">5/12</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
767
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
768
+ Castle Crashers is above average\"><img src=\"/resources/images/icons/up.png\"
769
+ alt=\"Up Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t82</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
770
+ class=\"tr2\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/GTA-IV/\"><img
771
+ src=\"http://tiles.xbox.com/tiles/nL/sY/0mdsb2JhbC9ECgUMGgQfWSlRL2ljb24vMC84MDAwAAAAAAAAAP03u4M=.jpg\"
772
+ alt=\"GTA IV\" title=\"GTA IV\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
773
+ class=\"gameName\"><a href=\"/game/GTA-IV/\">GTA IV</a></p>\n\t\t\t\t\t\t<p>Last
774
+ played at Fri, 27 Feb 2009 21:34:36 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
775
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
776
+ 5.66666666667%;\"><span title=\"85 gamerscore earned out of a total of 1500
777
+ gamerscore\">85/1500</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div class=\"percentage-container\">
778
+ \ \n\t\t\t\t\t\t\t<div style=\"width: 9.23076923077%;\"><span title=\"6
779
+ achievements unlocked out of a total of 65 achievements\">6/65</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
780
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
781
+ GTA IV is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down
782
+ Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t230</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
783
+ class=\"tr1\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Worms/\"><img
784
+ src=\"http://tiles.xbox.com/tiles/eY/FY/1Gdsb2JhbC9ECgUAGwEfWSsmL2ljb24vMC84MDAwAAAAAAAAAPt3gWY=.jpg\"
785
+ alt=\"Worms\" title=\"Worms\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
786
+ class=\"gameName\"><a href=\"/game/Worms/\">Worms</a></p>\n\t\t\t\t\t\t<p>Last
787
+ played at Sun, 22 Feb 2009 03:57:45 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
788
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
789
+ 100%;\"><span title=\"200 gamerscore earned out of a total of 200 gamerscore\">200/200</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
790
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
791
+ 100%;\"><span title=\"12 achievements unlocked out of a total of 12 achievements\">12/12</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
792
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
793
+ Worms is above average\"><img src=\"/resources/images/icons/up.png\" alt=\"Up
794
+ Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t68</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
795
+ class=\"tr2\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Gears-of-War/\"><img
796
+ src=\"http://tiles.xbox.com/tiles/Au/dM/02dsb2JhbC9ECgR8GgMfWStWL2ljb24vMC84MDAwAAAAAAAAAPxj5x0=.jpg\"
797
+ alt=\"Gears of War\" title=\"Gears of War\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
798
+ class=\"gameName\"><a href=\"/game/Gears-of-War/\">Gears of War</a></p>\n\t\t\t\t\t\t<p>Last
799
+ played at Sat, 28 Jun 2008 15:01:31 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
800
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
801
+ 9.6%;\"><span title=\"120 gamerscore earned out of a total of 1250 gamerscore\">120/1250</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
802
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
803
+ 19.298245614%;\"><span title=\"11 achievements unlocked out of a total of
804
+ 57 achievements\">11/57</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
805
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
806
+ Gears of War is below average\"><img src=\"/resources/images/icons/down.png\"
807
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t266</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
808
+ class=\"tr1\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Pac-Man-C.E./\"><img
809
+ src=\"http://tiles.xbox.com/tiles/p-/6T/0Wdsb2JhbC9ECgUAGwEfVlhUL2ljb24vMC84MDAwAAAAAAAAAP68-rg=.jpg\"
810
+ alt=\"Pac-Man C.E.\" title=\"Pac-Man C.E.\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
811
+ class=\"gameName\"><a href=\"/game/Pac-Man-C.E./\">Pac-Man C.E.</a></p>\n\t\t\t\t\t\t<p>Last
812
+ played at Sat, 17 Jan 2009 01:23:19 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
813
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
814
+ 85%;\"><span title=\"170 gamerscore earned out of a total of 200 gamerscore\">170/200</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
815
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
816
+ 91.6666666667%;\"><span title=\"11 achievements unlocked out of a total of
817
+ 12 achievements\">11/12</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
818
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
819
+ Pac-Man C.E. is above average\"><img src=\"/resources/images/icons/up.png\"
820
+ alt=\"Up Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t49</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
821
+ class=\"tr2\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/TC%27s-RainbowSix-Vegas/\"><img
822
+ src=\"http://tiles.xbox.com/tiles/YB/h7/02dsb2JhbC9ECgUNGgMfWStVL2ljb24vMC84MDAwAAAAAAAAAPxUGH8=.jpg\"
823
+ alt=\"TC's RainbowSix Vegas\" title=\"TC's RainbowSix Vegas\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
824
+ class=\"gameName\"><a href=\"/game/TC%27s-RainbowSix-Vegas/\">TC's RainbowSix
825
+ Vegas</a></p>\n\t\t\t\t\t\t<p>Last played at Mon, 01 Jan 1753 00:00:00 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
826
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
827
+ 0%;\"><span title=\"0 gamerscore earned out of a total of 1000 gamerscore\">0/1000</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
828
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
829
+ 0%;\"><span title=\"0 achievements unlocked out of a total of 36 achievements\">0/36</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
830
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
831
+ TC's RainbowSix Vegas is below average\"><img src=\"/resources/images/icons/down.png\"
832
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t198</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
833
+ class=\"tr1\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/DEAD-RISING/\"><img
834
+ src=\"http://tiles.xbox.com/tiles/fN/eP/0mdsb2JhbC9ECgQLGwMfWStRL2ljb24vMC84MDAwAAAAAAAAAP2g12M=.jpg\"
835
+ alt=\"DEAD RISING\" title=\"DEAD RISING\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
836
+ class=\"gameName\"><a href=\"/game/DEAD-RISING/\">DEAD RISING</a></p>\n\t\t\t\t\t\t<p>Last
837
+ played at Wed, 28 May 2008 18:56:06 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
838
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
839
+ 18%;\"><span title=\"180 gamerscore earned out of a total of 1000 gamerscore\">180/1000</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
840
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
841
+ 18%;\"><span title=\"9 achievements unlocked out of a total of 50 achievements\">9/50</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
842
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
843
+ DEAD RISING is below average\"><img src=\"/resources/images/icons/down.png\"
844
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t240</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
845
+ class=\"tr2\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/skate./\"><img
846
+ src=\"http://tiles.xbox.com/tiles/Nj/5+/1mdsb2JhbC9ECgQNGwEfVl5QL2ljb24vMC84MDAwAAAAAAAAAPlRPik=.jpg\"
847
+ alt=\"skate.\" title=\"skate.\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
848
+ class=\"gameName\"><a href=\"/game/skate./\">skate.</a></p>\n\t\t\t\t\t\t<p>Last
849
+ played at Wed, 07 May 2008 20:25:01 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
850
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
851
+ 2%;\"><span title=\"20 gamerscore earned out of a total of 1000 gamerscore\">20/1000</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
852
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
853
+ 6.81818181818%;\"><span title=\"3 achievements unlocked out of a total of
854
+ 44 achievements\">3/44</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
855
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
856
+ skate. is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down
857
+ Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t171</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
858
+ class=\"tr1\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/BioShock/\"><img
859
+ src=\"http://tiles.xbox.com/tiles/4i/qM/0Wdsb2JhbC9ECgUMGgQfWStbL2ljb24vMC84MDAwAAAAAAAAAP6jKv0=.jpg\"
860
+ alt=\"BioShock\" title=\"BioShock\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
861
+ class=\"gameName\"><a href=\"/game/BioShock/\">BioShock</a></p>\n\t\t\t\t\t\t<p>Last
862
+ played at Sat, 19 Apr 2008 00:12:02 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
863
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
864
+ 7.27272727273%;\"><span title=\"80 gamerscore earned out of a total of 1100
865
+ gamerscore\">80/1100</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div class=\"percentage-container\">
866
+ \ \n\t\t\t\t\t\t\t<div style=\"width: 15.6862745098%;\"><span title=\"8
867
+ achievements unlocked out of a total of 51 achievements\">8/51</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
868
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
869
+ BioShock is below average\"><img src=\"/resources/images/icons/down.png\"
870
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t481</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
871
+ class=\"tr2\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/LOST-PLANET/\"><img
872
+ src=\"http://tiles.xbox.com/tiles/lJ/fs/02dsb2JhbC9ECgQLGwMfWStQL2ljb24vMC84MDAwAAAAAAAAAPzDl4s=.jpg\"
873
+ alt=\"LOST PLANET\" title=\"LOST PLANET\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
874
+ class=\"gameName\"><a href=\"/game/LOST-PLANET/\">LOST PLANET</a></p>\n\t\t\t\t\t\t<p>Last
875
+ played at Fri, 11 Apr 2008 17:38:21 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
876
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
877
+ 19.5%;\"><span title=\"195 gamerscore earned out of a total of 1000 gamerscore\">195/1000</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
878
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
879
+ 31.4285714286%;\"><span title=\"11 achievements unlocked out of a total of
880
+ 35 achievements\">11/35</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
881
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
882
+ LOST PLANET is above average\"><img src=\"/resources/images/icons/up.png\"
883
+ alt=\"Up Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t159</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
884
+ class=\"tr1\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Battlestations%3A-Midway/\"><img
885
+ src=\"http://tiles.xbox.com/tiles/Wx/dH/1mdsb2JhbC9ECgULGwMfWStaL2ljb24vMC84MDAwAAAAAAAAAPloF0Q=.jpg\"
886
+ alt=\"Battlestations: Midway\" title=\"Battlestations: Midway\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
887
+ class=\"gameName\"><a href=\"/game/Battlestations%3A-Midway/\">Battlestations:
888
+ Midway</a></p>\n\t\t\t\t\t\t<p>Last played at Mon, 07 Apr 2008 22:54:05 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
889
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
890
+ 0%;\"><span title=\"0 gamerscore earned out of a total of 1000 gamerscore\">0/1000</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
891
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
892
+ 0%;\"><span title=\"0 achievements unlocked out of a total of 22 achievements\">0/22</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
893
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
894
+ Battlestations: Midway is below average\"><img src=\"/resources/images/icons/down.png\"
895
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t184</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
896
+ class=\"tr2\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Kane-and-Lynch%3ADeadMen/\"><img
897
+ src=\"http://tiles.xbox.com/tiles/a2/CY/0Gdsb2JhbC9ECgULGwMfWSpTL2ljb24vMC84MDAwAAAAAAAAAP+3YHQ=.jpg\"
898
+ alt=\"Kane and Lynch:DeadMen\" title=\"Kane and Lynch:DeadMen\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
899
+ class=\"gameName\"><a href=\"/game/Kane-and-Lynch%3ADeadMen/\">Kane and Lynch:DeadMen</a></p>\n\t\t\t\t\t\t<p>Last
900
+ played at Sat, 09 Feb 2008 17:01:04 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
901
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
902
+ 4%;\"><span title=\"50 gamerscore earned out of a total of 1250 gamerscore\">50/1250</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
903
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
904
+ 5.76923076923%;\"><span title=\"3 achievements unlocked out of a total of
905
+ 52 achievements\">3/52</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
906
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
907
+ Kane and Lynch:DeadMen is below average\"><img src=\"/resources/images/icons/down.png\"
908
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t238</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
909
+ class=\"tr1\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Enchanted-Arms/\"><img
910
+ src=\"http://tiles.xbox.com/tiles/lx/Nf/1mdsb2JhbC9ECgUNGgMfWSpVL2ljb24vMC84MDAwAAAAAAAAAPlwE4g=.jpg\"
911
+ alt=\"Enchanted Arms\" title=\"Enchanted Arms\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
912
+ class=\"gameName\"><a href=\"/game/Enchanted-Arms/\">Enchanted Arms</a></p>\n\t\t\t\t\t\t<p>Last
913
+ played at Mon, 24 Dec 2007 22:30:31 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
914
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
915
+ 0%;\"><span title=\"0 gamerscore earned out of a total of 1000 gamerscore\">0/1000</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
916
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
917
+ 0%;\"><span title=\"0 achievements unlocked out of a total of 25 achievements\">0/25</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
918
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
919
+ Enchanted Arms is below average\"><img src=\"/resources/images/icons/down.png\"
920
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t443</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
921
+ class=\"tr2\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Puzzle-Fighter-HD/\"><img
922
+ src=\"http://tiles.xbox.com/tiles/q1/Bm/12dsb2JhbC9ECgUAGwEfVlkmL2ljb24vMC84MDAwAAAAAAAAAPhJULQ=.jpg\"
923
+ alt=\"Puzzle Fighter HD\" title=\"Puzzle Fighter HD\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
924
+ class=\"gameName\"><a href=\"/game/Puzzle-Fighter-HD/\">Puzzle Fighter HD</a></p>\n\t\t\t\t\t\t<p>Last
925
+ played at Fri, 02 Nov 2007 21:43:22 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
926
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
927
+ 0%;\"><span title=\"0 gamerscore earned out of a total of 200 gamerscore\">0/200</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
928
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
929
+ 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
930
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
931
+ Puzzle Fighter HD is below average\"><img src=\"/resources/images/icons/down.png\"
932
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t34</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
933
+ class=\"tr1\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Geon/\"><img
934
+ src=\"http://tiles.xbox.com/tiles/6R/jY/1Gdsb2JhbC9ECgUAGwEfVltXL2ljb24vMC84MDAwAAAAAAAAAPv3GPY=.jpg\"
935
+ alt=\"Geon\" title=\"Geon\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p class=\"gameName\"><a
936
+ href=\"/game/Geon/\">Geon</a></p>\n\t\t\t\t\t\t<p>Last played at Fri, 02 Nov
937
+ 2007 21:36:15 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div class=\"percentage-container\">
938
+ \ \n\t\t\t\t\t\t\t<div style=\"width: 0%;\"><span title=\"0 gamerscore
939
+ earned out of a total of 200 gamerscore\">0/200</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
940
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
941
+ 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
942
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
943
+ Geon is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down
944
+ Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t29</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
945
+ class=\"tr2\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Sonic-The-Hedgehog-2/\"><img
946
+ src=\"http://tiles.xbox.com/tiles/8P/Y6/0Wdsb2JhbC9ECgUAGwEfVllQL2ljb24vMC84MDAwAAAAAAAAAP4V9u8=.jpg\"
947
+ alt=\"Sonic The Hedgehog 2\" title=\"Sonic The Hedgehog 2\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
948
+ class=\"gameName\"><a href=\"/game/Sonic-The-Hedgehog-2/\">Sonic The Hedgehog
949
+ 2</a></p>\n\t\t\t\t\t\t<p>Last played at Sun, 14 Oct 2007 00:15:36 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
950
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
951
+ 0%;\"><span title=\"0 gamerscore earned out of a total of 200 gamerscore\">0/200</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
952
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
953
+ 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
954
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
955
+ Sonic The Hedgehog 2 is below average\"><img src=\"/resources/images/icons/down.png\"
956
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t50</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
957
+ class=\"tr1\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Fatal-Fury-Special/\"><img
958
+ src=\"http://tiles.xbox.com/tiles/-g/Fb/0Gdsb2JhbC9ECgUAGwEfVlwiL2ljb24vMC84MDAwAAAAAAAAAP90AeE=.jpg\"
959
+ alt=\"Fatal Fury Special\" title=\"Fatal Fury Special\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
960
+ class=\"gameName\"><a href=\"/game/Fatal-Fury-Special/\">Fatal Fury Special</a></p>\n\t\t\t\t\t\t<p>Last
961
+ played at Sun, 14 Oct 2007 00:00:43 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
962
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
963
+ 0%;\"><span title=\"0 gamerscore earned out of a total of 200 gamerscore\">0/200</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
964
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
965
+ 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
966
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
967
+ Fatal Fury Special is below average\"><img src=\"/resources/images/icons/down.png\"
968
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t30</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
969
+ class=\"tr2\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Small-Arms/\"><img
970
+ src=\"http://tiles.xbox.com/tiles/Uq/VP/1Wdsb2JhbC9ECgUAGwEfWStWL2ljb24vMC84MDAwAAAAAAAAAPpgpU0=.jpg\"
971
+ alt=\"Small Arms\" title=\"Small Arms\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
972
+ class=\"gameName\"><a href=\"/game/Small-Arms/\">Small Arms</a></p>\n\t\t\t\t\t\t<p>Last
973
+ played at Sat, 13 Oct 2007 23:55:23 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
974
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
975
+ 0%;\"><span title=\"0 gamerscore earned out of a total of 235 gamerscore\">0/235</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
976
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
977
+ 0%;\"><span title=\"0 achievements unlocked out of a total of 14 achievements\">0/14</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
978
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
979
+ Small Arms is below average\"><img src=\"/resources/images/icons/down.png\"
980
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t54</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
981
+ class=\"tr1\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Street-Fighter-II%27-HF/\"><img
982
+ src=\"http://tiles.xbox.com/tiles/O8/nm/12dsb2JhbC9ECgUAGwEfWSlXL2ljb24vMC84MDAwAAAAAAAAAPjJySQ=.jpg\"
983
+ alt=\"Street Fighter II' HF\" title=\"Street Fighter II' HF\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
984
+ class=\"gameName\"><a href=\"/game/Street-Fighter-II%27-HF/\">Street Fighter
985
+ II' HF</a></p>\n\t\t\t\t\t\t<p>Last played at Sat, 13 Oct 2007 23:54:44 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
986
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
987
+ 0%;\"><span title=\"0 gamerscore earned out of a total of 200 gamerscore\">0/200</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
988
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
989
+ 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
990
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
991
+ Street Fighter II' HF is below average\"><img src=\"/resources/images/icons/down.png\"
992
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t24</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
993
+ class=\"tr2\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Paperboy/\"><img
994
+ src=\"http://tiles.xbox.com/tiles/DR/Lw/1mdsb2JhbC9ECgUAGwEfVl1aL2ljb24vMC84MDAwAAAAAAAAAPnfEhI=.jpg\"
995
+ alt=\"Paperboy\" title=\"Paperboy\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
996
+ class=\"gameName\"><a href=\"/game/Paperboy/\">Paperboy</a></p>\n\t\t\t\t\t\t<p>Last
997
+ played at Sat, 13 Oct 2007 23:54:04 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
998
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
999
+ 0%;\"><span title=\"0 gamerscore earned out of a total of 200 gamerscore\">0/200</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
1000
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1001
+ 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
1002
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
1003
+ Paperboy is below average\"><img src=\"/resources/images/icons/down.png\"
1004
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t33</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
1005
+ class=\"tr1\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Bomberman-LIVE/\"><img
1006
+ src=\"http://tiles.xbox.com/tiles/Zs/Nz/1mdsb2JhbC9ECgUAGwEfVlwlL2ljb24vMC84MDAwAAAAAAAAAPlcw3k=.jpg\"
1007
+ alt=\"Bomberman LIVE\" title=\"Bomberman LIVE\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
1008
+ class=\"gameName\"><a href=\"/game/Bomberman-LIVE/\">Bomberman LIVE</a></p>\n\t\t\t\t\t\t<p>Last
1009
+ played at Sat, 13 Oct 2007 23:45:58 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
1010
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1011
+ 0%;\"><span title=\"0 gamerscore earned out of a total of 200 gamerscore\">0/200</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
1012
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1013
+ 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
1014
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
1015
+ Bomberman LIVE is below average\"><img src=\"/resources/images/icons/down.png\"
1016
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t40</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
1017
+ class=\"tr2\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Perfect-Dark-Zero/\"><img
1018
+ src=\"http://tiles.xbox.com/tiles/cm/UH/1Gdsb2JhbC9ECgR8GgMfWStQL2ljb24vMC84MDAwAAAAAAAAAPsoZW0=.jpg\"
1019
+ alt=\"Perfect Dark Zero\" title=\"Perfect Dark Zero\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
1020
+ class=\"gameName\"><a href=\"/game/Perfect-Dark-Zero/\">Perfect Dark Zero</a></p>\n\t\t\t\t\t\t<p>Last
1021
+ played at Tue, 31 Jul 2007 21:36:09 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
1022
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1023
+ 0%;\"><span title=\"0 gamerscore earned out of a total of 1000 gamerscore\">0/1000</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
1024
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1025
+ 0%;\"><span title=\"0 achievements unlocked out of a total of 50 achievements\">0/50</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
1026
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
1027
+ Perfect Dark Zero is below average\"><img src=\"/resources/images/icons/down.png\"
1028
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t109</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
1029
+ class=\"tr1\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Burnout-Revenge/\"><img
1030
+ src=\"http://tiles.xbox.com/tiles/u7/Ut/1Wdsb2JhbC9ECgQNGwEfWSsgL2ljb24vMC84MDAwAAAAAAAAAPoCtaQ=.jpg\"
1031
+ alt=\"Burnout Revenge\" title=\"Burnout Revenge\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
1032
+ class=\"gameName\"><a href=\"/game/Burnout-Revenge/\">Burnout Revenge</a></p>\n\t\t\t\t\t\t<p>Last
1033
+ played at Sat, 28 Jul 2007 19:56:29 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
1034
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1035
+ 1.5%;\"><span title=\"15 gamerscore earned out of a total of 1000 gamerscore\">15/1000</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
1036
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1037
+ 2.77777777778%;\"><span title=\"1 achievements unlocked out of a total of
1038
+ 36 achievements\">1/36</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
1039
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
1040
+ Burnout Revenge is below average\"><img src=\"/resources/images/icons/down.png\"
1041
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t148</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
1042
+ class=\"tr2\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Condemned/\"><img
1043
+ src=\"http://tiles.xbox.com/tiles/PI/r4/0mdsb2JhbC9ECgULGwUfWStRL2ljb24vMC84MDAwAAAAAAAAAP3XiiM=.jpg\"
1044
+ alt=\"Condemned\" title=\"Condemned\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
1045
+ class=\"gameName\"><a href=\"/game/Condemned/\">Condemned</a></p>\n\t\t\t\t\t\t<p>Last
1046
+ played at Wed, 27 Jun 2007 21:42:35 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
1047
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1048
+ 16.4948453608%;\"><span title=\"160 gamerscore earned out of a total of 970
1049
+ gamerscore\">160/970</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div class=\"percentage-container\">
1050
+ \ \n\t\t\t\t\t\t\t<div style=\"width: 24%;\"><span title=\"12 achievements
1051
+ unlocked out of a total of 50 achievements\">12/50</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
1052
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
1053
+ Condemned is below average\"><img src=\"/resources/images/icons/down.png\"
1054
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t340</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
1055
+ class=\"tr1\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Band-of-Bugs/\"><img
1056
+ src=\"http://tiles.xbox.com/tiles/kc/hX/02dsb2JhbC9ECgUAGwEfVl0lL2ljb24vMC84MDAwAAAAAAAAAPx4yI4=.jpg\"
1057
+ alt=\"Band of Bugs\" title=\"Band of Bugs\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
1058
+ class=\"gameName\"><a href=\"/game/Band-of-Bugs/\">Band of Bugs</a></p>\n\t\t\t\t\t\t<p>Last
1059
+ played at Sun, 24 Jun 2007 13:15:32 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
1060
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1061
+ 0%;\"><span title=\"0 gamerscore earned out of a total of 250 gamerscore\">0/250</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
1062
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1063
+ 0%;\"><span title=\"0 achievements unlocked out of a total of 15 achievements\">0/15</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
1064
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
1065
+ Band of Bugs is below average\"><img src=\"/resources/images/icons/down.png\"
1066
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t37</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
1067
+ class=\"tr2\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Castlevania%3A-SOTN/\"><img
1068
+ src=\"http://tiles.xbox.com/tiles/0d/l9/12dsb2JhbC9ECgUAGwEfVltUL2ljb24vMC84MDAwAAAAAAAAAPhS2c4=.jpg\"
1069
+ alt=\"Castlevania: SOTN\" title=\"Castlevania: SOTN\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
1070
+ class=\"gameName\"><a href=\"/game/Castlevania%3A-SOTN/\">Castlevania: SOTN</a></p>\n\t\t\t\t\t\t<p>Last
1071
+ played at Tue, 05 Jun 2007 21:20:33 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
1072
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1073
+ 0%;\"><span title=\"0 gamerscore earned out of a total of 200 gamerscore\">0/200</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
1074
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1075
+ 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
1076
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
1077
+ Castlevania: SOTN is below average\"><img src=\"/resources/images/icons/down.png\"
1078
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t48</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
1079
+ class=\"tr1\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Eets%3A-Chowdown/\"><img
1080
+ src=\"http://tiles.xbox.com/tiles/gi/3l/0Wdsb2JhbC9ECgUAGwEfVl1WL2ljb24vMC84MDAwAAAAAAAAAP7KLZ0=.jpg\"
1081
+ alt=\"Eets: Chowdown\" title=\"Eets: Chowdown\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
1082
+ class=\"gameName\"><a href=\"/game/Eets%3A-Chowdown/\">Eets: Chowdown</a></p>\n\t\t\t\t\t\t<p>Last
1083
+ played at Thu, 07 Jun 2007 19:28:34 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
1084
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1085
+ 0%;\"><span title=\"0 gamerscore earned out of a total of 200 gamerscore\">0/200</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
1086
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1087
+ 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
1088
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
1089
+ Eets: Chowdown is below average\"><img src=\"/resources/images/icons/down.png\"
1090
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t23</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
1091
+ class=\"tr2\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Hexic-HD/\"><img
1092
+ src=\"http://tiles.xbox.com/tiles/8q/bC/0Gdsb2JhbC9ECgUAGwEfWStSL2ljb24vMC84MDAwAAAAAAAAAP-tpu0=.jpg\"
1093
+ alt=\"Hexic HD\" title=\"Hexic HD\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
1094
+ class=\"gameName\"><a href=\"/game/Hexic-HD/\">Hexic HD</a></p>\n\t\t\t\t\t\t<p>Last
1095
+ played at Sat, 09 Jun 2007 23:57:22 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
1096
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1097
+ 5%;\"><span title=\"10 gamerscore earned out of a total of 200 gamerscore\">10/200</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
1098
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1099
+ 16.6666666667%;\"><span title=\"2 achievements unlocked out of a total of
1100
+ 12 achievements\">2/12</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
1101
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
1102
+ Hexic HD is below average\"><img src=\"/resources/images/icons/down.png\"
1103
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t31</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
1104
+ class=\"tr1\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Smash-TV/\"><img
1105
+ src=\"http://tiles.xbox.com/tiles/Ba/3m/1Wdsb2JhbC9ECgUAGwEfWSpSL2ljb24vMC84MDAwAAAAAAAAAPrJrRo=.jpg\"
1106
+ alt=\"Smash TV\" title=\"Smash TV\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
1107
+ class=\"gameName\"><a href=\"/game/Smash-TV/\">Smash TV</a></p>\n\t\t\t\t\t\t<p>Last
1108
+ played at Sat, 09 Jun 2007 19:40:01 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
1109
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1110
+ 0%;\"><span title=\"0 gamerscore earned out of a total of 200 gamerscore\">0/200</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
1111
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1112
+ 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
1113
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
1114
+ Smash TV is below average\"><img src=\"/resources/images/icons/down.png\"
1115
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t28</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
1116
+ class=\"tr2\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Assault-Heroes/\"><img
1117
+ src=\"http://tiles.xbox.com/tiles/+K/2S/12dsb2JhbC9ECgUAGwEfWSkmL2ljb24vMC84MDAwAAAAAAAAAPi9rec=.jpg\"
1118
+ alt=\"Assault Heroes\" title=\"Assault Heroes\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
1119
+ class=\"gameName\"><a href=\"/game/Assault-Heroes/\">Assault Heroes</a></p>\n\t\t\t\t\t\t<p>Last
1120
+ played at Thu, 07 Jun 2007 20:26:41 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
1121
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1122
+ 0%;\"><span title=\"0 gamerscore earned out of a total of 200 gamerscore\">0/200</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
1123
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1124
+ 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
1125
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
1126
+ Assault Heroes is below average\"><img src=\"/resources/images/icons/down.png\"
1127
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t51</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
1128
+ class=\"tr1\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Novadrome/\"><img
1129
+ src=\"http://tiles.xbox.com/tiles/Kp/F+/12dsb2JhbC9ECgUAGwEfWSpaL2ljb24vMC84MDAwAAAAAAAAAPhRkTU=.jpg\"
1130
+ alt=\"Novadrome\" title=\"Novadrome\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
1131
+ class=\"gameName\"><a href=\"/game/Novadrome/\">Novadrome</a></p>\n\t\t\t\t\t\t<p>Last
1132
+ played at Thu, 07 Jun 2007 20:16:42 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
1133
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1134
+ 0%;\"><span title=\"0 gamerscore earned out of a total of 200 gamerscore\">0/200</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
1135
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1136
+ 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
1137
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
1138
+ Novadrome is below average\"><img src=\"/resources/images/icons/down.png\"
1139
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t18</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
1140
+ class=\"tr2\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Heavy-Weapon/\"><img
1141
+ src=\"http://tiles.xbox.com/tiles/vE/nl/02dsb2JhbC9ECgUAGwEfVl5TL2ljb24vMC84MDAwAAAAAAAAAPzKSaM=.jpg\"
1142
+ alt=\"Heavy Weapon\" title=\"Heavy Weapon\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
1143
+ class=\"gameName\"><a href=\"/game/Heavy-Weapon/\">Heavy Weapon</a></p>\n\t\t\t\t\t\t<p>Last
1144
+ played at Thu, 07 Jun 2007 20:00:11 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
1145
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1146
+ 0%;\"><span title=\"0 gamerscore earned out of a total of 200 gamerscore\">0/200</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
1147
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1148
+ 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
1149
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
1150
+ Heavy Weapon is below average\"><img src=\"/resources/images/icons/down.png\"
1151
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t41</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
1152
+ class=\"tr1\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Catan/\"><img
1153
+ src=\"http://tiles.xbox.com/tiles/Xg/LW/1Wdsb2JhbC9ECgUAGwEfVlwmL2ljb24vMC84MDAwAAAAAAAAAPr5AkE=.jpg\"
1154
+ alt=\"Catan\" title=\"Catan\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
1155
+ class=\"gameName\"><a href=\"/game/Catan/\">Catan</a></p>\n\t\t\t\t\t\t<p>Last
1156
+ played at Thu, 07 Jun 2007 19:27:28 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
1157
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1158
+ 0%;\"><span title=\"0 gamerscore earned out of a total of 200 gamerscore\">0/200</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
1159
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1160
+ 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
1161
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
1162
+ Catan is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down
1163
+ Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t49</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
1164
+ class=\"tr2\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Boom-Boom-Rocket/\"><img
1165
+ src=\"http://tiles.xbox.com/tiles/C1/Pr/0mdsb2JhbC9ECgUAGwEfVlkiL2ljb24vMC84MDAwAAAAAAAAAP3EUxQ=.jpg\"
1166
+ alt=\"Boom Boom Rocket\" title=\"Boom Boom Rocket\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
1167
+ class=\"gameName\"><a href=\"/game/Boom-Boom-Rocket/\">Boom Boom Rocket</a></p>\n\t\t\t\t\t\t<p>Last
1168
+ played at Thu, 07 Jun 2007 19:24:54 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
1169
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1170
+ 0%;\"><span title=\"0 gamerscore earned out of a total of 200 gamerscore\">0/200</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
1171
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1172
+ 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
1173
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
1174
+ Boom Boom Rocket is below average\"><img src=\"/resources/images/icons/down.png\"
1175
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t30</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
1176
+ class=\"tr1\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Double-Dragon/\"><img
1177
+ src=\"http://tiles.xbox.com/tiles/5b/Yt/0mdsb2JhbC9ECgUAGwEfVlolL2ljb24vMC84MDAwAAAAAAAAAP0Ctvo=.jpg\"
1178
+ alt=\"Double Dragon\" title=\"Double Dragon\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
1179
+ class=\"gameName\"><a href=\"/game/Double-Dragon/\">Double Dragon</a></p>\n\t\t\t\t\t\t<p>Last
1180
+ played at Tue, 05 Jun 2007 21:15:46 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
1181
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1182
+ 0%;\"><span title=\"0 gamerscore earned out of a total of 200 gamerscore\">0/200</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
1183
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1184
+ 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
1185
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
1186
+ Double Dragon is below average\"><img src=\"/resources/images/icons/down.png\"
1187
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t29</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
1188
+ class=\"tr2\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/XEVIOUS/\"><img
1189
+ src=\"http://tiles.xbox.com/tiles/d8/PC/0Gdsb2JhbC9ECgUAGwEfVlZXL2ljb24vMC84MDAwAAAAAAAAAP-tw2g=.jpg\"
1190
+ alt=\"XEVIOUS\" title=\"XEVIOUS\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
1191
+ class=\"gameName\"><a href=\"/game/XEVIOUS/\">XEVIOUS</a></p>\n\t\t\t\t\t\t<p>Last
1192
+ played at Thu, 31 May 2007 22:28:56 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
1193
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1194
+ 0%;\"><span title=\"0 gamerscore earned out of a total of 200 gamerscore\">0/200</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
1195
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1196
+ 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
1197
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
1198
+ XEVIOUS is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down
1199
+ Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t37</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
1200
+ class=\"tr1\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/TMNT-1989-Arcade/\"><img
1201
+ src=\"http://tiles.xbox.com/tiles/Pz/y7/12dsb2JhbC9ECgUAGwEfVlhTL2ljb24vMC84MDAwAAAAAAAAAPiUPCA=.jpg\"
1202
+ alt=\"TMNT 1989 Arcade\" title=\"TMNT 1989 Arcade\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
1203
+ class=\"gameName\"><a href=\"/game/TMNT-1989-Arcade/\">TMNT 1989 Arcade</a></p>\n\t\t\t\t\t\t<p>Last
1204
+ played at Thu, 24 May 2007 21:36:31 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
1205
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1206
+ 0%;\"><span title=\"0 gamerscore earned out of a total of 200 gamerscore\">0/200</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
1207
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1208
+ 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
1209
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
1210
+ TMNT 1989 Arcade is below average\"><img src=\"/resources/images/icons/down.png\"
1211
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t38</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
1212
+ class=\"tr2\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Rush%27n-Attack/\"><img
1213
+ src=\"http://tiles.xbox.com/tiles/ez/Ue/0Gdsb2JhbC9ECgUAGwEfVl5aL2ljb24vMC84MDAwAAAAAAAAAP8xNWQ=.jpg\"
1214
+ alt=\"Rush'n Attack\" title=\"Rush'n Attack\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
1215
+ class=\"gameName\"><a href=\"/game/Rush%27n-Attack/\">Rush'n Attack</a></p>\n\t\t\t\t\t\t<p>Last
1216
+ played at Thu, 24 May 2007 21:20:35 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
1217
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1218
+ 0%;\"><span title=\"0 gamerscore earned out of a total of 200 gamerscore\">0/200</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
1219
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1220
+ 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
1221
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
1222
+ Rush'n Attack is below average\"><img src=\"/resources/images/icons/down.png\"
1223
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t25</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
1224
+ class=\"tr1\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/DEAD-OR-ALIVE-4/\"><img
1225
+ src=\"http://tiles.xbox.com/tiles/5f/Fu/02dsb2JhbC9ECgUMGwMfWStSL2ljb24vMC84MDAwAAAAAAAAAPxB8fo=.jpg\"
1226
+ alt=\"DEAD OR ALIVE 4\" title=\"DEAD OR ALIVE 4\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
1227
+ class=\"gameName\"><a href=\"/game/DEAD-OR-ALIVE-4/\">DEAD OR ALIVE 4</a></p>\n\t\t\t\t\t\t<p>Last
1228
+ played at Mon, 01 Jan 1753 00:00:00 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
1229
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1230
+ 1%;\"><span title=\"10 gamerscore earned out of a total of 1000 gamerscore\">10/1000</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
1231
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1232
+ 2.22222222222%;\"><span title=\"1 achievements unlocked out of a total of
1233
+ 45 achievements\">1/45</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
1234
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
1235
+ DEAD OR ALIVE 4 is below average\"><img src=\"/resources/images/icons/down.png\"
1236
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t153</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
1237
+ class=\"tr2\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Viva-Pi%C3%B1ata/\"><img
1238
+ src=\"http://tiles.xbox.com/tiles/Gw/mu/1mdsb2JhbC9ECgR8GgMfWSlRL2ljb24vMC84MDAwAAAAAAAAAPmBCQQ=.jpg\"
1239
+ alt=\"Viva Piñata\" title=\"Viva Piñata\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
1240
+ class=\"gameName\"><a href=\"/game/Viva-Pi%C3%B1ata/\">Viva Piñata</a></p>\n\t\t\t\t\t\t<p>Last
1241
+ played at Mon, 01 Jan 1753 00:00:00 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
1242
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1243
+ 4%;\"><span title=\"40 gamerscore earned out of a total of 1000 gamerscore\">40/1000</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
1244
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1245
+ 4%;\"><span title=\"2 achievements unlocked out of a total of 50 achievements\">2/50</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
1246
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
1247
+ Viva Piñata is below average\"><img src=\"/resources/images/icons/down.png\"
1248
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t311</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
1249
+ class=\"tr1\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Texas-Hold%27em/\"><img
1250
+ src=\"http://tiles.xbox.com/tiles/60/gg/1Wdsb2JhbC9ECgUAGwEfWSlVL2ljb24vMC84MDAwAAAAAAAAAPoPSPQ=.jpg\"
1251
+ alt=\"Texas Hold'em\" title=\"Texas Hold'em\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
1252
+ class=\"gameName\"><a href=\"/game/Texas-Hold%27em/\">Texas Hold'em</a></p>\n\t\t\t\t\t\t<p>Last
1253
+ played at Mon, 01 Jan 1753 00:00:00 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
1254
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1255
+ 17.5%;\"><span title=\"35 gamerscore earned out of a total of 200 gamerscore\">35/200</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
1256
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1257
+ 16.6666666667%;\"><span title=\"2 achievements unlocked out of a total of
1258
+ 12 achievements\">2/12</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
1259
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
1260
+ Texas Hold'em is below average\"><img src=\"/resources/images/icons/down.png\"
1261
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t57</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
1262
+ class=\"tr2\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/Outpost-Kaloki-X/\"><img
1263
+ src=\"http://tiles.xbox.com/tiles/4U/Nw/0mdsb2JhbC9ECgUAGwEfWSshL2ljb24vMC84MDAwAAAAAAAAAP1fQ-4=.jpg\"
1264
+ alt=\"Outpost Kaloki X\" title=\"Outpost Kaloki X\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
1265
+ class=\"gameName\"><a href=\"/game/Outpost-Kaloki-X/\">Outpost Kaloki X</a></p>\n\t\t\t\t\t\t<p>Last
1266
+ played at Mon, 01 Jan 1753 00:00:00 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
1267
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1268
+ 0%;\"><span title=\"0 gamerscore earned out of a total of 200 gamerscore\">0/200</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
1269
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1270
+ 0%;\"><span title=\"0 achievements unlocked out of a total of 12 achievements\">0/12</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
1271
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
1272
+ Outpost Kaloki X is below average\"><img src=\"/resources/images/icons/down.png\"
1273
+ alt=\"Down Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t25</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr
1274
+ class=\"tr1\">\n\t\t\t\t\t<td class=\"gameTile\"><a href=\"/game/PGR-3/\"><img
1275
+ src=\"http://tiles.xbox.com/tiles/ou/TB/1mdsb2JhbC9ECgR8GgMfWStSL2ljb24vMC84MDAwAAAAAAAAAPnu5L0=.jpg\"
1276
+ alt=\"PGR 3\" title=\"PGR 3\" /></a></td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p
1277
+ class=\"gameName\"><a href=\"/game/PGR-3/\">PGR 3</a></p>\n\t\t\t\t\t\t<p>Last
1278
+ played at Mon, 01 Jan 1753 00:00:00 GMT</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<div
1279
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1280
+ 0%;\"><span title=\"0 gamerscore earned out of a total of 1000 gamerscore\">0/1000</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div
1281
+ class=\"percentage-container\"> \n\t\t\t\t\t\t\t<div style=\"width:
1282
+ 0%;\"><span title=\"0 achievements unlocked out of a total of 25 achievements\">0/25</span></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Average:
1283
+ \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span title=\"belial1984's gamerscore for
1284
+ PGR 3 is below average\"><img src=\"/resources/images/icons/down.png\" alt=\"Down
1285
+ Arrow\" />\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t161</span>\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t\t</table>\n\t</div>\n</div>\n\t<div
1286
+ class=\"XGTFooter\">\n\t\t<div class=\"rightCol\">\n\t\t\t<p><!--GCF:API-->
1287
+ <!---PF:Cache--></p>\n\t\t</div>\n\t\t\n\t</div>\n</div>\n<div class=\"XGTFooter\">\n\t<div
1288
+ class=\"leftCol\">\n\t\t<a href=\"/contact/\">Contact Us</a> - <a href=\"/legal/terms/\">Terms
1289
+ of Use</a> - <a href=\"/legal/privacy/\">Privacy Policy</a> - <a href=\"/sitemap/\">Sitemap</a>\n\t\t\n\t\t<br
1290
+ />\n\t\tFollow us on: <a href=\"http://www.facebook.com/pages/Xbox-Gamertag/134742809876061\"
1291
+ target=_blank\" rel=\"nofollow\">Facebook</a> - <a href=\"http://twitter.com/XboxGamerTagCom\"
1292
+ \ target=_blank\" rel=\"nofollow\">Twitter</a> - <a href=\"http://www.youtube.com/user/XboxGamertagCom\"
1293
+ target=_blank\" rel=\"nofollow\">Youtube</a>\n\t</div>\n\t<div class=\"rightCol\">\n\t\t<p>Xboxgamertag.com
1294
+ &#169 2011</p>\n\t\t<p>XboxGamertag.com is a member of the Xbox Community
1295
+ Developer Program (XCDP)</p>\n\t\t<p>We are not affiliated with Microsoft
1296
+ or Xbox</p>\n\t</div>\t\n</div>\n<script type=\"text/javascript\"> var _gaq
1297
+ = _gaq || []; _gaq.push(['_setAccount', 'UA-16948229-1']); _gaq.push(['_trackPageview']);
1298
+ \ (function() { var ga = document.createElement('script'); ga.type = 'text/javascript';
1299
+ ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl'
1300
+ : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0];
1301
+ s.parentNode.insertBefore(ga, s); })();</script>\n<!-- Start Quantcast tag
1302
+ --><script type=\"text/javascript\">_qoptions={qacct:\"p-aftsHHTxJeedw\"};</script><script
1303
+ type=\"text/javascript\" src=\"http://edge.quantserve.com/quant.js\"></script><noscript><p><img
1304
+ src=\"http://pixel.quantserve.com/pixel/p-aftsHHTxJeedw.gif\" style=\"display:
1305
+ none;\" height=\"1\" width=\"1\" alt=\"Quantcast\"/></p></noscript><!-- End
1306
+ Quantcast tag -->\n\n</body>\n</html>\n"
1307
+ http_version: '1.1'
1308
+ recorded_at: Thu, 25 Aug 2011 00:52:26 GMT
1309
+ recorded_with: VCR 2.3.0