Warning: You are using TidyHTML mode! Pages MAY and probably WILL break. To disable, click here or append 'xxx-off=1' to the URL!

Register - Login
Views: 57859503
Main - Memberlist - Active users - Calendar - Wiki - IRC Chat - Online users
Ranks - Rules/FAQ - JCS - Stats - Latest Posts - Color Chart - Smilies
10-15-14 09:15:31 PM

Jul - Posts by Zero One
Pages: 1 2 3 4 5 6 7 8 9 10 ... 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
Zero One
4820
Zero One
Level: 108


Posts: 4558/4828
EXP: 13440907
For next: 79592

Since: 05-24-10
From: Delta Quadrant

Since last post: 21 days
Last activity: 13 hours

Posted on 09-06-13 04:07:03 PM, in Weather Topic Link
Rained heavily all day today! As a bonus, I walked out in it I am a happy Zero.

--------------------
This is a Heisenberg post. I know I posted this really fast, but I don't know where...
My YouTube Channel and Triggernometry Class!
Crossover - The Comic!
My Livestream. Check it! And now, check out my Twitch!
3DS Code: 2879-0110-5138

Zero One
4820
Zero One
Level: 108


Posts: 4559/4828
EXP: 13440907
For next: 79592

Since: 05-24-10
From: Delta Quadrant

Since last post: 21 days
Last activity: 13 hours

Posted on 09-07-13 04:00:17 PM, in What're you playing right now? (last edited by Zero One at 09-07-13 04:06:21 PM) Link
Prime 2 beaten! With a high 90's% of scans and 95% of items. I would've looked for the final 5 items, but I'm certain that they're all Missile tanks and screw that. Emperor Ing Stage 1 is a little harder when you lose the ability to freely look upwards while still moving. Dark Samus 4 definitely had it in for me. Every time I'd try to land the final blow, one of two things would happen. Either I'd miss the Phazon particles completely, or I'd get them and then immediately backpedal into some Phazon and drop the charge. Finally nailed her with about 2 minutes left, then revelled in my success (i.e., enjoy me some credits music).

Yesterday, I went around to a friend's house and played on his Wii U for hours The Game Pad is so comfortable to hold and Assassin's Creed III was pretty awesome. Arkham City took some getting used to; after playing it on the PS3 the entire time, suddenly having to use the Game Pad to perform functions was quite unusual. As an example, you can't use the D-Pad to select Batman's gadgets. You have to press Up for a menu to appear on the Game Pad. Then you can either select the gadget you want, or attach three gadgets to the cardinal directions on the D-Pad. Quite counter-intuitive, considering that on the PS3, you could simply use all 8 directions, or double-tap to access ones further out. The Armoured Edition's BAT mode was pretty interesting, but not something I see myself using a lot. Also, I played Metroid Prime 2 on the Trilogy with it

I definitely need a Wii U...

--------------------
This is a Heisenberg post. I know I posted this really fast, but I don't know where...
My YouTube Channel and Triggernometry Class!
Crossover - The Comic!
My Livestream. Check it! And now, check out my Twitch!
3DS Code: 2879-0110-5138

Zero One
4820
Zero One
Level: 108


Posts: 4560/4828
EXP: 13440907
For next: 79592

Since: 05-24-10
From: Delta Quadrant

Since last post: 21 days
Last activity: 13 hours

Posted on 09-08-13 04:42:51 AM, in What are you listening to now? Link
Mesmonium - Automation from Harmony of a Hunter 101% Run.

I guess this pretty much completes my Metroid Prime 2 kick. Sanctuary Fortress is in competition with Torvus Bog for best area in the game and they both have great music, but Automation puts Sanctuary Fortress just in front.

--------------------
This is a Heisenberg post. I know I posted this really fast, but I don't know where...
My YouTube Channel and Triggernometry Class!
Crossover - The Comic!
My Livestream. Check it! And now, check out my Twitch!
3DS Code: 2879-0110-5138

Zero One
4820
Zero One
Level: 108


Posts: 4561/4828
EXP: 13440907
For next: 79592

Since: 05-24-10
From: Delta Quadrant

Since last post: 21 days
Last activity: 13 hours

Posted on 09-09-13 10:10:41 AM, in What are you eating right now? Link
Woke up late, and quite hungry, so I just had a bowl of chicken flavoured noodles. Surprisingly filling, especially considering that it's less than 200 calories.

Originally posted by Sofi
Heat a pan up to medium (about six).


6 is the highest heat on my hobs

--------------------
This is a Heisenberg post. I know I posted this really fast, but I don't know where...
My YouTube Channel and Triggernometry Class!
Crossover - The Comic!
My Livestream. Check it! And now, check out my Twitch!
3DS Code: 2879-0110-5138

(post in restricted forum)
(post in restricted forum)
Zero One
4820
Zero One
Level: 108


Posts: 4565/4828
EXP: 13440907
For next: 79592

Since: 05-24-10
From: Delta Quadrant

Since last post: 21 days
Last activity: 13 hours

Posted on 09-11-13 06:32:06 PM, in What are you listening to now? Link
Metroid Prime Trilogy OST, currently Omega Pirate from Prime 1. Yes, I know, I have a problem.

--------------------
This is a Heisenberg post. I know I posted this really fast, but I don't know where...
My YouTube Channel and Triggernometry Class!
Crossover - The Comic!
My Livestream. Check it! And now, check out my Twitch!
3DS Code: 2879-0110-5138

Zero One
4820
Zero One
Level: 108


Posts: 4566/4828
EXP: 13440907
For next: 79592

Since: 05-24-10
From: Delta Quadrant

Since last post: 21 days
Last activity: 13 hours

Posted on 09-14-13 01:25:10 AM, in C# LuaInterface (last edited by Zero One at 09-14-13 10:10:01 AM) Link
I'm using LuaInterface to allow me to call Lua scripts in a C# program. I have a Lua script that contains the following code:

teststring = "PRIVMSG #```` : SUCCESS!"
return teststring

and in C#, I'm trying to add the output to a Queue<string> by doing:

sendQueue.Enqueue(lua.DoFile(script)[0].ToString());

The Lua script returns an Object[] and the zeroth index is meant to contain a string. However, the Lua script only ever returns 'nil', instead of teststring. Any one have any ideas as to how I can fix this?

EDIT: Solution found!

var output = lua.DoFile(script).First().ToString();
Console.WriteLine(output);
sendQueue.Enqueue(output);

No idea why it works, just that it does.

--------------------
This is a Heisenberg post. I know I posted this really fast, but I don't know where...
My YouTube Channel and Triggernometry Class!
Crossover - The Comic!
My Livestream. Check it! And now, check out my Twitch!
3DS Code: 2879-0110-5138

(post in restricted forum)
Zero One
4820
Zero One
Level: 108


Posts: 4568/4828
EXP: 13440907
For next: 79592

Since: 05-24-10
From: Delta Quadrant

Since last post: 21 days
Last activity: 13 hours

Posted on 09-14-13 12:36:21 PM, in C# LuaInterface Link
Returns the first element in a sequence. I'm quite certain that First() is part of C# generics and not to do with Lua.

--------------------
This is a Heisenberg post. I know I posted this really fast, but I don't know where...
My YouTube Channel and Triggernometry Class!
Crossover - The Comic!
My Livestream. Check it! And now, check out my Twitch!
3DS Code: 2879-0110-5138

Zero One
4820
Zero One
Level: 108


Posts: 4569/4828
EXP: 13440907
For next: 79592

Since: 05-24-10
From: Delta Quadrant

Since last post: 21 days
Last activity: 13 hours

Posted on 09-15-13 02:05:14 AM, in What's on YOUR mind? Link
Packed away my computer mouse in to my suitcase. Rapidly got proficient at using the shortcut keys!

--------------------
This is a Heisenberg post. I know I posted this really fast, but I don't know where...
My YouTube Channel and Triggernometry Class!
Crossover - The Comic!
My Livestream. Check it! And now, check out my Twitch!
3DS Code: 2879-0110-5138

Zero One
4820
Zero One
Level: 108


Posts: 4570/4828
EXP: 13440907
For next: 79592

Since: 05-24-10
From: Delta Quadrant

Since last post: 21 days
Last activity: 13 hours

Posted on 09-15-13 10:04:04 AM, in Jul Pub Link
Moved to my University accommodation today. Neighbours are noisy and the WiFi disconnects me every 30 minutes. Greeeaaaat.

--------------------
This is a Heisenberg post. I know I posted this really fast, but I don't know where...
My YouTube Channel and Triggernometry Class!
Crossover - The Comic!
My Livestream. Check it! And now, check out my Twitch!
3DS Code: 2879-0110-5138

(post in restricted forum)
(post in restricted forum)
(post in restricted forum)
(post in restricted forum)
Zero One
4820
Zero One
Level: 108


Posts: 4575/4828
EXP: 13440907
For next: 79592

Since: 05-24-10
From: Delta Quadrant

Since last post: 21 days
Last activity: 13 hours

Posted on 09-21-13 11:33:37 AM, in What are you listening to now? Link
Iron - Within Temptation. On InfiniteLooper because my external hard drive with all of my stuff on is downstairs and I can't be bothered to go get it and plug it all in.

--------------------
This is a Heisenberg post. I know I posted this really fast, but I don't know where...
My YouTube Channel and Triggernometry Class!
Crossover - The Comic!
My Livestream. Check it! And now, check out my Twitch!
3DS Code: 2879-0110-5138

Zero One
4820
Zero One
Level: 108


Posts: 4576/4828
EXP: 13440907
For next: 79592

Since: 05-24-10
From: Delta Quadrant

Since last post: 21 days
Last activity: 13 hours

Posted on 09-23-13 05:40:14 AM, in What's on YOUR mind? Link
Welcome to University!

Now sit there for 2 weeks while you do nothing important.

--------------------
This is a Heisenberg post. I know I posted this really fast, but I don't know where...
My YouTube Channel and Triggernometry Class!
Crossover - The Comic!
My Livestream. Check it! And now, check out my Twitch!
3DS Code: 2879-0110-5138

(post in restricted forum)
(post in restricted forum)
Pages: 1 2 3 4 5 6 7 8 9 10 ... 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
Jul - Posts by Zero One






Rusted Logic

Acmlmboard - 07/23/2013 b378.03
©2000-2013 Acmlm, Xkeeper, Inuyasha, et al.

35 database queries, 22 query cache hits.
Query execution time:  0.302560 seconds
Script execution time:  0.065325 seconds
Total render time:  0.367885 seconds


TidyHTML vomit below
line 1 column 1 - Warning: missing <!DOCTYPE> declaration
line 94 column 11 - Warning: <form> isn't allowed in <table> elements
line 93 column 10 - Info: <table> previously mentioned
line 95 column 11 - Warning: missing <tr>
line 95 column 124 - Warning: missing </font> before </td>
line 99 column 16 - Warning: plain text isn't allowed in <tr> elements
line 95 column 11 - Info: <tr> previously mentioned
line 100 column 68 - Warning: <nobr> is not approved by W3C
line 100 column 68 - Warning: missing </nobr> before </td>
line 117 column 68 - Warning: <nobr> is not approved by W3C
line 117 column 68 - Warning: missing </nobr> before <tr>
line 141 column 35 - Warning: missing <tr>
line 141 column 50 - Warning: missing </font> before </td>
line 141 column 135 - Warning: missing </font> before </table>
line 143 column 35 - Warning: missing <tr>
line 143 column 96 - Warning: unescaped & or unknown entity "&page"
line 143 column 130 - Warning: unescaped & or unknown entity "&page"
line 143 column 164 - Warning: unescaped & or unknown entity "&page"
line 143 column 198 - Warning: unescaped & or unknown entity "&page"
line 143 column 232 - Warning: unescaped & or unknown entity "&page"
line 143 column 266 - Warning: unescaped & or unknown entity "&page"
line 143 column 300 - Warning: unescaped & or unknown entity "&page"
line 143 column 334 - Warning: unescaped & or unknown entity "&page"
line 143 column 368 - Warning: unescaped & or unknown entity "&page"
line 143 column 402 - Warning: unescaped & or unknown entity "&page"
line 143 column 441 - Warning: unescaped & or unknown entity "&page"
line 143 column 479 - Warning: unescaped & or unknown entity "&page"
line 143 column 517 - Warning: unescaped & or unknown entity "&page"
line 143 column 555 - Warning: unescaped & or unknown entity "&page"
line 143 column 597 - Warning: unescaped & or unknown entity "&page"
line 143 column 635 - Warning: unescaped & or unknown entity "&page"
line 143 column 673 - Warning: unescaped & or unknown entity "&page"
line 143 column 711 - Warning: unescaped & or unknown entity "&page"
line 143 column 749 - Warning: unescaped & or unknown entity "&page"
line 143 column 787 - Warning: unescaped & or unknown entity "&page"
line 143 column 825 - Warning: unescaped & or unknown entity "&page"
line 143 column 863 - Warning: unescaped & or unknown entity "&page"
line 143 column 901 - Warning: unescaped & or unknown entity "&page"
line 143 column 939 - Warning: unescaped & or unknown entity "&page"
line 143 column 977 - Warning: unescaped & or unknown entity "&page"
line 143 column 1015 - Warning: unescaped & or unknown entity "&page"
line 143 column 1053 - Warning: unescaped & or unknown entity "&page"
line 143 column 50 - Warning: missing </font> before </td>
line 143 column 1092 - Warning: missing </font> before </table>
line 150 column 9 - Warning: <div> isn't allowed in <tr> elements
line 149 column 9 - Info: <tr> previously mentioned
line 152 column 9 - Warning: missing <tr>
line 166 column 13 - Warning: missing <tr>
line 167 column 27 - Warning: <nobr> is not approved by W3C
line 169 column 390 - Warning: <td> attribute "tahoma"," lacks value
line 169 column 390 - Warning: <td> attribute with missing trailing quote mark
line 177 column 15 - Warning: missing <td>
line 178 column 9 - Warning: <div> isn't allowed in <tr> elements
line 177 column 15 - Info: <tr> previously mentioned
line 180 column 9 - Warning: missing <tr>
line 194 column 13 - Warning: missing <tr>
line 195 column 27 - Warning: <nobr> is not approved by W3C
line 197 column 390 - Warning: <td> attribute "tahoma"," lacks value
line 197 column 390 - Warning: <td> attribute with missing trailing quote mark
line 209 column 15 - Warning: missing <td>
line 210 column 9 - Warning: <div> isn't allowed in <tr> elements
line 209 column 15 - Info: <tr> previously mentioned
line 212 column 9 - Warning: missing <tr>
line 226 column 13 - Warning: missing <tr>
line 227 column 27 - Warning: <nobr> is not approved by W3C
line 229 column 390 - Warning: <td> attribute "tahoma"," lacks value
line 229 column 390 - Warning: <td> attribute with missing trailing quote mark
line 239 column 15 - Warning: missing <td>
line 240 column 9 - Warning: <div> isn't allowed in <tr> elements
line 239 column 15 - Info: <tr> previously mentioned
line 242 column 9 - Warning: missing <tr>
line 256 column 13 - Warning: missing <tr>
line 257 column 27 - Warning: <nobr> is not approved by W3C
line 259 column 390 - Warning: <td> attribute "tahoma"," lacks value
line 259 column 390 - Warning: <td> attribute with missing trailing quote mark
line 271 column 15 - Warning: missing <td>
line 271 column 19 - Warning: discarding unexpected <table>
line 272 column 41 - Warning: missing <td>
line 275 column 41 - Warning: <tr> isn't allowed in <body> elements
line 90 column 9 - Info: <body> previously mentioned
line 275 column 41 - Warning: inserting implicit <table>
line 275 column 45 - Warning: discarding unexpected <table>
line 276 column 41 - Warning: missing <td>
line 279 column 41 - Warning: <tr> isn't allowed in <body> elements
line 90 column 9 - Info: <body> previously mentioned
line 279 column 41 - Warning: inserting implicit <table>
line 280 column 9 - Warning: <div> isn't allowed in <tr> elements
line 279 column 41 - Info: <tr> previously mentioned
line 282 column 9 - Warning: missing <tr>
line 296 column 13 - Warning: missing <tr>
line 297 column 27 - Warning: <nobr> is not approved by W3C
line 299 column 390 - Warning: <td> attribute "tahoma"," lacks value
line 299 column 390 - Warning: <td> attribute with missing trailing quote mark
line 307 column 15 - Warning: missing <td>
line 308 column 9 - Warning: <div> isn't allowed in <tr> elements
line 307 column 15 - Info: <tr> previously mentioned
line 310 column 9 - Warning: missing <tr>
line 324 column 13 - Warning: missing <tr>
line 325 column 27 - Warning: <nobr> is not approved by W3C
line 327 column 390 - Warning: <td> attribute "tahoma"," lacks value
line 327 column 390 - Warning: <td> attribute with missing trailing quote mark
line 352 column 15 - Warning: missing <td>
line 352 column 19 - Warning: discarding unexpected <table>
line 353 column 41 - Warning: missing <td>
line 356 column 41 - Warning: <tr> isn't allowed in <body> elements
line 90 column 9 - Info: <body> previously mentioned
line 356 column 41 - Warning: inserting implicit <table>
line 357 column 9 - Warning: <div> isn't allowed in <tr> elements
line 356 column 41 - Info: <tr> previously mentioned
line 359 column 9 - Warning: missing <tr>
line 373 column 13 - Warning: missing <tr>
line 374 column 27 - Warning: <nobr> is not approved by W3C
line 376 column 390 - Warning: <td> attribute "tahoma"," lacks value
line 376 column 390 - Warning: <td> attribute with missing trailing quote mark
line 384 column 15 - Warning: missing <td>
line 385 column 9 - Warning: <div> isn't allowed in <tr> elements
line 384 column 15 - Info: <tr> previously mentioned
line 387 column 9 - Warning: missing <tr>
line 401 column 13 - Warning: missing <tr>
line 402 column 27 - Warning: <nobr> is not approved by W3C
line 404 column 390 - Warning: <td> attribute "tahoma"," lacks value
line 404 column 390 - Warning: <td> attribute with missing trailing quote mark
line 412 column 15 - Warning: missing <td>
line 413 column 9 - Warning: <div> isn't allowed in <tr> elements
line 412 column 15 - Info: <tr> previously mentioned
line 415 column 9 - Warning: missing <tr>
line 429 column 13 - Warning: missing <tr>
line 430 column 27 - Warning: <nobr> is not approved by W3C
line 432 column 390 - Warning: <td> attribute "tahoma"," lacks value
line 432 column 390 - Warning: <td> attribute with missing trailing quote mark
line 440 column 15 - Warning: missing <td>
line 440 column 19 - Warning: discarding unexpected <table>
line 441 column 41 - Warning: missing <td>
line 444 column 41 - Warning: <tr> isn't allowed in <body> elements
line 90 column 9 - Info: <body> previously mentioned
line 444 column 41 - Warning: inserting implicit <table>
line 444 column 45 - Warning: discarding unexpected <table>
line 445 column 41 - Warning: missing <td>
line 448 column 41 - Warning: <tr> isn't allowed in <body> elements
line 90 column 9 - Info: <body> previously mentioned
line 448 column 41 - Warning: inserting implicit <table>
line 448 column 45 - Warning: discarding unexpected <table>
line 449 column 41 - Warning: missing <td>
line 452 column 41 - Warning: <tr> isn't allowed in <body> elements
line 90 column 9 - Info: <body> previously mentioned
line 452 column 41 - Warning: inserting implicit <table>
line 452 column 45 - Warning: discarding unexpected <table>
line 453 column 41 - Warning: missing <td>
line 456 column 41 - Warning: <tr> isn't allowed in <body> elements
line 90 column 9 - Info: <body> previously mentioned
line 456 column 41 - Warning: inserting implicit <table>
line 457 column 9 - Warning: <div> isn't allowed in <tr> elements
line 456 column 41 - Info: <tr> previously mentioned
line 459 column 9 - Warning: missing <tr>
line 473 column 13 - Warning: missing <tr>
line 474 column 27 - Warning: <nobr> is not approved by W3C
line 476 column 390 - Warning: <td> attribute "tahoma"," lacks value
line 476 column 390 - Warning: <td> attribute with missing trailing quote mark
line 484 column 15 - Warning: missing <td>
line 485 column 9 - Warning: <div> isn't allowed in <tr> elements
line 484 column 15 - Info: <tr> previously mentioned
line 487 column 9 - Warning: missing <tr>
line 501 column 13 - Warning: missing <tr>
line 502 column 27 - Warning: <nobr> is not approved by W3C
line 504 column 390 - Warning: <td> attribute "tahoma"," lacks value
line 504 column 390 - Warning: <td> attribute with missing trailing quote mark
line 514 column 15 - Warning: missing <td>
line 514 column 19 - Warning: discarding unexpected <table>
line 515 column 41 - Warning: missing <td>
line 518 column 41 - Warning: <tr> isn't allowed in <body> elements
line 90 column 9 - Info: <body> previously mentioned
line 518 column 41 - Warning: inserting implicit <table>
line 518 column 45 - Warning: discarding unexpected <table>
line 519 column 41 - Warning: missing <td>
line 526 column 35 - Warning: missing <tr>
line 526 column 96 - Warning: unescaped & or unknown entity "&page"
line 526 column 130 - Warning: unescaped & or unknown entity "&page"
line 526 column 164 - Warning: unescaped & or unknown entity "&page"
line 526 column 198 - Warning: unescaped & or unknown entity "&page"
line 526 column 232 - Warning: unescaped & or unknown entity "&page"
line 526 column 266 - Warning: unescaped & or unknown entity "&page"
line 526 column 300 - Warning: unescaped & or unknown entity "&page"
line 526 column 334 - Warning: unescaped & or unknown entity "&page"
line 526 column 368 - Warning: unescaped & or unknown entity "&page"
line 526 column 402 - Warning: unescaped & or unknown entity "&page"
line 526 column 441 - Warning: unescaped & or unknown entity "&page"
line 526 column 479 - Warning: unescaped & or unknown entity "&page"
line 526 column 517 - Warning: unescaped & or unknown entity "&page"
line 526 column 555 - Warning: unescaped & or unknown entity "&page"
line 526 column 597 - Warning: unescaped & or unknown entity "&page"
line 526 column 635 - Warning: unescaped & or unknown entity "&page"
line 526 column 673 - Warning: unescaped & or unknown entity "&page"
line 526 column 711 - Warning: unescaped & or unknown entity "&page"
line 526 column 749 - Warning: unescaped & or unknown entity "&page"
line 526 column 787 - Warning: unescaped & or unknown entity "&page"
line 526 column 825 - Warning: unescaped & or unknown entity "&page"
line 526 column 863 - Warning: unescaped & or unknown entity "&page"
line 526 column 901 - Warning: unescaped & or unknown entity "&page"
line 526 column 939 - Warning: unescaped & or unknown entity "&page"
line 526 column 977 - Warning: unescaped & or unknown entity "&page"
line 526 column 1015 - Warning: unescaped & or unknown entity "&page"
line 526 column 1053 - Warning: unescaped & or unknown entity "&page"
line 526 column 50 - Warning: missing </font> before </td>
line 526 column 1092 - Warning: missing </font> before </table>
line 528 column 35 - Warning: missing <tr>
line 528 column 50 - Warning: missing </font> before </td>
line 528 column 135 - Warning: missing </font> before </table>
line 530 column 17 - Warning: discarding unexpected </textarea>
line 530 column 28 - Warning: discarding unexpected </form>
line 530 column 35 - Warning: discarding unexpected </embed>
line 530 column 43 - Warning: discarding unexpected </noembed>
line 530 column 53 - Warning: discarding unexpected </noscript>
line 530 column 64 - Warning: discarding unexpected </noembed>
line 530 column 74 - Warning: discarding unexpected </embed>
line 530 column 82 - Warning: discarding unexpected </table>
line 530 column 90 - Warning: discarding unexpected </table>
line 539 column 9 - Warning: missing </font> before <table>
line 555 column 9 - Warning: inserting implicit <font>
line 567 column 23 - Warning: inserting implicit <font>
line 574 column 58 - Warning: discarding unexpected </font>
line 532 column 1 - Warning: missing </center>
line 91 column 9 - Warning: <img> lacks "alt" attribute
line 93 column 10 - Warning: <table> lacks "summary" attribute
line 95 column 63 - Warning: <img> lacks "alt" attribute
line 100 column 19 - Warning: <td> attribute "width" has invalid value "120px"
line 100 column 93 - Warning: <img> lacks "alt" attribute
line 117 column 19 - Warning: <td> attribute "width" has invalid value "120px"
line 117 column 98 - Warning: <img> lacks "alt" attribute
line 136 column 1 - Warning: <table> lacks "summary" attribute
line 136 column 240 - Warning: <td> attribute "bgcolor" lacks value
line 141 column 17 - Warning: <table> lacks "summary" attribute
line 143 column 17 - Warning: <table> lacks "summary" attribute
line 151 column 9 - Warning: <table> lacks "summary" attribute
line 154 column 16 - Warning: <img> proprietary attribute value "absmiddle"
line 154 column 16 - Warning: <img> lacks "alt" attribute
line 154 column 59 - Warning: <img> proprietary attribute value "absmiddle"
line 154 column 59 - Warning: <img> lacks "alt" attribute
line 154 column 102 - Warning: <img> proprietary attribute value "absmiddle"
line 154 column 102 - Warning: <img> lacks "alt" attribute
line 154 column 145 - Warning: <img> proprietary attribute value "absmiddle"
line 154 column 145 - Warning: <img> lacks "alt" attribute
line 154 column 188 - Warning: <img> proprietary attribute value "absmiddle"
line 154 column 188 - Warning: <img> lacks "alt" attribute
line 154 column 231 - Warning: <img> proprietary attribute value "absmiddle"
line 154 column 231 - Warning: <img> lacks "alt" attribute
line 154 column 274 - Warning: <img> proprietary attribute value "absmiddle"
line 154 column 274 - Warning: <img> lacks "alt" attribute
line 154 column 317 - Warning: <img> proprietary attribute value "absmiddle"
line 154 column 317 - Warning: <img> lacks "alt" attribute
line 154 column 360 - Warning: <img> proprietary attribute value "absmiddle"
line 154 column 360 - Warning: <img> lacks "alt" attribute
line 154 column 403 - Warning: <img> proprietary attribute value "absmiddle"
line 154 column 403 - Warning: <img> lacks "alt" attribute
line 155 column 23 - Warning: <img> lacks "alt" attribute
line 155 column 64 - Warning: <img> lacks "alt" attribute
line 155 column 113 - Warning: <img> lacks "alt" attribute
line 155 column 163 - Warning: <img> lacks "alt" attribute
line 156 column 11 - Warning: <img> lacks "alt" attribute
line 162 column 15 - Warning: <img> lacks "alt" attribute
line 165 column 11 - Warning: <table> lacks "summary" attribute
line 169 column 74 - Warning: <table> proprietary attribute "height"
line 169 column 74 - Warning: <table> lacks "summary" attribute
line 169 column 322 - Warning: <table> lacks "summary" attribute
line 169 column 648 - Warning: <img> proprietary attribute value "absmiddle"
line 169 column 648 - Warning: <img> lacks "alt" attribute
line 179 column 9 - Warning: <table> lacks "summary" attribute
line 182 column 16 - Warning: <img> proprietary attribute value "absmiddle"
line 182 column 16 - Warning: <img> lacks "alt" attribute
line 182 column 59 - Warning: <img> proprietary attribute value "absmiddle"
line 182 column 59 - Warning: <img> lacks "alt" attribute
line 182 column 102 - Warning: <img> proprietary attribute value "absmiddle"
line 182 column 102 - Warning: <img> lacks "alt" attribute
line 182 column 145 - Warning: <img> proprietary attribute value "absmiddle"
line 182 column 145 - Warning: <img> lacks "alt" attribute
line 182 column 188 - Warning: <img> proprietary attribute value "absmiddle"
line 182 column 188 - Warning: <img> lacks "alt" attribute
line 182 column 231 - Warning: <img> proprietary attribute value "absmiddle"
line 182 column 231 - Warning: <img> lacks "alt" attribute
line 182 column 274 - Warning: <img> proprietary attribute value "absmiddle"
line 182 column 274 - Warning: <img> lacks "alt" attribute
line 182 column 317 - Warning: <img> proprietary attribute value "absmiddle"
line 182 column 317 - Warning: <img> lacks "alt" attribute
line 182 column 360 - Warning: <img> proprietary attribute value "absmiddle"
line 182 column 360 - Warning: <img> lacks "alt" attribute
line 182 column 403 - Warning: <img> proprietary attribute value "absmiddle"
line 182 column 403 - Warning: <img> lacks "alt" attribute
line 183 column 23 - Warning: <img> lacks "alt" attribute
line 183 column 64 - Warning: <img> lacks "alt" attribute
line 183 column 113 - Warning: <img> lacks "alt" attribute
line 183 column 163 - Warning: <img> lacks "alt" attribute
line 184 column 11 - Warning: <img> lacks "alt" attribute
line 190 column 15 - Warning: <img> lacks "alt" attribute
line 193 column 11 - Warning: <table> lacks "summary" attribute
line 194 column 157 - Warning: <font> attribute "color" had invalid value "97ACEF" and has been replaced
line 197 column 74 - Warning: <table> proprietary attribute "height"
line 197 column 74 - Warning: <table> lacks "summary" attribute
line 197 column 322 - Warning: <table> lacks "summary" attribute
line 199 column 1315 - Warning: <img> proprietary attribute value "absmiddle"
line 199 column 1315 - Warning: <img> lacks "alt" attribute
line 199 column 2140 - Warning: <img> proprietary attribute value "absmiddle"
line 199 column 2140 - Warning: <img> lacks "alt" attribute
line 211 column 9 - Warning: <table> lacks "summary" attribute
line 214 column 16 - Warning: <img> proprietary attribute value "absmiddle"
line 214 column 16 - Warning: <img> lacks "alt" attribute
line 214 column 59 - Warning: <img> proprietary attribute value "absmiddle"
line 214 column 59 - Warning: <img> lacks "alt" attribute
line 214 column 102 - Warning: <img> proprietary attribute value "absmiddle"
line 214 column 102 - Warning: <img> lacks "alt" attribute
line 214 column 145 - Warning: <img> proprietary attribute value "absmiddle"
line 214 column 145 - Warning: <img> lacks "alt" attribute
line 214 column 188 - Warning: <img> proprietary attribute value "absmiddle"
line 214 column 188 - Warning: <img> lacks "alt" attribute
line 214 column 231 - Warning: <img> proprietary attribute value "absmiddle"
line 214 column 231 - Warning: <img> lacks "alt" attribute
line 214 column 274 - Warning: <img> proprietary attribute value "absmiddle"
line 214 column 274 - Warning: <img> lacks "alt" attribute
line 214 column 317 - Warning: <img> proprietary attribute value "absmiddle"
line 214 column 317 - Warning: <img> lacks "alt" attribute
line 214 column 360 - Warning: <img> proprietary attribute value "absmiddle"
line 214 column 360 - Warning: <img> lacks "alt" attribute
line 214 column 403 - Warning: <img> proprietary attribute value "absmiddle"
line 214 column 403 - Warning: <img> lacks "alt" attribute
line 215 column 23 - Warning: <img> lacks "alt" attribute
line 215 column 64 - Warning: <img> lacks "alt" attribute
line 215 column 113 - Warning: <img> lacks "alt" attribute
line 215 column 163 - Warning: <img> lacks "alt" attribute
line 216 column 11 - Warning: <img> lacks "alt" attribute
line 222 column 15 - Warning: <img> lacks "alt" attribute
line 225 column 11 - Warning: <table> lacks "summary" attribute
line 229 column 74 - Warning: <table> proprietary attribute "height"
line 229 column 74 - Warning: <table> lacks "summary" attribute
line 229 column 322 - Warning: <table> lacks "summary" attribute
line 241 column 9 - Warning: <table> lacks "summary" attribute
line 244 column 16 - Warning: <img> proprietary attribute value "absmiddle"
line 244 column 16 - Warning: <img> lacks "alt" attribute
line 244 column 59 - Warning: <img> proprietary attribute value "absmiddle"
line 244 column 59 - Warning: <img> lacks "alt" attribute
line 244 column 102 - Warning: <img> proprietary attribute value "absmiddle"
line 244 column 102 - Warning: <img> lacks "alt" attribute
line 244 column 145 - Warning: <img> proprietary attribute value "absmiddle"
line 244 column 145 - Warning: <img> lacks "alt" attribute
line 244 column 188 - Warning: <img> proprietary attribute value "absmiddle"
line 244 column 188 - Warning: <img> lacks "alt" attribute
line 244 column 231 - Warning: <img> proprietary attribute value "absmiddle"
line 244 column 231 - Warning: <img> lacks "alt" attribute
line 244 column 274 - Warning: <img> proprietary attribute value "absmiddle"
line 244 column 274 - Warning: <img> lacks "alt" attribute
line 244 column 317 - Warning: <img> proprietary attribute value "absmiddle"
line 244 column 317 - Warning: <img> lacks "alt" attribute
line 244 column 360 - Warning: <img> proprietary attribute value "absmiddle"
line 244 column 360 - Warning: <img> lacks "alt" attribute
line 244 column 403 - Warning: <img> proprietary attribute value "absmiddle"
line 244 column 403 - Warning: <img> lacks "alt" attribute
line 245 column 23 - Warning: <img> lacks "alt" attribute
line 245 column 64 - Warning: <img> lacks "alt" attribute
line 245 column 113 - Warning: <img> lacks "alt" attribute
line 245 column 163 - Warning: <img> lacks "alt" attribute
line 246 column 11 - Warning: <img> lacks "alt" attribute
line 252 column 15 - Warning: <img> lacks "alt" attribute
line 255 column 11 - Warning: <table> lacks "summary" attribute
line 259 column 74 - Warning: <table> proprietary attribute "height"
line 259 column 74 - Warning: <table> lacks "summary" attribute
line 259 column 322 - Warning: <table> lacks "summary" attribute
line 263 column 923 - Warning: <img> proprietary attribute value "absmiddle"
line 263 column 923 - Warning: <img> lacks "alt" attribute
line 146 column 17 - Warning: <table> lacks "summary" attribute
line 275 column 41 - Warning: <table> lacks "summary" attribute
line 281 column 9 - Warning: <table> lacks "summary" attribute
line 284 column 16 - Warning: <img> proprietary attribute value "absmiddle"
line 284 column 16 - Warning: <img> lacks "alt" attribute
line 284 column 59 - Warning: <img> proprietary attribute value "absmiddle"
line 284 column 59 - Warning: <img> lacks "alt" attribute
line 284 column 102 - Warning: <img> proprietary attribute value "absmiddle"
line 284 column 102 - Warning: <img> lacks "alt" attribute
line 284 column 145 - Warning: <img> proprietary attribute value "absmiddle"
line 284 column 145 - Warning: <img> lacks "alt" attribute
line 284 column 188 - Warning: <img> proprietary attribute value "absmiddle"
line 284 column 188 - Warning: <img> lacks "alt" attribute
line 284 column 231 - Warning: <img> proprietary attribute value "absmiddle"
line 284 column 231 - Warning: <img> lacks "alt" attribute
line 284 column 274 - Warning: <img> proprietary attribute value "absmiddle"
line 284 column 274 - Warning: <img> lacks "alt" attribute
line 284 column 317 - Warning: <img> proprietary attribute value "absmiddle"
line 284 column 317 - Warning: <img> lacks "alt" attribute
line 284 column 360 - Warning: <img> proprietary attribute value "absmiddle"
line 284 column 360 - Warning: <img> lacks "alt" attribute
line 284 column 403 - Warning: <img> proprietary attribute value "absmiddle"
line 284 column 403 - Warning: <img> lacks "alt" attribute
line 285 column 23 - Warning: <img> lacks "alt" attribute
line 285 column 64 - Warning: <img> lacks "alt" attribute
line 285 column 113 - Warning: <img> lacks "alt" attribute
line 285 column 163 - Warning: <img> lacks "alt" attribute
line 286 column 11 - Warning: <img> lacks "alt" attribute
line 292 column 15 - Warning: <img> lacks "alt" attribute
line 295 column 11 - Warning: <table> lacks "summary" attribute
line 299 column 74 - Warning: <table> proprietary attribute "height"
line 299 column 74 - Warning: <table> lacks "summary" attribute
line 299 column 322 - Warning: <table> lacks "summary" attribute
line 309 column 9 - Warning: <table> lacks "summary" attribute
line 312 column 16 - Warning: <img> proprietary attribute value "absmiddle"
line 312 column 16 - Warning: <img> lacks "alt" attribute
line 312 column 59 - Warning: <img> proprietary attribute value "absmiddle"
line 312 column 59 - Warning: <img> lacks "alt" attribute
line 312 column 102 - Warning: <img> proprietary attribute value "absmiddle"
line 312 column 102 - Warning: <img> lacks "alt" attribute
line 312 column 145 - Warning: <img> proprietary attribute value "absmiddle"
line 312 column 145 - Warning: <img> lacks "alt" attribute
line 312 column 188 - Warning: <img> proprietary attribute value "absmiddle"
line 312 column 188 - Warning: <img> lacks "alt" attribute
line 312 column 231 - Warning: <img> proprietary attribute value "absmiddle"
line 312 column 231 - Warning: <img> lacks "alt" attribute
line 312 column 274 - Warning: <img> proprietary attribute value "absmiddle"
line 312 column 274 - Warning: <img> lacks "alt" attribute
line 312 column 317 - Warning: <img> proprietary attribute value "absmiddle"
line 312 column 317 - Warning: <img> lacks "alt" attribute
line 312 column 360 - Warning: <img> proprietary attribute value "absmiddle"
line 312 column 360 - Warning: <img> lacks "alt" attribute
line 312 column 403 - Warning: <img> proprietary attribute value "absmiddle"
line 312 column 403 - Warning: <img> lacks "alt" attribute
line 313 column 23 - Warning: <img> lacks "alt" attribute
line 313 column 64 - Warning: <img> lacks "alt" attribute
line 313 column 113 - Warning: <img> lacks "alt" attribute
line 313 column 163 - Warning: <img> lacks "alt" attribute
line 314 column 11 - Warning: <img> lacks "alt" attribute
line 320 column 15 - Warning: <img> lacks "alt" attribute
line 323 column 11 - Warning: <table> lacks "summary" attribute
line 324 column 144 - Warning: <font> attribute "color" had invalid value "97ACEF" and has been replaced
line 327 column 74 - Warning: <table> proprietary attribute "height"
line 327 column 74 - Warning: <table> lacks "summary" attribute
line 327 column 322 - Warning: <table> lacks "summary" attribute
line 279 column 41 - Warning: <table> lacks "summary" attribute
line 358 column 9 - Warning: <table> lacks "summary" attribute
line 361 column 16 - Warning: <img> proprietary attribute value "absmiddle"
line 361 column 16 - Warning: <img> lacks "alt" attribute
line 361 column 59 - Warning: <img> proprietary attribute value "absmiddle"
line 361 column 59 - Warning: <img> lacks "alt" attribute
line 361 column 102 - Warning: <img> proprietary attribute value "absmiddle"
line 361 column 102 - Warning: <img> lacks "alt" attribute
line 361 column 145 - Warning: <img> proprietary attribute value "absmiddle"
line 361 column 145 - Warning: <img> lacks "alt" attribute
line 361 column 188 - Warning: <img> proprietary attribute value "absmiddle"
line 361 column 188 - Warning: <img> lacks "alt" attribute
line 361 column 231 - Warning: <img> proprietary attribute value "absmiddle"
line 361 column 231 - Warning: <img> lacks "alt" attribute
line 361 column 274 - Warning: <img> proprietary attribute value "absmiddle"
line 361 column 274 - Warning: <img> lacks "alt" attribute
line 361 column 317 - Warning: <img> proprietary attribute value "absmiddle"
line 361 column 317 - Warning: <img> lacks "alt" attribute
line 361 column 360 - Warning: <img> proprietary attribute value "absmiddle"
line 361 column 360 - Warning: <img> lacks "alt" attribute
line 361 column 403 - Warning: <img> proprietary attribute value "absmiddle"
line 361 column 403 - Warning: <img> lacks "alt" attribute
line 362 column 23 - Warning: <img> lacks "alt" attribute
line 362 column 64 - Warning: <img> lacks "alt" attribute
line 362 column 113 - Warning: <img> lacks "alt" attribute
line 362 column 163 - Warning: <img> lacks "alt" attribute
line 363 column 11 - Warning: <img> lacks "alt" attribute
line 369 column 15 - Warning: <img> lacks "alt" attribute
line 372 column 11 - Warning: <table> lacks "summary" attribute
line 376 column 74 - Warning: <table> proprietary attribute "height"
line 376 column 74 - Warning: <table> lacks "summary" attribute
line 376 column 322 - Warning: <table> lacks "summary" attribute
line 386 column 9 - Warning: <table> lacks "summary" attribute
line 389 column 16 - Warning: <img> proprietary attribute value "absmiddle"
line 389 column 16 - Warning: <img> lacks "alt" attribute
line 389 column 59 - Warning: <img> proprietary attribute value "absmiddle"
line 389 column 59 - Warning: <img> lacks "alt" attribute
line 389 column 102 - Warning: <img> proprietary attribute value "absmiddle"
line 389 column 102 - Warning: <img> lacks "alt" attribute
line 389 column 145 - Warning: <img> proprietary attribute value "absmiddle"
line 389 column 145 - Warning: <img> lacks "alt" attribute
line 389 column 188 - Warning: <img> proprietary attribute value "absmiddle"
line 389 column 188 - Warning: <img> lacks "alt" attribute
line 389 column 231 - Warning: <img> proprietary attribute value "absmiddle"
line 389 column 231 - Warning: <img> lacks "alt" attribute
line 389 column 274 - Warning: <img> proprietary attribute value "absmiddle"
line 389 column 274 - Warning: <img> lacks "alt" attribute
line 389 column 317 - Warning: <img> proprietary attribute value "absmiddle"
line 389 column 317 - Warning: <img> lacks "alt" attribute
line 389 column 360 - Warning: <img> proprietary attribute value "absmiddle"
line 389 column 360 - Warning: <img> lacks "alt" attribute
line 389 column 403 - Warning: <img> proprietary attribute value "absmiddle"
line 389 column 403 - Warning: <img> lacks "alt" attribute
line 390 column 23 - Warning: <img> lacks "alt" attribute
line 390 column 64 - Warning: <img> lacks "alt" attribute
line 390 column 113 - Warning: <img> lacks "alt" attribute
line 390 column 163 - Warning: <img> lacks "alt" attribute
line 391 column 11 - Warning: <img> lacks "alt" attribute
line 397 column 15 - Warning: <img> lacks "alt" attribute
line 400 column 11 - Warning: <table> lacks "summary" attribute
line 404 column 74 - Warning: <table> proprietary attribute "height"
line 404 column 74 - Warning: <table> lacks "summary" attribute
line 404 column 322 - Warning: <table> lacks "summary" attribute
line 414 column 9 - Warning: <table> lacks "summary" attribute
line 417 column 16 - Warning: <img> proprietary attribute value "absmiddle"
line 417 column 16 - Warning: <img> lacks "alt" attribute
line 417 column 59 - Warning: <img> proprietary attribute value "absmiddle"
line 417 column 59 - Warning: <img> lacks "alt" attribute
line 417 column 102 - Warning: <img> proprietary attribute value "absmiddle"
line 417 column 102 - Warning: <img> lacks "alt" attribute
line 417 column 145 - Warning: <img> proprietary attribute value "absmiddle"
line 417 column 145 - Warning: <img> lacks "alt" attribute
line 417 column 188 - Warning: <img> proprietary attribute value "absmiddle"
line 417 column 188 - Warning: <img> lacks "alt" attribute
line 417 column 231 - Warning: <img> proprietary attribute value "absmiddle"
line 417 column 231 - Warning: <img> lacks "alt" attribute
line 417 column 274 - Warning: <img> proprietary attribute value "absmiddle"
line 417 column 274 - Warning: <img> lacks "alt" attribute
line 417 column 317 - Warning: <img> proprietary attribute value "absmiddle"
line 417 column 317 - Warning: <img> lacks "alt" attribute
line 417 column 360 - Warning: <img> proprietary attribute value "absmiddle"
line 417 column 360 - Warning: <img> lacks "alt" attribute
line 417 column 403 - Warning: <img> proprietary attribute value "absmiddle"
line 417 column 403 - Warning: <img> lacks "alt" attribute
line 418 column 23 - Warning: <img> lacks "alt" attribute
line 418 column 64 - Warning: <img> lacks "alt" attribute
line 418 column 113 - Warning: <img> lacks "alt" attribute
line 418 column 163 - Warning: <img> lacks "alt" attribute
line 419 column 11 - Warning: <img> lacks "alt" attribute
line 425 column 15 - Warning: <img> lacks "alt" attribute
line 428 column 11 - Warning: <table> lacks "summary" attribute
line 432 column 74 - Warning: <table> proprietary attribute "height"
line 432 column 74 - Warning: <table> lacks "summary" attribute
line 432 column 322 - Warning: <table> lacks "summary" attribute
line 356 column 41 - Warning: <table> lacks "summary" attribute
line 444 column 41 - Warning: <table> lacks "summary" attribute
line 448 column 41 - Warning: <table> lacks "summary" attribute
line 452 column 41 - Warning: <table> lacks "summary" attribute
line 458 column 9 - Warning: <table> lacks "summary" attribute
line 461 column 16 - Warning: <img> proprietary attribute value "absmiddle"
line 461 column 16 - Warning: <img> lacks "alt" attribute
line 461 column 59 - Warning: <img> proprietary attribute value "absmiddle"
line 461 column 59 - Warning: <img> lacks "alt" attribute
line 461 column 102 - Warning: <img> proprietary attribute value "absmiddle"
line 461 column 102 - Warning: <img> lacks "alt" attribute
line 461 column 145 - Warning: <img> proprietary attribute value "absmiddle"
line 461 column 145 - Warning: <img> lacks "alt" attribute
line 461 column 188 - Warning: <img> proprietary attribute value "absmiddle"
line 461 column 188 - Warning: <img> lacks "alt" attribute
line 461 column 231 - Warning: <img> proprietary attribute value "absmiddle"
line 461 column 231 - Warning: <img> lacks "alt" attribute
line 461 column 274 - Warning: <img> proprietary attribute value "absmiddle"
line 461 column 274 - Warning: <img> lacks "alt" attribute
line 461 column 317 - Warning: <img> proprietary attribute value "absmiddle"
line 461 column 317 - Warning: <img> lacks "alt" attribute
line 461 column 360 - Warning: <img> proprietary attribute value "absmiddle"
line 461 column 360 - Warning: <img> lacks "alt" attribute
line 461 column 403 - Warning: <img> proprietary attribute value "absmiddle"
line 461 column 403 - Warning: <img> lacks "alt" attribute
line 462 column 23 - Warning: <img> lacks "alt" attribute
line 462 column 64 - Warning: <img> lacks "alt" attribute
line 462 column 113 - Warning: <img> lacks "alt" attribute
line 462 column 163 - Warning: <img> lacks "alt" attribute
line 463 column 11 - Warning: <img> lacks "alt" attribute
line 469 column 15 - Warning: <img> lacks "alt" attribute
line 472 column 11 - Warning: <table> lacks "summary" attribute
line 476 column 74 - Warning: <table> proprietary attribute "height"
line 476 column 74 - Warning: <table> lacks "summary" attribute
line 476 column 322 - Warning: <table> lacks "summary" attribute
line 486 column 9 - Warning: <table> lacks "summary" attribute
line 489 column 16 - Warning: <img> proprietary attribute value "absmiddle"
line 489 column 16 - Warning: <img> lacks "alt" attribute
line 489 column 59 - Warning: <img> proprietary attribute value "absmiddle"
line 489 column 59 - Warning: <img> lacks "alt" attribute
line 489 column 102 - Warning: <img> proprietary attribute value "absmiddle"
line 489 column 102 - Warning: <img> lacks "alt" attribute
line 489 column 145 - Warning: <img> proprietary attribute value "absmiddle"
line 489 column 145 - Warning: <img> lacks "alt" attribute
line 489 column 188 - Warning: <img> proprietary attribute value "absmiddle"
line 489 column 188 - Warning: <img> lacks "alt" attribute
line 489 column 231 - Warning: <img> proprietary attribute value "absmiddle"
line 489 column 231 - Warning: <img> lacks "alt" attribute
line 489 column 274 - Warning: <img> proprietary attribute value "absmiddle"
line 489 column 274 - Warning: <img> lacks "alt" attribute
line 489 column 317 - Warning: <img> proprietary attribute value "absmiddle"
line 489 column 317 - Warning: <img> lacks "alt" attribute
line 489 column 360 - Warning: <img> proprietary attribute value "absmiddle"
line 489 column 360 - Warning: <img> lacks "alt" attribute
line 489 column 403 - Warning: <img> proprietary attribute value "absmiddle"
line 489 column 403 - Warning: <img> lacks "alt" attribute
line 490 column 23 - Warning: <img> lacks "alt" attribute
line 490 column 64 - Warning: <img> lacks "alt" attribute
line 490 column 113 - Warning: <img> lacks "alt" attribute
line 490 column 163 - Warning: <img> lacks "alt" attribute
line 491 column 11 - Warning: <img> lacks "alt" attribute
line 497 column 15 - Warning: <img> lacks "alt" attribute
line 500 column 11 - Warning: <table> lacks "summary" attribute
line 504 column 74 - Warning: <table> proprietary attribute "height"
line 504 column 74 - Warning: <table> lacks "summary" attribute
line 504 column 322 - Warning: <table> lacks "summary" attribute
line 456 column 41 - Warning: <table> lacks "summary" attribute
line 518 column 41 - Warning: <table> lacks "summary" attribute
line 523 column 17 - Warning: <table> lacks "summary" attribute
line 526 column 17 - Warning: <table> lacks "summary" attribute
line 528 column 17 - Warning: <table> lacks "summary" attribute
line 534 column 1 - Warning: <img> lacks "alt" attribute
line 535 column 1 - Warning: <img> lacks "alt" attribute
line 536 column 1 - Warning: <img> lacks "alt" attribute
line 543 column 9 - Warning: <table> lacks "summary" attribute
line 545 column 25 - Warning: <img> lacks "alt" attribute
line 575 column 17 - Warning: <table> lacks "summary" attribute
line 141 column 135 - Warning: trimming empty <font>
line 143 column 1092 - Warning: trimming empty <font>
line 526 column 1092 - Warning: trimming empty <font>
line 528 column 135 - Warning: trimming empty <font>
line 153 column 11 - Warning: <a> cannot copy name attribute to id
line 181 column 11 - Warning: <a> cannot copy name attribute to id
line 213 column 11 - Warning: <a> cannot copy name attribute to id
line 243 column 11 - Warning: <a> cannot copy name attribute to id
line 283 column 11 - Warning: <a> cannot copy name attribute to id
line 311 column 11 - Warning: <a> cannot copy name attribute to id
line 360 column 11 - Warning: <a> cannot copy name attribute to id
line 388 column 11 - Warning: <a> cannot copy name attribute to id
line 416 column 11 - Warning: <a> cannot copy name attribute to id
line 460 column 11 - Warning: <a> cannot copy name attribute to id
line 488 column 11 - Warning: <a> cannot copy name attribute to id
Info: Document content looks like HTML Proprietary
Info: No system identifier in emitted doctype
595 warnings, 0 errors were found!


The table summary attribute should be used to describe
the table structure. It is very helpful for people using
non-visual browsers. The scope and headers attributes for
table cells are useful for specifying which headers apply
to each table cell, enabling non-visual browsers to provide
a meaningful context for each cell.

The alt attribute should be used to give a short description
of an image; longer descriptions should be given with the
longdesc attribute which takes a URL linked to the description.
These measures are needed for people using non-graphical browsers.

For further advice on how to make your pages accessible
see http://www.w3.org/WAI/GL.
. You may also want to try
"http://www.cast.org/bobby/" which is a free Web-based
service for checking URLs for accessibility.

You are recommended to use CSS to specify the font and
properties such as its size and color. This will reduce
the size of HTML files and make them easier to maintain
compared with using <FONT> elements.

You are recommended to use CSS to control line wrapping.
Use "white-space: nowrap" to inhibit wrapping in place
of inserting <NOBR>...</NOBR> into the markup.

To learn more about HTML Tidy see http://tidy.sourceforge.net
Please fill bug reports and queries using the "tracker" on the Tidy web site.
Additionally, questions can be sent to html-tidy@w3.org
HTML and CSS specifications are available from http://www.w3.org/
Lobby your company to join W3C, see http://www.w3.org/Consortium