Revela
d7822ac81e
Enable multi-language font rendering and Unicode text input
...
Goal:
Allow players to type and display text in any language supported by
Unicode, including Chinese, Japanese, Korean, Thai, Arabic, Korean, Hindi, and more. This
covers all text surfaces: chat editor, chat messages, signs (in-world
and editor), world name/seed, server address/port fields, and all
Iggy Flash UI text fields.
Multi-language support:
Two complementary rendering systems were added to handle Unicode text
across the entire client:
1. Iggy UI (Flash-based text fields): A new UIUnicodeBitmapFont class
serves Java Minecraft's glyph page PNGs (glyph_00.png-glyph_FF.png)
through Iggy's bitmap font provider API. Registered as the global
fallback font with metrics matching the Mojangles bitmap font for
correct baseline alignment. When the primary bitmap font lacks a
glyph, it returns IGGY_GLYPH_INVALID and Iggy seamlessly falls back
to the unicode bitmap font.
2. Legacy C++ Font renderer (chat editor, in-world signs): Revived the
commented-out unicode glyph page system in Font.cpp. Characters not
in the bitmap font texture are rendered from glyph page PNGs loaded
on demand, with proper texture switching mid-string.
3. ChatScreen input: Removed the restrictive acceptableLetters filter
so all printable Unicode characters are accepted in chat.
Languages now supported for text input and rendering:
- Japanese (Hiragana, Katakana, Kanji)
- Chinese (Simplified and Traditional)
- Korean (Hangul)
- Thai
- Arabic
- Hindi (Devanagari)
- Russian (Cyrillic) - already worked via bitmap font
- Greek - already worked via bitmap font
- Polish, Czech, Turkish (Extended Latin) - already worked via bitmap font
- Armenian, Georgian, and other scripts covered by glyph pages
Security fixes:
- Fixed memset under-initialization of Font::charWidths (zeroed 460
bytes instead of 460*sizeof(int)=1840 bytes, leaving entries 115+
uninitialized) - pre-existing bug
- Added bounds checks to all UIUnicodeBitmapFont callbacks to reject
glyph IDs outside [0, 65535], preventing OOB array access
- Added bounds check in Font::width() section-sign fallback path to
prevent OOB read on charWidths[] with high codepoints
- Blocked Unicode bidirectional override characters (U+202A-202E,
U+2066-2069) in chat input to prevent message spoofing
Memory leak fix:
- Fixed SignTileEntity::load allocating wchar_t[256] with new[] on
every sign load without freeing. Replaced with stack allocation.
Debug logging:
- Added [SIGN] prefixed logging for sign save/update operations
- Added [CHAT] prefixed logging for chat send/receive operations
Files changed:
- UIUnicodeBitmapFont.h/.cpp (new) - Iggy bitmap font for glyph pages
- UIBitmapFont.cpp - Return IGGY_GLYPH_INVALID for unknown chars
- UIFontData.h/.cpp - Added hasGlyph() method
- UIController.h/.cpp - Load and register unicode bitmap fallback font
- UITTFFont.h/.cpp - Added registerAsDefaultFonts parameter
- Font.h/.cpp - Revived unicode glyph page rendering system
- ChatScreen.cpp - Accept all Unicode input, block bidi overrides
- Gui.cpp - Chat display debug logging
- ClientConnection.cpp - Sign update debug logging
- SignTileEntity.cpp - Sign save logging, memory leak fix
2026-03-16 23:08:05 -05:00
..
2026-03-16 23:08:05 -05:00
2026-03-08 18:08:36 -05:00
2026-03-12 12:48:06 +00:00
2026-03-06 00:42:55 -06:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-01 12:16:08 +08:00
2026-03-16 23:08:05 -05:00
2026-03-15 23:38:41 -05:00
2026-03-08 18:08:36 -05:00
2026-03-06 02:11:18 +07:00
2026-03-08 18:08:36 -05:00
2026-03-02 17:37:16 +07:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-08 18:08:36 -05:00
2026-03-08 18:08:36 -05:00
2026-03-07 03:31:30 +07:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-02 17:37:16 +07:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-16 23:08:05 -05:00
2026-03-06 09:52:28 -06:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-09 06:53:08 -05:00
2026-03-04 22:43:29 +07:00
2026-03-01 12:16:08 +08:00
2026-03-16 23:08:05 -05:00
2026-03-13 01:32:18 -05:00
2026-03-12 05:19:39 -05:00
2026-03-11 23:56:22 -05:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-03 03:04:10 +08:00
2026-03-06 02:11:18 +07:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-02 17:37:16 +07:00
2026-03-02 17:37:16 +07:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-02 17:37:16 +07:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-02 17:37:16 +07:00
2026-03-02 17:37:16 +07:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-02 17:37:16 +07:00
2026-03-02 17:37:16 +07:00
2026-03-05 14:16:18 +07:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-02 17:37:16 +07:00
2026-03-02 17:37:16 +07:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-02 17:37:16 +07:00
2026-03-08 18:08:36 -05:00
2026-03-08 18:08:36 -05:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-07 03:31:30 +07:00
2026-03-07 03:31:30 +07:00
2026-03-02 17:37:16 +07:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-02 17:37:16 +07:00
2026-03-03 03:04:10 +08:00
2026-03-07 23:58:51 +07:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-02 17:37:16 +07:00
2026-03-07 23:58:51 +07:00
2026-03-08 18:08:36 -05:00
2026-03-08 18:08:36 -05:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-02 17:37:16 +07:00
2026-03-02 17:37:16 +07:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-08 18:08:36 -05:00
2026-03-16 23:08:05 -05:00
2026-03-16 23:08:05 -05:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-02 17:37:16 +07:00
2026-03-02 17:37:16 +07:00
2026-03-02 17:37:16 +07:00
2026-03-02 17:37:16 +07:00
2026-03-15 18:14:15 -05:00
2026-03-07 03:00:38 -06:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-16 23:08:05 -05:00
2026-03-08 18:08:36 -05:00
2026-03-06 09:52:28 -06:00
2026-03-06 09:52:28 -06:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-06 02:11:18 +07:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-07 22:30:44 -06:00
2026-03-03 03:04:10 +08:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-05 01:12:48 +08:00
2026-03-08 18:08:36 -05:00
2026-03-02 17:37:16 +07:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-13 11:41:47 +00:00
2026-03-09 03:12:49 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-07 03:31:30 +07:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-02 17:37:16 +07:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-07 03:31:30 +07:00
2026-03-06 02:11:18 +07:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-02 17:37:16 +07:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-16 23:08:05 -05:00
2026-03-16 23:08:05 -05:00
2026-03-01 12:16:08 +08:00
2026-03-15 07:36:49 -05:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-16 02:52:16 -05:00
2026-03-15 03:54:37 -05:00
2026-03-08 18:08:36 -05:00
2026-03-02 17:37:16 +07:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-08 18:08:36 -05:00
2026-03-08 18:08:36 -05:00
2026-03-13 01:32:18 -05:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-02 17:37:16 +07:00
2026-03-02 17:37:16 +07:00
2026-03-02 17:37:16 +07:00
2026-03-02 17:37:16 +07:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-02 17:37:16 +07:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-15 02:32:50 -05:00
2026-03-03 03:04:10 +08:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-07 03:31:30 +07:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-16 02:52:16 -05:00
2026-03-15 03:54:37 -05:00
2026-03-01 12:16:08 +08:00
2026-03-16 08:00:48 -05:00
2026-03-16 02:52:16 -05:00
2026-03-08 18:08:36 -05:00
2026-03-06 19:23:32 -06:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-07 13:55:44 -06:00
2026-03-09 03:25:05 -05:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-07 03:31:30 +07:00
2026-03-07 03:31:30 +07:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-15 18:11:55 -05:00
2026-03-06 09:52:28 -06:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-07 03:31:30 +07:00
2026-03-13 06:56:46 -05:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-06 02:11:18 +07:00
2026-03-02 17:37:16 +07:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-01 12:16:08 +08:00
2026-03-09 06:53:08 -05:00
2026-03-07 03:31:30 +07:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-16 02:52:16 -05:00
2026-03-07 03:31:30 +07:00
2026-03-15 02:32:50 -05:00
2026-03-08 18:08:36 -05:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-04 17:29:43 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-02 17:37:16 +07:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-11 23:56:22 -05:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-06 02:11:18 +07:00
2026-03-08 15:49:50 -05:00
2026-03-03 03:04:10 +08:00
2026-03-05 01:12:48 +08:00
2026-03-08 18:08:36 -05:00
2026-03-02 17:37:16 +07:00
2026-03-02 17:37:16 +07:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-02 17:37:16 +07:00
2026-03-08 18:08:36 -05:00
2026-03-02 17:37:16 +07:00
2026-03-08 18:08:36 -05:00
2026-03-02 17:37:16 +07:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-02 17:37:16 +07:00
2026-03-08 18:08:36 -05:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-02 15:11:05 +07:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-08 18:08:36 -05:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-07 23:58:51 +07:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-07 03:31:30 +07:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-02 17:37:16 +07:00
2026-03-02 17:37:16 +07:00
2026-03-03 03:04:10 +08:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-01 12:16:08 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-01 12:16:08 +08:00
2026-03-01 12:16:08 +08:00
2026-03-03 03:04:10 +08:00
2026-03-03 03:04:10 +08:00
2026-03-08 18:08:36 -05:00
2026-03-03 03:04:10 +08:00