How can I get a cyrillic font?

I am trying to make cyrillic work in JME3, but the font creator sees all fonts as only Latin-1 fonts, despite that change the *.nls codepage files mapping in the Windows registry. The cyrillic fonts are there and other applications work fine with them. So, can anyone advice anything on how to make a cyrillic font?

never used “cyrillic fonts”, perhaps try Hiero 2.0 it can make fonts compatible with jME, if the built in font creator doesn’t work

Or the original: BMFont - AngelCode.com

1 Like

Weehee! I have tried Hiero, but it is still missing what I need, and I have tried BMFont, it worked perfectly. Soon I’ll be testing with a big app with a number of fonts and many texts.

More sad news. I have got to the stage when I read strings from the file. And it just ignores the cyrillic symbols. All latin symbols are displayed but the cyrillic ones are missing as if there were none in the file! Like if the string is “Hello, друг, how are you?” I would only see “Hello, , how are you?”. The encoding is UTF-8 everywhere, the console prints out cyrillic well. Any ideas on how to resolve this?

@noncom said:
More sad news. I have got to the stage when I read strings from the file. And it just ignores the cyrillic symbols. All latin symbols are displayed but the cyrillic ones are missing as if there were none in the file! Like if the string is "Hello, друг, how are you?" I would only see "Hello, , how are you?". The encoding is UTF-8 everywhere, the console prints out cyrillic well. Any ideas on how to resolve this?


Does the font you are using have cyrillic characters?

@pspeed Yes, it does - I have used BMFont as you advised and it worked like a charm. And even more than that - my first try was with a String variable made of cyrillic letters. After some ritual magic I have managed to arrange the encoding of the source file, the workspace and the project in such a way that I actually got cyrillic output with this font right into the BitmapText on the screen. Then I certainly decided to make all the numerous texts in my application to be loaded from a resource text file. And boom! everything crashed again. The situation with the text is just as I said above - cyrillic symbols simply do not get displayed. So I have done some more magic with encodings, and I not I cannot even get the String variable to work like it did before. The encodings used for the ritual are UTF-8 and Cp1251 (windows-1251). I must also say that I can get a correct cyrillic output to the console of the IDE.



Frankly speaking, I am not sure that I can get help for this issue (contrary to all other issues that I have ever posted on this forum :D) because it so specific. And actually I always get a lot of headache when working with cyrillic in Java. And I use JME3 from Eclipse :smiley: (however, I don’t think that this contributes to the problem).

Well, the first step would be to find a way back to the parts that were working before… then figure out where the encodings get messed up. In Java encoding, it’s all of the code paths that silently use platform encoding that tend to screw me up… always have to make sure to use the forms that take char sets.

@noncom said:
...
cyrillic output with this font right into the BitmapText on the screen. Then I certainly decided to make all the numerous texts in my application to be loaded from a resource text file. And boom! everything crashed again. The situation with the text is just as I said above - cyrillic symbols simply do not get displayed. So I have done some more magic with encodings, and I not I cannot even get the String variable to work like it did before. The encodings used for the ritual are UTF-8 and Cp1251 (windows-1251). I must also say that I can get a correct cyrillic output to the console of the IDE.
...


Mostly guess but one thing I've hade trouble with: I don't know if you read the resource text files with java i18n-libraries but if they are properties-file then the encoding must be iso8859-1 in the file. So you'd have to unicode escape all Cyrillic characters. But maybe that is part of the voodoo that you do :)

http://docs.oracle.com/javase/1.4.2/docs/api/java/util/Properties.html

@pspeed, @jmaasing Well… I just had an Epic Win!!! :smiley: :smiley: :smiley: Nailed the bug. I hate encodings mess and I have killed amost two days to figure this one out. So there is the story:



Today the console output of the cyrillic String.getBytes() showed that the latin characters were represented by a single byte and the cyrillic ones - by two bytes with the first one being always the same. Aha!

I have hypothesized that the problem is in the BitmapText class. I quickly confirmed that by verifying that BitmapFont.getText() method returns the correct string with all the cyrillic symbols intact. So I looked inside the BitmapText source file and saw that it returns the text from the StringBlock member. However, during setText it sets the text not only for the StringBlock member, but for the Letters member too. And the Letters works with charset - aha! It gets characters from a hashmap! So I downloaded the JME3 source, unlinked the jme3-core jar and linked the core and core-plugins sources instead to put there debug output (thanks for the code being that well decoupled this was the only required replacement!!!). Then I have found out that it just does not find characters for cyrillic letters! The console debug output was the following:



[java]LETTER QUAD: setting bitmapChar for ’ ’ |map.size=222 index=32| bm=com.jme3.font.BitmapCharacter@1e3a0ec

LETTER QUAD: setting bitmapChar for ‘п’ |map.size=222 index=1087| bm=null

LETTER QUAD: setting bitmapChar for ‘р’ |map.size=222 index=1088| bm=null

LETTER QUAD: setting bitmapChar for ‘и’ |map.size=222 index=1080| bm=null

LETTER QUAD: setting bitmapChar for ‘в’ |map.size=222 index=1074| bm=null

LETTER QUAD: setting bitmapChar for ‘е’ |map.size=222 index=1077| bm=null

LETTER QUAD: setting bitmapChar for ‘т’ |map.size=222 index=1090| bm=null

LETTER QUAD: setting bitmapChar for ‘!’ |map.size=222 index=33| bm=com.jme3.font.BitmapCharacter@1bbc779

LETTER QUAD: setting bitmapChar for ’ ’ |map.size=222 index=32| bm=com.jme3.font.BitmapCharacter@1e3a0ec

LETTER QUAD: setting bitmapChar for ‘t’ |map.size=222 index=116| bm=com.jme3.font.BitmapCharacter@190b72c

LETTER QUAD: setting bitmapChar for ‘e’ |map.size=222 index=101| bm=com.jme3.font.BitmapCharacter@1d31859

LETTER QUAD: setting bitmapChar for ‘x’ |map.size=222 index=120| bm=com.jme3.font.BitmapCharacter@15a07bf

LETTER QUAD: setting bitmapChar for ‘t’ |map.size=222 index=116| bm=com.jme3.font.BitmapCharacter@190b72c[/java]



with the map size info coming from within the BitmapCharacterSet.getCharacter() and the “bm” BitmapCharacter value - from inside the LetterQuad.setBitmapChar(). It could not get the indices 10xx from the map!!! They were not there! So the cyrillic BitmapCharacters were nulls! And it never thrown any NPE… well… it is Java… so I have calculated that all the cyrillic characters are arranged sequentially starting from index 192 and going up to 255 in the map. The offset of them was 1040. So I just created a string-fixer which just substracts 848 (coz 1040 - 192) from such chars and gets the “clean” indices ranging from 192 to 255!!! Success!!! :D:D:D I am so happy now! These encoding bugs are always pain and fear for me, and now I killed one of them :slight_smile:



Everything is UTF-8. Now, I am not sure why did it not work out-of-the-box??? It is clear that the BitmapText creation facility is not ready for this sort of things… Maybe consider upgrading it or write a full and working guidline of how to get textual resources from a file AVOIDING this sort of work-arounds? I guess this can happen not only to cyrillic… But I think better it would be to make the BitmapText facility more robust than to rely on lengthy and boring encoding-instruction guidlines for users…

2 Likes

Good that you made it work. I got curious and had a look in Letters.java. I think the problem is this line:

[java]l = l.addNextCharacter(plainText.charAt(i));[/java]

It does not handle unicode surrogates which I think is what happens to you. codePointAt might be better but that depends on how the actual bitmap is looked up, might be better to use charset but both require changes in core classes I guess.

1 Like

Candid info, thanks guys.

@jmaasing said:
Good that you made it work. I got curious and had a look in Letters.java. I think the problem is this line:
[java]l = l.addNextCharacter(plainText.charAt(i));[/java]
It does not handle unicode surrogates which I think is what happens to you. codePointAt might be better but that depends on how the actual bitmap is looked up, might be better to use charset but both require changes in core classes I guess.


Cyrillic should fit fine in regular Character... in fact the fact that his bytes[] only had two bytes for them means they should be fine in Character.

It sounds to me like it's the font that's broken... it's probably not indexing the fonts by unicode (and that makes sense because that would be a pretty darn big array). I don't know if the file format supports telling us what the remapping is so it may just be that BitmapText needs to be smarter about these font files.

Is there any chance you can provide the font related stuff and a simple test case with failing text?
1 Like

Yes, you are right of course. On all accounts :slight_smile: As usual I get carried away and jump to conclusions for topics I find interesting, anyway, a simple test case would be great.

@jmaasing yeah, maybe simple charAt is not that versatile for such occasions! At least I have finished with fixing specifically its workings (by a dedicated re-encoding method in my prog)… we’ll see if we come up with something more interesting or find some flaw in how the font is made.



@pspeed Here I have tried to make it as compact as I can. There might be errors, but it is almost midnight here and I did not write Java for quite a while already :slight_smile: so here it is, tell me if I have missed smth, I will fix it:



EDIT: wow! see how it mungled the “bracket"java"bracket” class part of the line! must be a forum bug?



[java]class TestCase extends SimpleApplication {



Properties props = new Properties();

props.load(new InputStreamReader(new FileInputStream(System.getProperty(“user.dir”) + “/assets/Local/sample.txt”), “UTF-8”));



BitmapText text = new BitmapText(assetManager.loadFont(“Fonts/myriad_pro.fnt”), false);

text.setSize(Globals.app.getGuiFont.getCharSet.getRenderedSize);

text.setText(props.getProperty(“test”));

text.setLocalTranslation(650, 500, -1);



guiNode.attachChild(text);



public void simpleInitApp() {



}



public void simpleUpdate(Float tpf) {



}

}[/java]



Here is the font:



[java]info face=“Myriad Pro” size=18 bold=0 italic=0 charset=“RUSSIAN” unicode=0 stretchH=100 smooth=1 aa=4 padding=0,0,0,0 spacing=1,6 outline=0

common lineHeight=18 base=15 scaleW=512 scaleH=512 pages=1 packed=0 alphaChnl=0 redChnl=3 greenChnl=3 blueChnl=3

page id=0 file=“myriad_pro_0.png”

chars count=222

char id=32 x=180 y=50 width=1 height=1 xoffset=0 yoffset=17 xadvance=3 page=0 chnl=15

char id=33 x=92 y=36 width=2 height=11 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=15

char id=34 x=101 y=52 width=4 height=4 xoffset=1 yoffset=4 xadvance=5 page=0 chnl=15

char id=35 x=270 y=18 width=7 height=11 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=15

char id=36 x=129 y=0 width=6 height=13 xoffset=1 yoffset=3 xadvance=7 page=0 chnl=15

char id=37 x=453 y=0 width=11 height=11 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=15

char id=38 x=51 y=19 width=9 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=15

char id=39 x=510 y=0 width=1 height=4 xoffset=1 yoffset=4 xadvance=2 page=0 chnl=15

char id=40 x=148 y=0 width=3 height=13 xoffset=1 yoffset=3 xadvance=4 page=0 chnl=15

char id=41 x=152 y=0 width=3 height=13 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=15

char id=42 x=50 y=54 width=6 height=5 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=15

char id=43 x=221 y=35 width=8 height=9 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=15

char id=44 x=77 y=53 width=3 height=5 xoffset=0 yoffset=12 xadvance=3 page=0 chnl=15

char id=45 x=138 y=51 width=4 height=2 xoffset=0 yoffset=9 xadvance=4 page=0 chnl=15

char id=46 x=132 y=51 width=2 height=3 xoffset=0 yoffset=12 xadvance=3 page=0 chnl=15

char id=47 x=0 y=38 width=6 height=11 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=15

char id=48 x=374 y=17 width=7 height=11 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=15

char id=49 x=73 y=36 width=4 height=11 xoffset=1 yoffset=4 xadvance=7 page=0 chnl=15

char id=50 x=446 y=17 width=7 height=11 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=15

char id=51 x=21 y=37 width=6 height=11 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=15

char id=52 x=438 y=17 width=7 height=11 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=15

char id=53 x=42 y=37 width=6 height=11 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=15

char id=54 x=318 y=18 width=7 height=11 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=15

char id=55 x=350 y=17 width=7 height=11 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=15

char id=56 x=358 y=17 width=7 height=11 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=15

char id=57 x=382 y=17 width=7 height=11 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=15

char id=58 x=501 y=34 width=2 height=8 xoffset=0 yoffset=7 xadvance=3 page=0 chnl=15

char id=59 x=128 y=36 width=3 height=10 xoffset=0 yoffset=7 xadvance=3 page=0 chnl=15

char id=60 x=312 y=35 width=7 height=9 xoffset=1 yoffset=6 xadvance=9 page=0 chnl=15

char id=61 x=25 y=54 width=8 height=5 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=15

char id=62 x=296 y=35 width=7 height=9 xoffset=1 yoffset=6 xadvance=9 page=0 chnl=15

char id=63 x=55 y=36 width=5 height=11 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=15

char id=64 x=0 y=21 width=10 height=11 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=15

char id=65 x=41 y=20 width=9 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=15

char id=66 x=414 y=17 width=7 height=11 xoffset=1 yoffset=4 xadvance=8 page=0 chnl=15

char id=67 x=253 y=18 width=8 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=15

char id=68 x=217 y=18 width=8 height=11 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=15

char id=69 x=504 y=17 width=6 height=11 xoffset=1 yoffset=4 xadvance=7 page=0 chnl=15

char id=70 x=469 y=17 width=6 height=11 xoffset=1 yoffset=4 xadvance=7 page=0 chnl=15

char id=71 x=61 y=19 width=9 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=15

char id=72 x=208 y=18 width=8 height=11 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=15

char id=73 x=86 y=36 width=2 height=11 xoffset=1 yoffset=4 xadvance=3 page=0 chnl=15

char id=74 x=61 y=36 width=5 height=11 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=15

char id=75 x=262 y=18 width=7 height=11 xoffset=1 yoffset=4 xadvance=8 page=0 chnl=15

char id=76 x=497 y=17 width=6 height=11 xoffset=1 yoffset=4 xadvance=7 page=0 chnl=15

char id=77 x=429 y=0 width=11 height=11 xoffset=1 yoffset=4 xadvance=12 page=0 chnl=15

char id=78 x=172 y=18 width=8 height=11 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=15

char id=79 x=477 y=0 width=10 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=15

char id=80 x=35 y=37 width=6 height=11 xoffset=1 yoffset=4 xadvance=8 page=0 chnl=15

char id=81 x=158 y=0 width=10 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=15

char id=82 x=398 y=17 width=7 height=11 xoffset=1 yoffset=4 xadvance=8 page=0 chnl=15

char id=83 x=390 y=17 width=7 height=11 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=15

char id=84 x=118 y=19 width=8 height=11 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=15

char id=85 x=145 y=19 width=8 height=11 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=15

char id=86 x=11 y=21 width=9 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=15

char id=87 x=376 y=0 width=13 height=11 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=15

char id=88 x=163 y=18 width=8 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=15

char id=89 x=244 y=18 width=8 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=15

char id=90 x=235 y=18 width=8 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=15

char id=91 x=323 y=0 width=3 height=12 xoffset=1 yoffset=4 xadvance=4 page=0 chnl=15

char id=92 x=49 y=37 width=5 height=11 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=15

char id=93 x=319 y=0 width=3 height=12 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=15

char id=94 x=493 y=34 width=7 height=8 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=15

char id=95 x=163 y=51 width=8 height=1 xoffset=0 yoffset=15 xadvance=7 page=0 chnl=15

char id=96 x=128 y=52 width=3 height=3 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=15

char id=97 x=343 y=34 width=6 height=9 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=15

char id=98 x=189 y=0 width=7 height=12 xoffset=1 yoffset=3 xadvance=8 page=0 chnl=15

char id=99 x=336 y=34 width=6 height=9 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=15

char id=100 x=221 y=0 width=7 height=12 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=15

char id=101 x=256 y=35 width=7 height=9 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=15

char id=102 x=303 y=0 width=5 height=12 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=15

char id=103 x=237 y=0 width=7 height=12 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=15

char id=104 x=269 y=0 width=6 height=12 xoffset=1 yoffset=3 xadvance=8 page=0 chnl=15

char id=105 x=83 y=36 width=2 height=11 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=15

char id=106 x=36 y=0 width=4 height=14 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=15

char id=107 x=276 y=0 width=6 height=12 xoffset=1 yoffset=3 xadvance=7 page=0 chnl=15

char id=108 x=327 y=0 width=2 height=12 xoffset=1 yoffset=3 xadvance=3 page=0 chnl=15

char id=109 x=132 y=36 width=11 height=9 xoffset=1 yoffset=6 xadvance=12 page=0 chnl=15

char id=110 x=448 y=34 width=6 height=9 xoffset=1 yoffset=6 xadvance=8 page=0 chnl=15

char id=111 x=280 y=35 width=7 height=9 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=15

char id=112 x=253 y=0 width=7 height=12 xoffset=1 yoffset=6 xadvance=8 page=0 chnl=15

char id=113 x=245 y=0 width=7 height=12 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=15

char id=114 x=480 y=34 width=4 height=9 xoffset=1 yoffset=6 xadvance=5 page=0 chnl=15

char id=115 x=468 y=34 width=5 height=9 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=15

char id=116 x=123 y=36 width=4 height=10 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=15

char id=117 x=364 y=34 width=6 height=9 xoffset=1 yoffset=6 xadvance=8 page=0 chnl=15

char id=118 x=248 y=35 width=7 height=9 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=15

char id=119 x=144 y=36 width=11 height=9 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=15

char id=120 x=328 y=35 width=7 height=9 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=15

char id=121 x=229 y=0 width=7 height=12 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=15

char id=122 x=371 y=34 width=6 height=9 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=15

char id=123 x=309 y=0 width=4 height=12 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=15

char id=124 x=10 y=0 width=1 height=15 xoffset=1 yoffset=3 xadvance=3 page=0 chnl=15

char id=125 x=314 y=0 width=4 height=12 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=15

char id=126 x=81 y=53 width=8 height=4 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=15

char id=128 x=58 y=0 width=10 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=15

char id=129 x=29 y=0 width=6 height=14 xoffset=1 yoffset=1 xadvance=6 page=0 chnl=15

char id=130 x=111 y=52 width=3 height=4 xoffset=0 yoffset=12 xadvance=3 page=0 chnl=15

char id=131 x=297 y=0 width=5 height=12 xoffset=1 yoffset=3 xadvance=5 page=0 chnl=15

char id=132 x=90 y=53 width=5 height=4 xoffset=0 yoffset=12 xadvance=5 page=0 chnl=15

char id=133 x=115 y=52 width=12 height=3 xoffset=1 yoffset=12 xadvance=15 page=0 chnl=15

char id=134 x=462 y=17 width=6 height=11 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=15

char id=135 x=476 y=17 width=6 height=11 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=15

char id=136 x=334 y=17 width=7 height=11 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=15

char id=137 x=330 y=0 width=17 height=11 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=15

char id=138 x=362 y=0 width=13 height=11 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=15

char id=139 x=11 y=55 width=3 height=7 xoffset=0 yoffset=7 xadvance=3 page=0 chnl=15

char id=140 x=416 y=0 width=12 height=11 xoffset=1 yoffset=4 xadvance=13 page=0 chnl=15

char id=141 x=106 y=0 width=7 height=13 xoffset=1 yoffset=2 xadvance=8 page=0 chnl=15

char id=142 x=21 y=20 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=15

char id=143 x=114 y=0 width=7 height=13 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=15

char id=144 x=12 y=0 width=8 height=14 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=15

char id=145 x=69 y=53 width=3 height=5 xoffset=0 yoffset=3 xadvance=3 page=0 chnl=15

char id=146 x=73 y=53 width=3 height=5 xoffset=0 yoffset=3 xadvance=3 page=0 chnl=15

char id=147 x=57 y=53 width=5 height=5 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=15

char id=148 x=63 y=53 width=5 height=5 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=15

char id=149 x=96 y=53 width=4 height=4 xoffset=0 yoffset=8 xadvance=4 page=0 chnl=15

char id=150 x=172 y=50 width=7 height=1 xoffset=0 yoffset=10 xadvance=7 page=0 chnl=15

char id=151 x=148 y=51 width=14 height=1 xoffset=0 yoffset=10 xadvance=15 page=0 chnl=15

char id=153 x=15 y=55 width=9 height=5 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=15

char id=154 x=156 y=36 width=11 height=9 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=15

char id=155 x=7 y=55 width=3 height=7 xoffset=0 yoffset=7 xadvance=3 page=0 chnl=15

char id=156 x=168 y=35 width=11 height=9 xoffset=1 yoffset=6 xadvance=11 page=0 chnl=15

char id=157 x=290 y=0 width=6 height=12 xoffset=1 yoffset=3 xadvance=7 page=0 chnl=15

char id=158 x=180 y=0 width=8 height=12 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=15

char id=159 x=490 y=17 width=6 height=11 xoffset=1 yoffset=6 xadvance=8 page=0 chnl=15

char id=160 x=182 y=50 width=1 height=1 xoffset=0 yoffset=17 xadvance=3 page=0 chnl=15

char id=161 x=88 y=0 width=8 height=13 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=15

char id=162 x=21 y=0 width=7 height=14 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=15

char id=163 x=67 y=36 width=5 height=11 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=15

char id=164 x=485 y=34 width=7 height=8 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=15

char id=165 x=136 y=0 width=6 height=13 xoffset=1 yoffset=2 xadvance=6 page=0 chnl=15

char id=166 x=156 y=0 width=1 height=13 xoffset=1 yoffset=4 xadvance=3 page=0 chnl=15

char id=167 x=283 y=0 width=6 height=12 xoffset=1 yoffset=4 xadvance=7 page=0 chnl=15

char id=168 x=122 y=0 width=6 height=13 xoffset=1 yoffset=2 xadvance=7 page=0 chnl=15

char id=169 x=98 y=36 width=9 height=10 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=15

char id=170 x=91 y=19 width=8 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=15

char id=171 x=504 y=34 width=6 height=7 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=15

char id=172 x=34 y=54 width=8 height=5 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=15

char id=173 x=143 y=51 width=4 height=2 xoffset=0 yoffset=9 xadvance=4 page=0 chnl=15

char id=174 x=43 y=54 width=6 height=5 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=15

char id=175 x=143 y=0 width=4 height=13 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=15

char id=176 x=106 y=52 width=4 height=4 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=15

char id=177 x=108 y=36 width=8 height=10 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=15

char id=178 x=95 y=36 width=2 height=11 xoffset=1 yoffset=4 xadvance=3 page=0 chnl=15

char id=179 x=89 y=36 width=2 height=11 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=15

char id=180 x=117 y=36 width=5 height=10 xoffset=1 yoffset=5 xadvance=6 page=0 chnl=15

char id=181 x=261 y=0 width=7 height=12 xoffset=1 yoffset=6 xadvance=8 page=0 chnl=15

char id=182 x=28 y=37 width=6 height=11 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=15

char id=183 x=135 y=51 width=2 height=3 xoffset=0 yoffset=9 xadvance=3 page=0 chnl=15

char id=184 x=342 y=17 width=7 height=11 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=15

char id=185 x=348 y=0 width=13 height=11 xoffset=1 yoffset=4 xadvance=13 page=0 chnl=15

char id=186 x=427 y=34 width=6 height=9 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=15

char id=187 x=0 y=55 width=6 height=7 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=15

char id=188 x=41 y=0 width=4 height=14 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=15

char id=189 x=294 y=18 width=7 height=11 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=15

char id=190 x=462 y=34 width=5 height=9 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=15

char id=191 x=78 y=36 width=4 height=11 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=15

char id=192 x=71 y=19 width=9 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=15

char id=193 x=286 y=18 width=7 height=11 xoffset=1 yoffset=4 xadvance=8 page=0 chnl=15

char id=194 x=302 y=18 width=7 height=11 xoffset=1 yoffset=4 xadvance=8 page=0 chnl=15

char id=195 x=14 y=38 width=6 height=11 xoffset=1 yoffset=4 xadvance=6 page=0 chnl=15

char id=196 x=69 y=0 width=9 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=15

char id=197 x=7 y=38 width=6 height=11 xoffset=1 yoffset=4 xadvance=7 page=0 chnl=15

char id=198 x=403 y=0 width=12 height=11 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=15

char id=199 x=278 y=18 width=7 height=11 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=15

char id=200 x=100 y=19 width=8 height=11 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=15

char id=201 x=97 y=0 width=8 height=13 xoffset=1 yoffset=2 xadvance=9 page=0 chnl=15

char id=202 x=406 y=17 width=7 height=11 xoffset=1 yoffset=4 xadvance=8 page=0 chnl=15

char id=203 x=109 y=19 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=15

char id=204 x=465 y=0 width=11 height=11 xoffset=1 yoffset=4 xadvance=12 page=0 chnl=15

char id=205 x=127 y=19 width=8 height=11 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=15

char id=206 x=499 y=0 width=10 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=15

char id=207 x=136 y=19 width=8 height=11 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=15

char id=208 x=483 y=17 width=6 height=11 xoffset=1 yoffset=4 xadvance=8 page=0 chnl=15

char id=209 x=154 y=19 width=8 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=15

char id=210 x=181 y=18 width=8 height=11 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=15

char id=211 x=190 y=18 width=8 height=11 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=15

char id=212 x=169 y=0 width=10 height=12 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=15

char id=213 x=226 y=18 width=8 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=15

char id=214 x=79 y=0 width=8 height=13 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=15

char id=215 x=366 y=17 width=7 height=11 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=15

char id=216 x=441 y=0 width=11 height=11 xoffset=1 yoffset=4 xadvance=12 page=0 chnl=15

char id=217 x=46 y=0 width=11 height=13 xoffset=1 yoffset=4 xadvance=13 page=0 chnl=15

char id=218 x=81 y=19 width=9 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=15

char id=219 x=31 y=20 width=9 height=11 xoffset=1 yoffset=4 xadvance=11 page=0 chnl=15

char id=220 x=326 y=18 width=7 height=11 xoffset=1 yoffset=4 xadvance=8 page=0 chnl=15

char id=221 x=199 y=18 width=8 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=15

char id=222 x=390 y=0 width=12 height=11 xoffset=1 yoffset=4 xadvance=13 page=0 chnl=15

char id=223 x=422 y=17 width=7 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=15

char id=224 x=357 y=34 width=6 height=9 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=15

char id=225 x=213 y=0 width=7 height=12 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=15

char id=226 x=385 y=34 width=6 height=9 xoffset=1 yoffset=6 xadvance=7 page=0 chnl=15

char id=227 x=474 y=34 width=5 height=9 xoffset=1 yoffset=6 xadvance=5 page=0 chnl=15

char id=228 x=310 y=18 width=7 height=11 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=15

char id=229 x=288 y=35 width=7 height=9 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=15

char id=230 x=180 y=35 width=10 height=9 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=15

char id=231 x=350 y=34 width=6 height=9 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=15

char id=232 x=264 y=35 width=7 height=9 xoffset=1 yoffset=6 xadvance=8 page=0 chnl=15

char id=233 x=430 y=17 width=7 height=11 xoffset=1 yoffset=4 xadvance=8 page=0 chnl=15

char id=234 x=392 y=34 width=6 height=9 xoffset=1 yoffset=6 xadvance=7 page=0 chnl=15

char id=235 x=320 y=35 width=7 height=9 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=15

char id=236 x=201 y=35 width=9 height=9 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=15

char id=237 x=399 y=34 width=6 height=9 xoffset=1 yoffset=6 xadvance=8 page=0 chnl=15

char id=238 x=304 y=35 width=7 height=9 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=15

char id=239 x=378 y=34 width=6 height=9 xoffset=1 yoffset=6 xadvance=8 page=0 chnl=15

char id=240 x=205 y=0 width=7 height=12 xoffset=1 yoffset=6 xadvance=8 page=0 chnl=15

char id=241 x=406 y=34 width=6 height=9 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=15

char id=242 x=413 y=34 width=6 height=9 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=15

char id=243 x=197 y=0 width=7 height=12 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=15

char id=244 x=0 y=0 width=9 height=15 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=15

char id=245 x=272 y=35 width=7 height=9 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=15

char id=246 x=454 y=17 width=7 height=11 xoffset=1 yoffset=6 xadvance=8 page=0 chnl=15

char id=247 x=420 y=34 width=6 height=9 xoffset=1 yoffset=6 xadvance=7 page=0 chnl=15

char id=248 x=191 y=35 width=9 height=9 xoffset=1 yoffset=6 xadvance=11 page=0 chnl=15

char id=249 x=488 y=0 width=10 height=11 xoffset=1 yoffset=6 xadvance=11 page=0 chnl=15

char id=250 x=230 y=35 width=8 height=9 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=15

char id=251 x=239 y=35 width=8 height=9 xoffset=1 yoffset=6 xadvance=10 page=0 chnl=15

char id=252 x=434 y=34 width=6 height=9 xoffset=1 yoffset=6 xadvance=7 page=0 chnl=15

char id=253 x=441 y=34 width=6 height=9 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=15

char id=254 x=211 y=35 width=9 height=9 xoffset=1 yoffset=6 xadvance=10 page=0 chnl=15

char id=255 x=455 y=34 width=6 height=9 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=15

kernings count=146

kerning first=133 second=148 amount=-1

kerning first=133 second=147 amount=-1

kerning first=133 second=146 amount=-1

kerning first=133 second=145 amount=-1

kerning first=133 second=39 amount=-1

kerning first=133 second=34 amount=-1

kerning first=32 second=145 amount=-1

kerning first=32 second=130 amount=-1

kerning first=32 second=147 amount=-1

kerning first=32 second=132 amount=-1

kerning first=34 second=44 amount=-1

kerning first=34 second=46 amount=-1

kerning first=34 second=65 amount=-1

kerning first=132 second=89 amount=-1

kerning first=70 second=65 amount=-1

kerning first=34 second=74 amount=-1

kerning first=70 second=133 amount=-1

kerning first=132 second=84 amount=-1

kerning first=148 second=133 amount=-2

kerning first=148 second=115 amount=-1

kerning first=148 second=111 amount=-1

kerning first=76 second=87 amount=-1

kerning first=76 second=89 amount=-1

kerning first=76 second=148 amount=-1

kerning first=80 second=44 amount=-2

kerning first=76 second=145 amount=-1

kerning first=148 second=101 amount=-1

kerning first=80 second=65 amount=-1

kerning first=80 second=133 amount=-2

kerning first=84 second=41 amount=1

kerning first=148 second=99 amount=-1

kerning first=148 second=65 amount=-1

kerning first=84 second=99 amount=-1

kerning first=84 second=100 amount=-1

kerning first=70 second=44 amount=-1

kerning first=70 second=46 amount=-1

kerning first=76 second=34 amount=-1

kerning first=70 second=74 amount=-1

kerning first=76 second=39 amount=-1

kerning first=76 second=84 amount=-1

kerning first=84 second=101 amount=-1

kerning first=84 second=103 amount=-1

kerning first=84 second=111 amount=-1

kerning first=148 second=160 amount=-1

kerning first=76 second=86 amount=-1

kerning first=148 second=113 amount=-1

kerning first=76 second=146 amount=-1

kerning first=84 second=44 amount=-1

kerning first=148 second=100 amount=-1

kerning first=84 second=97 amount=-1

kerning first=148 second=74 amount=-1

kerning first=84 second=113 amount=-1

kerning first=148 second=46 amount=-2

kerning first=148 second=44 amount=-2

kerning first=148 second=32 amount=-1

kerning first=147 second=133 amount=-1

kerning first=147 second=111 amount=-1

kerning first=84 second=125 amount=1

kerning first=84 second=105 amount=1

kerning first=84 second=65 amount=-1

kerning first=84 second=133 amount=-1

kerning first=86 second=105 amount=1

kerning first=34 second=133 amount=-1

kerning first=39 second=44 amount=-1

kerning first=39 second=46 amount=-1

kerning first=39 second=65 amount=-1

kerning first=147 second=101 amount=-1

kerning first=89 second=65 amount=-1

kerning first=39 second=74 amount=-1

kerning first=89 second=97 amount=-1

kerning first=102 second=148 amount=1

kerning first=147 second=99 amount=-1

kerning first=147 second=65 amount=-1

kerning first=65 second=84 amount=-1

kerning first=65 second=89 amount=-1

kerning first=65 second=145 amount=-1

kerning first=65 second=147 amount=-1

kerning first=65 second=39 amount=-1

kerning first=147 second=113 amount=-1

kerning first=87 second=105 amount=1

kerning first=147 second=103 amount=-1

kerning first=160 second=145 amount=-1

kerning first=147 second=100 amount=-1

kerning first=65 second=34 amount=-1

kerning first=147 second=74 amount=-1

kerning first=89 second=44 amount=-1

kerning first=147 second=46 amount=-1

kerning first=89 second=101 amount=-1

kerning first=89 second=111 amount=-1

kerning first=89 second=113 amount=-1

kerning first=160 second=130 amount=-1

kerning first=160 second=147 amount=-1

kerning first=89 second=99 amount=-1

kerning first=147 second=44 amount=-1

kerning first=130 second=89 amount=-1

kerning first=89 second=133 amount=-1

kerning first=46 second=145 amount=-1

kerning first=130 second=84 amount=-1

kerning first=146 second=133 amount=-2

kerning first=146 second=115 amount=-1

kerning first=146 second=111 amount=-1

kerning first=89 second=100 amount=-1

kerning first=46 second=148 amount=-1

kerning first=76 second=147 amount=-1

kerning first=102 second=125 amount=1

kerning first=89 second=46 amount=-1

kerning first=146 second=101 amount=-1

kerning first=84 second=93 amount=1

kerning first=46 second=34 amount=-1

kerning first=102 second=146 amount=1

kerning first=146 second=99 amount=-1

kerning first=146 second=65 amount=-1

kerning first=84 second=46 amount=-1

kerning first=80 second=46 amount=-2

kerning first=46 second=39 amount=-1

kerning first=39 second=133 amount=-1

kerning first=102 second=41 amount=1

kerning first=102 second=93 amount=1

kerning first=146 second=160 amount=-1

kerning first=46 second=147 amount=-1

kerning first=146 second=113 amount=-1

kerning first=46 second=146 amount=-1

kerning first=80 second=74 amount=-1

kerning first=146 second=100 amount=-1

kerning first=160 second=132 amount=-1

kerning first=146 second=74 amount=-1

kerning first=145 second=44 amount=-1

kerning first=146 second=46 amount=-2

kerning first=146 second=44 amount=-2

kerning first=146 second=32 amount=-1

kerning first=145 second=133 amount=-1

kerning first=145 second=111 amount=-1

kerning first=145 second=46 amount=-1

kerning first=145 second=65 amount=-1

kerning first=145 second=74 amount=-1

kerning first=145 second=99 amount=-1

kerning first=145 second=100 amount=-1

kerning first=145 second=101 amount=-1

kerning first=44 second=148 amount=-1

kerning first=44 second=147 amount=-1

kerning first=44 second=146 amount=-1

kerning first=145 second=113 amount=-1

kerning first=145 second=103 amount=-1

kerning first=44 second=34 amount=-1

kerning first=44 second=39 amount=-1

kerning first=44 second=145 amount=-1

[/java]



Here is the bitmap: Not sure if it stays PNG after uploading though…



Here is the test file contents (the text should be saved to the “sample.txt” textfile and the encoding must be enforced to be UTF-8). On my file the Notepad++ shows it as “UTF-8”… used to show “UTF-8 withou BOM” but I guess that does not matter that much…:



test=Hello, friends!\nПривет, друзья!\nLet the love flow through this world!\nПусть любовь наполняет мир!\nLet the light reveal itself!\n Пусть раскроется свет!

@noncom said:

Here is the font:

char id=32 x=180 y=50 width=1 height=1 xoffset=0 yoffset=17 xadvance=3 page=0 chnl=15




@pspeed is usually right and I think he is in this case also, forget my previous ramblings.

The unicode value of "П" is 1055 (0x014F). The jME code correctly finds this. It then uses that value to lookup the glyph in the Bitmap font. However as you say, your font have char id beginning with 32. So it doesn't match.

I believe that if you correct the fnt-file so that the char id's match the unicode values everything will work out.
1 Like

Hello. May I ask why I get this exception?
com.jme3.asset.AssetLoadException: An exception has occured while loading asset: Interface/extended_0.tga (Flipped)

@hidalgo said: Hello. May I ask why I get this exception? com.jme3.asset.AssetLoadException: An exception has occured while loading asset: Interface/extended_0.tga (Flipped)

Well, that would be somewhat dependent on the rest of the information you left out I think… like the rest of the stack trace and the underlying cause and stuff.

@hidalgo: in addition to what pspeed just said, i would say it is also worth to start a new thread, since i dont think this one is related to the problem…

@jmaasing said:

I believe that if you correct the fnt-file so that the char id’s match the Unicode values everything will work out.


You are quite right. JME+Nifty has the full Unicode support as I suppose. So if one prepare FNT from font with CP1251 (for a bad luck the embedded editor now allow only 256 chars), a simple manual change CP1251 ids to the proper Unicode values solve the problem. Here is a working example.

[java]
info face=null size=16 bold=0 italic=0 charset=ASCII unicode=1 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1
common lineHeight=19 base=26 scaleW=256 scaleH=256 pages=1 packed=0
page id=0 file=“Bookman_plain.png”
chars count=255
char id=0 x=0 y=4 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=1 x=8 y=4 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=2 x=16 y=4 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=3 x=24 y=4 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=4 x=32 y=4 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=5 x=40 y=4 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=6 x=48 y=4 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=7 x=56 y=4 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=8 x=64 y=4 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=9 x=72 y=4 width=0 height=18 xoffset=0 yoffset=0 xadvance=-1 page=0 chnl=0
char id=10 x=72 y=4 width=0 height=18 xoffset=0 yoffset=0 xadvance=-1 page=0 chnl=0
char id=11 x=72 y=4 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=12 x=80 y=4 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=13 x=88 y=4 width=0 height=18 xoffset=0 yoffset=0 xadvance=-1 page=0 chnl=0
char id=14 x=88 y=4 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=15 x=96 y=4 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=16 x=104 y=4 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=17 x=112 y=4 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=18 x=120 y=4 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=19 x=128 y=4 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=20 x=136 y=4 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=21 x=144 y=4 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=22 x=152 y=4 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=23 x=160 y=4 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=24 x=168 y=4 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=25 x=176 y=4 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=26 x=184 y=4 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=27 x=192 y=4 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=28 x=200 y=4 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=29 x=208 y=4 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=30 x=216 y=4 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=31 x=224 y=4 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=32 x=232 y=4 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=33 x=240 y=4 width=5 height=18 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0
char id=34 x=245 y=4 width=6 height=18 xoffset=0 yoffset=0 xadvance=5 page=0 chnl=0
char id=35 x=0 y=23 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=36 x=10 y=23 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=37 x=20 y=23 width=14 height=18 xoffset=0 yoffset=0 xadvance=13 page=0 chnl=0
char id=38 x=34 y=23 width=13 height=18 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0
char id=39 x=47 y=23 width=4 height=18 xoffset=0 yoffset=0 xadvance=3 page=0 chnl=0
char id=40 x=51 y=23 width=5 height=18 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0
char id=41 x=56 y=23 width=5 height=18 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0
char id=42 x=61 y=23 width=7 height=18 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0
char id=43 x=68 y=23 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=44 x=78 y=23 width=5 height=18 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0
char id=45 x=83 y=23 width=6 height=18 xoffset=0 yoffset=0 xadvance=5 page=0 chnl=0
char id=46 x=89 y=23 width=5 height=18 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0
char id=47 x=94 y=23 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=48 x=104 y=23 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=49 x=114 y=23 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=50 x=124 y=23 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=51 x=134 y=23 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=52 x=144 y=23 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=53 x=154 y=23 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=54 x=164 y=23 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=55 x=174 y=23 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=56 x=184 y=23 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=57 x=194 y=23 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=58 x=204 y=23 width=5 height=18 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0
char id=59 x=209 y=23 width=5 height=18 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0
char id=60 x=214 y=23 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=61 x=224 y=23 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=62 x=234 y=23 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=63 x=244 y=23 width=9 height=18 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0
char id=64 x=0 y=42 width=13 height=18 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0
char id=65 x=13 y=42 width=11 height=18 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0
char id=66 x=24 y=42 width=12 height=18 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0
char id=67 x=36 y=42 width=12 height=18 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0
char id=68 x=48 y=42 width=13 height=18 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0
char id=69 x=61 y=42 width=12 height=18 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0
char id=70 x=73 y=42 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=71 x=83 y=42 width=13 height=18 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0
char id=72 x=96 y=42 width=13 height=18 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0
char id=73 x=109 y=42 width=5 height=18 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0
char id=74 x=114 y=42 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=75 x=124 y=42 width=12 height=18 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0
char id=76 x=136 y=42 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=77 x=146 y=42 width=15 height=18 xoffset=0 yoffset=0 xadvance=14 page=0 chnl=0
char id=78 x=161 y=42 width=12 height=18 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0
char id=79 x=173 y=42 width=13 height=18 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0
char id=80 x=186 y=42 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=81 x=196 y=42 width=13 height=18 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0
char id=82 x=209 y=42 width=12 height=18 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0
char id=83 x=221 y=42 width=11 height=18 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0
char id=84 x=232 y=42 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=85 x=242 y=42 width=12 height=18 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0
char id=86 x=0 y=61 width=11 height=18 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0
char id=87 x=11 y=61 width=15 height=18 xoffset=0 yoffset=0 xadvance=14 page=0 chnl=0
char id=88 x=26 y=61 width=12 height=18 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0
char id=89 x=38 y=61 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=90 x=48 y=61 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=91 x=58 y=61 width=5 height=18 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0
char id=92 x=63 y=61 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=93 x=73 y=61 width=5 height=18 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0
char id=94 x=78 y=61 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=95 x=88 y=61 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=96 x=96 y=61 width=5 height=18 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0
char id=97 x=101 y=61 width=9 height=18 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0
char id=98 x=110 y=61 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=99 x=120 y=61 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=100 x=128 y=61 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=101 x=138 y=61 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=102 x=146 y=61 width=5 height=18 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0
char id=103 x=151 y=61 width=9 height=18 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0
char id=104 x=160 y=61 width=11 height=18 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0
char id=105 x=171 y=61 width=5 height=18 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0
char id=106 x=176 y=61 width=5 height=18 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0
char id=107 x=181 y=61 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=108 x=191 y=61 width=5 height=18 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0
char id=109 x=196 y=61 width=15 height=18 xoffset=0 yoffset=0 xadvance=14 page=0 chnl=0
char id=110 x=211 y=61 width=11 height=18 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0
char id=111 x=222 y=61 width=9 height=18 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0
char id=112 x=231 y=61 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=113 x=241 y=61 width=9 height=18 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0
char id=114 x=0 y=80 width=7 height=18 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0
char id=115 x=7 y=80 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=116 x=15 y=80 width=6 height=18 xoffset=0 yoffset=0 xadvance=5 page=0 chnl=0
char id=117 x=21 y=80 width=11 height=18 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0
char id=118 x=32 y=80 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=119 x=40 y=80 width=12 height=18 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0
char id=120 x=52 y=80 width=9 height=18 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0
char id=121 x=61 y=80 width=9 height=18 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0
char id=122 x=70 y=80 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=123 x=78 y=80 width=4 height=18 xoffset=0 yoffset=0 xadvance=3 page=0 chnl=0
char id=124 x=82 y=80 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=125 x=92 y=80 width=4 height=18 xoffset=0 yoffset=0 xadvance=3 page=0 chnl=0
char id=126 x=96 y=80 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=127 x=106 y=80 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=128 x=114 y=80 width=11 height=18 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0
char id=129 x=125 y=80 width=17 height=18 xoffset=0 yoffset=0 xadvance=16 page=0 chnl=0
char id=130 x=142 y=80 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=131 x=150 y=80 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=132 x=158 y=80 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=133 x=166 y=80 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=134 x=174 y=80 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=135 x=182 y=80 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=136 x=190 y=80 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=137 x=198 y=80 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=138 x=206 y=80 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=139 x=214 y=80 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=140 x=222 y=80 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=141 x=230 y=80 width=13 height=18 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0
char id=142 x=243 y=80 width=13 height=18 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0
char id=143 x=0 y=99 width=11 height=18 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0
char id=144 x=11 y=99 width=9 height=18 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0
char id=145 x=20 y=99 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=146 x=28 y=99 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=147 x=36 y=99 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=148 x=44 y=99 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=149 x=52 y=99 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=150 x=60 y=99 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=151 x=68 y=99 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=152 x=76 y=99 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=153 x=84 y=99 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=154 x=92 y=99 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=155 x=100 y=99 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=156 x=108 y=99 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=157 x=116 y=99 width=9 height=18 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0
char id=158 x=125 y=99 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=159 x=135 y=99 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=160 x=143 y=99 width=5 height=18 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0
char id=161 x=148 y=99 width=9 height=18 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0
char id=162 x=157 y=99 width=9 height=18 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0
char id=163 x=166 y=99 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=164 x=176 y=99 width=13 height=18 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0
char id=165 x=189 y=99 width=12 height=18 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0
char id=166 x=201 y=99 width=13 height=18 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0
char id=167 x=214 y=99 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=1025 x=222 y=99 width=12 height=18 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0
char id=169 x=234 y=99 width=12 height=18 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0
char id=170 x=0 y=118 width=12 height=18 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0
char id=171 x=12 y=118 width=6 height=18 xoffset=0 yoffset=0 xadvance=5 page=0 chnl=0
char id=172 x=18 y=118 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=173 x=28 y=118 width=6 height=18 xoffset=0 yoffset=0 xadvance=5 page=0 chnl=0
char id=174 x=34 y=118 width=12 height=18 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0
char id=175 x=46 y=118 width=15 height=18 xoffset=0 yoffset=0 xadvance=14 page=0 chnl=0
char id=176 x=61 y=118 width=6 height=18 xoffset=0 yoffset=0 xadvance=5 page=0 chnl=0
char id=177 x=67 y=118 width=9 height=18 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0
char id=178 x=76 y=118 width=5 height=18 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0
char id=179 x=81 y=118 width=5 height=18 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0
char id=180 x=86 y=118 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=181 x=96 y=118 width=9 height=18 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0
char id=182 x=105 y=118 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=183 x=115 y=118 width=5 height=18 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0
char id=1105 x=120 y=118 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=185 x=128 y=118 width=15 height=18 xoffset=0 yoffset=0 xadvance=14 page=0 chnl=0
char id=186 x=143 y=118 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=187 x=151 y=118 width=6 height=18 xoffset=0 yoffset=0 xadvance=5 page=0 chnl=0
char id=188 x=157 y=118 width=5 height=18 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0
char id=189 x=162 y=118 width=13 height=18 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0
char id=190 x=175 y=118 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=191 x=185 y=118 width=13 height=18 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0
char id=1040 x=198 y=118 width=11 height=18 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0
char id=1041 x=209 y=118 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=1042 x=219 y=118 width=12 height=18 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0
char id=1043 x=231 y=118 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=1044 x=241 y=118 width=11 height=18 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0
char id=1045 x=0 y=137 width=12 height=18 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0
char id=1046 x=12 y=137 width=16 height=18 xoffset=0 yoffset=0 xadvance=15 page=0 chnl=0
char id=1047 x=28 y=137 width=11 height=18 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0
char id=1048 x=39 y=137 width=13 height=18 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0
char id=1049 x=52 y=137 width=13 height=18 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0
char id=1050 x=65 y=137 width=11 height=18 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0
char id=1051 x=76 y=137 width=12 height=18 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0
char id=1052 x=88 y=137 width=15 height=18 xoffset=0 yoffset=0 xadvance=14 page=0 chnl=0
char id=1053 x=103 y=137 width=13 height=18 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0
char id=1054 x=116 y=137 width=13 height=18 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0
char id=1055 x=129 y=137 width=12 height=18 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0
char id=1056 x=141 y=137 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=1057 x=151 y=137 width=12 height=18 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0
char id=1058 x=163 y=137 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=1059 x=173 y=137 width=9 height=18 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0
char id=1060 x=182 y=137 width=13 height=18 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0
char id=1061 x=195 y=137 width=12 height=18 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0
char id=1062 x=207 y=137 width=13 height=18 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0
char id=1063 x=220 y=137 width=11 height=18 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0
char id=1064 x=231 y=137 width=17 height=18 xoffset=0 yoffset=0 xadvance=16 page=0 chnl=0
char id=1065 x=0 y=156 width=17 height=18 xoffset=0 yoffset=0 xadvance=16 page=0 chnl=0
char id=1066 x=17 y=156 width=13 height=18 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0
char id=1067 x=30 y=156 width=15 height=18 xoffset=0 yoffset=0 xadvance=14 page=0 chnl=0
char id=1068 x=45 y=156 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=1069 x=55 y=156 width=12 height=18 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0
char id=1070 x=67 y=156 width=17 height=18 xoffset=0 yoffset=0 xadvance=16 page=0 chnl=0
char id=1071 x=84 y=156 width=12 height=18 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0
char id=1072 x=96 y=156 width=9 height=18 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0
char id=1073 x=105 y=156 width=9 height=18 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0
char id=1074 x=114 y=156 width=9 height=18 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0
char id=1075 x=123 y=156 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=1076 x=131 y=156 width=9 height=18 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0
char id=1077 x=140 y=156 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=1078 x=148 y=156 width=13 height=18 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0
char id=1079 x=161 y=156 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=1080 x=169 y=156 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=1081 x=179 y=156 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=1082 x=189 y=156 width=9 height=18 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0
char id=1083 x=198 y=156 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=1084 x=208 y=156 width=11 height=18 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0
char id=1085 x=219 y=156 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=1086 x=229 y=156 width=9 height=18 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0
char id=1087 x=238 y=156 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=1088 x=0 y=175 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=1089 x=10 y=175 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=1090 x=18 y=175 width=9 height=18 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0
char id=1091 x=27 y=175 width=9 height=18 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0
char id=1092 x=36 y=175 width=14 height=18 xoffset=0 yoffset=0 xadvance=13 page=0 chnl=0
char id=1093 x=50 y=175 width=9 height=18 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0
char id=1094 x=59 y=175 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=1095 x=69 y=175 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=1096 x=79 y=175 width=14 height=18 xoffset=0 yoffset=0 xadvance=13 page=0 chnl=0
char id=1097 x=93 y=175 width=15 height=18 xoffset=0 yoffset=0 xadvance=14 page=0 chnl=0
char id=1098 x=108 y=175 width=10 height=18 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
char id=1099 x=118 y=175 width=13 height=18 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0
char id=1100 x=131 y=175 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=1101 x=139 y=175 width=8 height=18 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0
char id=1102 x=147 y=175 width=13 height=18 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0
char id=1103 x=160 y=175 width=9 height=18 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0
[/java]

1 Like