Register - Login
Views: 99392665
Main - Memberlist - Active users - Calendar - Wiki - IRC Chat - Online users
Ranks - Rules/FAQ - Stats - Latest Posts - Color Chart - Smilies
04-24-22 10:12:29 AM
Jul - The Cutting Room Floor - Useful Tools New poll - New thread - New reply
Pages: 1 2 3 Next newer thread | Next older thread
einstein95
Member
Level: 37


Posts: 118/318
EXP: 325772
For next: 12481

Since: 04-11-13


Since last post: 3.3 years
Last activity: 3.3 years

Posted on 03-12-14 04:26:36 PM Link | Quote
MEGA.co.nz mirror of v1.2

____________________
The more I type, the less gooder it sounds does.
MainMemory
Member
Level: 13


Posts: 24/28
EXP: 8844
For next: 1423

Since: 07-22-12


Since last post: 6.3 years
Last activity: 4.9 years

Posted on 01-22-15 04:47:45 AM (last edited by MainMemory at 12-06-15 04:00:21 PM) Link | Quote
Since the residents of IRC find my bot ChaosGamma's ability to translate various text encodings to and from bytes and other encodings useful, I decided to make it a standalone tool:

Download v1.2 | GitHub repository
hannssoni
Random nobody
Level: 3


Posts: 1/1
EXP: 50
For next: 78

Since: 03-27-15


Since last post: 7.1 years
Last activity: 7.1 years

Posted on 03-27-15 05:12:53 PM Link | Quote
does anyone know any programs that allow me to look inside cd-i games ?
Jarofmayo
Member
Level: 13


Posts: 17/31
EXP: 9565
For next: 702

Since: 11-25-13


Since last post: 3.2 years
Last activity: 334 days

Posted on 05-25-15 04:23:13 AM Link | Quote
Not sure if this is the right place to be asking but how can one rip voice clips from a NES game. Really want the ones from Gauntlet II on the nes as mp3s.
rabidabid
Member
Level: 27


Posts: 84/135
EXP: 102371
For next: 13788

Since: 08-25-10


Since last post: 24 days
Last activity: 6 days

Posted on 06-07-15 12:48:43 AM Link | Quote
Originally posted by Jarofmayo
Not sure if this is the right place to be asking but how can one rip voice clips from a NES game. Really want the ones from Gauntlet II on the nes as mp3s.

Well they don't seem to be included in the NSF rip.

I suppose you could boot the game up in an emulator like FCEUX, mute all the sound channels except PCM (Config > Sound...), then use WAV recording (File > AVI/Wav > Record Wav...) to record what you want.

You'll probably have to use an audio editor like Audacity to trim them down and convert to MP3 tho.
devin

Yoshi
i'm mima irl
Level: 112


Posts: 3157/3519
EXP: 14919005
For next: 419200

Since: 04-29-08

Pronouns: any
From: FL

Since last post: 297 days
Last activity: 1 day

Posted on 06-07-15 05:02:50 PM (last edited by devin at 06-07-15 05:05:12 PM) Link | Quote
https://dl.dropboxusercontent.com/u/43107309/gauntlet2.nsf

A while ago I ripped a Gauntlet II NSF that includes all of the sampled sounds. You can use something like Winamp's built in disk writer plugin to convert them all the mp3s or just use Audacity to record the output of your sound card.

(All of my NSF rips are available here; I should probably make them available somewhere better-known at some point...)

____________________
Photo by Luc Viatour
zoogelio
Random nobody
Level: 3


Posts: 1/2
EXP: 124
For next: 4

Since: 01-16-17


Since last post: 5.3 years
Last activity: 5.2 years

Posted on 01-16-17 08:49:06 PM Link | Quote
I'm looking to compile information on battle formations and encounter data in Final Fantasy Legend III but I've been wondering which tools to use to read the ROM, including while in play.

I compiled the encounter tables for Final Fantasy Legend II although the ROM values for each enemy and each enemy formation as well as the number of slots used for battles on each map (and the table of the order the 'random' values went in) were gathered by others prior so I had that to work from and compiled it the old fashioned way- save states and utilizing portions of the battle slot table with all slots within a stretch of 20 or so battles. None of that is yet documented for FFLIII. FFLIII is unlike FFLII because it was developed by a short-lived branch of Square in Osaka and the branch had just two games to its credit, so it likely is programmed very differently from FFLI & FFLII. I do know the battles do not have fixed odds. Unlike FFL1 & 2, FF1-3, they do not loop around a table of 256 in sequence. It may be like FFIV (the closest game developed by Square chronologically), where you can fight 256 battles and not get different battle formations falling into perfect odds and not see them loop in order.

I want to be able to identify the hex values associated with each enemy, each battle formation, and the battle slot odds per map with whatever I use. If I find anything else unused that isn't on the FFLIII entry page here, I'll post it.
divingkataetheweirdo

Bandit
TCRF Super Editor
Level: 57


Posts: 676/822
EXP: 1479719
For next: 6209

Since: 07-09-11


Since last post: 1.6 years
Last activity: 253 days

Posted on 01-16-17 09:02:14 PM (last edited by divingkataetheweirdo at 01-16-17 09:05:29 PM) Link | Quote
An obvious tool would be something like VBA, which can disassemble in real time. It's not 100% accurate when it comes to Game Boy games, but it does work decently.

There's also BGB, which is more accurate and does have a better debugger, but also has somewhat higher requirements. I'd recommend BGB over VBA any day for Game Boy games, though.

GameBoy Assembler Plus is another good one, as not only does it assemble games, but it can also disassemble them with fairly decent accuracy.

Translhextion is useful for games like FFLIII, which only uses a single byte for each character, so that you can read the text.

____________________
zoogelio
Random nobody
Level: 3


Posts: 2/2
EXP: 124
For next: 4

Since: 01-16-17


Since last post: 5.3 years
Last activity: 5.2 years

Posted on 01-19-17 05:20:09 AM Link | Quote
Originally posted by divingkataetheweirdo
An obvious tool would be something like VBA, which can disassemble in real time. It's not 100% accurate when it comes to Game Boy games, but it does work decently.

There's also BGB, which is more accurate and does have a better debugger, but also has somewhat higher requirements. I'd recommend BGB over VBA any day for Game Boy games, though.

GameBoy Assembler Plus is another good one, as not only does it assemble games, but it can also disassemble them with fairly decent accuracy.

Translhextion is useful for games like FFLIII, which only uses a single byte for each character, so that you can read the text.


Thanks. Though I have a few questions about Translhextion. First, is the help file that comes with it supposed to be blank. I've clicked on several entries and sub-entries and nothing is displaying. Also, is there some way to translate the gibberish of letters and symbols on the right when I drop in the FFLIII game file in to something readable or translatable?

How would I go about finding where enemy/battle data is located such that I can see either a value changing in real time or see hex values appear when a battle is triggered and loaded?
divingkataetheweirdo

Bandit
TCRF Super Editor
Level: 57


Posts: 677/822
EXP: 1479719
For next: 6209

Since: 07-09-11


Since last post: 1.6 years
Last activity: 253 days

Posted on 01-23-17 10:23:51 PM Link | Quote
You can use breakpoints to stop the game when an instruction or variable is change, or RAM watchers to see when each value changes.

____________________
Cuber456

Fuzzy
Don't mind me. Just passing through.
Level: 56


Posts: 724/776
EXP: 1317935
For next: 80241

Since: 02-19-12

From: Everywhere at once.

Since last post: 4.2 years
Last activity: 122 days

Posted on 03-19-17 02:17:30 AM Link | Quote
Anyone know of a tool that is equivalent to GCRebuilder (GameCube) or Tinke (DS) but for PlayStation instead?
divingkataetheweirdo

Bandit
TCRF Super Editor
Level: 57


Posts: 698/822
EXP: 1479719
For next: 6209

Since: 07-09-11


Since last post: 1.6 years
Last activity: 253 days

Posted on 03-19-17 03:47:20 AM Link | Quote
Not really. There's UltraISO, maybe ISOBuster, but nothing specifically for the PlayStation. I guess I could code something up.

____________________
devin

Yoshi
i'm mima irl
Level: 112


Posts: 3255/3519
EXP: 14919005
For next: 419200

Since: 04-29-08

Pronouns: any
From: FL

Since last post: 297 days
Last activity: 1 day

Posted on 03-19-17 04:00:54 AM Link | Quote
I use PSX-MODE2 to replace individual files in PSX disc images. I don't think it supports replacing entire directories or groups of files at a time, and all the program output is in Spanish but it's not that hard to figure out.

For actually extracting/converting graphics and audio, jpsxdec usually works pretty well.

(Both of the downloads are currently broken due to romhacking.net server trouble but should be back in due time)

For actually browsing/copying disc contents I just use PowerISO to mount the disc images.

____________________
Photo by Luc Viatour
Foxhack
Member
Annoying fuzzball
Level: 54


Posts: 677/722
EXP: 1173452
For next: 60418

Since: 04-17-12

From: Mexicali, Mexico

Since last post: 2.0 years
Last activity: 1.8 years

Posted on 03-19-17 04:04:45 PM (last edited by Foxhack at 03-19-17 04:05:02 PM) Link | Quote
Originally posted by devin
I use PSX-MODE2 to replace individual files in PSX disc images. I don't think it supports replacing entire directories or groups of files at a time, and all the program output is in Spanish but it's not that hard to figure out.

For actually extracting/converting graphics and audio, jpsxdec usually works pretty well.

(Both of the downloads are currently broken due to romhacking.net server trouble but should be back in due time)

For actually browsing/copying disc contents I just use PowerISO to mount the disc images.


Huh. This is... interesting.

I wonder if I could be able to replace the images in a particular PS1 game I looked into a while ago...

____________________
My Video Game Collection
Cuber456

Fuzzy
Don't mind me. Just passing through.
Level: 56


Posts: 725/776
EXP: 1317935
For next: 80241

Since: 02-19-12

From: Everywhere at once.

Since last post: 4.2 years
Last activity: 122 days

Posted on 03-21-17 10:00:10 AM (last edited by Cuber456 at 03-21-17 10:05:25 AM) Link | Quote
divingkataetheweirdo and devin, apologies on the delayed response back. Thank you for the tool suggestions. I'll scope out each tool to see what features they offer.

divingkataetheweirdo, no need to code anything up. I'm not trying to make people code up something special for me. I was just asking to see what tools already exist out there. Thank you though.

Given free time (ha what's that), my intentions are to scope out anything interesting in the Spider-Man game for PS1 just for fun.
ExitDoor62
User
Level: 8


Posts: 4/11
EXP: 1539
For next: 648

Since: 06-08-17


Since last post: 1.4 years
Last activity: 1.4 years

Posted on 01-13-18 04:59:59 PM Link | Quote
I suppose this is as good a place any any to ask...
I'm trying to use DSDecmp to convert some .lz files. However, I'm not savvy when it comes to command-line programs and so most of my attempts have been met with

"'DSDecmp' is not recognized as an internal or external command, operable program or batch file"

So do I need to point something somewhere, install something, put the program files in a certain place or what?
divingkataetheweirdo

Bandit
TCRF Super Editor
Level: 57


Posts: 790/822
EXP: 1479719
For next: 6209

Since: 07-09-11


Since last post: 1.6 years
Last activity: 253 days

Posted on 01-13-18 05:20:20 PM Link | Quote
Originally posted by ExitDoor62
I suppose this is as good a place any any to ask...
I'm trying to use DSDecmp to convert some .lz files. However, I'm not savvy when it comes to command-line programs and so most of my attempts have been met with

"'DSDecmp' is not recognized as an internal or external command, operable program or batch file"

So do I need to point something somewhere, install something, put the program files in a certain place or what?


In the command prompt, you need to go to directory where DSDecmp is. Alternatively, put that program among the environmental variables for your system.

____________________
Halian

Level: 75


Posts: 420/1473
EXP: 3718219
For next: 108685

Since: 06-20-10

Pronouns: he/him
From: Central Florida

Since last post: 137 days
Last activity: 117 days

Posted on 01-24-18 05:44:52 AM Link | Quote
Maple Post-o-Matic 9.1
Originally posted by divingkataetheweirdo
An obvious tool would be something like VBA, which can disassemble in real time. It's not 100% accurate when it comes to Game Boy games, but it does work decently.

There's also BGB, which is more accurate and does have a better debugger, but also has somewhat higher requirements. I'd recommend BGB over VBA any day for Game Boy games, though.

GameBoy Assembler Plus is another good one, as not only does it assemble games, but it can also disassemble them with fairly decent accuracy.

Translhextion is useful for games like FFLIII, which only uses a single byte for each character, so that you can read the text.

Can't Nocash dissemble in real time? or am I misremembering?

Also, for a GBA replacement for VBA, I recommend mgba.

____________________
Layout by Maple.
Hoennese Realm Safir Alliance
Rena
I had one (1) message in Discord deleted and proceeded to make a huge, huge mess about how it was a violation of free speech and how moderators are supposed to be spam janitors and nobody should have the right to tell me not to talk about school shootings
Level: 135


Posts: 5283/5390
EXP: 29051663
For next: 283342

Since: 07-22-07

Pronouns: he/him/whatever
From: RSP Segment 6

Since last post: 333 days
Last activity: 333 days

Posted on 03-29-19 05:02:27 PM Link | Quote
Nocash has a disassembly view, but bgb is pretty much the same thing but better in every way.

____________________
InvisibleUp

Koopa
Level: 20


Posts: 10/104
EXP: 36266
For next: 6173

Since: 02-10-19

Pronouns: she/her

Since last post: 69 days
Last activity: 1 day

Posted on 03-30-19 12:47:06 AM Link | Quote
Does anyone know of a decent disassembler for the SH2 in the Sega Saturn? I know about the stuff at https://antime.kapsi.fi/sega/docs.html and http://cyberwarriorx.com/saturn-utilities, which is all good, and I know Yabause has a disassembler, although not very useful imo.
Pages: 1 2 3 Next newer thread | Next older thread
Jul - The Cutting Room Floor - Useful Tools New poll - New thread - New reply


Rusted Logic

Acmlmboard - commit 47be4dc [2021-08-23]
©2000-2022 Acmlm, Xkeeper, Kaito Sinclaire, et al.

37 database queries, 6 query cache hits.
Query execution time:  0.087333 seconds
Script execution time:  0.028639 seconds
Total render time:  0.115972 seconds


TidyHTML vomit below
line 1 column 1 - Warning: missing <!DOCTYPE> declaration
line 119 column 11 - Warning: <form> isn't allowed in <table> elements
line 118 column 10 - Info: <table> previously mentioned
line 120 column 11 - Warning: missing <tr>
line 120 column 119 - Warning: missing </font> before </td>
line 124 column 16 - Warning: plain text isn't allowed in <tr> elements
line 120 column 11 - Info: <tr> previously mentioned
line 125 column 68 - Warning: missing </nobr> before </td>
line 141 column 68 - Warning: missing </nobr> before <tr>
line 147 column 35 - Warning: missing <tr>
line 147 column 50 - Warning: missing </font> before </td>
line 148 column 37 - Warning: unescaped & or unknown entity "&id"
line 147 column 183 - Warning: missing </font> before </table>
line 149 column 35 - Warning: missing <tr>
line 149 column 94 - Warning: unescaped & or unknown entity "&page"
line 149 column 126 - Warning: unescaped & or unknown entity "&page"
line 149 column 50 - Warning: missing </font> before </td>
line 149 column 163 - Warning: missing </font> before </table>
line 156 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 158 column 9 - Warning: missing <tr>
line 176 column 13 - Warning: missing <tr>
line 177 column 101 - Warning: unescaped & or unknown entity "&postid"
line 182 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 184 column 9 - Warning: missing <tr>
line 202 column 13 - Warning: missing <tr>
line 203 column 101 - Warning: unescaped & or unknown entity "&postid"
line 210 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 212 column 9 - Warning: missing <tr>
line 230 column 13 - Warning: missing <tr>
line 231 column 101 - Warning: unescaped & or unknown entity "&postid"
line 236 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 238 column 9 - Warning: missing <tr>
line 256 column 13 - Warning: missing <tr>
line 257 column 101 - Warning: unescaped & or unknown entity "&postid"
line 262 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 264 column 9 - Warning: missing <tr>
line 282 column 13 - Warning: missing <tr>
line 283 column 101 - Warning: unescaped & or unknown entity "&postid"
line 293 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 295 column 9 - Warning: missing <tr>
line 313 column 13 - Warning: missing <tr>
line 314 column 101 - Warning: unescaped & or unknown entity "&postid"
line 320 column 1081 - Warning: unescaped & or unknown entity "&t"
line 323 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 325 column 9 - Warning: missing <tr>
line 343 column 13 - Warning: missing <tr>
line 344 column 101 - Warning: unescaped & or unknown entity "&postid"
line 353 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 355 column 9 - Warning: missing <tr>
line 373 column 13 - Warning: missing <tr>
line 374 column 101 - Warning: unescaped & or unknown entity "&postid"
line 385 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 387 column 9 - Warning: missing <tr>
line 405 column 13 - Warning: missing <tr>
line 406 column 101 - Warning: unescaped & or unknown entity "&postid"
line 422 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 424 column 9 - Warning: missing <tr>
line 442 column 13 - Warning: missing <tr>
line 443 column 101 - Warning: unescaped & or unknown entity "&postid"
line 448 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 450 column 9 - Warning: missing <tr>
line 468 column 13 - Warning: missing <tr>
line 469 column 101 - Warning: unescaped & or unknown entity "&postid"
line 474 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 476 column 9 - Warning: missing <tr>
line 494 column 13 - Warning: missing <tr>
line 495 column 101 - Warning: unescaped & or unknown entity "&postid"
line 500 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 502 column 9 - Warning: missing <tr>
line 520 column 13 - Warning: missing <tr>
line 521 column 101 - Warning: unescaped & or unknown entity "&postid"
line 532 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 534 column 9 - Warning: missing <tr>
line 552 column 13 - Warning: missing <tr>
line 553 column 101 - Warning: unescaped & or unknown entity "&postid"
line 568 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 570 column 9 - Warning: missing <tr>
line 588 column 13 - Warning: missing <tr>
line 589 column 101 - Warning: unescaped & or unknown entity "&postid"
line 598 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 600 column 9 - Warning: missing <tr>
line 618 column 13 - Warning: missing <tr>
line 619 column 101 - Warning: unescaped & or unknown entity "&postid"
line 629 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 631 column 9 - Warning: missing <tr>
line 649 column 13 - Warning: missing <tr>
line 650 column 101 - Warning: unescaped & or unknown entity "&postid"
line 662 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 664 column 9 - Warning: missing <tr>
line 682 column 13 - Warning: missing <tr>
line 683 column 101 - Warning: unescaped & or unknown entity "&postid"
line 685 column 74 - Warning: <style> isn't allowed in <td> elements
line 685 column 9 - Info: <td> previously mentioned
line 695 column 1399 - Warning: missing </a> before <a>
line 695 column 1466 - Warning: missing </a> before </div>
line 698 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 700 column 9 - Warning: missing <tr>
line 718 column 13 - Warning: missing <tr>
line 719 column 101 - Warning: unescaped & or unknown entity "&postid"
line 721 column 74 - Warning: <style> isn't allowed in <td> elements
line 721 column 9 - Info: <td> previously mentioned
line 725 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 727 column 9 - Warning: missing <tr>
line 745 column 13 - Warning: missing <tr>
line 746 column 101 - Warning: unescaped & or unknown entity "&postid"
line 751 column 17 - Warning: missing <tr>
line 751 column 17 - Warning: discarding unexpected <table>
line 754 column 35 - Warning: missing <tr>
line 754 column 94 - Warning: unescaped & or unknown entity "&page"
line 754 column 126 - Warning: unescaped & or unknown entity "&page"
line 754 column 50 - Warning: missing </font> before </td>
line 754 column 163 - Warning: missing </font> before </table>
line 756 column 35 - Warning: missing <tr>
line 756 column 50 - Warning: missing </font> before </td>
line 757 column 37 - Warning: unescaped & or unknown entity "&id"
line 756 column 183 - Warning: missing </font> before </table>
line 758 column 17 - Warning: discarding unexpected </textarea>
line 758 column 28 - Warning: discarding unexpected </form>
line 758 column 35 - Warning: discarding unexpected </embed>
line 758 column 43 - Warning: discarding unexpected </noembed>
line 758 column 53 - Warning: discarding unexpected </noscript>
line 758 column 64 - Warning: discarding unexpected </noembed>
line 758 column 74 - Warning: discarding unexpected </embed>
line 758 column 82 - Warning: discarding unexpected </table>
line 758 column 90 - Warning: discarding unexpected </table>
line 760 column 9 - Warning: missing </font> before <table>
line 772 column 25 - Warning: discarding unexpected </font>
line 781 column 57 - Warning: discarding unexpected </font>
line 759 column 1 - Warning: missing </center>
line 120 column 63 - Warning: <img> lacks "alt" attribute
line 125 column 19 - Warning: <td> attribute "width" has invalid value "120px"
line 125 column 93 - Warning: <img> lacks "alt" attribute
line 141 column 19 - Warning: <td> attribute "width" has invalid value "120px"
line 141 column 98 - Warning: <img> lacks "alt" attribute
line 148 column 44 - Warning: <img> proprietary attribute value "absmiddle"
line 148 column 142 - Warning: <img> proprietary attribute value "absmiddle"
line 148 column 245 - Warning: <img> proprietary attribute value "absmiddle"
line 161 column 22 - Warning: <img> lacks "alt" attribute
line 161 column 63 - Warning: <img> lacks "alt" attribute
line 161 column 112 - Warning: <img> lacks "alt" attribute
line 161 column 162 - Warning: <img> lacks "alt" attribute
line 172 column 15 - Warning: <img> lacks "alt" attribute
line 187 column 22 - Warning: <img> lacks "alt" attribute
line 187 column 63 - Warning: <img> lacks "alt" attribute
line 187 column 112 - Warning: <img> lacks "alt" attribute
line 187 column 162 - Warning: <img> lacks "alt" attribute
line 188 column 11 - Warning: <img> lacks "alt" attribute
line 198 column 15 - Warning: <img> lacks "alt" attribute
line 206 column 259 - Warning: <img> lacks "alt" attribute
line 215 column 21 - Warning: <img> lacks "alt" attribute
line 215 column 62 - Warning: <img> lacks "alt" attribute
line 215 column 110 - Warning: <img> lacks "alt" attribute
line 215 column 160 - Warning: <img> lacks "alt" attribute
line 226 column 15 - Warning: <img> lacks "alt" attribute
line 241 column 22 - Warning: <img> lacks "alt" attribute
line 241 column 63 - Warning: <img> lacks "alt" attribute
line 241 column 112 - Warning: <img> lacks "alt" attribute
line 241 column 162 - Warning: <img> lacks "alt" attribute
line 242 column 11 - Warning: <img> lacks "alt" attribute
line 252 column 15 - Warning: <img> lacks "alt" attribute
line 267 column 22 - Warning: <img> lacks "alt" attribute
line 267 column 63 - Warning: <img> lacks "alt" attribute
line 267 column 111 - Warning: <img> lacks "alt" attribute
line 267 column 161 - Warning: <img> lacks "alt" attribute
line 268 column 11 - Warning: <img> lacks "alt" attribute
line 278 column 15 - Warning: <img> lacks "alt" attribute
line 297 column 11 - Warning: <img> lacks "alt" attribute
line 298 column 23 - Warning: <img> lacks "alt" attribute
line 298 column 64 - Warning: <img> lacks "alt" attribute
line 298 column 113 - Warning: <img> lacks "alt" attribute
line 298 column 163 - Warning: <img> lacks "alt" attribute
line 299 column 11 - Warning: <img> lacks "alt" attribute
line 309 column 15 - Warning: <img> lacks "alt" attribute
line 328 column 21 - Warning: <img> lacks "alt" attribute
line 328 column 62 - Warning: <img> lacks "alt" attribute
line 328 column 111 - Warning: <img> lacks "alt" attribute
line 328 column 160 - Warning: <img> lacks "alt" attribute
line 339 column 15 - Warning: <img> lacks "alt" attribute
line 357 column 11 - Warning: <img> lacks "alt" attribute
line 358 column 22 - Warning: <img> lacks "alt" attribute
line 358 column 63 - Warning: <img> lacks "alt" attribute
line 358 column 112 - Warning: <img> lacks "alt" attribute
line 358 column 161 - Warning: <img> lacks "alt" attribute
line 359 column 11 - Warning: <img> lacks "alt" attribute
line 369 column 15 - Warning: <img> lacks "alt" attribute
line 382 column 775 - Warning: <img> lacks "alt" attribute
line 390 column 21 - Warning: <img> lacks "alt" attribute
line 390 column 62 - Warning: <img> lacks "alt" attribute
line 390 column 111 - Warning: <img> lacks "alt" attribute
line 390 column 160 - Warning: <img> lacks "alt" attribute
line 401 column 15 - Warning: <img> lacks "alt" attribute
line 426 column 11 - Warning: <img> lacks "alt" attribute
line 427 column 22 - Warning: <img> lacks "alt" attribute
line 427 column 63 - Warning: <img> lacks "alt" attribute
line 427 column 112 - Warning: <img> lacks "alt" attribute
line 427 column 161 - Warning: <img> lacks "alt" attribute
line 428 column 11 - Warning: <img> lacks "alt" attribute
line 438 column 15 - Warning: <img> lacks "alt" attribute
line 445 column 237 - Warning: <img> lacks "alt" attribute
line 452 column 11 - Warning: <img> lacks "alt" attribute
line 453 column 22 - Warning: <img> lacks "alt" attribute
line 453 column 63 - Warning: <img> lacks "alt" attribute
line 453 column 111 - Warning: <img> lacks "alt" attribute
line 453 column 161 - Warning: <img> lacks "alt" attribute
line 454 column 11 - Warning: <img> lacks "alt" attribute
line 464 column 15 - Warning: <img> lacks "alt" attribute
line 478 column 11 - Warning: <img> lacks "alt" attribute
line 479 column 22 - Warning: <img> lacks "alt" attribute
line 479 column 63 - Warning: <img> lacks "alt" attribute
line 479 column 112 - Warning: <img> lacks "alt" attribute
line 479 column 161 - Warning: <img> lacks "alt" attribute
line 480 column 11 - Warning: <img> lacks "alt" attribute
line 490 column 15 - Warning: <img> lacks "alt" attribute
line 497 column 233 - Warning: <img> lacks "alt" attribute
line 504 column 11 - Warning: <img> lacks "alt" attribute
line 505 column 23 - Warning: <img> lacks "alt" attribute
line 505 column 64 - Warning: <img> lacks "alt" attribute
line 505 column 113 - Warning: <img> lacks "alt" attribute
line 505 column 163 - Warning: <img> lacks "alt" attribute
line 506 column 11 - Warning: <img> lacks "alt" attribute
line 516 column 15 - Warning: <img> lacks "alt" attribute
line 537 column 22 - Warning: <img> lacks "alt" attribute
line 537 column 63 - Warning: <img> lacks "alt" attribute
line 537 column 112 - Warning: <img> lacks "alt" attribute
line 537 column 162 - Warning: <img> lacks "alt" attribute
line 538 column 11 - Warning: <img> lacks "alt" attribute
line 548 column 15 - Warning: <img> lacks "alt" attribute
line 572 column 11 - Warning: <img> lacks "alt" attribute
line 573 column 22 - Warning: <img> lacks "alt" attribute
line 573 column 63 - Warning: <img> lacks "alt" attribute
line 573 column 111 - Warning: <img> lacks "alt" attribute
line 573 column 161 - Warning: <img> lacks "alt" attribute
line 574 column 11 - Warning: <img> lacks "alt" attribute
line 584 column 15 - Warning: <img> lacks "alt" attribute
line 603 column 21 - Warning: <img> lacks "alt" attribute
line 603 column 62 - Warning: <img> lacks "alt" attribute
line 603 column 111 - Warning: <img> lacks "alt" attribute
line 603 column 161 - Warning: <img> lacks "alt" attribute
line 614 column 15 - Warning: <img> lacks "alt" attribute
line 633 column 11 - Warning: <img> lacks "alt" attribute
line 634 column 22 - Warning: <img> lacks "alt" attribute
line 634 column 63 - Warning: <img> lacks "alt" attribute
line 634 column 112 - Warning: <img> lacks "alt" attribute
line 634 column 161 - Warning: <img> lacks "alt" attribute
line 635 column 11 - Warning: <img> lacks "alt" attribute
line 645 column 15 - Warning: <img> lacks "alt" attribute
line 659 column 799 - Warning: <img> lacks "alt" attribute
line 667 column 22 - Warning: <img> lacks "alt" attribute
line 667 column 63 - Warning: <img> lacks "alt" attribute
line 667 column 112 - Warning: <img> lacks "alt" attribute
line 667 column 162 - Warning: <img> lacks "alt" attribute
line 668 column 11 - Warning: <img> lacks "alt" attribute
line 678 column 15 - Warning: <img> lacks "alt" attribute
line 703 column 23 - Warning: <img> lacks "alt" attribute
line 703 column 64 - Warning: <img> lacks "alt" attribute
line 703 column 113 - Warning: <img> lacks "alt" attribute
line 703 column 163 - Warning: <img> lacks "alt" attribute
line 714 column 15 - Warning: <img> lacks "alt" attribute
line 729 column 11 - Warning: <img> lacks "alt" attribute
line 730 column 22 - Warning: <img> lacks "alt" attribute
line 730 column 63 - Warning: <img> lacks "alt" attribute
line 730 column 111 - Warning: <img> lacks "alt" attribute
line 730 column 161 - Warning: <img> lacks "alt" attribute
line 731 column 11 - Warning: <img> lacks "alt" attribute
line 741 column 15 - Warning: <img> lacks "alt" attribute
line 757 column 44 - Warning: <img> proprietary attribute value "absmiddle"
line 757 column 142 - Warning: <img> proprietary attribute value "absmiddle"
line 757 column 245 - Warning: <img> proprietary attribute value "absmiddle"
line 766 column 25 - Warning: <img> lacks "alt" attribute
line 771 column 267 - Warning: <img> lacks "alt" attribute
line 751 column 17 - Warning: trimming empty <tr>
line 125 column 68 - Warning: <nobr> is not approved by W3C
line 141 column 68 - Warning: <nobr> is not approved by W3C
line 177 column 27 - Warning: <nobr> is not approved by W3C
line 203 column 27 - Warning: <nobr> is not approved by W3C
line 231 column 27 - Warning: <nobr> is not approved by W3C
line 257 column 27 - Warning: <nobr> is not approved by W3C
line 283 column 27 - Warning: <nobr> is not approved by W3C
line 314 column 27 - Warning: <nobr> is not approved by W3C
line 344 column 27 - Warning: <nobr> is not approved by W3C
line 374 column 27 - Warning: <nobr> is not approved by W3C
line 406 column 27 - Warning: <nobr> is not approved by W3C
line 443 column 27 - Warning: <nobr> is not approved by W3C
line 469 column 27 - Warning: <nobr> is not approved by W3C
line 495 column 27 - Warning: <nobr> is not approved by W3C
line 521 column 27 - Warning: <nobr> is not approved by W3C
line 553 column 27 - Warning: <nobr> is not approved by W3C
line 589 column 27 - Warning: <nobr> is not approved by W3C
line 619 column 27 - Warning: <nobr> is not approved by W3C
line 650 column 27 - Warning: <nobr> is not approved by W3C
line 683 column 27 - Warning: <nobr> is not approved by W3C
line 719 column 27 - Warning: <nobr> is not approved by W3C
line 746 column 27 - Warning: <nobr> is not approved by W3C
Info: Document content looks like HTML5
Info: No system identifier in emitted doctype
Tidy found 289 warnings and 0 errors!


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 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.

About HTML Tidy: https://github.com/htacg/tidy-html5
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
Validate your HTML documents: http://validator.w3.org/nu/
Lobby your company to join the W3C: http://www.w3.org/Consortium

Do you speak a language other than English, or a different variant of
English? Consider helping us to localize HTML Tidy. For details please see
https://github.com/htacg/tidy-html5/blob/master/README/LOCALIZE.md