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 +3 -0
- data/.rvmrc +1 -1
- data/CHANGELOG.md +15 -5
- data/README.mdown +4 -1
- data/gamertag.gemspec +6 -6
- data/lib/gamertag/played_games.rb +31 -8
- data/lib/gamertag/profile.rb +3 -0
- data/lib/gamertag/simple_profile.rb +35 -5
- data/lib/gamertag/version.rb +1 -1
- data/spec/fixtures/vcr_cassettes/PlayedGames_Belial1984.yml +1289 -2062
- data/spec/fixtures/vcr_cassettes/PlayedGames_some_user.yml +100 -0
- data/spec/fixtures/vcr_cassettes/SimpleProfile_Belial1984.yml +36 -23
- data/spec/played_games_spec.rb +19 -11
- data/spec/simple_profile_spec.rb +27 -19
- data/spec/spec_helper.rb +2 -2
- data/spec/version_spec.rb +1 -1
- metadata +73 -29
data/.rspec
ADDED
data/.rvmrc
CHANGED
@@ -1 +1 @@
|
|
1
|
-
rvm use
|
1
|
+
rvm use 1.9.3@gamertag_gem --create
|
data/CHANGELOG.md
CHANGED
@@ -1,8 +1,18 @@
|
|
1
|
-
#
|
1
|
+
# CHANGELOG
|
2
2
|
|
3
|
-
|
4
|
-
|
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
|
-
|
16
|
+
## 1.0.0
|
7
17
|
|
8
|
-
|
18
|
+
* Initial release
|
data/README.mdown
CHANGED
@@ -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.
|
data/gamertag.gemspec
CHANGED
@@ -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'
|
23
|
-
s.add_dependency('hashie'
|
24
|
-
s.add_dependency('nokogiri'
|
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'
|
28
|
-
s.add_development_dependency('vcr'
|
29
|
-
s.add_development_dependency('fakeweb'
|
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
|
data/lib/gamertag/profile.rb
CHANGED
@@ -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
|
-
|
32
|
-
|
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
|
data/lib/gamertag/version.rb
CHANGED
@@ -1,2082 +1,1309 @@
|
|
1
|
-
---
|
2
|
-
|
3
|
-
|
4
|
-
method:
|
5
|
-
uri: http://api.xboxleaders.com
|
6
|
-
body:
|
7
|
-
|
8
|
-
|
9
|
-
|
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
|
-
|
14
|
+
headers:
|
15
|
+
Date:
|
14
16
|
- Wed, 24 Aug 2011 16:38:21 GMT
|
15
|
-
|
16
|
-
- Apache/2.0.63 (Unix) mod_ssl/2.0.63 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1
|
17
|
-
|
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
|
-
|
22
|
+
Expires:
|
20
23
|
- Mon, 26 Jul 1997 05:00:00 GMT
|
21
|
-
|
24
|
+
Last-Modified:
|
22
25
|
- Wed, 24 Aug 2011 16:38:24GMT
|
23
|
-
|
26
|
+
Cache-Control:
|
24
27
|
- no-cache, must-revalidate
|
25
|
-
|
28
|
+
Pragma:
|
26
29
|
- no-cache
|
27
|
-
|
28
|
-
-
|
29
|
-
|
30
|
+
Content-Length:
|
31
|
+
- '3225'
|
32
|
+
Content-Type:
|
30
33
|
- application/json
|
31
|
-
body:
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
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® 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® 2","tid":1096157207,"marketplace_url":"http:\/\/marketplace.xbox.com\/Title\/1096157207","compare_url":"http:\/\/live.xbox.com\/en-US\/GameCenter\/Achievements?title=1096157207&compareTo=belial1984","image":"http:\/\/tiles.xbox.com\/tiles\/l6\/Vi\/0Gdsb2JhbA9ECgQJGgYfVl5UL2ljb24vMC84MDAwIAAAAAAAAP9NpYg=.jpg","last_played":"1313967600","earned_gamerscore":930,"available_gamerscore":1000,"earned_achievements":43,"available_achievements":50,"percentage_complete":86},"2":{"title":"Halo:
|
39
|
+
Reach","tid":1297287259,"marketplace_url":"http:\/\/marketplace.xbox.com\/Title\/1297287259","compare_url":"http:\/\/live.xbox.com\/en-US\/GameCenter\/Achievements?title=1297287259&compareTo=belial1984","image":"http:\/\/tiles.xbox.com\/tiles\/ih\/ew\/0Wdsb2JhbA9ECgR8GgMfVlohL2ljb24vMC84MDAwIAAAAAAAAP6fF5U=.jpg","last_played":"1299542400","earned_gamerscore":375,"available_gamerscore":1400,"earned_achievements":26,"available_achievements":59,"percentage_complete":44},"3":{"title":"Portal
|
40
|
+
2","tid":1161890066,"marketplace_url":"http:\/\/marketplace.xbox.com\/Title\/1161890066","compare_url":"http:\/\/live.xbox.com\/en-US\/GameCenter\/Achievements?title=1161890066&compareTo=belial1984","image":"http:\/\/tiles.xbox.com\/tiles\/x2\/5+\/1mdsb2JhbA9ECgQNGwEfV15RL2ljb24vMC84MDAwIAAAAAAAAPlRbtg=.jpg","last_played":"","earned_gamerscore":345,"available_gamerscore":1000,"earned_achievements":21,"available_achievements":50,"percentage_complete":42},"4":{"title":"SUPER
|
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&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&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
|
-
|
56
|
+
headers:
|
57
|
+
Set-Cookie:
|
45
58
|
- PHPSESSID=2326af0d94256b418c099cbdf1807553; path=/
|
46
|
-
|
59
|
+
Expires:
|
47
60
|
- Thu, 19 Nov 1981 08:52:00 GMT
|
48
|
-
|
61
|
+
Cache-Control:
|
49
62
|
- no-store, no-cache, must-revalidate, post-check=0, pre-check=0
|
50
|
-
|
63
|
+
Pragma:
|
51
64
|
- no-cache
|
52
|
-
|
65
|
+
Vary:
|
53
66
|
- Accept-Encoding
|
54
|
-
|
67
|
+
Content-Type:
|
55
68
|
- text/html; charset=UTF-8
|
56
|
-
|
57
|
-
-
|
58
|
-
|
69
|
+
Content-Length:
|
70
|
+
- '102939'
|
71
|
+
Date:
|
59
72
|
- Wed, 24 Aug 2011 16:38:25 GMT
|
60
|
-
|
61
|
-
-
|
62
|
-
|
63
|
-
-
|
64
|
-
|
73
|
+
X-Varnish:
|
74
|
+
- '659547934'
|
75
|
+
Age:
|
76
|
+
- '0'
|
77
|
+
Connection:
|
65
78
|
- keep-alive
|
66
|
-
|
79
|
+
Server:
|
67
80
|
- Xbox Gamertag
|
68
|
-
body:
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
|
534
|
-
|
535
|
-
|
536
|
-
|
537
|
-
|
538
|
-
|
539
|
-
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
549
|
-
|
550
|
-
|
551
|
-
|
552
|
-
|
553
|
-
|
554
|
-
|
555
|
-
|
556
|
-
|
557
|
-
|
558
|
-
|
559
|
-
|
560
|
-
|
561
|
-
|
562
|
-
|
563
|
-
|
564
|
-
|
565
|
-
|
566
|
-
|
567
|
-
|
568
|
-
|
569
|
-
|
570
|
-
|
571
|
-
|
572
|
-
|
573
|
-
|
574
|
-
|
575
|
-
|
576
|
-
|
577
|
-
|
578
|
-
|
579
|
-
|
580
|
-
|
581
|
-
|
582
|
-
|
583
|
-
|
584
|
-
|
585
|
-
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
|
590
|
-
|
591
|
-
|
592
|
-
|
593
|
-
|
594
|
-
|
595
|
-
|
596
|
-
|
597
|
-
|
598
|
-
|
599
|
-
|
600
|
-
|
601
|
-
|
602
|
-
|
603
|
-
|
604
|
-
|
605
|
-
|
606
|
-
|
607
|
-
|
608
|
-
|
609
|
-
|
610
|
-
|
611
|
-
|
612
|
-
|
613
|
-
|
614
|
-
|
615
|
-
|
616
|
-
|
617
|
-
|
618
|
-
|
619
|
-
|
620
|
-
|
621
|
-
|
622
|
-
|
623
|
-
|
624
|
-
|
625
|
-
|
626
|
-
|
627
|
-
|
628
|
-
|
629
|
-
|
630
|
-
|
631
|
-
|
632
|
-
|
633
|
-
|
634
|
-
|
635
|
-
|
636
|
-
|
637
|
-
|
638
|
-
|
639
|
-
|
640
|
-
|
641
|
-
|
642
|
-
|
643
|
-
|
644
|
-
|
645
|
-
|
646
|
-
|
647
|
-
|
648
|
-
|
649
|
-
|
650
|
-
|
651
|
-
|
652
|
-
|
653
|
-
|
654
|
-
|
655
|
-
|
656
|
-
|
657
|
-
|
658
|
-
|
659
|
-
|
660
|
-
|
661
|
-
|
662
|
-
|
663
|
-
|
664
|
-
|
665
|
-
|
666
|
-
|
667
|
-
|
668
|
-
|
669
|
-
|
670
|
-
|
671
|
-
|
672
|
-
|
673
|
-
|
674
|
-
|
675
|
-
|
676
|
-
|
677
|
-
|
678
|
-
|
679
|
-
|
680
|
-
|
681
|
-
|
682
|
-
|
683
|
-
|
684
|
-
|
685
|
-
|
686
|
-
|
687
|
-
|
688
|
-
|
689
|
-
|
690
|
-
|
691
|
-
|
692
|
-
|
693
|
-
|
694
|
-
|
695
|
-
|
696
|
-
|
697
|
-
|
698
|
-
|
699
|
-
|
700
|
-
|
701
|
-
|
702
|
-
|
703
|
-
|
704
|
-
|
705
|
-
|
706
|
-
|
707
|
-
|
708
|
-
|
709
|
-
|
710
|
-
|
711
|
-
|
712
|
-
|
713
|
-
|
714
|
-
|
715
|
-
|
716
|
-
|
717
|
-
|
718
|
-
|
719
|
-
|
720
|
-
|
721
|
-
|
722
|
-
|
723
|
-
|
724
|
-
|
725
|
-
|
726
|
-
|
727
|
-
|
728
|
-
|
729
|
-
|
730
|
-
|
731
|
-
|
732
|
-
|
733
|
-
|
734
|
-
|
735
|
-
|
736
|
-
|
737
|
-
|
738
|
-
|
739
|
-
|
740
|
-
|
741
|
-
|
742
|
-
|
743
|
-
|
744
|
-
|
745
|
-
|
746
|
-
|
747
|
-
|
748
|
-
|
749
|
-
|
750
|
-
|
751
|
-
|
752
|
-
|
753
|
-
|
754
|
-
|
755
|
-
|
756
|
-
|
757
|
-
|
758
|
-
|
759
|
-
|
760
|
-
|
761
|
-
|
762
|
-
|
763
|
-
|
764
|
-
|
765
|
-
|
766
|
-
|
767
|
-
|
768
|
-
|
769
|
-
|
770
|
-
|
771
|
-
|
772
|
-
|
773
|
-
|
774
|
-
|
775
|
-
|
776
|
-
|
777
|
-
|
778
|
-
|
779
|
-
|
780
|
-
|
781
|
-
|
782
|
-
|
783
|
-
|
784
|
-
|
785
|
-
|
786
|
-
|
787
|
-
|
788
|
-
|
789
|
-
|
790
|
-
|
791
|
-
|
792
|
-
|
793
|
-
|
794
|
-
|
795
|
-
|
796
|
-
|
797
|
-
|
798
|
-
|
799
|
-
|
800
|
-
|
801
|
-
|
802
|
-
|
803
|
-
|
804
|
-
|
805
|
-
|
806
|
-
|
807
|
-
|
808
|
-
|
809
|
-
|
810
|
-
|
811
|
-
|
812
|
-
|
813
|
-
|
814
|
-
|
815
|
-
|
816
|
-
|
817
|
-
|
818
|
-
|
819
|
-
|
820
|
-
|
821
|
-
|
822
|
-
|
823
|
-
|
824
|
-
|
825
|
-
|
826
|
-
|
827
|
-
|
828
|
-
|
829
|
-
|
830
|
-
|
831
|
-
|
832
|
-
|
833
|
-
|
834
|
-
|
835
|
-
|
836
|
-
|
837
|
-
|
838
|
-
|
839
|
-
|
840
|
-
|
841
|
-
|
842
|
-
|
843
|
-
|
844
|
-
|
845
|
-
|
846
|
-
|
847
|
-
|
848
|
-
|
849
|
-
|
850
|
-
|
851
|
-
|
852
|
-
|
853
|
-
|
854
|
-
|
855
|
-
|
856
|
-
|
857
|
-
|
858
|
-
|
859
|
-
|
860
|
-
|
861
|
-
|
862
|
-
|
863
|
-
|
864
|
-
|
865
|
-
|
866
|
-
|
867
|
-
|
868
|
-
|
869
|
-
|
870
|
-
|
871
|
-
|
872
|
-
|
873
|
-
|
874
|
-
|
875
|
-
|
876
|
-
|
877
|
-
|
878
|
-
|
879
|
-
|
880
|
-
|
881
|
-
|
882
|
-
|
883
|
-
|
884
|
-
|
885
|
-
|
886
|
-
|
887
|
-
|
888
|
-
|
889
|
-
|
890
|
-
|
891
|
-
|
892
|
-
|
893
|
-
|
894
|
-
|
895
|
-
|
896
|
-
|
897
|
-
|
898
|
-
|
899
|
-
|
900
|
-
|
901
|
-
|
902
|
-
|
903
|
-
|
904
|
-
|
905
|
-
|
906
|
-
|
907
|
-
|
908
|
-
|
909
|
-
|
910
|
-
|
911
|
-
|
912
|
-
|
913
|
-
|
914
|
-
|
915
|
-
|
916
|
-
|
917
|
-
|
918
|
-
|
919
|
-
|
920
|
-
|
921
|
-
|
922
|
-
|
923
|
-
|
924
|
-
|
925
|
-
|
926
|
-
|
927
|
-
|
928
|
-
|
929
|
-
|
930
|
-
|
931
|
-
|
932
|
-
|
933
|
-
|
934
|
-
|
935
|
-
|
936
|
-
|
937
|
-
|
938
|
-
|
939
|
-
|
940
|
-
|
941
|
-
|
942
|
-
|
943
|
-
|
944
|
-
|
945
|
-
|
946
|
-
|
947
|
-
|
948
|
-
|
949
|
-
|
950
|
-
|
951
|
-
|
952
|
-
|
953
|
-
|
954
|
-
|
955
|
-
|
956
|
-
|
957
|
-
|
958
|
-
|
959
|
-
|
960
|
-
|
961
|
-
|
962
|
-
|
963
|
-
|
964
|
-
|
965
|
-
|
966
|
-
|
967
|
-
|
968
|
-
|
969
|
-
|
970
|
-
|
971
|
-
|
972
|
-
|
973
|
-
|
974
|
-
|
975
|
-
|
976
|
-
|
977
|
-
|
978
|
-
|
979
|
-
|
980
|
-
|
981
|
-
|
982
|
-
|
983
|
-
|
984
|
-
|
985
|
-
|
986
|
-
|
987
|
-
|
988
|
-
|
989
|
-
|
990
|
-
|
991
|
-
|
992
|
-
|
993
|
-
|
994
|
-
|
995
|
-
|
996
|
-
|
997
|
-
|
998
|
-
|
999
|
-
|
1000
|
-
|
1001
|
-
|
1002
|
-
|
1003
|
-
|
1004
|
-
|
1005
|
-
|
1006
|
-
|
1007
|
-
|
1008
|
-
|
1009
|
-
|
1010
|
-
|
1011
|
-
|
1012
|
-
|
1013
|
-
|
1014
|
-
|
1015
|
-
|
1016
|
-
|
1017
|
-
|
1018
|
-
|
1019
|
-
|
1020
|
-
|
1021
|
-
|
1022
|
-
|
1023
|
-
|
1024
|
-
|
1025
|
-
|
1026
|
-
|
1027
|
-
|
1028
|
-
|
1029
|
-
|
1030
|
-
|
1031
|
-
|
1032
|
-
|
1033
|
-
|
1034
|
-
|
1035
|
-
|
1036
|
-
|
1037
|
-
|
1038
|
-
|
1039
|
-
|
1040
|
-
|
1041
|
-
|
1042
|
-
|
1043
|
-
|
1044
|
-
|
1045
|
-
|
1046
|
-
|
1047
|
-
|
1048
|
-
|
1049
|
-
|
1050
|
-
|
1051
|
-
|
1052
|
-
|
1053
|
-
|
1054
|
-
|
1055
|
-
|
1056
|
-
|
1057
|
-
|
1058
|
-
|
1059
|
-
|
1060
|
-
|
1061
|
-
|
1062
|
-
|
1063
|
-
|
1064
|
-
|
1065
|
-
|
1066
|
-
|
1067
|
-
|
1068
|
-
|
1069
|
-
|
1070
|
-
|
1071
|
-
|
1072
|
-
|
1073
|
-
|
1074
|
-
|
1075
|
-
|
1076
|
-
|
1077
|
-
|
1078
|
-
|
1079
|
-
|
1080
|
-
|
1081
|
-
|
1082
|
-
|
1083
|
-
|
1084
|
-
|
1085
|
-
|
1086
|
-
|
1087
|
-
|
1088
|
-
|
1089
|
-
|
1090
|
-
|
1091
|
-
|
1092
|
-
|
1093
|
-
|
1094
|
-
|
1095
|
-
|
1096
|
-
|
1097
|
-
|
1098
|
-
|
1099
|
-
|
1100
|
-
|
1101
|
-
|
1102
|
-
|
1103
|
-
|
1104
|
-
|
1105
|
-
|
1106
|
-
|
1107
|
-
|
1108
|
-
|
1109
|
-
|
1110
|
-
|
1111
|
-
|
1112
|
-
|
1113
|
-
|
1114
|
-
|
1115
|
-
|
1116
|
-
|
1117
|
-
|
1118
|
-
|
1119
|
-
|
1120
|
-
|
1121
|
-
|
1122
|
-
|
1123
|
-
|
1124
|
-
|
1125
|
-
|
1126
|
-
|
1127
|
-
|
1128
|
-
|
1129
|
-
|
1130
|
-
|
1131
|
-
|
1132
|
-
|
1133
|
-
|
1134
|
-
|
1135
|
-
|
1136
|
-
|
1137
|
-
|
1138
|
-
|
1139
|
-
|
1140
|
-
|
1141
|
-
|
1142
|
-
|
1143
|
-
|
1144
|
-
|
1145
|
-
|
1146
|
-
|
1147
|
-
|
1148
|
-
|
1149
|
-
|
1150
|
-
|
1151
|
-
|
1152
|
-
|
1153
|
-
|
1154
|
-
|
1155
|
-
|
1156
|
-
|
1157
|
-
|
1158
|
-
|
1159
|
-
|
1160
|
-
|
1161
|
-
|
1162
|
-
|
1163
|
-
|
1164
|
-
|
1165
|
-
|
1166
|
-
|
1167
|
-
|
1168
|
-
|
1169
|
-
|
1170
|
-
|
1171
|
-
|
1172
|
-
|
1173
|
-
|
1174
|
-
|
1175
|
-
|
1176
|
-
|
1177
|
-
|
1178
|
-
|
1179
|
-
|
1180
|
-
|
1181
|
-
|
1182
|
-
|
1183
|
-
|
1184
|
-
|
1185
|
-
|
1186
|
-
|
1187
|
-
|
1188
|
-
|
1189
|
-
|
1190
|
-
|
1191
|
-
|
1192
|
-
|
1193
|
-
|
1194
|
-
|
1195
|
-
|
1196
|
-
|
1197
|
-
|
1198
|
-
|
1199
|
-
|
1200
|
-
|
1201
|
-
|
1202
|
-
|
1203
|
-
|
1204
|
-
|
1205
|
-
|
1206
|
-
|
1207
|
-
|
1208
|
-
|
1209
|
-
|
1210
|
-
|
1211
|
-
|
1212
|
-
|
1213
|
-
|
1214
|
-
|
1215
|
-
|
1216
|
-
|
1217
|
-
|
1218
|
-
|
1219
|
-
|
1220
|
-
|
1221
|
-
|
1222
|
-
|
1223
|
-
|
1224
|
-
|
1225
|
-
|
1226
|
-
|
1227
|
-
|
1228
|
-
|
1229
|
-
|
1230
|
-
|
1231
|
-
|
1232
|
-
|
1233
|
-
|
1234
|
-
|
1235
|
-
|
1236
|
-
|
1237
|
-
|
1238
|
-
|
1239
|
-
|
1240
|
-
|
1241
|
-
|
1242
|
-
|
1243
|
-
|
1244
|
-
|
1245
|
-
|
1246
|
-
|
1247
|
-
|
1248
|
-
|
1249
|
-
|
1250
|
-
|
1251
|
-
|
1252
|
-
|
1253
|
-
|
1254
|
-
|
1255
|
-
|
1256
|
-
|
1257
|
-
|
1258
|
-
|
1259
|
-
|
1260
|
-
|
1261
|
-
|
1262
|
-
|
1263
|
-
|
1264
|
-
|
1265
|
-
|
1266
|
-
|
1267
|
-
|
1268
|
-
|
1269
|
-
|
1270
|
-
|
1271
|
-
|
1272
|
-
|
1273
|
-
|
1274
|
-
|
1275
|
-
|
1276
|
-
|
1277
|
-
|
1278
|
-
|
1279
|
-
|
1280
|
-
|
1281
|
-
|
1282
|
-
|
1283
|
-
|
1284
|
-
|
1285
|
-
|
1286
|
-
|
1287
|
-
|
1288
|
-
|
1289
|
-
|
1290
|
-
|
1291
|
-
|
1292
|
-
|
1293
|
-
|
1294
|
-
|
1295
|
-
|
1296
|
-
|
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 © 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" 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&href=http%3A%2F%2Fwww.xboxgamertag.com%2Fsearch%2Fbelial1984%2F&send=false&layout=button_count&width=100&show_faces=false&action=like&colorscheme=light&font&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
|
+
© 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
|