This is the mail archive of the libc-alpha@sources.redhat.com mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

bugs in EUC-TW converter



The EUC-TW iconv converter has a bug which makes it refuse (valid) byte
sequences starting with 0x8E. Another bug is that it doesn't recognize
a few dozen characters at the end of CNS 11643 plane 1. Then there are
a few more minor bugs in the Unicode to EUC-TW direction.

The patch below

  - fixes all these bugs,
  - changes the converter to reject 0x8E XX two-byte sequences where XX
    is an invalid second byte, without waiting for 4 bytes. (Without this,
    the testsuite would take much longer, trying out 16 million 4-byte
    sequences.)
  - adds commented lines to the EUC-TW charmap which tell the testsuite
    which irreversible mappings to expect.


2000-09-03  Bruno Haible  <haible@clisp.cons.org>

	* iconvdata/euc-tw.c (BODY for FROM_LOOP): Initialize ch2 correctly.
	If the first byte is 0x8E, don't ask for 4 bytes until it has been
	verified that the second byte is valid. Leave it to cns11643_to_ucs4
	to check for incomplete input.
	* iconvdata/cns11643.h (cns11643_to_ucs4): The plane number is
	ch - 0x20 - offset, not ch - 0x21 - offset. Upper bound for
	__cns11643l1_to_ucs4_tab is 0x21f2, not 0x2196.
	(ucs4_to_cns11643): Fix mapping for ranges 0x3105..0x3129 and
	0x9f9d..0x9fa5.
	* iconvdata/cns11643l1.h (cns11643l1_to_ucs4): Upper bound for
	__cns11643l1_to_ucs4_tab is 0x21f2, not 0x2196.
	(ucs4_to_cns11643l1): Fix mapping for range 0x3105..0x3129.
	* iconvdata/cns11643l1.c (__cns11643l1_from_ucs4_tab6): Extend
	upto index 0x0052.

2000-09-03  Bruno Haible  <haible@clisp.cons.org>

	* charmaps/EUC-TW: Add commented non-reversible mappings.

*** glibc-20000831/iconvdata/euc-tw.c.bak	Mon Jul  3 16:39:27 2000
--- glibc-20000831/iconvdata/euc-tw.c	Sun Sep  3 13:18:15 2000
***************
*** 65,71 ****
  	   character is also available.  */				      \
  	uint32_t ch2;							      \
  									      \
! 	if (inptr + (ch == 0x8e ? 3 : 1) >= inend)			      \
  	  {								      \
  	    /* The second character is not available.  Store the	      \
  	       intermediate result.  */					      \
--- 65,71 ----
  	   character is also available.  */				      \
  	uint32_t ch2;							      \
  									      \
! 	if (inptr + 1 >= inend)						      \
  	  {								      \
  	    /* The second character is not available.  Store the	      \
  	       intermediate result.  */					      \
***************
*** 73,79 ****
  	    break;							      \
  	  }								      \
  									      \
! 	ch2 = *inptr;							      \
  									      \
  	/* All second bytes of a multibyte character must be >= 0xa1. */      \
  	if (ch2 < 0xa1 || ch2 == 0xff)					      \
--- 73,79 ----
  	    break;							      \
  	  }								      \
  									      \
! 	ch2 = *(inptr + 1);						      \
  									      \
  	/* All second bytes of a multibyte character must be >= 0xa1. */      \
  	if (ch2 < 0xa1 || ch2 == 0xff)					      \
***************
*** 96,103 ****
  	    const char *endp = inptr + 1;				      \
  									      \
  	    ch = cns11643_to_ucs4 (&endp, inend - inptr - 1, 0x80);	      \
! 	    /* Please note that we need not test for the missing input	      \
! 	       characters here anymore.  */				      \
  	    if (ch == __UNKNOWN_10646_CHAR)				      \
  	      {								      \
  		/* Illegal input.  */					      \
--- 96,110 ----
  	    const char *endp = inptr + 1;				      \
  									      \
  	    ch = cns11643_to_ucs4 (&endp, inend - inptr - 1, 0x80);	      \
! 									      \
! 	    if (ch == 0)						      \
! 	      {								      \
! 		/* The third or fourth character is not available.  Store     \
! 		   the intermediate result.  */				      \
! 		result = __GCONV_INCOMPLETE_INPUT;			      \
! 		break;							      \
! 	      }								      \
! 									      \
  	    if (ch == __UNKNOWN_10646_CHAR)				      \
  	      {								      \
  		/* Illegal input.  */					      \
*** glibc-20000831/iconvdata/cns11643.h.bak	Tue Sep  7 16:49:49 1999
--- glibc-20000831/iconvdata/cns11643.h	Sun Sep  3 14:40:23 2000
***************
*** 1,5 ****
  /* Access functions for CNS 11643, plane 2 handling.
!    Copyright (C) 1998, 1999 Free Software Foundation, Inc.
     This file is part of the GNU C Library.
     Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
  
--- 1,5 ----
  /* Access functions for CNS 11643, plane 2 handling.
!    Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
     This file is part of the GNU C Library.
     Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
  
***************
*** 50,68 ****
  
    idx = (ch2 - 0x21 - offset) * 94 + (ch3 - 0x21 - offset);
  
!   if ((ch - 0x21 - offset) == 1)
      {
!       if (idx > 0x2196)
  	return __UNKNOWN_10646_CHAR;
        result = __cns11643l1_to_ucs4_tab[idx];
      }
!   else if ((ch - 0x21 - offset) == 2)
      {
        if (idx > 0x1de1)
  	return __UNKNOWN_10646_CHAR;
        result = __cns11643l2_to_ucs4_tab[idx];
      }
!   else if ((ch - 0x21 - offset) == 0xe)
      {
        if (idx > 0x19bd)
  	return __UNKNOWN_10646_CHAR;
--- 50,68 ----
  
    idx = (ch2 - 0x21 - offset) * 94 + (ch3 - 0x21 - offset);
  
!   if ((ch - 0x20 - offset) == 1)
      {
!       if (idx > 0x21f2)
  	return __UNKNOWN_10646_CHAR;
        result = __cns11643l1_to_ucs4_tab[idx];
      }
!   else if ((ch - 0x20 - offset) == 2)
      {
        if (idx > 0x1de1)
  	return __UNKNOWN_10646_CHAR;
        result = __cns11643l2_to_ucs4_tab[idx];
      }
!   else if ((ch - 0x20 - offset) == 0xe)
      {
        if (idx > 0x19bd)
  	return __UNKNOWN_10646_CHAR;
***************
*** 166,172 ****
        break;
      case 0x3105 ... 0x3129:
        buf[0] = '\x25';
!       buf[1] = '\x26' + (ch - 0x3105);
        break;
      case 0x32a3:
        cp = "\x22\x21";
--- 166,172 ----
        break;
      case 0x3105 ... 0x3129:
        buf[0] = '\x25';
!       buf[1] = '\x47' + (ch - 0x3105);
        break;
      case 0x32a3:
        cp = "\x22\x21";
***************
*** 177,188 ****
      case 0x4e00 ... 0x9f9c:
        cp = __cns11643l1_from_ucs4_tab12[ch - 0x4e00];
  
!       if (cp[0] == '\0')
! 	{
! 	  /* Let's try the other planes.  */
! 	  needed = 3;
! 	  cp = __cns11643_from_ucs4_tab[ch - 0x4e00];
! 	}
        break;
      case 0xfe30 ... 0xfe6b:
        cp = __cns11643l1_from_ucs4_tab13[ch - 0xfe30];
--- 177,189 ----
      case 0x4e00 ... 0x9f9c:
        cp = __cns11643l1_from_ucs4_tab12[ch - 0x4e00];
  
!       if (cp[0] != '\0')
! 	break;
!       /* FALLTHROUGH.  Let's try the other planes.  */
!     case 0x9f9d ... 0x9fa5:
!       /* Let's try the other planes.  */
!       needed = 3;
!       cp = __cns11643_from_ucs4_tab[ch - 0x4e00];
        break;
      case 0xfe30 ... 0xfe6b:
        cp = __cns11643l1_from_ucs4_tab13[ch - 0xfe30];
*** glibc-20000831/iconvdata/cns11643l1.h.bak	Wed Dec 29 21:00:20 1999
--- glibc-20000831/iconvdata/cns11643l1.h	Sun Sep  3 14:35:24 2000
***************
*** 1,5 ****
  /* Access functions for CNS 11643, plane 1 handling.
!    Copyright (C) 1998, 1999 Free Software Foundation, Inc.
     This file is part of the GNU C Library.
     Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
  
--- 1,5 ----
  /* Access functions for CNS 11643, plane 1 handling.
!    Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
     This file is part of the GNU C Library.
     Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
  
***************
*** 44,50 ****
      return __UNKNOWN_10646_CHAR;
  
    idx = (ch - 0x21 - offset) * 94 + (ch2 - 0x21 - offset);
!   if (idx > 0x2196)
      return __UNKNOWN_10646_CHAR;
  
    (*s) += 2;
--- 44,50 ----
      return __UNKNOWN_10646_CHAR;
  
    idx = (ch - 0x21 - offset) * 94 + (ch2 - 0x21 - offset);
!   if (idx > 0x21f2)
      return __UNKNOWN_10646_CHAR;
  
    (*s) += 2;
***************
*** 137,143 ****
        break;
      case 0x3105 ... 0x3129:
        buf[0] = '\x25';
!       buf[1] = '\x26' + (ch - 0x3105);
        break;
      case 0x32a3:
        cp = "\x22\x21";
--- 137,143 ----
        break;
      case 0x3105 ... 0x3129:
        buf[0] = '\x25';
!       buf[1] = '\x47' + (ch - 0x3105);
        break;
      case 0x32a3:
        cp = "\x22\x21";
*** glibc-20000831/iconvdata/cns11643l1.c.bak	Tue Sep  7 16:49:55 1999
--- glibc-20000831/iconvdata/cns11643l1.c	Sun Sep  3 14:21:26 2000
***************
*** 1,5 ****
  /* Mapping tables for CNS 11643, plane 1 handling.
!    Copyright (C) 1998 Free Software Foundation, Inc.
     This file is part of the GNU C Library.
     Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
  
--- 1,5 ----
  /* Mapping tables for CNS 11643, plane 1 handling.
!    Copyright (C) 1998, 2000 Free Software Foundation, Inc.
     This file is part of the GNU C Library.
     Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
  
***************
*** 1637,1643 ****
    [0x000a] = "\x22\x49", [0x000b] = "\x22\x48", [0x0014] = "\x22\x45",
    [0x0015] = "\x22\x46", [0x0016] = "\x22\x4d", [0x0019] = "\x22\x4e",
    [0x001f] = "\x22\x50", [0x0020] = "\x22\x4f", [0x0027] = "\x22\x44",
!   [0x003d] = "\x22\x3d",
  };
  
  /* Graphic pictures for control codes.  The table can be created using
--- 1637,1644 ----
    [0x000a] = "\x22\x49", [0x000b] = "\x22\x48", [0x0014] = "\x22\x45",
    [0x0015] = "\x22\x46", [0x0016] = "\x22\x4d", [0x0019] = "\x22\x4e",
    [0x001f] = "\x22\x50", [0x0020] = "\x22\x4f", [0x0027] = "\x22\x44",
!   [0x003d] = "\x22\x3d", [0x004b] = "\x22\x3b", [0x004c] = "\x22\x3e",
!   [0x0051] = "\x22\x39", [0x0052] = "\x22\x3a",
  };
  
  /* Graphic pictures for control codes.  The table can be created using
*** glibc-20000831/localedata/charmaps/EUC-TW.bak	Sat Jul 29 21:36:06 2000
--- glibc-20000831/localedata/charmaps/EUC-TW	Sun Sep  3 13:37:17 2000
***************
*** 6004,6009 ****
--- 6004,11877 ----
  <U7C72>     /xfd/xcb         <CJK>
  
  %
+ % CNS 11643-1992 Plane 1 again
+ %
+ %IRREVERSIBLE%<U3000>     /x8e/xa1/xa1/xa1 IDEOGRAPHIC SPACE
+ %IRREVERSIBLE%<UFF0C>     /x8e/xa1/xa1/xa2 FULLWIDTH COMMA
+ %IRREVERSIBLE%<U3001>     /x8e/xa1/xa1/xa3 IDEOGRAPHIC COMMA
+ %IRREVERSIBLE%<U3002>     /x8e/xa1/xa1/xa4 IDEOGRAPHIC FULL STOP
+ %IRREVERSIBLE%<UFF0E>     /x8e/xa1/xa1/xa5 FULLWIDTH FULL STOP
+ %IRREVERSIBLE%<U30FB>     /x8e/xa1/xa1/xa6 KATAKANA MIDDLE DOT
+ %IRREVERSIBLE%<UFF1B>     /x8e/xa1/xa1/xa7 FULLWIDTH SEMICOLON
+ %IRREVERSIBLE%<UFF1A>     /x8e/xa1/xa1/xa8 FULLWIDTH COLON
+ %IRREVERSIBLE%<UFF1F>     /x8e/xa1/xa1/xa9 FULLWIDTH QUESTION MARK
+ %IRREVERSIBLE%<UFF01>     /x8e/xa1/xa1/xaa FULLWIDTH EXCLAMATION MARK
+ %IRREVERSIBLE%<UFE30>     /x8e/xa1/xa1/xab PRESENTATION FORM FOR VERTICAL TWO DOT LEADER
+ %IRREVERSIBLE%<U2026>     /x8e/xa1/xa1/xac HORIZONTAL ELLIPSIS
+ %IRREVERSIBLE%<U2025>     /x8e/xa1/xa1/xad TWO DOT LEADER
+ %IRREVERSIBLE%<UFE50>     /x8e/xa1/xa1/xae SMALL COMMA
+ %IRREVERSIBLE%<UFE51>     /x8e/xa1/xa1/xaf SMALL IDEOGRAPHIC COMMA
+ %IRREVERSIBLE%<UFE52>     /x8e/xa1/xa1/xb0 SMALL FULL STOP
+ %IRREVERSIBLE%<U00B7>     /x8e/xa1/xa1/xb1 MIDDLE DOT
+ %IRREVERSIBLE%<UFE54>     /x8e/xa1/xa1/xb2 SMALL SEMICOLON
+ %IRREVERSIBLE%<UFE55>     /x8e/xa1/xa1/xb3 SMALL COLON
+ %IRREVERSIBLE%<UFE56>     /x8e/xa1/xa1/xb4 SMALL QUESTION MARK
+ %IRREVERSIBLE%<UFE57>     /x8e/xa1/xa1/xb5 SMALL EXCLAMATION MARK
+ %IRREVERSIBLE%<UFE31>     /x8e/xa1/xa1/xb6 PRESENTATION FORM FOR VERTICAL EM DASH
+ %IRREVERSIBLE%<U2014>     /x8e/xa1/xa1/xb7 EM DASH
+ %IRREVERSIBLE%<UFE32>     /x8e/xa1/xa1/xb8 PRESENTATION FORM FOR VERTICAL EN DASH
+ %IRREVERSIBLE%<U2013>     /x8e/xa1/xa1/xb9 EN DASH
+ %IRREVERSIBLE%<UFF08>     /x8e/xa1/xa1/xbe FULLWIDTH LEFT PARENTHESIS
+ %IRREVERSIBLE%<UFF09>     /x8e/xa1/xa1/xbf FULLWIDTH RIGHT PARENTHESIS
+ %IRREVERSIBLE%<UFE35>     /x8e/xa1/xa1/xc0 PRESENTATION FORM FOR VERTICAL LEFT PARENTHESIS
+ %IRREVERSIBLE%<UFE36>     /x8e/xa1/xa1/xc1 PRESENTATION FORM FOR VERTICAL RIGHT PARENTHESIS
+ %IRREVERSIBLE%<UFF5B>     /x8e/xa1/xa1/xc2 FULLWIDTH LEFT CURLY BRACKET
+ %IRREVERSIBLE%<UFF5D>     /x8e/xa1/xa1/xc3 FULLWIDTH RIGHT CURLY BRACKET
+ %IRREVERSIBLE%<UFE37>     /x8e/xa1/xa1/xc4 PRESENTATION FORM FOR VERTICAL LEFT CURLY BRACKET
+ %IRREVERSIBLE%<UFE38>     /x8e/xa1/xa1/xc5 PRESENTATION FORM FOR VERTICAL RIGHT CURLY BRACKET
+ %IRREVERSIBLE%<U3014>     /x8e/xa1/xa1/xc6 LEFT TORTOISE SHELL BRACKET
+ %IRREVERSIBLE%<U3015>     /x8e/xa1/xa1/xc7 RIGHT TORTOISE SHELL BRACKET
+ %IRREVERSIBLE%<UFE39>     /x8e/xa1/xa1/xc8 PRESENTATION FORM FOR VERTICAL LEFT TORTOISE SHELL BRACKET
+ %IRREVERSIBLE%<UFE3A>     /x8e/xa1/xa1/xc9 PRESENTATION FORM FOR VERTICAL RIGHT TORTOISE SHELL BRACKET
+ %IRREVERSIBLE%<U3010>     /x8e/xa1/xa1/xca LEFT BLACK LENTICULAR BRACKET
+ %IRREVERSIBLE%<U3011>     /x8e/xa1/xa1/xcb RIGHT BLACK LENTICULAR BRACKET
+ %IRREVERSIBLE%<UFE3B>     /x8e/xa1/xa1/xcc PRESENTATION FORM FOR VERTICAL LEFT BLACK LENTICULAR BRACKET
+ %IRREVERSIBLE%<UFE3C>     /x8e/xa1/xa1/xcd PRESENTATION FORM FOR VERTICAL RIGHT BLACK LENTICULAR BRACKET
+ %IRREVERSIBLE%<U300A>     /x8e/xa1/xa1/xce LEFT DOUBLE ANGLE BRACKET
+ %IRREVERSIBLE%<U300B>     /x8e/xa1/xa1/xcf RIGHT DOUBLE ANGLE BRACKET
+ %IRREVERSIBLE%<UFE3D>     /x8e/xa1/xa1/xd0 PRESENTATION FORM FOR VERTICAL LEFT DOUBLE ANGLE BRACKET
+ %IRREVERSIBLE%<UFE3E>     /x8e/xa1/xa1/xd1 PRESENTATION FORM FOR VERTICAL RIGHT DOUBLE ANGLE BRACKET
+ %IRREVERSIBLE%<U3008>     /x8e/xa1/xa1/xd2 LEFT ANGLE BRACKET
+ %IRREVERSIBLE%<U3009>     /x8e/xa1/xa1/xd3 RIGHT ANGLE BRACKET
+ %IRREVERSIBLE%<UFE3F>     /x8e/xa1/xa1/xd4 PRESENTATION FORM FOR VERTICAL LEFT ANGLE BRACKET
+ %IRREVERSIBLE%<UFE40>     /x8e/xa1/xa1/xd5 PRESENTATION FORM FOR VERTICAL RIGHT ANGLE BRACKET
+ %IRREVERSIBLE%<U300C>     /x8e/xa1/xa1/xd6 LEFT CORNER BRACKET
+ %IRREVERSIBLE%<U300D>     /x8e/xa1/xa1/xd7 RIGHT CORNER BRACKET
+ %IRREVERSIBLE%<UFE41>     /x8e/xa1/xa1/xd8 PRESENTATION FORM FOR VERTICAL LEFT CORNER BRACKET
+ %IRREVERSIBLE%<UFE42>     /x8e/xa1/xa1/xd9 PRESENTATION FORM FOR VERTICAL RIGHT CORNER BRACKET
+ %IRREVERSIBLE%<U300E>     /x8e/xa1/xa1/xda LEFT WHITE CORNER BRACKET
+ %IRREVERSIBLE%<U300F>     /x8e/xa1/xa1/xdb RIGHT WHITE CORNER BRACKET
+ %IRREVERSIBLE%<UFE43>     /x8e/xa1/xa1/xdc PRESENTATION FORM FOR VERTICAL LEFT WHITE CORNER BRACKET
+ %IRREVERSIBLE%<UFE44>     /x8e/xa1/xa1/xdd PRESENTATION FORM FOR VERTICAL RIGHT WHITE CORNER BRACKET
+ %IRREVERSIBLE%<UFE59>     /x8e/xa1/xa1/xde SMALL LEFT PARENTHESIS
+ %IRREVERSIBLE%<UFE5A>     /x8e/xa1/xa1/xdf SMALL RIGHT PARENTHESIS
+ %IRREVERSIBLE%<UFE5B>     /x8e/xa1/xa1/xe0 SMALL LEFT CURLY BRACKET
+ %IRREVERSIBLE%<UFE5C>     /x8e/xa1/xa1/xe1 SMALL RIGHT CURLY BRACKET
+ %IRREVERSIBLE%<UFE5D>     /x8e/xa1/xa1/xe2 SMALL LEFT TORTOISE SHELL BRACKET
+ %IRREVERSIBLE%<UFE5E>     /x8e/xa1/xa1/xe3 SMALL RIGHT TORTOISE SHELL BRACKET
+ %IRREVERSIBLE%<U2018>     /x8e/xa1/xa1/xe4 LEFT SINGLE QUOTATION MARK
+ %IRREVERSIBLE%<U2019>     /x8e/xa1/xa1/xe5 RIGHT SINGLE QUOTATION MARK
+ %IRREVERSIBLE%<U201C>     /x8e/xa1/xa1/xe6 LEFT DOUBLE QUOTATION MARK
+ %IRREVERSIBLE%<U201D>     /x8e/xa1/xa1/xe7 RIGHT DOUBLE QUOTATION MARK
+ %IRREVERSIBLE%<U301D>     /x8e/xa1/xa1/xe8 REVERSED DOUBLE PRIME QUOTATION MARK
+ %IRREVERSIBLE%<U301E>     /x8e/xa1/xa1/xe9 DOUBLE PRIME QUOTATION MARK
+ %IRREVERSIBLE%<U2032>     /x8e/xa1/xa1/xea PRIME
+ %IRREVERSIBLE%<U2035>     /x8e/xa1/xa1/xeb REVERSED PRIME
+ %IRREVERSIBLE%<UFF03>     /x8e/xa1/xa1/xec FULLWIDTH NUMBER SIGN
+ %IRREVERSIBLE%<UFF06>     /x8e/xa1/xa1/xed FULLWIDTH AMPERSAND
+ %IRREVERSIBLE%<UFF0A>     /x8e/xa1/xa1/xee FULLWIDTH ASTERISK
+ %IRREVERSIBLE%<U203B>     /x8e/xa1/xa1/xef REFERENCE MARK
+ %IRREVERSIBLE%<U00A7>     /x8e/xa1/xa1/xf0 SECTION SIGN
+ %IRREVERSIBLE%<U3003>     /x8e/xa1/xa1/xf1 DITTO MARK
+ %IRREVERSIBLE%<U25CB>     /x8e/xa1/xa1/xf2 WHITE CIRCLE
+ %IRREVERSIBLE%<U25CF>     /x8e/xa1/xa1/xf3 BLACK CIRCLE
+ %IRREVERSIBLE%<U25B3>     /x8e/xa1/xa1/xf4 WHITE UP-POINTING TRIANGLE
+ %IRREVERSIBLE%<U25B2>     /x8e/xa1/xa1/xf5 BLACK UP-POINTING TRIANGLE
+ %IRREVERSIBLE%<U25CE>     /x8e/xa1/xa1/xf6 BULLSEYE
+ %IRREVERSIBLE%<U2606>     /x8e/xa1/xa1/xf7 WHITE STAR
+ %IRREVERSIBLE%<U2605>     /x8e/xa1/xa1/xf8 BLACK STAR
+ %IRREVERSIBLE%<U25C7>     /x8e/xa1/xa1/xf9 WHITE DIAMOND
+ %IRREVERSIBLE%<U25C6>     /x8e/xa1/xa1/xfa BLACK DIAMOND
+ %IRREVERSIBLE%<U25A1>     /x8e/xa1/xa1/xfb WHITE SQUARE
+ %IRREVERSIBLE%<U25A0>     /x8e/xa1/xa1/xfc BLACK SQUARE
+ %IRREVERSIBLE%<U25BD>     /x8e/xa1/xa1/xfd WHITE DOWN-POINTING TRIANGLE
+ %IRREVERSIBLE%<U25BC>     /x8e/xa1/xa1/xfe BLACK DOWN-POINTING TRIANGLE
+ %IRREVERSIBLE%<U32A3>     /x8e/xa1/xa2/xa1 CIRCLED IDEOGRAPH CORRECT
+ %IRREVERSIBLE%<U2105>     /x8e/xa1/xa2/xa2 CARE OF
+ %IRREVERSIBLE%<U203E>     /x8e/xa1/xa2/xa3 OVERLINE
+ %IRREVERSIBLE%<UFF3F>     /x8e/xa1/xa2/xa5 FULLWIDTH LOW LINE
+ %IRREVERSIBLE%<UFE49>     /x8e/xa1/xa2/xa7 DASHED OVERLINE
+ %IRREVERSIBLE%<UFE4A>     /x8e/xa1/xa2/xa8 CENTRELINE OVERLINE
+ %IRREVERSIBLE%<UFE4D>     /x8e/xa1/xa2/xa9 DASHED LOW LINE
+ %IRREVERSIBLE%<UFE4E>     /x8e/xa1/xa2/xaa CENTRELINE LOW LINE
+ %IRREVERSIBLE%<UFE4B>     /x8e/xa1/xa2/xab WAVY OVERLINE
+ %IRREVERSIBLE%<UFE4C>     /x8e/xa1/xa2/xac DOUBLE WAVY OVERLINE
+ %IRREVERSIBLE%<UFE5F>     /x8e/xa1/xa2/xad SMALL NUMBER SIGN
+ %IRREVERSIBLE%<UFE60>     /x8e/xa1/xa2/xae SMALL AMPERSAND
+ %IRREVERSIBLE%<UFE61>     /x8e/xa1/xa2/xaf SMALL ASTERISK
+ %IRREVERSIBLE%<UFF0B>     /x8e/xa1/xa2/xb0 FULLWIDTH PLUS SIGN
+ %IRREVERSIBLE%<UFF0D>     /x8e/xa1/xa2/xb1 FULLWIDTH HYPHEN-MINUS
+ %IRREVERSIBLE%<U00D7>     /x8e/xa1/xa2/xb2 MULTIPLICATION SIGN
+ %IRREVERSIBLE%<U00F7>     /x8e/xa1/xa2/xb3 DIVISION SIGN
+ %IRREVERSIBLE%<U00B1>     /x8e/xa1/xa2/xb4 PLUS-MINUS SIGN
+ %IRREVERSIBLE%<U221A>     /x8e/xa1/xa2/xb5 SQUARE ROOT
+ %IRREVERSIBLE%<UFF1C>     /x8e/xa1/xa2/xb6 FULLWIDTH LESS-THAN SIGN
+ %IRREVERSIBLE%<UFF1E>     /x8e/xa1/xa2/xb7 FULLWIDTH GREATER-THAN SIGN
+ %IRREVERSIBLE%<UFF1D>     /x8e/xa1/xa2/xb8 FULLWIDTH EQUALS SIGN
+ %IRREVERSIBLE%<U2266>     /x8e/xa1/xa2/xb9 LESS-THAN OVER EQUAL TO
+ %IRREVERSIBLE%<U2267>     /x8e/xa1/xa2/xba GREATER-THAN OVER EQUAL TO
+ %IRREVERSIBLE%<U2260>     /x8e/xa1/xa2/xbb NOT EQUAL TO
+ %IRREVERSIBLE%<U221E>     /x8e/xa1/xa2/xbc INFINITY
+ %IRREVERSIBLE%<U2252>     /x8e/xa1/xa2/xbd APPROXIMATELY EQUAL TO OR THE IMAGE OF
+ %IRREVERSIBLE%<U2261>     /x8e/xa1/xa2/xbe IDENTICAL TO
+ %IRREVERSIBLE%<UFE62>     /x8e/xa1/xa2/xbf SMALL PLUS SIGN
+ %IRREVERSIBLE%<UFE63>     /x8e/xa1/xa2/xc0 SMALL HYPHEN-MINUS
+ %IRREVERSIBLE%<UFE64>     /x8e/xa1/xa2/xc1 SMALL LESS-THAN SIGN
+ %IRREVERSIBLE%<UFE66>     /x8e/xa1/xa2/xc2 SMALL EQUALS SIGN
+ %IRREVERSIBLE%<UFE65>     /x8e/xa1/xa2/xc3 SMALL GREATER-THAN SIGN
+ %IRREVERSIBLE%<U223C>     /x8e/xa1/xa2/xc4 TILDE OPERATOR
+ %IRREVERSIBLE%<U2229>     /x8e/xa1/xa2/xc5 INTERSECTION
+ %IRREVERSIBLE%<U222A>     /x8e/xa1/xa2/xc6 UNION
+ %IRREVERSIBLE%<U22A5>     /x8e/xa1/xa2/xc7 UP TACK
+ %IRREVERSIBLE%<U2220>     /x8e/xa1/xa2/xc8 ANGLE
+ %IRREVERSIBLE%<U221F>     /x8e/xa1/xa2/xc9 RIGHT ANGLE
+ %IRREVERSIBLE%<U22BF>     /x8e/xa1/xa2/xca RIGHT TRIANGLE
+ %IRREVERSIBLE%<U33D2>     /x8e/xa1/xa2/xcb SQUARE LOG
+ %IRREVERSIBLE%<U33D1>     /x8e/xa1/xa2/xcc SQUARE LN
+ %IRREVERSIBLE%<U222B>     /x8e/xa1/xa2/xcd INTEGRAL
+ %IRREVERSIBLE%<U222E>     /x8e/xa1/xa2/xce CONTOUR INTEGRAL
+ %IRREVERSIBLE%<U2235>     /x8e/xa1/xa2/xcf BECAUSE
+ %IRREVERSIBLE%<U2234>     /x8e/xa1/xa2/xd0 THEREFORE
+ %IRREVERSIBLE%<U2640>     /x8e/xa1/xa2/xd1 FEMALE SIGN
+ %IRREVERSIBLE%<U2642>     /x8e/xa1/xa2/xd2 MALE SIGN
+ %IRREVERSIBLE%<U2641>     /x8e/xa1/xa2/xd3 EARTH
+ %IRREVERSIBLE%<U2609>     /x8e/xa1/xa2/xd4 SUN
+ %IRREVERSIBLE%<U2191>     /x8e/xa1/xa2/xd5 UPWARDS ARROW
+ %IRREVERSIBLE%<U2193>     /x8e/xa1/xa2/xd6 DOWNWARDS ARROW
+ %IRREVERSIBLE%<U2192>     /x8e/xa1/xa2/xd7 RIGHTWARDS ARROW
+ %IRREVERSIBLE%<U2190>     /x8e/xa1/xa2/xd8 LEFTWARDS ARROW
+ %IRREVERSIBLE%<U2196>     /x8e/xa1/xa2/xd9 NORTH WEST ARROW
+ %IRREVERSIBLE%<U2197>     /x8e/xa1/xa2/xda NORTH EAST ARROW
+ %IRREVERSIBLE%<U2199>     /x8e/xa1/xa2/xdb SOUTH WEST ARROW
+ %IRREVERSIBLE%<U2198>     /x8e/xa1/xa2/xdc SOUTH EAST ARROW
+ %IRREVERSIBLE%<U2016>     /x8e/xa1/xa2/xdd DOUBLE VERTICAL LINE
+ %IRREVERSIBLE%<UFF5C>     /x8e/xa1/xa2/xde FULLWIDTH VERTICAL LINE
+ %IRREVERSIBLE%<UFF0F>     /x8e/xa1/xa2/xdf FULLWIDTH SOLIDUS
+ %IRREVERSIBLE%<UFF3C>     /x8e/xa1/xa2/xe0 FULLWIDTH REVERSE SOLIDUS
+ %IRREVERSIBLE%<U2215>     /x8e/xa1/xa2/xe1 DIVISION SLASH
+ %IRREVERSIBLE%<UFE68>     /x8e/xa1/xa2/xe2 SMALL REVERSE SOLIDUS
+ %IRREVERSIBLE%<UFF04>     /x8e/xa1/xa2/xe3 FULLWIDTH DOLLAR SIGN
+ %IRREVERSIBLE%<UFFE5>     /x8e/xa1/xa2/xe4 FULLWIDTH YEN SIGN
+ %IRREVERSIBLE%<U3012>     /x8e/xa1/xa2/xe5 POSTAL MARK
+ %IRREVERSIBLE%<UFFE0>     /x8e/xa1/xa2/xe6 FULLWIDTH CENT SIGN
+ %IRREVERSIBLE%<UFFE1>     /x8e/xa1/xa2/xe7 FULLWIDTH POUND SIGN
+ %IRREVERSIBLE%<UFF05>     /x8e/xa1/xa2/xe8 FULLWIDTH PERCENT SIGN
+ %IRREVERSIBLE%<UFF20>     /x8e/xa1/xa2/xe9 FULLWIDTH COMMERCIAL AT
+ %IRREVERSIBLE%<U2103>     /x8e/xa1/xa2/xea DEGREE CELSIUS
+ %IRREVERSIBLE%<U2109>     /x8e/xa1/xa2/xeb DEGREE FAHRENHEIT
+ %IRREVERSIBLE%<UFE69>     /x8e/xa1/xa2/xec SMALL DOLLAR SIGN
+ %IRREVERSIBLE%<UFE6A>     /x8e/xa1/xa2/xed SMALL PERCENT SIGN
+ %IRREVERSIBLE%<UFE6B>     /x8e/xa1/xa2/xee SMALL COMMERCIAL AT
+ %IRREVERSIBLE%<U33D5>     /x8e/xa1/xa2/xef SQUARE MIL
+ %IRREVERSIBLE%<U339C>     /x8e/xa1/xa2/xf0 SQUARE MM
+ %IRREVERSIBLE%<U339D>     /x8e/xa1/xa2/xf1 SQUARE CM
+ %IRREVERSIBLE%<U339E>     /x8e/xa1/xa2/xf2 SQUARE KM
+ %IRREVERSIBLE%<U33CE>     /x8e/xa1/xa2/xf3 SQUARE KM CAPITAL
+ %IRREVERSIBLE%<U33A1>     /x8e/xa1/xa2/xf4 SQUARE M SQUARED
+ %IRREVERSIBLE%<U338E>     /x8e/xa1/xa2/xf5 SQUARE MG
+ %IRREVERSIBLE%<U338F>     /x8e/xa1/xa2/xf6 SQUARE KG
+ %IRREVERSIBLE%<U33C4>     /x8e/xa1/xa2/xf7 SQUARE CC
+ %IRREVERSIBLE%<U00B0>     /x8e/xa1/xa2/xf8 DEGREE SIGN
+ %IRREVERSIBLE%<U5159>     /x8e/xa1/xa2/xf9 <CJK>
+ %IRREVERSIBLE%<U515B>     /x8e/xa1/xa2/xfa <CJK>
+ %IRREVERSIBLE%<U515E>     /x8e/xa1/xa2/xfb <CJK>
+ %IRREVERSIBLE%<U515D>     /x8e/xa1/xa2/xfc <CJK>
+ %IRREVERSIBLE%<U5161>     /x8e/xa1/xa2/xfd <CJK>
+ %IRREVERSIBLE%<U5163>     /x8e/xa1/xa2/xfe <CJK>
+ %IRREVERSIBLE%<U55E7>     /x8e/xa1/xa3/xa1 <CJK>
+ %IRREVERSIBLE%<U74E9>     /x8e/xa1/xa3/xa2 <CJK>
+ %IRREVERSIBLE%<U7CCE>     /x8e/xa1/xa3/xa3 <CJK>
+ %IRREVERSIBLE%<U2581>     /x8e/xa1/xa3/xa4 LOWER ONE EIGHTH BLOCK
+ %IRREVERSIBLE%<U2582>     /x8e/xa1/xa3/xa5 LOWER ONE QUARTER BLOCK
+ %IRREVERSIBLE%<U2583>     /x8e/xa1/xa3/xa6 LOWER THREE EIGHTHS BLOCK
+ %IRREVERSIBLE%<U2584>     /x8e/xa1/xa3/xa7 LOWER HALF BLOCK
+ %IRREVERSIBLE%<U2585>     /x8e/xa1/xa3/xa8 LOWER FIVE EIGHTHS BLOCK
+ %IRREVERSIBLE%<U2586>     /x8e/xa1/xa3/xa9 LOWER THREE QUARTERS BLOCK
+ %IRREVERSIBLE%<U2587>     /x8e/xa1/xa3/xaa LOWER SEVEN EIGHTHS BLOCK
+ %IRREVERSIBLE%<U2588>     /x8e/xa1/xa3/xab FULL BLOCK
+ %IRREVERSIBLE%<U258F>     /x8e/xa1/xa3/xac LEFT ONE EIGHTH BLOCK
+ %IRREVERSIBLE%<U258E>     /x8e/xa1/xa3/xad LEFT ONE QUARTER BLOCK
+ %IRREVERSIBLE%<U258D>     /x8e/xa1/xa3/xae LEFT THREE EIGHTHS BLOCK
+ %IRREVERSIBLE%<U258C>     /x8e/xa1/xa3/xaf LEFT HALF BLOCK
+ %IRREVERSIBLE%<U258B>     /x8e/xa1/xa3/xb0 LEFT FIVE EIGHTHS BLOCK
+ %IRREVERSIBLE%<U258A>     /x8e/xa1/xa3/xb1 LEFT THREE QUARTERS BLOCK
+ %IRREVERSIBLE%<U2589>     /x8e/xa1/xa3/xb2 LEFT SEVEN EIGHTHS BLOCK
+ %IRREVERSIBLE%<U253C>     /x8e/xa1/xa3/xb3 BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL
+ %IRREVERSIBLE%<U2534>     /x8e/xa1/xa3/xb4 BOX DRAWINGS LIGHT UP AND HORIZONTAL
+ %IRREVERSIBLE%<U252C>     /x8e/xa1/xa3/xb5 BOX DRAWINGS LIGHT DOWN AND HORIZONTAL
+ %IRREVERSIBLE%<U2524>     /x8e/xa1/xa3/xb6 BOX DRAWINGS LIGHT VERTICAL AND LEFT
+ %IRREVERSIBLE%<U251C>     /x8e/xa1/xa3/xb7 BOX DRAWINGS LIGHT VERTICAL AND RIGHT
+ %IRREVERSIBLE%<U2594>     /x8e/xa1/xa3/xb8 UPPER ONE EIGHTH BLOCK
+ %IRREVERSIBLE%<U2500>     /x8e/xa1/xa3/xb9 BOX DRAWINGS LIGHT HORIZONTAL
+ %IRREVERSIBLE%<U2502>     /x8e/xa1/xa3/xba BOX DRAWINGS LIGHT VERTICAL
+ %IRREVERSIBLE%<U2595>     /x8e/xa1/xa3/xbb RIGHT ONE EIGHTH BLOCK
+ %IRREVERSIBLE%<U250C>     /x8e/xa1/xa3/xbc BOX DRAWINGS LIGHT DOWN AND RIGHT
+ %IRREVERSIBLE%<U2510>     /x8e/xa1/xa3/xbd BOX DRAWINGS LIGHT DOWN AND LEFT
+ %IRREVERSIBLE%<U2514>     /x8e/xa1/xa3/xbe BOX DRAWINGS LIGHT UP AND RIGHT
+ %IRREVERSIBLE%<U2518>     /x8e/xa1/xa3/xbf BOX DRAWINGS LIGHT UP AND LEFT
+ %IRREVERSIBLE%<U256D>     /x8e/xa1/xa3/xc0 BOX DRAWINGS LIGHT ARC DOWN AND RIGHT
+ %IRREVERSIBLE%<U256E>     /x8e/xa1/xa3/xc1 BOX DRAWINGS LIGHT ARC DOWN AND LEFT
+ %IRREVERSIBLE%<U2570>     /x8e/xa1/xa3/xc2 BOX DRAWINGS LIGHT ARC UP AND RIGHT
+ %IRREVERSIBLE%<U256F>     /x8e/xa1/xa3/xc3 BOX DRAWINGS LIGHT ARC UP AND LEFT
+ %IRREVERSIBLE%<U2550>     /x8e/xa1/xa3/xc4 BOX DRAWINGS DOUBLE HORIZONTAL
+ %IRREVERSIBLE%<U255E>     /x8e/xa1/xa3/xc5 BOX DRAWINGS VERTICAL SINGLE AND RIGHT DOUBLE
+ %IRREVERSIBLE%<U256A>     /x8e/xa1/xa3/xc6 BOX DRAWINGS VERTICAL SINGLE AND HORIZONTAL DOUBLE
+ %IRREVERSIBLE%<U2561>     /x8e/xa1/xa3/xc7 BOX DRAWINGS VERTICAL SINGLE AND LEFT DOUBLE
+ %IRREVERSIBLE%<U25E2>     /x8e/xa1/xa3/xc8 BLACK LOWER RIGHT TRIANGLE
+ %IRREVERSIBLE%<U25E3>     /x8e/xa1/xa3/xc9 BLACK LOWER LEFT TRIANGLE
+ %IRREVERSIBLE%<U25E5>     /x8e/xa1/xa3/xca BLACK UPPER RIGHT TRIANGLE
+ %IRREVERSIBLE%<U25E4>     /x8e/xa1/xa3/xcb BLACK UPPER LEFT TRIANGLE
+ %IRREVERSIBLE%<U2571>     /x8e/xa1/xa3/xcc BOX DRAWINGS LIGHT DIAGONAL UPPER RIGHT TO LOWER LEFT
+ %IRREVERSIBLE%<U2572>     /x8e/xa1/xa3/xcd BOX DRAWINGS LIGHT DIAGONAL UPPER LEFT TO LOWER RIGHT
+ %IRREVERSIBLE%<U2573>     /x8e/xa1/xa3/xce BOX DRAWINGS LIGHT DIAGONAL CROSS
+ %IRREVERSIBLE%<UFF10>     /x8e/xa1/xa4/xa1 FULLWIDTH DIGIT ZERO
+ %IRREVERSIBLE%<UFF11>     /x8e/xa1/xa4/xa2 FULLWIDTH DIGIT ONE
+ %IRREVERSIBLE%<UFF12>     /x8e/xa1/xa4/xa3 FULLWIDTH DIGIT TWO
+ %IRREVERSIBLE%<UFF13>     /x8e/xa1/xa4/xa4 FULLWIDTH DIGIT THREE
+ %IRREVERSIBLE%<UFF14>     /x8e/xa1/xa4/xa5 FULLWIDTH DIGIT FOUR
+ %IRREVERSIBLE%<UFF15>     /x8e/xa1/xa4/xa6 FULLWIDTH DIGIT FIVE
+ %IRREVERSIBLE%<UFF16>     /x8e/xa1/xa4/xa7 FULLWIDTH DIGIT SIX
+ %IRREVERSIBLE%<UFF17>     /x8e/xa1/xa4/xa8 FULLWIDTH DIGIT SEVEN
+ %IRREVERSIBLE%<UFF18>     /x8e/xa1/xa4/xa9 FULLWIDTH DIGIT EIGHT
+ %IRREVERSIBLE%<UFF19>     /x8e/xa1/xa4/xaa FULLWIDTH DIGIT NINE
+ %IRREVERSIBLE%<U2160>     /x8e/xa1/xa4/xab ROMAN NUMERAL ONE
+ %IRREVERSIBLE%<U2161>     /x8e/xa1/xa4/xac ROMAN NUMERAL TWO
+ %IRREVERSIBLE%<U2162>     /x8e/xa1/xa4/xad ROMAN NUMERAL THREE
+ %IRREVERSIBLE%<U2163>     /x8e/xa1/xa4/xae ROMAN NUMERAL FOUR
+ %IRREVERSIBLE%<U2164>     /x8e/xa1/xa4/xaf ROMAN NUMERAL FIVE
+ %IRREVERSIBLE%<U2165>     /x8e/xa1/xa4/xb0 ROMAN NUMERAL SIX
+ %IRREVERSIBLE%<U2166>     /x8e/xa1/xa4/xb1 ROMAN NUMERAL SEVEN
+ %IRREVERSIBLE%<U2167>     /x8e/xa1/xa4/xb2 ROMAN NUMERAL EIGHT
+ %IRREVERSIBLE%<U2168>     /x8e/xa1/xa4/xb3 ROMAN NUMERAL NINE
+ %IRREVERSIBLE%<U2169>     /x8e/xa1/xa4/xb4 ROMAN NUMERAL TEN
+ %IRREVERSIBLE%<U3021>     /x8e/xa1/xa4/xb5 HANGZHOU NUMERAL ONE
+ %IRREVERSIBLE%<U3022>     /x8e/xa1/xa4/xb6 HANGZHOU NUMERAL TWO
+ %IRREVERSIBLE%<U3023>     /x8e/xa1/xa4/xb7 HANGZHOU NUMERAL THREE
+ %IRREVERSIBLE%<U3024>     /x8e/xa1/xa4/xb8 HANGZHOU NUMERAL FOUR
+ %IRREVERSIBLE%<U3025>     /x8e/xa1/xa4/xb9 HANGZHOU NUMERAL FIVE
+ %IRREVERSIBLE%<U3026>     /x8e/xa1/xa4/xba HANGZHOU NUMERAL SIX
+ %IRREVERSIBLE%<U3027>     /x8e/xa1/xa4/xbb HANGZHOU NUMERAL SEVEN
+ %IRREVERSIBLE%<U3028>     /x8e/xa1/xa4/xbc HANGZHOU NUMERAL EIGHT
+ %IRREVERSIBLE%<U3029>     /x8e/xa1/xa4/xbd HANGZHOU NUMERAL NINE
+ %IRREVERSIBLE%<U5344>     /x8e/xa1/xa4/xbf <CJK>
+ %IRREVERSIBLE%<UFF21>     /x8e/xa1/xa4/xc1 FULLWIDTH LATIN CAPITAL LETTER A
+ %IRREVERSIBLE%<UFF22>     /x8e/xa1/xa4/xc2 FULLWIDTH LATIN CAPITAL LETTER B
+ %IRREVERSIBLE%<UFF23>     /x8e/xa1/xa4/xc3 FULLWIDTH LATIN CAPITAL LETTER C
+ %IRREVERSIBLE%<UFF24>     /x8e/xa1/xa4/xc4 FULLWIDTH LATIN CAPITAL LETTER D
+ %IRREVERSIBLE%<UFF25>     /x8e/xa1/xa4/xc5 FULLWIDTH LATIN CAPITAL LETTER E
+ %IRREVERSIBLE%<UFF26>     /x8e/xa1/xa4/xc6 FULLWIDTH LATIN CAPITAL LETTER F
+ %IRREVERSIBLE%<UFF27>     /x8e/xa1/xa4/xc7 FULLWIDTH LATIN CAPITAL LETTER G
+ %IRREVERSIBLE%<UFF28>     /x8e/xa1/xa4/xc8 FULLWIDTH LATIN CAPITAL LETTER H
+ %IRREVERSIBLE%<UFF29>     /x8e/xa1/xa4/xc9 FULLWIDTH LATIN CAPITAL LETTER I
+ %IRREVERSIBLE%<UFF2A>     /x8e/xa1/xa4/xca FULLWIDTH LATIN CAPITAL LETTER J
+ %IRREVERSIBLE%<UFF2B>     /x8e/xa1/xa4/xcb FULLWIDTH LATIN CAPITAL LETTER K
+ %IRREVERSIBLE%<UFF2C>     /x8e/xa1/xa4/xcc FULLWIDTH LATIN CAPITAL LETTER L
+ %IRREVERSIBLE%<UFF2D>     /x8e/xa1/xa4/xcd FULLWIDTH LATIN CAPITAL LETTER M
+ %IRREVERSIBLE%<UFF2E>     /x8e/xa1/xa4/xce FULLWIDTH LATIN CAPITAL LETTER N
+ %IRREVERSIBLE%<UFF2F>     /x8e/xa1/xa4/xcf FULLWIDTH LATIN CAPITAL LETTER O
+ %IRREVERSIBLE%<UFF30>     /x8e/xa1/xa4/xd0 FULLWIDTH LATIN CAPITAL LETTER P
+ %IRREVERSIBLE%<UFF31>     /x8e/xa1/xa4/xd1 FULLWIDTH LATIN CAPITAL LETTER Q
+ %IRREVERSIBLE%<UFF32>     /x8e/xa1/xa4/xd2 FULLWIDTH LATIN CAPITAL LETTER R
+ %IRREVERSIBLE%<UFF33>     /x8e/xa1/xa4/xd3 FULLWIDTH LATIN CAPITAL LETTER S
+ %IRREVERSIBLE%<UFF34>     /x8e/xa1/xa4/xd4 FULLWIDTH LATIN CAPITAL LETTER T
+ %IRREVERSIBLE%<UFF35>     /x8e/xa1/xa4/xd5 FULLWIDTH LATIN CAPITAL LETTER U
+ %IRREVERSIBLE%<UFF36>     /x8e/xa1/xa4/xd6 FULLWIDTH LATIN CAPITAL LETTER V
+ %IRREVERSIBLE%<UFF37>     /x8e/xa1/xa4/xd7 FULLWIDTH LATIN CAPITAL LETTER W
+ %IRREVERSIBLE%<UFF38>     /x8e/xa1/xa4/xd8 FULLWIDTH LATIN CAPITAL LETTER X
+ %IRREVERSIBLE%<UFF39>     /x8e/xa1/xa4/xd9 FULLWIDTH LATIN CAPITAL LETTER Y
+ %IRREVERSIBLE%<UFF3A>     /x8e/xa1/xa4/xda FULLWIDTH LATIN CAPITAL LETTER Z
+ %IRREVERSIBLE%<UFF41>     /x8e/xa1/xa4/xdb FULLWIDTH LATIN SMALL LETTER A
+ %IRREVERSIBLE%<UFF42>     /x8e/xa1/xa4/xdc FULLWIDTH LATIN SMALL LETTER B
+ %IRREVERSIBLE%<UFF43>     /x8e/xa1/xa4/xdd FULLWIDTH LATIN SMALL LETTER C
+ %IRREVERSIBLE%<UFF44>     /x8e/xa1/xa4/xde FULLWIDTH LATIN SMALL LETTER D
+ %IRREVERSIBLE%<UFF45>     /x8e/xa1/xa4/xdf FULLWIDTH LATIN SMALL LETTER E
+ %IRREVERSIBLE%<UFF46>     /x8e/xa1/xa4/xe0 FULLWIDTH LATIN SMALL LETTER F
+ %IRREVERSIBLE%<UFF47>     /x8e/xa1/xa4/xe1 FULLWIDTH LATIN SMALL LETTER G
+ %IRREVERSIBLE%<UFF48>     /x8e/xa1/xa4/xe2 FULLWIDTH LATIN SMALL LETTER H
+ %IRREVERSIBLE%<UFF49>     /x8e/xa1/xa4/xe3 FULLWIDTH LATIN SMALL LETTER I
+ %IRREVERSIBLE%<UFF4A>     /x8e/xa1/xa4/xe4 FULLWIDTH LATIN SMALL LETTER J
+ %IRREVERSIBLE%<UFF4B>     /x8e/xa1/xa4/xe5 FULLWIDTH LATIN SMALL LETTER K
+ %IRREVERSIBLE%<UFF4C>     /x8e/xa1/xa4/xe6 FULLWIDTH LATIN SMALL LETTER L
+ %IRREVERSIBLE%<UFF4D>     /x8e/xa1/xa4/xe7 FULLWIDTH LATIN SMALL LETTER M
+ %IRREVERSIBLE%<UFF4E>     /x8e/xa1/xa4/xe8 FULLWIDTH LATIN SMALL LETTER N
+ %IRREVERSIBLE%<UFF4F>     /x8e/xa1/xa4/xe9 FULLWIDTH LATIN SMALL LETTER O
+ %IRREVERSIBLE%<UFF50>     /x8e/xa1/xa4/xea FULLWIDTH LATIN SMALL LETTER P
+ %IRREVERSIBLE%<UFF51>     /x8e/xa1/xa4/xeb FULLWIDTH LATIN SMALL LETTER Q
+ %IRREVERSIBLE%<UFF52>     /x8e/xa1/xa4/xec FULLWIDTH LATIN SMALL LETTER R
+ %IRREVERSIBLE%<UFF53>     /x8e/xa1/xa4/xed FULLWIDTH LATIN SMALL LETTER S
+ %IRREVERSIBLE%<UFF54>     /x8e/xa1/xa4/xee FULLWIDTH LATIN SMALL LETTER T
+ %IRREVERSIBLE%<UFF55>     /x8e/xa1/xa4/xef FULLWIDTH LATIN SMALL LETTER U
+ %IRREVERSIBLE%<UFF56>     /x8e/xa1/xa4/xf0 FULLWIDTH LATIN SMALL LETTER V
+ %IRREVERSIBLE%<UFF57>     /x8e/xa1/xa4/xf1 FULLWIDTH LATIN SMALL LETTER W
+ %IRREVERSIBLE%<UFF58>     /x8e/xa1/xa4/xf2 FULLWIDTH LATIN SMALL LETTER X
+ %IRREVERSIBLE%<UFF59>     /x8e/xa1/xa4/xf3 FULLWIDTH LATIN SMALL LETTER Y
+ %IRREVERSIBLE%<UFF5A>     /x8e/xa1/xa4/xf4 FULLWIDTH LATIN SMALL LETTER Z
+ %IRREVERSIBLE%<U0391>     /x8e/xa1/xa4/xf5 GREEK CAPITAL LETTER ALPHA
+ %IRREVERSIBLE%<U0392>     /x8e/xa1/xa4/xf6 GREEK CAPITAL LETTER BETA
+ %IRREVERSIBLE%<U0393>     /x8e/xa1/xa4/xf7 GREEK CAPITAL LETTER GAMMA
+ %IRREVERSIBLE%<U0394>     /x8e/xa1/xa4/xf8 GREEK CAPITAL LETTER DELTA
+ %IRREVERSIBLE%<U0395>     /x8e/xa1/xa4/xf9 GREEK CAPITAL LETTER EPSILON
+ %IRREVERSIBLE%<U0396>     /x8e/xa1/xa4/xfa GREEK CAPITAL LETTER ZETA
+ %IRREVERSIBLE%<U0397>     /x8e/xa1/xa4/xfb GREEK CAPITAL LETTER ETA
+ %IRREVERSIBLE%<U0398>     /x8e/xa1/xa4/xfc GREEK CAPITAL LETTER THETA
+ %IRREVERSIBLE%<U0399>     /x8e/xa1/xa4/xfd GREEK CAPITAL LETTER IOTA
+ %IRREVERSIBLE%<U039A>     /x8e/xa1/xa4/xfe GREEK CAPITAL LETTER KAPPA
+ %IRREVERSIBLE%<U039B>     /x8e/xa1/xa5/xa1 GREEK CAPITAL LETTER LAMDA
+ %IRREVERSIBLE%<U039C>     /x8e/xa1/xa5/xa2 GREEK CAPITAL LETTER MU
+ %IRREVERSIBLE%<U039D>     /x8e/xa1/xa5/xa3 GREEK CAPITAL LETTER NU
+ %IRREVERSIBLE%<U039E>     /x8e/xa1/xa5/xa4 GREEK CAPITAL LETTER XI
+ %IRREVERSIBLE%<U039F>     /x8e/xa1/xa5/xa5 GREEK CAPITAL LETTER OMICRON
+ %IRREVERSIBLE%<U03A0>     /x8e/xa1/xa5/xa6 GREEK CAPITAL LETTER PI
+ %IRREVERSIBLE%<U03A1>     /x8e/xa1/xa5/xa7 GREEK CAPITAL LETTER RHO
+ %IRREVERSIBLE%<U03A3>     /x8e/xa1/xa5/xa8 GREEK CAPITAL LETTER SIGMA
+ %IRREVERSIBLE%<U03A4>     /x8e/xa1/xa5/xa9 GREEK CAPITAL LETTER TAU
+ %IRREVERSIBLE%<U03A5>     /x8e/xa1/xa5/xaa GREEK CAPITAL LETTER UPSILON
+ %IRREVERSIBLE%<U03A6>     /x8e/xa1/xa5/xab GREEK CAPITAL LETTER PHI
+ %IRREVERSIBLE%<U03A7>     /x8e/xa1/xa5/xac GREEK CAPITAL LETTER CHI
+ %IRREVERSIBLE%<U03A8>     /x8e/xa1/xa5/xad GREEK CAPITAL LETTER PSI
+ %IRREVERSIBLE%<U03A9>     /x8e/xa1/xa5/xae GREEK CAPITAL LETTER OMEGA
+ %IRREVERSIBLE%<U03B1>     /x8e/xa1/xa5/xaf GREEK SMALL LETTER ALPHA
+ %IRREVERSIBLE%<U03B2>     /x8e/xa1/xa5/xb0 GREEK SMALL LETTER BETA
+ %IRREVERSIBLE%<U03B3>     /x8e/xa1/xa5/xb1 GREEK SMALL LETTER GAMMA
+ %IRREVERSIBLE%<U03B4>     /x8e/xa1/xa5/xb2 GREEK SMALL LETTER DELTA
+ %IRREVERSIBLE%<U03B5>     /x8e/xa1/xa5/xb3 GREEK SMALL LETTER EPSILON
+ %IRREVERSIBLE%<U03B6>     /x8e/xa1/xa5/xb4 GREEK SMALL LETTER ZETA
+ %IRREVERSIBLE%<U03B7>     /x8e/xa1/xa5/xb5 GREEK SMALL LETTER ETA
+ %IRREVERSIBLE%<U03B8>     /x8e/xa1/xa5/xb6 GREEK SMALL LETTER THETA
+ %IRREVERSIBLE%<U03B9>     /x8e/xa1/xa5/xb7 GREEK SMALL LETTER IOTA
+ %IRREVERSIBLE%<U03BA>     /x8e/xa1/xa5/xb8 GREEK SMALL LETTER KAPPA
+ %IRREVERSIBLE%<U03BB>     /x8e/xa1/xa5/xb9 GREEK SMALL LETTER LAMDA
+ %IRREVERSIBLE%<U03BC>     /x8e/xa1/xa5/xba GREEK SMALL LETTER MU
+ %IRREVERSIBLE%<U03BD>     /x8e/xa1/xa5/xbb GREEK SMALL LETTER NU
+ %IRREVERSIBLE%<U03BE>     /x8e/xa1/xa5/xbc GREEK SMALL LETTER XI
+ %IRREVERSIBLE%<U03BF>     /x8e/xa1/xa5/xbd GREEK SMALL LETTER OMICRON
+ %IRREVERSIBLE%<U03C0>     /x8e/xa1/xa5/xbe GREEK SMALL LETTER PI
+ %IRREVERSIBLE%<U03C1>     /x8e/xa1/xa5/xbf GREEK SMALL LETTER RHO
+ %IRREVERSIBLE%<U03C3>     /x8e/xa1/xa5/xc0 GREEK SMALL LETTER SIGMA
+ %IRREVERSIBLE%<U03C4>     /x8e/xa1/xa5/xc1 GREEK SMALL LETTER TAU
+ %IRREVERSIBLE%<U03C5>     /x8e/xa1/xa5/xc2 GREEK SMALL LETTER UPSILON
+ %IRREVERSIBLE%<U03C6>     /x8e/xa1/xa5/xc3 GREEK SMALL LETTER PHI
+ %IRREVERSIBLE%<U03C7>     /x8e/xa1/xa5/xc4 GREEK SMALL LETTER CHI
+ %IRREVERSIBLE%<U03C8>     /x8e/xa1/xa5/xc5 GREEK SMALL LETTER PSI
+ %IRREVERSIBLE%<U03C9>     /x8e/xa1/xa5/xc6 GREEK SMALL LETTER OMEGA
+ %IRREVERSIBLE%<U3105>     /x8e/xa1/xa5/xc7 BOPOMOFO LETTER B
+ %IRREVERSIBLE%<U3106>     /x8e/xa1/xa5/xc8 BOPOMOFO LETTER P
+ %IRREVERSIBLE%<U3107>     /x8e/xa1/xa5/xc9 BOPOMOFO LETTER M
+ %IRREVERSIBLE%<U3108>     /x8e/xa1/xa5/xca BOPOMOFO LETTER F
+ %IRREVERSIBLE%<U3109>     /x8e/xa1/xa5/xcb BOPOMOFO LETTER D
+ %IRREVERSIBLE%<U310A>     /x8e/xa1/xa5/xcc BOPOMOFO LETTER T
+ %IRREVERSIBLE%<U310B>     /x8e/xa1/xa5/xcd BOPOMOFO LETTER N
+ %IRREVERSIBLE%<U310C>     /x8e/xa1/xa5/xce BOPOMOFO LETTER L
+ %IRREVERSIBLE%<U310D>     /x8e/xa1/xa5/xcf BOPOMOFO LETTER G
+ %IRREVERSIBLE%<U310E>     /x8e/xa1/xa5/xd0 BOPOMOFO LETTER K
+ %IRREVERSIBLE%<U310F>     /x8e/xa1/xa5/xd1 BOPOMOFO LETTER H
+ %IRREVERSIBLE%<U3110>     /x8e/xa1/xa5/xd2 BOPOMOFO LETTER J
+ %IRREVERSIBLE%<U3111>     /x8e/xa1/xa5/xd3 BOPOMOFO LETTER Q
+ %IRREVERSIBLE%<U3112>     /x8e/xa1/xa5/xd4 BOPOMOFO LETTER X
+ %IRREVERSIBLE%<U3113>     /x8e/xa1/xa5/xd5 BOPOMOFO LETTER ZH
+ %IRREVERSIBLE%<U3114>     /x8e/xa1/xa5/xd6 BOPOMOFO LETTER CH
+ %IRREVERSIBLE%<U3115>     /x8e/xa1/xa5/xd7 BOPOMOFO LETTER SH
+ %IRREVERSIBLE%<U3116>     /x8e/xa1/xa5/xd8 BOPOMOFO LETTER R
+ %IRREVERSIBLE%<U3117>     /x8e/xa1/xa5/xd9 BOPOMOFO LETTER Z
+ %IRREVERSIBLE%<U3118>     /x8e/xa1/xa5/xda BOPOMOFO LETTER C
+ %IRREVERSIBLE%<U3119>     /x8e/xa1/xa5/xdb BOPOMOFO LETTER S
+ %IRREVERSIBLE%<U311A>     /x8e/xa1/xa5/xdc BOPOMOFO LETTER A
+ %IRREVERSIBLE%<U311B>     /x8e/xa1/xa5/xdd BOPOMOFO LETTER O
+ %IRREVERSIBLE%<U311C>     /x8e/xa1/xa5/xde BOPOMOFO LETTER E
+ %IRREVERSIBLE%<U311D>     /x8e/xa1/xa5/xdf BOPOMOFO LETTER EH
+ %IRREVERSIBLE%<U311E>     /x8e/xa1/xa5/xe0 BOPOMOFO LETTER AI
+ %IRREVERSIBLE%<U311F>     /x8e/xa1/xa5/xe1 BOPOMOFO LETTER EI
+ %IRREVERSIBLE%<U3120>     /x8e/xa1/xa5/xe2 BOPOMOFO LETTER AU
+ %IRREVERSIBLE%<U3121>     /x8e/xa1/xa5/xe3 BOPOMOFO LETTER OU
+ %IRREVERSIBLE%<U3122>     /x8e/xa1/xa5/xe4 BOPOMOFO LETTER AN
+ %IRREVERSIBLE%<U3123>     /x8e/xa1/xa5/xe5 BOPOMOFO LETTER EN
+ %IRREVERSIBLE%<U3124>     /x8e/xa1/xa5/xe6 BOPOMOFO LETTER ANG
+ %IRREVERSIBLE%<U3125>     /x8e/xa1/xa5/xe7 BOPOMOFO LETTER ENG
+ %IRREVERSIBLE%<U3126>     /x8e/xa1/xa5/xe8 BOPOMOFO LETTER ER
+ %IRREVERSIBLE%<U3127>     /x8e/xa1/xa5/xe9 BOPOMOFO LETTER I
+ %IRREVERSIBLE%<U3128>     /x8e/xa1/xa5/xea BOPOMOFO LETTER U
+ %IRREVERSIBLE%<U3129>     /x8e/xa1/xa5/xeb BOPOMOFO LETTER IU
+ %IRREVERSIBLE%<U02D9>     /x8e/xa1/xa5/xec DOT ABOVE
+ %IRREVERSIBLE%<U02C9>     /x8e/xa1/xa5/xed MODIFIER LETTER MACRON
+ %IRREVERSIBLE%<U02CA>     /x8e/xa1/xa5/xee MODIFIER LETTER ACUTE ACCENT
+ %IRREVERSIBLE%<U02C7>     /x8e/xa1/xa5/xef CARON
+ %IRREVERSIBLE%<U02CB>     /x8e/xa1/xa5/xf0 MODIFIER LETTER GRAVE ACCENT
+ %IRREVERSIBLE%<U2460>     /x8e/xa1/xa6/xa1 CIRCLED DIGIT ONE
+ %IRREVERSIBLE%<U2461>     /x8e/xa1/xa6/xa2 CIRCLED DIGIT TWO
+ %IRREVERSIBLE%<U2462>     /x8e/xa1/xa6/xa3 CIRCLED DIGIT THREE
+ %IRREVERSIBLE%<U2463>     /x8e/xa1/xa6/xa4 CIRCLED DIGIT FOUR
+ %IRREVERSIBLE%<U2464>     /x8e/xa1/xa6/xa5 CIRCLED DIGIT FIVE
+ %IRREVERSIBLE%<U2465>     /x8e/xa1/xa6/xa6 CIRCLED DIGIT SIX
+ %IRREVERSIBLE%<U2466>     /x8e/xa1/xa6/xa7 CIRCLED DIGIT SEVEN
+ %IRREVERSIBLE%<U2467>     /x8e/xa1/xa6/xa8 CIRCLED DIGIT EIGHT
+ %IRREVERSIBLE%<U2468>     /x8e/xa1/xa6/xa9 CIRCLED DIGIT NINE
+ %IRREVERSIBLE%<U2469>     /x8e/xa1/xa6/xaa CIRCLED NUMBER TEN
+ %IRREVERSIBLE%<U2474>     /x8e/xa1/xa6/xab PARENTHESIZED DIGIT ONE
+ %IRREVERSIBLE%<U2475>     /x8e/xa1/xa6/xac PARENTHESIZED DIGIT TWO
+ %IRREVERSIBLE%<U2476>     /x8e/xa1/xa6/xad PARENTHESIZED DIGIT THREE
+ %IRREVERSIBLE%<U2477>     /x8e/xa1/xa6/xae PARENTHESIZED DIGIT FOUR
+ %IRREVERSIBLE%<U2478>     /x8e/xa1/xa6/xaf PARENTHESIZED DIGIT FIVE
+ %IRREVERSIBLE%<U2479>     /x8e/xa1/xa6/xb0 PARENTHESIZED DIGIT SIX
+ %IRREVERSIBLE%<U247A>     /x8e/xa1/xa6/xb1 PARENTHESIZED DIGIT SEVEN
+ %IRREVERSIBLE%<U247B>     /x8e/xa1/xa6/xb2 PARENTHESIZED DIGIT EIGHT
+ %IRREVERSIBLE%<U247C>     /x8e/xa1/xa6/xb3 PARENTHESIZED DIGIT NINE
+ %IRREVERSIBLE%<U247D>     /x8e/xa1/xa6/xb4 PARENTHESIZED NUMBER TEN
+ %IRREVERSIBLE%<U2170>     /x8e/xa1/xa6/xb5 SMALL ROMAN NUMERAL ONE
+ %IRREVERSIBLE%<U2171>     /x8e/xa1/xa6/xb6 SMALL ROMAN NUMERAL TWO
+ %IRREVERSIBLE%<U2172>     /x8e/xa1/xa6/xb7 SMALL ROMAN NUMERAL THREE
+ %IRREVERSIBLE%<U2173>     /x8e/xa1/xa6/xb8 SMALL ROMAN NUMERAL FOUR
+ %IRREVERSIBLE%<U2174>     /x8e/xa1/xa6/xb9 SMALL ROMAN NUMERAL FIVE
+ %IRREVERSIBLE%<U2175>     /x8e/xa1/xa6/xba SMALL ROMAN NUMERAL SIX
+ %IRREVERSIBLE%<U2176>     /x8e/xa1/xa6/xbb SMALL ROMAN NUMERAL SEVEN
+ %IRREVERSIBLE%<U2177>     /x8e/xa1/xa6/xbc SMALL ROMAN NUMERAL EIGHT
+ %IRREVERSIBLE%<U2178>     /x8e/xa1/xa6/xbd SMALL ROMAN NUMERAL NINE
+ %IRREVERSIBLE%<U2179>     /x8e/xa1/xa6/xbe SMALL ROMAN NUMERAL TEN
+ %IRREVERSIBLE%<U2400>     /x8e/xa1/xc2/xa1 SYMBOL FOR NULL
+ %IRREVERSIBLE%<U2401>     /x8e/xa1/xc2/xa2 SYMBOL FOR START OF HEADING
+ %IRREVERSIBLE%<U2402>     /x8e/xa1/xc2/xa3 SYMBOL FOR START OF TEXT
+ %IRREVERSIBLE%<U2403>     /x8e/xa1/xc2/xa4 SYMBOL FOR END OF TEXT
+ %IRREVERSIBLE%<U2404>     /x8e/xa1/xc2/xa5 SYMBOL FOR END OF TRANSMISSION
+ %IRREVERSIBLE%<U2405>     /x8e/xa1/xc2/xa6 SYMBOL FOR ENQUIRY
+ %IRREVERSIBLE%<U2406>     /x8e/xa1/xc2/xa7 SYMBOL FOR ACKNOWLEDGE
+ %IRREVERSIBLE%<U2407>     /x8e/xa1/xc2/xa8 SYMBOL FOR BELL
+ %IRREVERSIBLE%<U2408>     /x8e/xa1/xc2/xa9 SYMBOL FOR BACKSPACE
+ %IRREVERSIBLE%<U2409>     /x8e/xa1/xc2/xaa SYMBOL FOR HORIZONTAL TABULATION
+ %IRREVERSIBLE%<U240A>     /x8e/xa1/xc2/xab SYMBOL FOR LINE FEED
+ %IRREVERSIBLE%<U240B>     /x8e/xa1/xc2/xac SYMBOL FOR VERTICAL TABULATION
+ %IRREVERSIBLE%<U240C>     /x8e/xa1/xc2/xad SYMBOL FOR FORM FEED
+ %IRREVERSIBLE%<U240D>     /x8e/xa1/xc2/xae SYMBOL FOR CARRIAGE RETURN
+ %IRREVERSIBLE%<U240E>     /x8e/xa1/xc2/xaf SYMBOL FOR SHIFT OUT
+ %IRREVERSIBLE%<U240F>     /x8e/xa1/xc2/xb0 SYMBOL FOR SHIFT IN
+ %IRREVERSIBLE%<U2410>     /x8e/xa1/xc2/xb1 SYMBOL FOR DATA LINK ESCAPE
+ %IRREVERSIBLE%<U2411>     /x8e/xa1/xc2/xb2 SYMBOL FOR DEVICE CONTROL ONE
+ %IRREVERSIBLE%<U2412>     /x8e/xa1/xc2/xb3 SYMBOL FOR DEVICE CONTROL TWO
+ %IRREVERSIBLE%<U2413>     /x8e/xa1/xc2/xb4 SYMBOL FOR DEVICE CONTROL THREE
+ %IRREVERSIBLE%<U2414>     /x8e/xa1/xc2/xb5 SYMBOL FOR DEVICE CONTROL FOUR
+ %IRREVERSIBLE%<U2415>     /x8e/xa1/xc2/xb6 SYMBOL FOR NEGATIVE ACKNOWLEDGE
+ %IRREVERSIBLE%<U2416>     /x8e/xa1/xc2/xb7 SYMBOL FOR SYNCHRONOUS IDLE
+ %IRREVERSIBLE%<U2417>     /x8e/xa1/xc2/xb8 SYMBOL FOR END OF TRANSMISSION BLOCK
+ %IRREVERSIBLE%<U2418>     /x8e/xa1/xc2/xb9 SYMBOL FOR CANCEL
+ %IRREVERSIBLE%<U2419>     /x8e/xa1/xc2/xba SYMBOL FOR END OF MEDIUM
+ %IRREVERSIBLE%<U241A>     /x8e/xa1/xc2/xbb SYMBOL FOR SUBSTITUTE
+ %IRREVERSIBLE%<U241B>     /x8e/xa1/xc2/xbc SYMBOL FOR ESCAPE
+ %IRREVERSIBLE%<U241C>     /x8e/xa1/xc2/xbd SYMBOL FOR FILE SEPARATOR
+ %IRREVERSIBLE%<U241D>     /x8e/xa1/xc2/xbe SYMBOL FOR GROUP SEPARATOR
+ %IRREVERSIBLE%<U241E>     /x8e/xa1/xc2/xbf SYMBOL FOR RECORD SEPARATOR
+ %IRREVERSIBLE%<U241F>     /x8e/xa1/xc2/xc0 SYMBOL FOR UNIT SEPARATOR
+ %IRREVERSIBLE%<U2421>     /x8e/xa1/xc2/xc1 SYMBOL FOR DELETE
+ %IRREVERSIBLE%<U4E00>     /x8e/xa1/xc4/xa1 <CJK>
+ %IRREVERSIBLE%<U4E59>     /x8e/xa1/xc4/xa2 <CJK>
+ %IRREVERSIBLE%<U4E01>     /x8e/xa1/xc4/xa3 <CJK>
+ %IRREVERSIBLE%<U4E03>     /x8e/xa1/xc4/xa4 <CJK>
+ %IRREVERSIBLE%<U4E43>     /x8e/xa1/xc4/xa5 <CJK>
+ %IRREVERSIBLE%<U4E5D>     /x8e/xa1/xc4/xa6 <CJK>
+ %IRREVERSIBLE%<U4E86>     /x8e/xa1/xc4/xa7 <CJK>
+ %IRREVERSIBLE%<U4E8C>     /x8e/xa1/xc4/xa8 <CJK>
+ %IRREVERSIBLE%<U4EBA>     /x8e/xa1/xc4/xa9 <CJK>
+ %IRREVERSIBLE%<U513F>     /x8e/xa1/xc4/xaa <CJK>
+ %IRREVERSIBLE%<U5165>     /x8e/xa1/xc4/xab <CJK>
+ %IRREVERSIBLE%<U516B>     /x8e/xa1/xc4/xac <CJK>
+ %IRREVERSIBLE%<U51E0>     /x8e/xa1/xc4/xad <CJK>
+ %IRREVERSIBLE%<U5200>     /x8e/xa1/xc4/xae <CJK>
+ %IRREVERSIBLE%<U5201>     /x8e/xa1/xc4/xaf <CJK>
+ %IRREVERSIBLE%<U529B>     /x8e/xa1/xc4/xb0 <CJK>
+ %IRREVERSIBLE%<U5315>     /x8e/xa1/xc4/xb1 <CJK>
+ %IRREVERSIBLE%<U5341>     /x8e/xa1/xc4/xb2 <CJK>
+ %IRREVERSIBLE%<U535C>     /x8e/xa1/xc4/xb3 <CJK>
+ %IRREVERSIBLE%<U53C8>     /x8e/xa1/xc4/xb4 <CJK>
+ %IRREVERSIBLE%<U4E09>     /x8e/xa1/xc4/xb5 <CJK>
+ %IRREVERSIBLE%<U4E0B>     /x8e/xa1/xc4/xb6 <CJK>
+ %IRREVERSIBLE%<U4E08>     /x8e/xa1/xc4/xb7 <CJK>
+ %IRREVERSIBLE%<U4E0A>     /x8e/xa1/xc4/xb8 <CJK>
+ %IRREVERSIBLE%<U4E2B>     /x8e/xa1/xc4/xb9 <CJK>
+ %IRREVERSIBLE%<U4E38>     /x8e/xa1/xc4/xba <CJK>
+ %IRREVERSIBLE%<U51E1>     /x8e/xa1/xc4/xbb <CJK>
+ %IRREVERSIBLE%<U4E45>     /x8e/xa1/xc4/xbc <CJK>
+ %IRREVERSIBLE%<U4E48>     /x8e/xa1/xc4/xbd <CJK>
+ %IRREVERSIBLE%<U4E5F>     /x8e/xa1/xc4/xbe <CJK>
+ %IRREVERSIBLE%<U4E5E>     /x8e/xa1/xc4/xbf <CJK>
+ %IRREVERSIBLE%<U4E8E>     /x8e/xa1/xc4/xc0 <CJK>
+ %IRREVERSIBLE%<U4EA1>     /x8e/xa1/xc4/xc1 <CJK>
+ %IRREVERSIBLE%<U5140>     /x8e/xa1/xc4/xc2 <CJK>
+ %IRREVERSIBLE%<U5203>     /x8e/xa1/xc4/xc3 <CJK>
+ %IRREVERSIBLE%<U52FA>     /x8e/xa1/xc4/xc4 <CJK>
+ %IRREVERSIBLE%<U5343>     /x8e/xa1/xc4/xc5 <CJK>
+ %IRREVERSIBLE%<U53C9>     /x8e/xa1/xc4/xc6 <CJK>
+ %IRREVERSIBLE%<U53E3>     /x8e/xa1/xc4/xc7 <CJK>
+ %IRREVERSIBLE%<U571F>     /x8e/xa1/xc4/xc8 <CJK>
+ %IRREVERSIBLE%<U58EB>     /x8e/xa1/xc4/xc9 <CJK>
+ %IRREVERSIBLE%<U5915>     /x8e/xa1/xc4/xca <CJK>
+ %IRREVERSIBLE%<U5927>     /x8e/xa1/xc4/xcb <CJK>
+ %IRREVERSIBLE%<U5973>     /x8e/xa1/xc4/xcc <CJK>
+ %IRREVERSIBLE%<U5B50>     /x8e/xa1/xc4/xcd <CJK>
+ %IRREVERSIBLE%<U5B51>     /x8e/xa1/xc4/xce <CJK>
+ %IRREVERSIBLE%<U5B53>     /x8e/xa1/xc4/xcf <CJK>
+ %IRREVERSIBLE%<U5BF8>     /x8e/xa1/xc4/xd0 <CJK>
+ %IRREVERSIBLE%<U5C0F>     /x8e/xa1/xc4/xd1 <CJK>
+ %IRREVERSIBLE%<U5C22>     /x8e/xa1/xc4/xd2 <CJK>
+ %IRREVERSIBLE%<U5C38>     /x8e/xa1/xc4/xd3 <CJK>
+ %IRREVERSIBLE%<U5C71>     /x8e/xa1/xc4/xd4 <CJK>
+ %IRREVERSIBLE%<U5DDD>     /x8e/xa1/xc4/xd5 <CJK>
+ %IRREVERSIBLE%<U5DE5>     /x8e/xa1/xc4/xd6 <CJK>
+ %IRREVERSIBLE%<U5DF1>     /x8e/xa1/xc4/xd7 <CJK>
+ %IRREVERSIBLE%<U5DF2>     /x8e/xa1/xc4/xd8 <CJK>
+ %IRREVERSIBLE%<U5DF3>     /x8e/xa1/xc4/xd9 <CJK>
+ %IRREVERSIBLE%<U5DFE>     /x8e/xa1/xc4/xda <CJK>
+ %IRREVERSIBLE%<U5E72>     /x8e/xa1/xc4/xdb <CJK>
+ %IRREVERSIBLE%<U5EFE>     /x8e/xa1/xc4/xdc <CJK>
+ %IRREVERSIBLE%<U5F0B>     /x8e/xa1/xc4/xdd <CJK>
+ %IRREVERSIBLE%<U5F13>     /x8e/xa1/xc4/xde <CJK>
+ %IRREVERSIBLE%<U624D>     /x8e/xa1/xc4/xdf <CJK>
+ %IRREVERSIBLE%<U4E11>     /x8e/xa1/xc4/xe0 <CJK>
+ %IRREVERSIBLE%<U4E10>     /x8e/xa1/xc4/xe1 <CJK>
+ %IRREVERSIBLE%<U4E0D>     /x8e/xa1/xc4/xe2 <CJK>
+ %IRREVERSIBLE%<U4E2D>     /x8e/xa1/xc4/xe3 <CJK>
+ %IRREVERSIBLE%<U4E30>     /x8e/xa1/xc4/xe4 <CJK>
+ %IRREVERSIBLE%<U4E39>     /x8e/xa1/xc4/xe5 <CJK>
+ %IRREVERSIBLE%<U4E4B>     /x8e/xa1/xc4/xe6 <CJK>
+ %IRREVERSIBLE%<U5C39>     /x8e/xa1/xc4/xe7 <CJK>
+ %IRREVERSIBLE%<U4E88>     /x8e/xa1/xc4/xe8 <CJK>
+ %IRREVERSIBLE%<U4E91>     /x8e/xa1/xc4/xe9 <CJK>
+ %IRREVERSIBLE%<U4E95>     /x8e/xa1/xc4/xea <CJK>
+ %IRREVERSIBLE%<U4E92>     /x8e/xa1/xc4/xeb <CJK>
+ %IRREVERSIBLE%<U4E94>     /x8e/xa1/xc4/xec <CJK>
+ %IRREVERSIBLE%<U4EA2>     /x8e/xa1/xc4/xed <CJK>
+ %IRREVERSIBLE%<U4EC1>     /x8e/xa1/xc4/xee <CJK>
+ %IRREVERSIBLE%<U4EC0>     /x8e/xa1/xc4/xef <CJK>
+ %IRREVERSIBLE%<U4EC3>     /x8e/xa1/xc4/xf0 <CJK>
+ %IRREVERSIBLE%<U4EC6>     /x8e/xa1/xc4/xf1 <CJK>
+ %IRREVERSIBLE%<U4EC7>     /x8e/xa1/xc4/xf2 <CJK>
+ %IRREVERSIBLE%<U4ECD>     /x8e/xa1/xc4/xf3 <CJK>
+ %IRREVERSIBLE%<U4ECA>     /x8e/xa1/xc4/xf4 <CJK>
+ %IRREVERSIBLE%<U4ECB>     /x8e/xa1/xc4/xf5 <CJK>
+ %IRREVERSIBLE%<U4EC4>     /x8e/xa1/xc4/xf6 <CJK>
+ %IRREVERSIBLE%<U5143>     /x8e/xa1/xc4/xf7 <CJK>
+ %IRREVERSIBLE%<U5141>     /x8e/xa1/xc4/xf8 <CJK>
+ %IRREVERSIBLE%<U5167>     /x8e/xa1/xc4/xf9 <CJK>
+ %IRREVERSIBLE%<U516D>     /x8e/xa1/xc4/xfa <CJK>
+ %IRREVERSIBLE%<U516E>     /x8e/xa1/xc4/xfb <CJK>
+ %IRREVERSIBLE%<U516C>     /x8e/xa1/xc4/xfc <CJK>
+ %IRREVERSIBLE%<U5197>     /x8e/xa1/xc4/xfd <CJK>
+ %IRREVERSIBLE%<U51F6>     /x8e/xa1/xc4/xfe <CJK>
+ %IRREVERSIBLE%<U5206>     /x8e/xa1/xc5/xa1 <CJK>
+ %IRREVERSIBLE%<U5207>     /x8e/xa1/xc5/xa2 <CJK>
+ %IRREVERSIBLE%<U5208>     /x8e/xa1/xc5/xa3 <CJK>
+ %IRREVERSIBLE%<U52FB>     /x8e/xa1/xc5/xa4 <CJK>
+ %IRREVERSIBLE%<U52FE>     /x8e/xa1/xc5/xa5 <CJK>
+ %IRREVERSIBLE%<U52FF>     /x8e/xa1/xc5/xa6 <CJK>
+ %IRREVERSIBLE%<U5316>     /x8e/xa1/xc5/xa7 <CJK>
+ %IRREVERSIBLE%<U5339>     /x8e/xa1/xc5/xa8 <CJK>
+ %IRREVERSIBLE%<U5348>     /x8e/xa1/xc5/xa9 <CJK>
+ %IRREVERSIBLE%<U5347>     /x8e/xa1/xc5/xaa <CJK>
+ %IRREVERSIBLE%<U5345>     /x8e/xa1/xc5/xab <CJK>
+ %IRREVERSIBLE%<U535E>     /x8e/xa1/xc5/xac <CJK>
+ %IRREVERSIBLE%<U5384>     /x8e/xa1/xc5/xad <CJK>
+ %IRREVERSIBLE%<U53CB>     /x8e/xa1/xc5/xae <CJK>
+ %IRREVERSIBLE%<U53CA>     /x8e/xa1/xc5/xaf <CJK>
+ %IRREVERSIBLE%<U53CD>     /x8e/xa1/xc5/xb0 <CJK>
+ %IRREVERSIBLE%<U58EC>     /x8e/xa1/xc5/xb1 <CJK>
+ %IRREVERSIBLE%<U5929>     /x8e/xa1/xc5/xb2 <CJK>
+ %IRREVERSIBLE%<U592B>     /x8e/xa1/xc5/xb3 <CJK>
+ %IRREVERSIBLE%<U592A>     /x8e/xa1/xc5/xb4 <CJK>
+ %IRREVERSIBLE%<U592D>     /x8e/xa1/xc5/xb5 <CJK>
+ %IRREVERSIBLE%<U5B54>     /x8e/xa1/xc5/xb6 <CJK>
+ %IRREVERSIBLE%<U5C11>     /x8e/xa1/xc5/xb7 <CJK>
+ %IRREVERSIBLE%<U5C24>     /x8e/xa1/xc5/xb8 <CJK>
+ %IRREVERSIBLE%<U5C3A>     /x8e/xa1/xc5/xb9 <CJK>
+ %IRREVERSIBLE%<U5C6F>     /x8e/xa1/xc5/xba <CJK>
+ %IRREVERSIBLE%<U5DF4>     /x8e/xa1/xc5/xbb <CJK>
+ %IRREVERSIBLE%<U5E7B>     /x8e/xa1/xc5/xbc <CJK>
+ %IRREVERSIBLE%<U5EFF>     /x8e/xa1/xc5/xbd <CJK>
+ %IRREVERSIBLE%<U5F14>     /x8e/xa1/xc5/xbe <CJK>
+ %IRREVERSIBLE%<U5F15>     /x8e/xa1/xc5/xbf <CJK>
+ %IRREVERSIBLE%<U5FC3>     /x8e/xa1/xc5/xc0 <CJK>
+ %IRREVERSIBLE%<U6208>     /x8e/xa1/xc5/xc1 <CJK>
+ %IRREVERSIBLE%<U6236>     /x8e/xa1/xc5/xc2 <CJK>
+ %IRREVERSIBLE%<U624B>     /x8e/xa1/xc5/xc3 <CJK>
+ %IRREVERSIBLE%<U624E>     /x8e/xa1/xc5/xc4 <CJK>
+ %IRREVERSIBLE%<U652F>     /x8e/xa1/xc5/xc5 <CJK>
+ %IRREVERSIBLE%<U6587>     /x8e/xa1/xc5/xc6 <CJK>
+ %IRREVERSIBLE%<U6597>     /x8e/xa1/xc5/xc7 <CJK>
+ %IRREVERSIBLE%<U65A4>     /x8e/xa1/xc5/xc8 <CJK>
+ %IRREVERSIBLE%<U65B9>     /x8e/xa1/xc5/xc9 <CJK>
+ %IRREVERSIBLE%<U65E5>     /x8e/xa1/xc5/xca <CJK>
+ %IRREVERSIBLE%<U66F0>     /x8e/xa1/xc5/xcb <CJK>
+ %IRREVERSIBLE%<U6708>     /x8e/xa1/xc5/xcc <CJK>
+ %IRREVERSIBLE%<U6728>     /x8e/xa1/xc5/xcd <CJK>
+ %IRREVERSIBLE%<U6B20>     /x8e/xa1/xc5/xce <CJK>
+ %IRREVERSIBLE%<U6B62>     /x8e/xa1/xc5/xcf <CJK>
+ %IRREVERSIBLE%<U6B79>     /x8e/xa1/xc5/xd0 <CJK>
+ %IRREVERSIBLE%<U6BCB>     /x8e/xa1/xc5/xd1 <CJK>
+ %IRREVERSIBLE%<U6BD4>     /x8e/xa1/xc5/xd2 <CJK>
+ %IRREVERSIBLE%<U6BDB>     /x8e/xa1/xc5/xd3 <CJK>
+ %IRREVERSIBLE%<U6C0F>     /x8e/xa1/xc5/xd4 <CJK>
+ %IRREVERSIBLE%<U6C34>     /x8e/xa1/xc5/xd5 <CJK>
+ %IRREVERSIBLE%<U706B>     /x8e/xa1/xc5/xd6 <CJK>
+ %IRREVERSIBLE%<U722A>     /x8e/xa1/xc5/xd7 <CJK>
+ %IRREVERSIBLE%<U7236>     /x8e/xa1/xc5/xd8 <CJK>
+ %IRREVERSIBLE%<U723B>     /x8e/xa1/xc5/xd9 <CJK>
+ %IRREVERSIBLE%<U7247>     /x8e/xa1/xc5/xda <CJK>
+ %IRREVERSIBLE%<U7259>     /x8e/xa1/xc5/xdb <CJK>
+ %IRREVERSIBLE%<U725B>     /x8e/xa1/xc5/xdc <CJK>
+ %IRREVERSIBLE%<U72AC>     /x8e/xa1/xc5/xdd <CJK>
+ %IRREVERSIBLE%<U738B>     /x8e/xa1/xc5/xde <CJK>
+ %IRREVERSIBLE%<U4E19>     /x8e/xa1/xc5/xdf <CJK>
+ %IRREVERSIBLE%<U4E16>     /x8e/xa1/xc5/xe0 <CJK>
+ %IRREVERSIBLE%<U4E15>     /x8e/xa1/xc5/xe1 <CJK>
+ %IRREVERSIBLE%<U4E14>     /x8e/xa1/xc5/xe2 <CJK>
+ %IRREVERSIBLE%<U4E18>     /x8e/xa1/xc5/xe3 <CJK>
+ %IRREVERSIBLE%<U4E3B>     /x8e/xa1/xc5/xe4 <CJK>
+ %IRREVERSIBLE%<U4E4D>     /x8e/xa1/xc5/xe5 <CJK>
+ %IRREVERSIBLE%<U4E4F>     /x8e/xa1/xc5/xe6 <CJK>
+ %IRREVERSIBLE%<U4E4E>     /x8e/xa1/xc5/xe7 <CJK>
+ %IRREVERSIBLE%<U4EE5>     /x8e/xa1/xc5/xe8 <CJK>
+ %IRREVERSIBLE%<U4ED8>     /x8e/xa1/xc5/xe9 <CJK>
+ %IRREVERSIBLE%<U4ED4>     /x8e/xa1/xc5/xea <CJK>
+ %IRREVERSIBLE%<U4ED5>     /x8e/xa1/xc5/xeb <CJK>
+ %IRREVERSIBLE%<U4ED6>     /x8e/xa1/xc5/xec <CJK>
+ %IRREVERSIBLE%<U4ED7>     /x8e/xa1/xc5/xed <CJK>
+ %IRREVERSIBLE%<U4EE3>     /x8e/xa1/xc5/xee <CJK>
+ %IRREVERSIBLE%<U4EE4>     /x8e/xa1/xc5/xef <CJK>
+ %IRREVERSIBLE%<U4ED9>     /x8e/xa1/xc5/xf0 <CJK>
+ %IRREVERSIBLE%<U4EDE>     /x8e/xa1/xc5/xf1 <CJK>
+ %IRREVERSIBLE%<U5145>     /x8e/xa1/xc5/xf2 <CJK>
+ %IRREVERSIBLE%<U5144>     /x8e/xa1/xc5/xf3 <CJK>
+ %IRREVERSIBLE%<U5189>     /x8e/xa1/xc5/xf4 <CJK>
+ %IRREVERSIBLE%<U518A>     /x8e/xa1/xc5/xf5 <CJK>
+ %IRREVERSIBLE%<U51AC>     /x8e/xa1/xc5/xf6 <CJK>
+ %IRREVERSIBLE%<U51F9>     /x8e/xa1/xc5/xf7 <CJK>
+ %IRREVERSIBLE%<U51FA>     /x8e/xa1/xc5/xf8 <CJK>
+ %IRREVERSIBLE%<U51F8>     /x8e/xa1/xc5/xf9 <CJK>
+ %IRREVERSIBLE%<U520A>     /x8e/xa1/xc5/xfa <CJK>
+ %IRREVERSIBLE%<U52A0>     /x8e/xa1/xc5/xfb <CJK>
+ %IRREVERSIBLE%<U529F>     /x8e/xa1/xc5/xfc <CJK>
+ %IRREVERSIBLE%<U5305>     /x8e/xa1/xc5/xfd <CJK>
+ %IRREVERSIBLE%<U5306>     /x8e/xa1/xc5/xfe <CJK>
+ %IRREVERSIBLE%<U5317>     /x8e/xa1/xc6/xa1 <CJK>
+ %IRREVERSIBLE%<U531D>     /x8e/xa1/xc6/xa2 <CJK>
+ %IRREVERSIBLE%<U4EDF>     /x8e/xa1/xc6/xa3 <CJK>
+ %IRREVERSIBLE%<U534A>     /x8e/xa1/xc6/xa4 <CJK>
+ %IRREVERSIBLE%<U5349>     /x8e/xa1/xc6/xa5 <CJK>
+ %IRREVERSIBLE%<U5361>     /x8e/xa1/xc6/xa6 <CJK>
+ %IRREVERSIBLE%<U5360>     /x8e/xa1/xc6/xa7 <CJK>
+ %IRREVERSIBLE%<U536F>     /x8e/xa1/xc6/xa8 <CJK>
+ %IRREVERSIBLE%<U536E>     /x8e/xa1/xc6/xa9 <CJK>
+ %IRREVERSIBLE%<U53BB>     /x8e/xa1/xc6/xaa <CJK>
+ %IRREVERSIBLE%<U53EF>     /x8e/xa1/xc6/xab <CJK>
+ %IRREVERSIBLE%<U53E4>     /x8e/xa1/xc6/xac <CJK>
+ %IRREVERSIBLE%<U53F3>     /x8e/xa1/xc6/xad <CJK>
+ %IRREVERSIBLE%<U53EC>     /x8e/xa1/xc6/xae <CJK>
+ %IRREVERSIBLE%<U53EE>     /x8e/xa1/xc6/xaf <CJK>
+ %IRREVERSIBLE%<U53E9>     /x8e/xa1/xc6/xb0 <CJK>
+ %IRREVERSIBLE%<U53E8>     /x8e/xa1/xc6/xb1 <CJK>
+ %IRREVERSIBLE%<U53FC>     /x8e/xa1/xc6/xb2 <CJK>
+ %IRREVERSIBLE%<U53F8>     /x8e/xa1/xc6/xb3 <CJK>
+ %IRREVERSIBLE%<U53F5>     /x8e/xa1/xc6/xb4 <CJK>
+ %IRREVERSIBLE%<U53EB>     /x8e/xa1/xc6/xb5 <CJK>
+ %IRREVERSIBLE%<U53E6>     /x8e/xa1/xc6/xb6 <CJK>
+ %IRREVERSIBLE%<U53EA>     /x8e/xa1/xc6/xb7 <CJK>
+ %IRREVERSIBLE%<U53F2>     /x8e/xa1/xc6/xb8 <CJK>
+ %IRREVERSIBLE%<U53F1>     /x8e/xa1/xc6/xb9 <CJK>
+ %IRREVERSIBLE%<U53F0>     /x8e/xa1/xc6/xba <CJK>
+ %IRREVERSIBLE%<U53E5>     /x8e/xa1/xc6/xbb <CJK>
+ %IRREVERSIBLE%<U53ED>     /x8e/xa1/xc6/xbc <CJK>
+ %IRREVERSIBLE%<U53FB>     /x8e/xa1/xc6/xbd <CJK>
+ %IRREVERSIBLE%<U56DB>     /x8e/xa1/xc6/xbe <CJK>
+ %IRREVERSIBLE%<U56DA>     /x8e/xa1/xc6/xbf <CJK>
+ %IRREVERSIBLE%<U5916>     /x8e/xa1/xc6/xc0 <CJK>
+ %IRREVERSIBLE%<U592E>     /x8e/xa1/xc6/xc1 <CJK>
+ %IRREVERSIBLE%<U5931>     /x8e/xa1/xc6/xc2 <CJK>
+ %IRREVERSIBLE%<U5974>     /x8e/xa1/xc6/xc3 <CJK>
+ %IRREVERSIBLE%<U5976>     /x8e/xa1/xc6/xc4 <CJK>
+ %IRREVERSIBLE%<U5B55>     /x8e/xa1/xc6/xc5 <CJK>
+ %IRREVERSIBLE%<U5B83>     /x8e/xa1/xc6/xc6 <CJK>
+ %IRREVERSIBLE%<U5C3C>     /x8e/xa1/xc6/xc7 <CJK>
+ %IRREVERSIBLE%<U5DE8>     /x8e/xa1/xc6/xc8 <CJK>
+ %IRREVERSIBLE%<U5DE7>     /x8e/xa1/xc6/xc9 <CJK>
+ %IRREVERSIBLE%<U5DE6>     /x8e/xa1/xc6/xca <CJK>
+ %IRREVERSIBLE%<U5E02>     /x8e/xa1/xc6/xcb <CJK>
+ %IRREVERSIBLE%<U5E03>     /x8e/xa1/xc6/xcc <CJK>
+ %IRREVERSIBLE%<U5E73>     /x8e/xa1/xc6/xcd <CJK>
+ %IRREVERSIBLE%<U5E7C>     /x8e/xa1/xc6/xce <CJK>
+ %IRREVERSIBLE%<U5F01>     /x8e/xa1/xc6/xcf <CJK>
+ %IRREVERSIBLE%<U5F18>     /x8e/xa1/xc6/xd0 <CJK>
+ %IRREVERSIBLE%<U5F17>     /x8e/xa1/xc6/xd1 <CJK>
+ %IRREVERSIBLE%<U5FC5>     /x8e/xa1/xc6/xd2 <CJK>
+ %IRREVERSIBLE%<U620A>     /x8e/xa1/xc6/xd3 <CJK>
+ %IRREVERSIBLE%<U6253>     /x8e/xa1/xc6/xd4 <CJK>
+ %IRREVERSIBLE%<U6254>     /x8e/xa1/xc6/xd5 <CJK>
+ %IRREVERSIBLE%<U6252>     /x8e/xa1/xc6/xd6 <CJK>
+ %IRREVERSIBLE%<U6251>     /x8e/xa1/xc6/xd7 <CJK>
+ %IRREVERSIBLE%<U65A5>     /x8e/xa1/xc6/xd8 <CJK>
+ %IRREVERSIBLE%<U65E6>     /x8e/xa1/xc6/xd9 <CJK>
+ %IRREVERSIBLE%<U672E>     /x8e/xa1/xc6/xda <CJK>
+ %IRREVERSIBLE%<U672C>     /x8e/xa1/xc6/xdb <CJK>
+ %IRREVERSIBLE%<U672A>     /x8e/xa1/xc6/xdc <CJK>
+ %IRREVERSIBLE%<U672B>     /x8e/xa1/xc6/xdd <CJK>
+ %IRREVERSIBLE%<U672D>     /x8e/xa1/xc6/xde <CJK>
+ %IRREVERSIBLE%<U6B63>     /x8e/xa1/xc6/xdf <CJK>
+ %IRREVERSIBLE%<U6BCD>     /x8e/xa1/xc6/xe0 <CJK>
+ %IRREVERSIBLE%<U6C11>     /x8e/xa1/xc6/xe1 <CJK>
+ %IRREVERSIBLE%<U6C10>     /x8e/xa1/xc6/xe2 <CJK>
+ %IRREVERSIBLE%<U6C38>     /x8e/xa1/xc6/xe3 <CJK>
+ %IRREVERSIBLE%<U6C41>     /x8e/xa1/xc6/xe4 <CJK>
+ %IRREVERSIBLE%<U6C40>     /x8e/xa1/xc6/xe5 <CJK>
+ %IRREVERSIBLE%<U6C3E>     /x8e/xa1/xc6/xe6 <CJK>
+ %IRREVERSIBLE%<U72AF>     /x8e/xa1/xc6/xe7 <CJK>
+ %IRREVERSIBLE%<U7384>     /x8e/xa1/xc6/xe8 <CJK>
+ %IRREVERSIBLE%<U7389>     /x8e/xa1/xc6/xe9 <CJK>
+ %IRREVERSIBLE%<U74DC>     /x8e/xa1/xc6/xea <CJK>
+ %IRREVERSIBLE%<U74E6>     /x8e/xa1/xc6/xeb <CJK>
+ %IRREVERSIBLE%<U7518>     /x8e/xa1/xc6/xec <CJK>
+ %IRREVERSIBLE%<U751F>     /x8e/xa1/xc6/xed <CJK>
+ %IRREVERSIBLE%<U7528>     /x8e/xa1/xc6/xee <CJK>
+ %IRREVERSIBLE%<U7529>     /x8e/xa1/xc6/xef <CJK>
+ %IRREVERSIBLE%<U7530>     /x8e/xa1/xc6/xf0 <CJK>
+ %IRREVERSIBLE%<U7531>     /x8e/xa1/xc6/xf1 <CJK>
+ %IRREVERSIBLE%<U7532>     /x8e/xa1/xc6/xf2 <CJK>
+ %IRREVERSIBLE%<U7533>     /x8e/xa1/xc6/xf3 <CJK>
+ %IRREVERSIBLE%<U758B>     /x8e/xa1/xc6/xf4 <CJK>
+ %IRREVERSIBLE%<U767D>     /x8e/xa1/xc6/xf5 <CJK>
+ %IRREVERSIBLE%<U76AE>     /x8e/xa1/xc6/xf6 <CJK>
+ %IRREVERSIBLE%<U76BF>     /x8e/xa1/xc6/xf7 <CJK>
+ %IRREVERSIBLE%<U76EE>     /x8e/xa1/xc6/xf8 <CJK>
+ %IRREVERSIBLE%<U77DB>     /x8e/xa1/xc6/xf9 <CJK>
+ %IRREVERSIBLE%<U77E2>     /x8e/xa1/xc6/xfa <CJK>
+ %IRREVERSIBLE%<U77F3>     /x8e/xa1/xc6/xfb <CJK>
+ %IRREVERSIBLE%<U793A>     /x8e/xa1/xc6/xfc <CJK>
+ %IRREVERSIBLE%<U79BE>     /x8e/xa1/xc6/xfd <CJK>
+ %IRREVERSIBLE%<U7A74>     /x8e/xa1/xc6/xfe <CJK>
+ %IRREVERSIBLE%<U7ACB>     /x8e/xa1/xc7/xa1 <CJK>
+ %IRREVERSIBLE%<U4E1E>     /x8e/xa1/xc7/xa2 <CJK>
+ %IRREVERSIBLE%<U4E1F>     /x8e/xa1/xc7/xa3 <CJK>
+ %IRREVERSIBLE%<U4E52>     /x8e/xa1/xc7/xa4 <CJK>
+ %IRREVERSIBLE%<U4E53>     /x8e/xa1/xc7/xa5 <CJK>
+ %IRREVERSIBLE%<U4E69>     /x8e/xa1/xc7/xa6 <CJK>
+ %IRREVERSIBLE%<U4E99>     /x8e/xa1/xc7/xa7 <CJK>
+ %IRREVERSIBLE%<U4EA4>     /x8e/xa1/xc7/xa8 <CJK>
+ %IRREVERSIBLE%<U4EA6>     /x8e/xa1/xc7/xa9 <CJK>
+ %IRREVERSIBLE%<U4EA5>     /x8e/xa1/xc7/xaa <CJK>
+ %IRREVERSIBLE%<U4EFF>     /x8e/xa1/xc7/xab <CJK>
+ %IRREVERSIBLE%<U4F09>     /x8e/xa1/xc7/xac <CJK>
+ %IRREVERSIBLE%<U4F19>     /x8e/xa1/xc7/xad <CJK>
+ %IRREVERSIBLE%<U4F0A>     /x8e/xa1/xc7/xae <CJK>
+ %IRREVERSIBLE%<U4F15>     /x8e/xa1/xc7/xaf <CJK>
+ %IRREVERSIBLE%<U4F0D>     /x8e/xa1/xc7/xb0 <CJK>
+ %IRREVERSIBLE%<U4F10>     /x8e/xa1/xc7/xb1 <CJK>
+ %IRREVERSIBLE%<U4F11>     /x8e/xa1/xc7/xb2 <CJK>
+ %IRREVERSIBLE%<U4F0F>     /x8e/xa1/xc7/xb3 <CJK>
+ %IRREVERSIBLE%<U4EF2>     /x8e/xa1/xc7/xb4 <CJK>
+ %IRREVERSIBLE%<U4EF6>     /x8e/xa1/xc7/xb5 <CJK>
+ %IRREVERSIBLE%<U4EFB>     /x8e/xa1/xc7/xb6 <CJK>
+ %IRREVERSIBLE%<U4EF0>     /x8e/xa1/xc7/xb7 <CJK>
+ %IRREVERSIBLE%<U4EF3>     /x8e/xa1/xc7/xb8 <CJK>
+ %IRREVERSIBLE%<U4EFD>     /x8e/xa1/xc7/xb9 <CJK>
+ %IRREVERSIBLE%<U4F01>     /x8e/xa1/xc7/xba <CJK>
+ %IRREVERSIBLE%<U4F0B>     /x8e/xa1/xc7/xbb <CJK>
+ %IRREVERSIBLE%<U5149>     /x8e/xa1/xc7/xbc <CJK>
+ %IRREVERSIBLE%<U5147>     /x8e/xa1/xc7/xbd <CJK>
+ %IRREVERSIBLE%<U5146>     /x8e/xa1/xc7/xbe <CJK>
+ %IRREVERSIBLE%<U5148>     /x8e/xa1/xc7/xbf <CJK>
+ %IRREVERSIBLE%<U5168>     /x8e/xa1/xc7/xc0 <CJK>
+ %IRREVERSIBLE%<U5171>     /x8e/xa1/xc7/xc1 <CJK>
+ %IRREVERSIBLE%<U518D>     /x8e/xa1/xc7/xc2 <CJK>
+ %IRREVERSIBLE%<U51B0>     /x8e/xa1/xc7/xc3 <CJK>
+ %IRREVERSIBLE%<U5217>     /x8e/xa1/xc7/xc4 <CJK>
+ %IRREVERSIBLE%<U5211>     /x8e/xa1/xc7/xc5 <CJK>
+ %IRREVERSIBLE%<U5212>     /x8e/xa1/xc7/xc6 <CJK>
+ %IRREVERSIBLE%<U520E>     /x8e/xa1/xc7/xc7 <CJK>
+ %IRREVERSIBLE%<U5216>     /x8e/xa1/xc7/xc8 <CJK>
+ %IRREVERSIBLE%<U52A3>     /x8e/xa1/xc7/xc9 <CJK>
+ %IRREVERSIBLE%<U5308>     /x8e/xa1/xc7/xca <CJK>
+ %IRREVERSIBLE%<U5321>     /x8e/xa1/xc7/xcb <CJK>
+ %IRREVERSIBLE%<U5320>     /x8e/xa1/xc7/xcc <CJK>
+ %IRREVERSIBLE%<U5370>     /x8e/xa1/xc7/xcd <CJK>
+ %IRREVERSIBLE%<U5371>     /x8e/xa1/xc7/xce <CJK>
+ %IRREVERSIBLE%<U5409>     /x8e/xa1/xc7/xcf <CJK>
+ %IRREVERSIBLE%<U540F>     /x8e/xa1/xc7/xd0 <CJK>
+ %IRREVERSIBLE%<U540C>     /x8e/xa1/xc7/xd1 <CJK>
+ %IRREVERSIBLE%<U540A>     /x8e/xa1/xc7/xd2 <CJK>
+ %IRREVERSIBLE%<U5410>     /x8e/xa1/xc7/xd3 <CJK>
+ %IRREVERSIBLE%<U5401>     /x8e/xa1/xc7/xd4 <CJK>
+ %IRREVERSIBLE%<U540B>     /x8e/xa1/xc7/xd5 <CJK>
+ %IRREVERSIBLE%<U5404>     /x8e/xa1/xc7/xd6 <CJK>
+ %IRREVERSIBLE%<U5411>     /x8e/xa1/xc7/xd7 <CJK>
+ %IRREVERSIBLE%<U540D>     /x8e/xa1/xc7/xd8 <CJK>
+ %IRREVERSIBLE%<U5408>     /x8e/xa1/xc7/xd9 <CJK>
+ %IRREVERSIBLE%<U5403>     /x8e/xa1/xc7/xda <CJK>
+ %IRREVERSIBLE%<U540E>     /x8e/xa1/xc7/xdb <CJK>
+ %IRREVERSIBLE%<U5406>     /x8e/xa1/xc7/xdc <CJK>
+ %IRREVERSIBLE%<U5412>     /x8e/xa1/xc7/xdd <CJK>
+ %IRREVERSIBLE%<U56E0>     /x8e/xa1/xc7/xde <CJK>
+ %IRREVERSIBLE%<U56DE>     /x8e/xa1/xc7/xdf <CJK>
+ %IRREVERSIBLE%<U56DD>     /x8e/xa1/xc7/xe0 <CJK>
+ %IRREVERSIBLE%<U5733>     /x8e/xa1/xc7/xe1 <CJK>
+ %IRREVERSIBLE%<U5730>     /x8e/xa1/xc7/xe2 <CJK>
+ %IRREVERSIBLE%<U5728>     /x8e/xa1/xc7/xe3 <CJK>
+ %IRREVERSIBLE%<U572D>     /x8e/xa1/xc7/xe4 <CJK>
+ %IRREVERSIBLE%<U572C>     /x8e/xa1/xc7/xe5 <CJK>
+ %IRREVERSIBLE%<U572F>     /x8e/xa1/xc7/xe6 <CJK>
+ %IRREVERSIBLE%<U5729>     /x8e/xa1/xc7/xe7 <CJK>
+ %IRREVERSIBLE%<U5919>     /x8e/xa1/xc7/xe8 <CJK>
+ %IRREVERSIBLE%<U591A>     /x8e/xa1/xc7/xe9 <CJK>
+ %IRREVERSIBLE%<U5937>     /x8e/xa1/xc7/xea <CJK>
+ %IRREVERSIBLE%<U5938>     /x8e/xa1/xc7/xeb <CJK>
+ %IRREVERSIBLE%<U5984>     /x8e/xa1/xc7/xec <CJK>
+ %IRREVERSIBLE%<U5978>     /x8e/xa1/xc7/xed <CJK>
+ %IRREVERSIBLE%<U5983>     /x8e/xa1/xc7/xee <CJK>
+ %IRREVERSIBLE%<U597D>     /x8e/xa1/xc7/xef <CJK>
+ %IRREVERSIBLE%<U5979>     /x8e/xa1/xc7/xf0 <CJK>
+ %IRREVERSIBLE%<U5982>     /x8e/xa1/xc7/xf1 <CJK>
+ %IRREVERSIBLE%<U5981>     /x8e/xa1/xc7/xf2 <CJK>
+ %IRREVERSIBLE%<U5B57>     /x8e/xa1/xc7/xf3 <CJK>
+ %IRREVERSIBLE%<U5B58>     /x8e/xa1/xc7/xf4 <CJK>
+ %IRREVERSIBLE%<U5B87>     /x8e/xa1/xc7/xf5 <CJK>
+ %IRREVERSIBLE%<U5B88>     /x8e/xa1/xc7/xf6 <CJK>
+ %IRREVERSIBLE%<U5B85>     /x8e/xa1/xc7/xf7 <CJK>
+ %IRREVERSIBLE%<U5B89>     /x8e/xa1/xc7/xf8 <CJK>
+ %IRREVERSIBLE%<U5BFA>     /x8e/xa1/xc7/xf9 <CJK>
+ %IRREVERSIBLE%<U5C16>     /x8e/xa1/xc7/xfa <CJK>
+ %IRREVERSIBLE%<U5C79>     /x8e/xa1/xc7/xfb <CJK>
+ %IRREVERSIBLE%<U5DDE>     /x8e/xa1/xc7/xfc <CJK>
+ %IRREVERSIBLE%<U5E06>     /x8e/xa1/xc7/xfd <CJK>
+ %IRREVERSIBLE%<U5E76>     /x8e/xa1/xc7/xfe <CJK>
+ %IRREVERSIBLE%<U5E74>     /x8e/xa1/xc8/xa1 <CJK>
+ %IRREVERSIBLE%<U5F0F>     /x8e/xa1/xc8/xa2 <CJK>
+ %IRREVERSIBLE%<U5F1B>     /x8e/xa1/xc8/xa3 <CJK>
+ %IRREVERSIBLE%<U5FD9>     /x8e/xa1/xc8/xa4 <CJK>
+ %IRREVERSIBLE%<U5FD6>     /x8e/xa1/xc8/xa5 <CJK>
+ %IRREVERSIBLE%<U620E>     /x8e/xa1/xc8/xa6 <CJK>
+ %IRREVERSIBLE%<U620C>     /x8e/xa1/xc8/xa7 <CJK>
+ %IRREVERSIBLE%<U620D>     /x8e/xa1/xc8/xa8 <CJK>
+ %IRREVERSIBLE%<U6210>     /x8e/xa1/xc8/xa9 <CJK>
+ %IRREVERSIBLE%<U6263>     /x8e/xa1/xc8/xaa <CJK>
+ %IRREVERSIBLE%<U625B>     /x8e/xa1/xc8/xab <CJK>
+ %IRREVERSIBLE%<U6258>     /x8e/xa1/xc8/xac <CJK>
+ %IRREVERSIBLE%<U6536>     /x8e/xa1/xc8/xad <CJK>
+ %IRREVERSIBLE%<U65E9>     /x8e/xa1/xc8/xae <CJK>
+ %IRREVERSIBLE%<U65E8>     /x8e/xa1/xc8/xaf <CJK>
+ %IRREVERSIBLE%<U65EC>     /x8e/xa1/xc8/xb0 <CJK>
+ %IRREVERSIBLE%<U65ED>     /x8e/xa1/xc8/xb1 <CJK>
+ %IRREVERSIBLE%<U66F2>     /x8e/xa1/xc8/xb2 <CJK>
+ %IRREVERSIBLE%<U66F3>     /x8e/xa1/xc8/xb3 <CJK>
+ %IRREVERSIBLE%<U6709>     /x8e/xa1/xc8/xb4 <CJK>
+ %IRREVERSIBLE%<U673D>     /x8e/xa1/xc8/xb5 <CJK>
+ %IRREVERSIBLE%<U6734>     /x8e/xa1/xc8/xb6 <CJK>
+ %IRREVERSIBLE%<U6731>     /x8e/xa1/xc8/xb7 <CJK>
+ %IRREVERSIBLE%<U6735>     /x8e/xa1/xc8/xb8 <CJK>
+ %IRREVERSIBLE%<U6B21>     /x8e/xa1/xc8/xb9 <CJK>
+ %IRREVERSIBLE%<U6B64>     /x8e/xa1/xc8/xba <CJK>
+ %IRREVERSIBLE%<U6B7B>     /x8e/xa1/xc8/xbb <CJK>
+ %IRREVERSIBLE%<U6C16>     /x8e/xa1/xc8/xbc <CJK>
+ %IRREVERSIBLE%<U6C5D>     /x8e/xa1/xc8/xbd <CJK>
+ %IRREVERSIBLE%<U6C57>     /x8e/xa1/xc8/xbe <CJK>
+ %IRREVERSIBLE%<U6C59>     /x8e/xa1/xc8/xbf <CJK>
+ %IRREVERSIBLE%<U6C5F>     /x8e/xa1/xc8/xc0 <CJK>
+ %IRREVERSIBLE%<U6C60>     /x8e/xa1/xc8/xc1 <CJK>
+ %IRREVERSIBLE%<U6C50>     /x8e/xa1/xc8/xc2 <CJK>
+ %IRREVERSIBLE%<U6C55>     /x8e/xa1/xc8/xc3 <CJK>
+ %IRREVERSIBLE%<U6C61>     /x8e/xa1/xc8/xc4 <CJK>
+ %IRREVERSIBLE%<U6C5B>     /x8e/xa1/xc8/xc5 <CJK>
+ %IRREVERSIBLE%<U6C4D>     /x8e/xa1/xc8/xc6 <CJK>
+ %IRREVERSIBLE%<U6C4E>     /x8e/xa1/xc8/xc7 <CJK>
+ %IRREVERSIBLE%<U7070>     /x8e/xa1/xc8/xc8 <CJK>
+ %IRREVERSIBLE%<U725F>     /x8e/xa1/xc8/xc9 <CJK>
+ %IRREVERSIBLE%<U725D>     /x8e/xa1/xc8/xca <CJK>
+ %IRREVERSIBLE%<U767E>     /x8e/xa1/xc8/xcb <CJK>
+ %IRREVERSIBLE%<U7AF9>     /x8e/xa1/xc8/xcc <CJK>
+ %IRREVERSIBLE%<U7C73>     /x8e/xa1/xc8/xcd <CJK>
+ %IRREVERSIBLE%<U7CF8>     /x8e/xa1/xc8/xce <CJK>
+ %IRREVERSIBLE%<U7F36>     /x8e/xa1/xc8/xcf <CJK>
+ %IRREVERSIBLE%<U7F8A>     /x8e/xa1/xc8/xd0 <CJK>
+ %IRREVERSIBLE%<U7FBD>     /x8e/xa1/xc8/xd1 <CJK>
+ %IRREVERSIBLE%<U8001>     /x8e/xa1/xc8/xd2 <CJK>
+ %IRREVERSIBLE%<U8003>     /x8e/xa1/xc8/xd3 <CJK>
+ %IRREVERSIBLE%<U800C>     /x8e/xa1/xc8/xd4 <CJK>
+ %IRREVERSIBLE%<U8012>     /x8e/xa1/xc8/xd5 <CJK>
+ %IRREVERSIBLE%<U8033>     /x8e/xa1/xc8/xd6 <CJK>
+ %IRREVERSIBLE%<U807F>     /x8e/xa1/xc8/xd7 <CJK>
+ %IRREVERSIBLE%<U8089>     /x8e/xa1/xc8/xd8 <CJK>
+ %IRREVERSIBLE%<U808B>     /x8e/xa1/xc8/xd9 <CJK>
+ %IRREVERSIBLE%<U808C>     /x8e/xa1/xc8/xda <CJK>
+ %IRREVERSIBLE%<U81E3>     /x8e/xa1/xc8/xdb <CJK>
+ %IRREVERSIBLE%<U81EA>     /x8e/xa1/xc8/xdc <CJK>
+ %IRREVERSIBLE%<U81F3>     /x8e/xa1/xc8/xdd <CJK>
+ %IRREVERSIBLE%<U81FC>     /x8e/xa1/xc8/xde <CJK>
+ %IRREVERSIBLE%<U820C>     /x8e/xa1/xc8/xdf <CJK>
+ %IRREVERSIBLE%<U821B>     /x8e/xa1/xc8/xe0 <CJK>
+ %IRREVERSIBLE%<U821F>     /x8e/xa1/xc8/xe1 <CJK>
+ %IRREVERSIBLE%<U826E>     /x8e/xa1/xc8/xe2 <CJK>
+ %IRREVERSIBLE%<U8272>     /x8e/xa1/xc8/xe3 <CJK>
+ %IRREVERSIBLE%<U827E>     /x8e/xa1/xc8/xe4 <CJK>
+ %IRREVERSIBLE%<U866B>     /x8e/xa1/xc8/xe5 <CJK>
+ %IRREVERSIBLE%<U8840>     /x8e/xa1/xc8/xe6 <CJK>
+ %IRREVERSIBLE%<U884C>     /x8e/xa1/xc8/xe7 <CJK>
+ %IRREVERSIBLE%<U8863>     /x8e/xa1/xc8/xe8 <CJK>
+ %IRREVERSIBLE%<U897F>     /x8e/xa1/xc8/xe9 <CJK>
+ %IRREVERSIBLE%<U9621>     /x8e/xa1/xc8/xea <CJK>
+ %IRREVERSIBLE%<U4E32>     /x8e/xa1/xc8/xeb <CJK>
+ %IRREVERSIBLE%<U4EA8>     /x8e/xa1/xc8/xec <CJK>
+ %IRREVERSIBLE%<U4F4D>     /x8e/xa1/xc8/xed <CJK>
+ %IRREVERSIBLE%<U4F4F>     /x8e/xa1/xc8/xee <CJK>
+ %IRREVERSIBLE%<U4F47>     /x8e/xa1/xc8/xef <CJK>
+ %IRREVERSIBLE%<U4F57>     /x8e/xa1/xc8/xf0 <CJK>
+ %IRREVERSIBLE%<U4F5E>     /x8e/xa1/xc8/xf1 <CJK>
+ %IRREVERSIBLE%<U4F34>     /x8e/xa1/xc8/xf2 <CJK>
+ %IRREVERSIBLE%<U4F5B>     /x8e/xa1/xc8/xf3 <CJK>
+ %IRREVERSIBLE%<U4F55>     /x8e/xa1/xc8/xf4 <CJK>
+ %IRREVERSIBLE%<U4F30>     /x8e/xa1/xc8/xf5 <CJK>
+ %IRREVERSIBLE%<U4F50>     /x8e/xa1/xc8/xf6 <CJK>
+ %IRREVERSIBLE%<U4F51>     /x8e/xa1/xc8/xf7 <CJK>
+ %IRREVERSIBLE%<U4F3D>     /x8e/xa1/xc8/xf8 <CJK>
+ %IRREVERSIBLE%<U4F3A>     /x8e/xa1/xc8/xf9 <CJK>
+ %IRREVERSIBLE%<U4F38>     /x8e/xa1/xc8/xfa <CJK>
+ %IRREVERSIBLE%<U4F43>     /x8e/xa1/xc8/xfb <CJK>
+ %IRREVERSIBLE%<U4F54>     /x8e/xa1/xc8/xfc <CJK>
+ %IRREVERSIBLE%<U4F3C>     /x8e/xa1/xc8/xfd <CJK>
+ %IRREVERSIBLE%<U4F46>     /x8e/xa1/xc8/xfe <CJK>
+ %IRREVERSIBLE%<U4F63>     /x8e/xa1/xc9/xa1 <CJK>
+ %IRREVERSIBLE%<U4F5C>     /x8e/xa1/xc9/xa2 <CJK>
+ %IRREVERSIBLE%<U4F60>     /x8e/xa1/xc9/xa3 <CJK>
+ %IRREVERSIBLE%<U4F2F>     /x8e/xa1/xc9/xa4 <CJK>
+ %IRREVERSIBLE%<U4F4E>     /x8e/xa1/xc9/xa5 <CJK>
+ %IRREVERSIBLE%<U4F36>     /x8e/xa1/xc9/xa6 <CJK>
+ %IRREVERSIBLE%<U4F59>     /x8e/xa1/xc9/xa7 <CJK>
+ %IRREVERSIBLE%<U4F5D>     /x8e/xa1/xc9/xa8 <CJK>
+ %IRREVERSIBLE%<U4F48>     /x8e/xa1/xc9/xa9 <CJK>
+ %IRREVERSIBLE%<U4F5A>     /x8e/xa1/xc9/xaa <CJK>
+ %IRREVERSIBLE%<U514C>     /x8e/xa1/xc9/xab <CJK>
+ %IRREVERSIBLE%<U514B>     /x8e/xa1/xc9/xac <CJK>
+ %IRREVERSIBLE%<U514D>     /x8e/xa1/xc9/xad <CJK>
+ %IRREVERSIBLE%<U5175>     /x8e/xa1/xc9/xae <CJK>
+ %IRREVERSIBLE%<U51B6>     /x8e/xa1/xc9/xaf <CJK>
+ %IRREVERSIBLE%<U51B7>     /x8e/xa1/xc9/xb0 <CJK>
+ %IRREVERSIBLE%<U5225>     /x8e/xa1/xc9/xb1 <CJK>
+ %IRREVERSIBLE%<U5224>     /x8e/xa1/xc9/xb2 <CJK>
+ %IRREVERSIBLE%<U5229>     /x8e/xa1/xc9/xb3 <CJK>
+ %IRREVERSIBLE%<U522A>     /x8e/xa1/xc9/xb4 <CJK>
+ %IRREVERSIBLE%<U5228>     /x8e/xa1/xc9/xb5 <CJK>
+ %IRREVERSIBLE%<U52AB>     /x8e/xa1/xc9/xb6 <CJK>
+ %IRREVERSIBLE%<U52A9>     /x8e/xa1/xc9/xb7 <CJK>
+ %IRREVERSIBLE%<U52AA>     /x8e/xa1/xc9/xb8 <CJK>
+ %IRREVERSIBLE%<U52AC>     /x8e/xa1/xc9/xb9 <CJK>
+ %IRREVERSIBLE%<U5323>     /x8e/xa1/xc9/xba <CJK>
+ %IRREVERSIBLE%<U5373>     /x8e/xa1/xc9/xbb <CJK>
+ %IRREVERSIBLE%<U5375>     /x8e/xa1/xc9/xbc <CJK>
+ %IRREVERSIBLE%<U541D>     /x8e/xa1/xc9/xbd <CJK>
+ %IRREVERSIBLE%<U542D>     /x8e/xa1/xc9/xbe <CJK>
+ %IRREVERSIBLE%<U541E>     /x8e/xa1/xc9/xbf <CJK>
+ %IRREVERSIBLE%<U543E>     /x8e/xa1/xc9/xc0 <CJK>
+ %IRREVERSIBLE%<U5426>     /x8e/xa1/xc9/xc1 <CJK>
+ %IRREVERSIBLE%<U544E>     /x8e/xa1/xc9/xc2 <CJK>
+ %IRREVERSIBLE%<U5427>     /x8e/xa1/xc9/xc3 <CJK>
+ %IRREVERSIBLE%<U5446>     /x8e/xa1/xc9/xc4 <CJK>
+ %IRREVERSIBLE%<U5443>     /x8e/xa1/xc9/xc5 <CJK>
+ %IRREVERSIBLE%<U5433>     /x8e/xa1/xc9/xc6 <CJK>
+ %IRREVERSIBLE%<U5448>     /x8e/xa1/xc9/xc7 <CJK>
+ %IRREVERSIBLE%<U5442>     /x8e/xa1/xc9/xc8 <CJK>
+ %IRREVERSIBLE%<U541B>     /x8e/xa1/xc9/xc9 <CJK>
+ %IRREVERSIBLE%<U5429>     /x8e/xa1/xc9/xca <CJK>
+ %IRREVERSIBLE%<U544A>     /x8e/xa1/xc9/xcb <CJK>
+ %IRREVERSIBLE%<U5439>     /x8e/xa1/xc9/xcc <CJK>
+ %IRREVERSIBLE%<U543B>     /x8e/xa1/xc9/xcd <CJK>
+ %IRREVERSIBLE%<U5438>     /x8e/xa1/xc9/xce <CJK>
+ %IRREVERSIBLE%<U542E>     /x8e/xa1/xc9/xcf <CJK>
+ %IRREVERSIBLE%<U5435>     /x8e/xa1/xc9/xd0 <CJK>
+ %IRREVERSIBLE%<U5436>     /x8e/xa1/xc9/xd1 <CJK>
+ %IRREVERSIBLE%<U5420>     /x8e/xa1/xc9/xd2 <CJK>
+ %IRREVERSIBLE%<U543C>     /x8e/xa1/xc9/xd3 <CJK>
+ %IRREVERSIBLE%<U5440>     /x8e/xa1/xc9/xd4 <CJK>
+ %IRREVERSIBLE%<U5431>     /x8e/xa1/xc9/xd5 <CJK>
+ %IRREVERSIBLE%<U542B>     /x8e/xa1/xc9/xd6 <CJK>
+ %IRREVERSIBLE%<U541F>     /x8e/xa1/xc9/xd7 <CJK>
+ %IRREVERSIBLE%<U542C>     /x8e/xa1/xc9/xd8 <CJK>
+ %IRREVERSIBLE%<U56EA>     /x8e/xa1/xc9/xd9 <CJK>
+ %IRREVERSIBLE%<U56F0>     /x8e/xa1/xc9/xda <CJK>
+ %IRREVERSIBLE%<U56E4>     /x8e/xa1/xc9/xdb <CJK>
+ %IRREVERSIBLE%<U56EB>     /x8e/xa1/xc9/xdc <CJK>
+ %IRREVERSIBLE%<U574A>     /x8e/xa1/xc9/xdd <CJK>
+ %IRREVERSIBLE%<U5751>     /x8e/xa1/xc9/xde <CJK>
+ %IRREVERSIBLE%<U5740>     /x8e/xa1/xc9/xdf <CJK>
+ %IRREVERSIBLE%<U574D>     /x8e/xa1/xc9/xe0 <CJK>
+ %IRREVERSIBLE%<U5747>     /x8e/xa1/xc9/xe1 <CJK>
+ %IRREVERSIBLE%<U574E>     /x8e/xa1/xc9/xe2 <CJK>
+ %IRREVERSIBLE%<U573E>     /x8e/xa1/xc9/xe3 <CJK>
+ %IRREVERSIBLE%<U5750>     /x8e/xa1/xc9/xe4 <CJK>
+ %IRREVERSIBLE%<U574F>     /x8e/xa1/xc9/xe5 <CJK>
+ %IRREVERSIBLE%<U573B>     /x8e/xa1/xc9/xe6 <CJK>
+ %IRREVERSIBLE%<U58EF>     /x8e/xa1/xc9/xe7 <CJK>
+ %IRREVERSIBLE%<U593E>     /x8e/xa1/xc9/xe8 <CJK>
+ %IRREVERSIBLE%<U599D>     /x8e/xa1/xc9/xe9 <CJK>
+ %IRREVERSIBLE%<U5992>     /x8e/xa1/xc9/xea <CJK>
+ %IRREVERSIBLE%<U59A8>     /x8e/xa1/xc9/xeb <CJK>
+ %IRREVERSIBLE%<U599E>     /x8e/xa1/xc9/xec <CJK>
+ %IRREVERSIBLE%<U59A3>     /x8e/xa1/xc9/xed <CJK>
+ %IRREVERSIBLE%<U5999>     /x8e/xa1/xc9/xee <CJK>
+ %IRREVERSIBLE%<U5996>     /x8e/xa1/xc9/xef <CJK>
+ %IRREVERSIBLE%<U598D>     /x8e/xa1/xc9/xf0 <CJK>
+ %IRREVERSIBLE%<U59A4>     /x8e/xa1/xc9/xf1 <CJK>
+ %IRREVERSIBLE%<U5993>     /x8e/xa1/xc9/xf2 <CJK>
+ %IRREVERSIBLE%<U598A>     /x8e/xa1/xc9/xf3 <CJK>
+ %IRREVERSIBLE%<U59A5>     /x8e/xa1/xc9/xf4 <CJK>
+ %IRREVERSIBLE%<U5B5D>     /x8e/xa1/xc9/xf5 <CJK>
+ %IRREVERSIBLE%<U5B5C>     /x8e/xa1/xc9/xf6 <CJK>
+ %IRREVERSIBLE%<U5B5A>     /x8e/xa1/xc9/xf7 <CJK>
+ %IRREVERSIBLE%<U5B5B>     /x8e/xa1/xc9/xf8 <CJK>
+ %IRREVERSIBLE%<U5B8C>     /x8e/xa1/xc9/xf9 <CJK>
+ %IRREVERSIBLE%<U5B8B>     /x8e/xa1/xc9/xfa <CJK>
+ %IRREVERSIBLE%<U5B8F>     /x8e/xa1/xc9/xfb <CJK>
+ %IRREVERSIBLE%<U5C2C>     /x8e/xa1/xc9/xfc <CJK>
+ %IRREVERSIBLE%<U5C40>     /x8e/xa1/xc9/xfd <CJK>
+ %IRREVERSIBLE%<U5C41>     /x8e/xa1/xc9/xfe <CJK>
+ %IRREVERSIBLE%<U5C3F>     /x8e/xa1/xca/xa1 <CJK>
+ %IRREVERSIBLE%<U5C3E>     /x8e/xa1/xca/xa2 <CJK>
+ %IRREVERSIBLE%<U5C90>     /x8e/xa1/xca/xa3 <CJK>
+ %IRREVERSIBLE%<U5C91>     /x8e/xa1/xca/xa4 <CJK>
+ %IRREVERSIBLE%<U5C94>     /x8e/xa1/xca/xa5 <CJK>
+ %IRREVERSIBLE%<U5C8C>     /x8e/xa1/xca/xa6 <CJK>
+ %IRREVERSIBLE%<U5DEB>     /x8e/xa1/xca/xa7 <CJK>
+ %IRREVERSIBLE%<U5E0C>     /x8e/xa1/xca/xa8 <CJK>
+ %IRREVERSIBLE%<U5E8F>     /x8e/xa1/xca/xa9 <CJK>
+ %IRREVERSIBLE%<U5E87>     /x8e/xa1/xca/xaa <CJK>
+ %IRREVERSIBLE%<U5E8A>     /x8e/xa1/xca/xab <CJK>
+ %IRREVERSIBLE%<U5EF7>     /x8e/xa1/xca/xac <CJK>
+ %IRREVERSIBLE%<U5F04>     /x8e/xa1/xca/xad <CJK>
+ %IRREVERSIBLE%<U5F1F>     /x8e/xa1/xca/xae <CJK>
+ %IRREVERSIBLE%<U5F64>     /x8e/xa1/xca/xaf <CJK>
+ %IRREVERSIBLE%<U5F62>     /x8e/xa1/xca/xb0 <CJK>
+ %IRREVERSIBLE%<U5F77>     /x8e/xa1/xca/xb1 <CJK>
+ %IRREVERSIBLE%<U5F79>     /x8e/xa1/xca/xb2 <CJK>
+ %IRREVERSIBLE%<U5FD8>     /x8e/xa1/xca/xb3 <CJK>
+ %IRREVERSIBLE%<U5FCC>     /x8e/xa1/xca/xb4 <CJK>
+ %IRREVERSIBLE%<U5FD7>     /x8e/xa1/xca/xb5 <CJK>
+ %IRREVERSIBLE%<U5FCD>     /x8e/xa1/xca/xb6 <CJK>
+ %IRREVERSIBLE%<U5FF1>     /x8e/xa1/xca/xb7 <CJK>
+ %IRREVERSIBLE%<U5FEB>     /x8e/xa1/xca/xb8 <CJK>
+ %IRREVERSIBLE%<U5FF8>     /x8e/xa1/xca/xb9 <CJK>
+ %IRREVERSIBLE%<U5FEA>     /x8e/xa1/xca/xba <CJK>
+ %IRREVERSIBLE%<U6212>     /x8e/xa1/xca/xbb <CJK>
+ %IRREVERSIBLE%<U6211>     /x8e/xa1/xca/xbc <CJK>
+ %IRREVERSIBLE%<U6284>     /x8e/xa1/xca/xbd <CJK>
+ %IRREVERSIBLE%<U6297>     /x8e/xa1/xca/xbe <CJK>
+ %IRREVERSIBLE%<U6296>     /x8e/xa1/xca/xbf <CJK>
+ %IRREVERSIBLE%<U6280>     /x8e/xa1/xca/xc0 <CJK>
+ %IRREVERSIBLE%<U6276>     /x8e/xa1/xca/xc1 <CJK>
+ %IRREVERSIBLE%<U6289>     /x8e/xa1/xca/xc2 <CJK>
+ %IRREVERSIBLE%<U626D>     /x8e/xa1/xca/xc3 <CJK>
+ %IRREVERSIBLE%<U628A>     /x8e/xa1/xca/xc4 <CJK>
+ %IRREVERSIBLE%<U627C>     /x8e/xa1/xca/xc5 <CJK>
+ %IRREVERSIBLE%<U627E>     /x8e/xa1/xca/xc6 <CJK>
+ %IRREVERSIBLE%<U6279>     /x8e/xa1/xca/xc7 <CJK>
+ %IRREVERSIBLE%<U6273>     /x8e/xa1/xca/xc8 <CJK>
+ %IRREVERSIBLE%<U6292>     /x8e/xa1/xca/xc9 <CJK>
+ %IRREVERSIBLE%<U626F>     /x8e/xa1/xca/xca <CJK>
+ %IRREVERSIBLE%<U6298>     /x8e/xa1/xca/xcb <CJK>
+ %IRREVERSIBLE%<U626E>     /x8e/xa1/xca/xcc <CJK>
+ %IRREVERSIBLE%<U6295>     /x8e/xa1/xca/xcd <CJK>
+ %IRREVERSIBLE%<U6293>     /x8e/xa1/xca/xce <CJK>
+ %IRREVERSIBLE%<U6291>     /x8e/xa1/xca/xcf <CJK>
+ %IRREVERSIBLE%<U6286>     /x8e/xa1/xca/xd0 <CJK>
+ %IRREVERSIBLE%<U6539>     /x8e/xa1/xca/xd1 <CJK>
+ %IRREVERSIBLE%<U653B>     /x8e/xa1/xca/xd2 <CJK>
+ %IRREVERSIBLE%<U6538>     /x8e/xa1/xca/xd3 <CJK>
+ %IRREVERSIBLE%<U65F1>     /x8e/xa1/xca/xd4 <CJK>
+ %IRREVERSIBLE%<U66F4>     /x8e/xa1/xca/xd5 <CJK>
+ %IRREVERSIBLE%<U675F>     /x8e/xa1/xca/xd6 <CJK>
+ %IRREVERSIBLE%<U674E>     /x8e/xa1/xca/xd7 <CJK>
+ %IRREVERSIBLE%<U674F>     /x8e/xa1/xca/xd8 <CJK>
+ %IRREVERSIBLE%<U6750>     /x8e/xa1/xca/xd9 <CJK>
+ %IRREVERSIBLE%<U6751>     /x8e/xa1/xca/xda <CJK>
+ %IRREVERSIBLE%<U675C>     /x8e/xa1/xca/xdb <CJK>
+ %IRREVERSIBLE%<U6756>     /x8e/xa1/xca/xdc <CJK>
+ %IRREVERSIBLE%<U675E>     /x8e/xa1/xca/xdd <CJK>
+ %IRREVERSIBLE%<U6749>     /x8e/xa1/xca/xde <CJK>
+ %IRREVERSIBLE%<U6746>     /x8e/xa1/xca/xdf <CJK>
+ %IRREVERSIBLE%<U6760>     /x8e/xa1/xca/xe0 <CJK>
+ %IRREVERSIBLE%<U6753>     /x8e/xa1/xca/xe1 <CJK>
+ %IRREVERSIBLE%<U6757>     /x8e/xa1/xca/xe2 <CJK>
+ %IRREVERSIBLE%<U6B65>     /x8e/xa1/xca/xe3 <CJK>
+ %IRREVERSIBLE%<U6BCF>     /x8e/xa1/xca/xe4 <CJK>
+ %IRREVERSIBLE%<U6C42>     /x8e/xa1/xca/xe5 <CJK>
+ %IRREVERSIBLE%<U6C5E>     /x8e/xa1/xca/xe6 <CJK>
+ %IRREVERSIBLE%<U6C99>     /x8e/xa1/xca/xe7 <CJK>
+ %IRREVERSIBLE%<U6C81>     /x8e/xa1/xca/xe8 <CJK>
+ %IRREVERSIBLE%<U6C88>     /x8e/xa1/xca/xe9 <CJK>
+ %IRREVERSIBLE%<U6C89>     /x8e/xa1/xca/xea <CJK>
+ %IRREVERSIBLE%<U6C85>     /x8e/xa1/xca/xeb <CJK>
+ %IRREVERSIBLE%<U6C9B>     /x8e/xa1/xca/xec <CJK>
+ %IRREVERSIBLE%<U6C6A>     /x8e/xa1/xca/xed <CJK>
+ %IRREVERSIBLE%<U6C7A>     /x8e/xa1/xca/xee <CJK>
+ %IRREVERSIBLE%<U6C90>     /x8e/xa1/xca/xef <CJK>
+ %IRREVERSIBLE%<U6C70>     /x8e/xa1/xca/xf0 <CJK>
+ %IRREVERSIBLE%<U6C8C>     /x8e/xa1/xca/xf1 <CJK>
+ %IRREVERSIBLE%<U6C68>     /x8e/xa1/xca/xf2 <CJK>
+ %IRREVERSIBLE%<U6C96>     /x8e/xa1/xca/xf3 <CJK>
+ %IRREVERSIBLE%<U6C92>     /x8e/xa1/xca/xf4 <CJK>
+ %IRREVERSIBLE%<U6C7D>     /x8e/xa1/xca/xf5 <CJK>
+ %IRREVERSIBLE%<U6C83>     /x8e/xa1/xca/xf6 <CJK>
+ %IRREVERSIBLE%<U6C72>     /x8e/xa1/xca/xf7 <CJK>
+ %IRREVERSIBLE%<U6C7E>     /x8e/xa1/xca/xf8 <CJK>
+ %IRREVERSIBLE%<U6C74>     /x8e/xa1/xca/xf9 <CJK>
+ %IRREVERSIBLE%<U6C86>     /x8e/xa1/xca/xfa <CJK>
+ %IRREVERSIBLE%<U6C76>     /x8e/xa1/xca/xfb <CJK>
+ %IRREVERSIBLE%<U6C8D>     /x8e/xa1/xca/xfc <CJK>
+ %IRREVERSIBLE%<U6C94>     /x8e/xa1/xca/xfd <CJK>
+ %IRREVERSIBLE%<U6C98>     /x8e/xa1/xca/xfe <CJK>
+ %IRREVERSIBLE%<U6C82>     /x8e/xa1/xcb/xa1 <CJK>
+ %IRREVERSIBLE%<U7076>     /x8e/xa1/xcb/xa2 <CJK>
+ %IRREVERSIBLE%<U707C>     /x8e/xa1/xcb/xa3 <CJK>
+ %IRREVERSIBLE%<U707D>     /x8e/xa1/xcb/xa4 <CJK>
+ %IRREVERSIBLE%<U7078>     /x8e/xa1/xcb/xa5 <CJK>
+ %IRREVERSIBLE%<U7262>     /x8e/xa1/xcb/xa6 <CJK>
+ %IRREVERSIBLE%<U7261>     /x8e/xa1/xcb/xa7 <CJK>
+ %IRREVERSIBLE%<U7260>     /x8e/xa1/xcb/xa8 <CJK>
+ %IRREVERSIBLE%<U72C4>     /x8e/xa1/xcb/xa9 <CJK>
+ %IRREVERSIBLE%<U72C2>     /x8e/xa1/xcb/xaa <CJK>
+ %IRREVERSIBLE%<U7396>     /x8e/xa1/xcb/xab <CJK>
+ %IRREVERSIBLE%<U752C>     /x8e/xa1/xcb/xac <CJK>
+ %IRREVERSIBLE%<U752B>     /x8e/xa1/xcb/xad <CJK>
+ %IRREVERSIBLE%<U7537>     /x8e/xa1/xcb/xae <CJK>
+ %IRREVERSIBLE%<U7538>     /x8e/xa1/xcb/xaf <CJK>
+ %IRREVERSIBLE%<U7682>     /x8e/xa1/xcb/xb0 <CJK>
+ %IRREVERSIBLE%<U76EF>     /x8e/xa1/xcb/xb1 <CJK>
+ %IRREVERSIBLE%<U77E3>     /x8e/xa1/xcb/xb2 <CJK>
+ %IRREVERSIBLE%<U79C1>     /x8e/xa1/xcb/xb3 <CJK>
+ %IRREVERSIBLE%<U79C0>     /x8e/xa1/xcb/xb4 <CJK>
+ %IRREVERSIBLE%<U79BF>     /x8e/xa1/xcb/xb5 <CJK>
+ %IRREVERSIBLE%<U7A76>     /x8e/xa1/xcb/xb6 <CJK>
+ %IRREVERSIBLE%<U7CFB>     /x8e/xa1/xcb/xb7 <CJK>
+ %IRREVERSIBLE%<U7F55>     /x8e/xa1/xcb/xb8 <CJK>
+ %IRREVERSIBLE%<U8096>     /x8e/xa1/xcb/xb9 <CJK>
+ %IRREVERSIBLE%<U8093>     /x8e/xa1/xcb/xba <CJK>
+ %IRREVERSIBLE%<U809D>     /x8e/xa1/xcb/xbb <CJK>
+ %IRREVERSIBLE%<U8098>     /x8e/xa1/xcb/xbc <CJK>
+ %IRREVERSIBLE%<U809B>     /x8e/xa1/xcb/xbd <CJK>
+ %IRREVERSIBLE%<U809A>     /x8e/xa1/xcb/xbe <CJK>
+ %IRREVERSIBLE%<U80B2>     /x8e/xa1/xcb/xbf <CJK>
+ %IRREVERSIBLE%<U826F>     /x8e/xa1/xcb/xc0 <CJK>
+ %IRREVERSIBLE%<U8292>     /x8e/xa1/xcb/xc1 <CJK>
+ %IRREVERSIBLE%<U828B>     /x8e/xa1/xcb/xc2 <CJK>
+ %IRREVERSIBLE%<U828D>     /x8e/xa1/xcb/xc3 <CJK>
+ %IRREVERSIBLE%<U898B>     /x8e/xa1/xcb/xc4 <CJK>
+ %IRREVERSIBLE%<U89D2>     /x8e/xa1/xcb/xc5 <CJK>
+ %IRREVERSIBLE%<U8A00>     /x8e/xa1/xcb/xc6 <CJK>
+ %IRREVERSIBLE%<U8C37>     /x8e/xa1/xcb/xc7 <CJK>
+ %IRREVERSIBLE%<U8C46>     /x8e/xa1/xcb/xc8 <CJK>
+ %IRREVERSIBLE%<U8C55>     /x8e/xa1/xcb/xc9 <CJK>
+ %IRREVERSIBLE%<U8C9D>     /x8e/xa1/xcb/xca <CJK>
+ %IRREVERSIBLE%<U8D64>     /x8e/xa1/xcb/xcb <CJK>
+ %IRREVERSIBLE%<U8D70>     /x8e/xa1/xcb/xcc <CJK>
+ %IRREVERSIBLE%<U8DB3>     /x8e/xa1/xcb/xcd <CJK>
+ %IRREVERSIBLE%<U8EAB>     /x8e/xa1/xcb/xce <CJK>
+ %IRREVERSIBLE%<U8ECA>     /x8e/xa1/xcb/xcf <CJK>
+ %IRREVERSIBLE%<U8F9B>     /x8e/xa1/xcb/xd0 <CJK>
+ %IRREVERSIBLE%<U8FB0>     /x8e/xa1/xcb/xd1 <CJK>
+ %IRREVERSIBLE%<U8FC2>     /x8e/xa1/xcb/xd2 <CJK>
+ %IRREVERSIBLE%<U8FC6>     /x8e/xa1/xcb/xd3 <CJK>
+ %IRREVERSIBLE%<U8FC5>     /x8e/xa1/xcb/xd4 <CJK>
+ %IRREVERSIBLE%<U8FC4>     /x8e/xa1/xcb/xd5 <CJK>
+ %IRREVERSIBLE%<U5DE1>     /x8e/xa1/xcb/xd6 <CJK>
+ %IRREVERSIBLE%<U9091>     /x8e/xa1/xcb/xd7 <CJK>
+ %IRREVERSIBLE%<U90A2>     /x8e/xa1/xcb/xd8 <CJK>
+ %IRREVERSIBLE%<U90AA>     /x8e/xa1/xcb/xd9 <CJK>
+ %IRREVERSIBLE%<U90A6>     /x8e/xa1/xcb/xda <CJK>
+ %IRREVERSIBLE%<U90A3>     /x8e/xa1/xcb/xdb <CJK>
+ %IRREVERSIBLE%<U9149>     /x8e/xa1/xcb/xdc <CJK>
+ %IRREVERSIBLE%<U91C6>     /x8e/xa1/xcb/xdd <CJK>
+ %IRREVERSIBLE%<U91CC>     /x8e/xa1/xcb/xde <CJK>
+ %IRREVERSIBLE%<U9632>     /x8e/xa1/xcb/xdf <CJK>
+ %IRREVERSIBLE%<U962E>     /x8e/xa1/xcb/xe0 <CJK>
+ %IRREVERSIBLE%<U9631>     /x8e/xa1/xcb/xe1 <CJK>
+ %IRREVERSIBLE%<U962A>     /x8e/xa1/xcb/xe2 <CJK>
+ %IRREVERSIBLE%<U962C>     /x8e/xa1/xcb/xe3 <CJK>
+ %IRREVERSIBLE%<U4E26>     /x8e/xa1/xcb/xe4 <CJK>
+ %IRREVERSIBLE%<U4E56>     /x8e/xa1/xcb/xe5 <CJK>
+ %IRREVERSIBLE%<U4E73>     /x8e/xa1/xcb/xe6 <CJK>
+ %IRREVERSIBLE%<U4E8B>     /x8e/xa1/xcb/xe7 <CJK>
+ %IRREVERSIBLE%<U4E9B>     /x8e/xa1/xcb/xe8 <CJK>
+ %IRREVERSIBLE%<U4E9E>     /x8e/xa1/xcb/xe9 <CJK>
+ %IRREVERSIBLE%<U4EAB>     /x8e/xa1/xcb/xea <CJK>
+ %IRREVERSIBLE%<U4EAC>     /x8e/xa1/xcb/xeb <CJK>
+ %IRREVERSIBLE%<U4F6F>     /x8e/xa1/xcb/xec <CJK>
+ %IRREVERSIBLE%<U4F9D>     /x8e/xa1/xcb/xed <CJK>
+ %IRREVERSIBLE%<U4F8D>     /x8e/xa1/xcb/xee <CJK>
+ %IRREVERSIBLE%<U4F73>     /x8e/xa1/xcb/xef <CJK>
+ %IRREVERSIBLE%<U4F7F>     /x8e/xa1/xcb/xf0 <CJK>
+ %IRREVERSIBLE%<U4F6C>     /x8e/xa1/xcb/xf1 <CJK>
+ %IRREVERSIBLE%<U4F9B>     /x8e/xa1/xcb/xf2 <CJK>
+ %IRREVERSIBLE%<U4F8B>     /x8e/xa1/xcb/xf3 <CJK>
+ %IRREVERSIBLE%<U4F86>     /x8e/xa1/xcb/xf4 <CJK>
+ %IRREVERSIBLE%<U4F83>     /x8e/xa1/xcb/xf5 <CJK>
+ %IRREVERSIBLE%<U4F70>     /x8e/xa1/xcb/xf6 <CJK>
+ %IRREVERSIBLE%<U4F75>     /x8e/xa1/xcb/xf7 <CJK>
+ %IRREVERSIBLE%<U4F88>     /x8e/xa1/xcb/xf8 <CJK>
+ %IRREVERSIBLE%<U4F69>     /x8e/xa1/xcb/xf9 <CJK>
+ %IRREVERSIBLE%<U4F7B>     /x8e/xa1/xcb/xfa <CJK>
+ %IRREVERSIBLE%<U4F96>     /x8e/xa1/xcb/xfb <CJK>
+ %IRREVERSIBLE%<U4F7E>     /x8e/xa1/xcb/xfc <CJK>
+ %IRREVERSIBLE%<U4F8F>     /x8e/xa1/xcb/xfd <CJK>
+ %IRREVERSIBLE%<U4F91>     /x8e/xa1/xcb/xfe <CJK>
+ %IRREVERSIBLE%<U4F7A>     /x8e/xa1/xcc/xa1 <CJK>
+ %IRREVERSIBLE%<U5154>     /x8e/xa1/xcc/xa2 <CJK>
+ %IRREVERSIBLE%<U5152>     /x8e/xa1/xcc/xa3 <CJK>
+ %IRREVERSIBLE%<U5155>     /x8e/xa1/xcc/xa4 <CJK>
+ %IRREVERSIBLE%<U5169>     /x8e/xa1/xcc/xa5 <CJK>
+ %IRREVERSIBLE%<U5177>     /x8e/xa1/xcc/xa6 <CJK>
+ %IRREVERSIBLE%<U5176>     /x8e/xa1/xcc/xa7 <CJK>
+ %IRREVERSIBLE%<U5178>     /x8e/xa1/xcc/xa8 <CJK>
+ %IRREVERSIBLE%<U51BD>     /x8e/xa1/xcc/xa9 <CJK>
+ %IRREVERSIBLE%<U51FD>     /x8e/xa1/xcc/xaa <CJK>
+ %IRREVERSIBLE%<U523B>     /x8e/xa1/xcc/xab <CJK>
+ %IRREVERSIBLE%<U5238>     /x8e/xa1/xcc/xac <CJK>
+ %IRREVERSIBLE%<U5237>     /x8e/xa1/xcc/xad <CJK>
+ %IRREVERSIBLE%<U523A>     /x8e/xa1/xcc/xae <CJK>
+ %IRREVERSIBLE%<U5230>     /x8e/xa1/xcc/xaf <CJK>
+ %IRREVERSIBLE%<U522E>     /x8e/xa1/xcc/xb0 <CJK>
+ %IRREVERSIBLE%<U5236>     /x8e/xa1/xcc/xb1 <CJK>
+ %IRREVERSIBLE%<U5241>     /x8e/xa1/xcc/xb2 <CJK>
+ %IRREVERSIBLE%<U52BE>     /x8e/xa1/xcc/xb3 <CJK>
+ %IRREVERSIBLE%<U52BB>     /x8e/xa1/xcc/xb4 <CJK>
+ %IRREVERSIBLE%<U5352>     /x8e/xa1/xcc/xb5 <CJK>
+ %IRREVERSIBLE%<U5354>     /x8e/xa1/xcc/xb6 <CJK>
+ %IRREVERSIBLE%<U5353>     /x8e/xa1/xcc/xb7 <CJK>
+ %IRREVERSIBLE%<U5351>     /x8e/xa1/xcc/xb8 <CJK>
+ %IRREVERSIBLE%<U5366>     /x8e/xa1/xcc/xb9 <CJK>
+ %IRREVERSIBLE%<U5377>     /x8e/xa1/xcc/xba <CJK>
+ %IRREVERSIBLE%<U5378>     /x8e/xa1/xcc/xbb <CJK>
+ %IRREVERSIBLE%<U5379>     /x8e/xa1/xcc/xbc <CJK>
+ %IRREVERSIBLE%<U53D6>     /x8e/xa1/xcc/xbd <CJK>
+ %IRREVERSIBLE%<U53D4>     /x8e/xa1/xcc/xbe <CJK>
+ %IRREVERSIBLE%<U53D7>     /x8e/xa1/xcc/xbf <CJK>
+ %IRREVERSIBLE%<U5473>     /x8e/xa1/xcc/xc0 <CJK>
+ %IRREVERSIBLE%<U5475>     /x8e/xa1/xcc/xc1 <CJK>
+ %IRREVERSIBLE%<U5496>     /x8e/xa1/xcc/xc2 <CJK>
+ %IRREVERSIBLE%<U5478>     /x8e/xa1/xcc/xc3 <CJK>
+ %IRREVERSIBLE%<U5495>     /x8e/xa1/xcc/xc4 <CJK>
+ %IRREVERSIBLE%<U5480>     /x8e/xa1/xcc/xc5 <CJK>
+ %IRREVERSIBLE%<U547B>     /x8e/xa1/xcc/xc6 <CJK>
+ %IRREVERSIBLE%<U5477>     /x8e/xa1/xcc/xc7 <CJK>
+ %IRREVERSIBLE%<U5484>     /x8e/xa1/xcc/xc8 <CJK>
+ %IRREVERSIBLE%<U5492>     /x8e/xa1/xcc/xc9 <CJK>
+ %IRREVERSIBLE%<U5486>     /x8e/xa1/xcc/xca <CJK>
+ %IRREVERSIBLE%<U547C>     /x8e/xa1/xcc/xcb <CJK>
+ %IRREVERSIBLE%<U5490>     /x8e/xa1/xcc/xcc <CJK>
+ %IRREVERSIBLE%<U5471>     /x8e/xa1/xcc/xcd <CJK>
+ %IRREVERSIBLE%<U5476>     /x8e/xa1/xcc/xce <CJK>
+ %IRREVERSIBLE%<U548C>     /x8e/xa1/xcc/xcf <CJK>
+ %IRREVERSIBLE%<U549A>     /x8e/xa1/xcc/xd0 <CJK>
+ %IRREVERSIBLE%<U5462>     /x8e/xa1/xcc/xd1 <CJK>
+ %IRREVERSIBLE%<U5468>     /x8e/xa1/xcc/xd2 <CJK>
+ %IRREVERSIBLE%<U548B>     /x8e/xa1/xcc/xd3 <CJK>
+ %IRREVERSIBLE%<U547D>     /x8e/xa1/xcc/xd4 <CJK>
+ %IRREVERSIBLE%<U548E>     /x8e/xa1/xcc/xd5 <CJK>
+ %IRREVERSIBLE%<U56FA>     /x8e/xa1/xcc/xd6 <CJK>
+ %IRREVERSIBLE%<U5783>     /x8e/xa1/xcc/xd7 <CJK>
+ %IRREVERSIBLE%<U5777>     /x8e/xa1/xcc/xd8 <CJK>
+ %IRREVERSIBLE%<U576A>     /x8e/xa1/xcc/xd9 <CJK>
+ %IRREVERSIBLE%<U5769>     /x8e/xa1/xcc/xda <CJK>
+ %IRREVERSIBLE%<U5761>     /x8e/xa1/xcc/xdb <CJK>
+ %IRREVERSIBLE%<U5766>     /x8e/xa1/xcc/xdc <CJK>
+ %IRREVERSIBLE%<U5764>     /x8e/xa1/xcc/xdd <CJK>
+ %IRREVERSIBLE%<U577C>     /x8e/xa1/xcc/xde <CJK>
+ %IRREVERSIBLE%<U591C>     /x8e/xa1/xcc/xdf <CJK>
+ %IRREVERSIBLE%<U5949>     /x8e/xa1/xcc/xe0 <CJK>
+ %IRREVERSIBLE%<U5947>     /x8e/xa1/xcc/xe1 <CJK>
+ %IRREVERSIBLE%<U5948>     /x8e/xa1/xcc/xe2 <CJK>
+ %IRREVERSIBLE%<U5944>     /x8e/xa1/xcc/xe3 <CJK>
+ %IRREVERSIBLE%<U5954>     /x8e/xa1/xcc/xe4 <CJK>
+ %IRREVERSIBLE%<U59BE>     /x8e/xa1/xcc/xe5 <CJK>
+ %IRREVERSIBLE%<U59BB>     /x8e/xa1/xcc/xe6 <CJK>
+ %IRREVERSIBLE%<U59D4>     /x8e/xa1/xcc/xe7 <CJK>
+ %IRREVERSIBLE%<U59B9>     /x8e/xa1/xcc/xe8 <CJK>
+ %IRREVERSIBLE%<U59AE>     /x8e/xa1/xcc/xe9 <CJK>
+ %IRREVERSIBLE%<U59D1>     /x8e/xa1/xcc/xea <CJK>
+ %IRREVERSIBLE%<U59C6>     /x8e/xa1/xcc/xeb <CJK>
+ %IRREVERSIBLE%<U59D0>     /x8e/xa1/xcc/xec <CJK>
+ %IRREVERSIBLE%<U59CD>     /x8e/xa1/xcc/xed <CJK>
+ %IRREVERSIBLE%<U59CB>     /x8e/xa1/xcc/xee <CJK>
+ %IRREVERSIBLE%<U59D3>     /x8e/xa1/xcc/xef <CJK>
+ %IRREVERSIBLE%<U59CA>     /x8e/xa1/xcc/xf0 <CJK>
+ %IRREVERSIBLE%<U59AF>     /x8e/xa1/xcc/xf1 <CJK>
+ %IRREVERSIBLE%<U59B3>     /x8e/xa1/xcc/xf2 <CJK>
+ %IRREVERSIBLE%<U59D2>     /x8e/xa1/xcc/xf3 <CJK>
+ %IRREVERSIBLE%<U59C5>     /x8e/xa1/xcc/xf4 <CJK>
+ %IRREVERSIBLE%<U5B5F>     /x8e/xa1/xcc/xf5 <CJK>
+ %IRREVERSIBLE%<U5B64>     /x8e/xa1/xcc/xf6 <CJK>
+ %IRREVERSIBLE%<U5B63>     /x8e/xa1/xcc/xf7 <CJK>
+ %IRREVERSIBLE%<U5B97>     /x8e/xa1/xcc/xf8 <CJK>
+ %IRREVERSIBLE%<U5B9A>     /x8e/xa1/xcc/xf9 <CJK>
+ %IRREVERSIBLE%<U5B98>     /x8e/xa1/xcc/xfa <CJK>
+ %IRREVERSIBLE%<U5B9C>     /x8e/xa1/xcc/xfb <CJK>
+ %IRREVERSIBLE%<U5B99>     /x8e/xa1/xcc/xfc <CJK>
+ %IRREVERSIBLE%<U5B9B>     /x8e/xa1/xcc/xfd <CJK>
+ %IRREVERSIBLE%<U5C1A>     /x8e/xa1/xcc/xfe <CJK>
+ %IRREVERSIBLE%<U5C48>     /x8e/xa1/xcd/xa1 <CJK>
+ %IRREVERSIBLE%<U5C45>     /x8e/xa1/xcd/xa2 <CJK>
+ %IRREVERSIBLE%<U5C46>     /x8e/xa1/xcd/xa3 <CJK>
+ %IRREVERSIBLE%<U5CB7>     /x8e/xa1/xcd/xa4 <CJK>
+ %IRREVERSIBLE%<U5CA1>     /x8e/xa1/xcd/xa5 <CJK>
+ %IRREVERSIBLE%<U5CB8>     /x8e/xa1/xcd/xa6 <CJK>
+ %IRREVERSIBLE%<U5CA9>     /x8e/xa1/xcd/xa7 <CJK>
+ %IRREVERSIBLE%<U5CAB>     /x8e/xa1/xcd/xa8 <CJK>
+ %IRREVERSIBLE%<U5CB1>     /x8e/xa1/xcd/xa9 <CJK>
+ %IRREVERSIBLE%<U5CB3>     /x8e/xa1/xcd/xaa <CJK>
+ %IRREVERSIBLE%<U5E18>     /x8e/xa1/xcd/xab <CJK>
+ %IRREVERSIBLE%<U5E1A>     /x8e/xa1/xcd/xac <CJK>
+ %IRREVERSIBLE%<U5E16>     /x8e/xa1/xcd/xad <CJK>
+ %IRREVERSIBLE%<U5E15>     /x8e/xa1/xcd/xae <CJK>
+ %IRREVERSIBLE%<U5E1B>     /x8e/xa1/xcd/xaf <CJK>
+ %IRREVERSIBLE%<U5E11>     /x8e/xa1/xcd/xb0 <CJK>
+ %IRREVERSIBLE%<U5E78>     /x8e/xa1/xcd/xb1 <CJK>
+ %IRREVERSIBLE%<U5E9A>     /x8e/xa1/xcd/xb2 <CJK>
+ %IRREVERSIBLE%<U5E97>     /x8e/xa1/xcd/xb3 <CJK>
+ %IRREVERSIBLE%<U5E9C>     /x8e/xa1/xcd/xb4 <CJK>
+ %IRREVERSIBLE%<U5E95>     /x8e/xa1/xcd/xb5 <CJK>
+ %IRREVERSIBLE%<U5E96>     /x8e/xa1/xcd/xb6 <CJK>
+ %IRREVERSIBLE%<U5EF6>     /x8e/xa1/xcd/xb7 <CJK>
+ %IRREVERSIBLE%<U5F26>     /x8e/xa1/xcd/xb8 <CJK>
+ %IRREVERSIBLE%<U5F27>     /x8e/xa1/xcd/xb9 <CJK>
+ %IRREVERSIBLE%<U5F29>     /x8e/xa1/xcd/xba <CJK>
+ %IRREVERSIBLE%<U5F80>     /x8e/xa1/xcd/xbb <CJK>
+ %IRREVERSIBLE%<U5F81>     /x8e/xa1/xcd/xbc <CJK>
+ %IRREVERSIBLE%<U5F7F>     /x8e/xa1/xcd/xbd <CJK>
+ %IRREVERSIBLE%<U5F7C>     /x8e/xa1/xcd/xbe <CJK>
+ %IRREVERSIBLE%<U5FDD>     /x8e/xa1/xcd/xbf <CJK>
+ %IRREVERSIBLE%<U5FE0>     /x8e/xa1/xcd/xc0 <CJK>
+ %IRREVERSIBLE%<U5FFD>     /x8e/xa1/xcd/xc1 <CJK>
+ %IRREVERSIBLE%<U5FF5>     /x8e/xa1/xcd/xc2 <CJK>
+ %IRREVERSIBLE%<U5FFF>     /x8e/xa1/xcd/xc3 <CJK>
+ %IRREVERSIBLE%<U600F>     /x8e/xa1/xcd/xc4 <CJK>
+ %IRREVERSIBLE%<U6014>     /x8e/xa1/xcd/xc5 <CJK>
+ %IRREVERSIBLE%<U602F>     /x8e/xa1/xcd/xc6 <CJK>
+ %IRREVERSIBLE%<U6035>     /x8e/xa1/xcd/xc7 <CJK>
+ %IRREVERSIBLE%<U6016>     /x8e/xa1/xcd/xc8 <CJK>
+ %IRREVERSIBLE%<U602A>     /x8e/xa1/xcd/xc9 <CJK>
+ %IRREVERSIBLE%<U6015>     /x8e/xa1/xcd/xca <CJK>
+ %IRREVERSIBLE%<U6021>     /x8e/xa1/xcd/xcb <CJK>
+ %IRREVERSIBLE%<U6027>     /x8e/xa1/xcd/xcc <CJK>
+ %IRREVERSIBLE%<U6029>     /x8e/xa1/xcd/xcd <CJK>
+ %IRREVERSIBLE%<U602B>     /x8e/xa1/xcd/xce <CJK>
+ %IRREVERSIBLE%<U601B>     /x8e/xa1/xcd/xcf <CJK>
+ %IRREVERSIBLE%<U6216>     /x8e/xa1/xcd/xd0 <CJK>
+ %IRREVERSIBLE%<U6215>     /x8e/xa1/xcd/xd1 <CJK>
+ %IRREVERSIBLE%<U623F>     /x8e/xa1/xcd/xd2 <CJK>
+ %IRREVERSIBLE%<U623E>     /x8e/xa1/xcd/xd3 <CJK>
+ %IRREVERSIBLE%<U6240>     /x8e/xa1/xcd/xd4 <CJK>
+ %IRREVERSIBLE%<U627F>     /x8e/xa1/xcd/xd5 <CJK>
+ %IRREVERSIBLE%<U62C9>     /x8e/xa1/xcd/xd6 <CJK>
+ %IRREVERSIBLE%<U62CC>     /x8e/xa1/xcd/xd7 <CJK>
+ %IRREVERSIBLE%<U62C4>     /x8e/xa1/xcd/xd8 <CJK>
+ %IRREVERSIBLE%<U62BF>     /x8e/xa1/xcd/xd9 <CJK>
+ %IRREVERSIBLE%<U62C2>     /x8e/xa1/xcd/xda <CJK>
+ %IRREVERSIBLE%<U62B9>     /x8e/xa1/xcd/xdb <CJK>
+ %IRREVERSIBLE%<U62D2>     /x8e/xa1/xcd/xdc <CJK>
+ %IRREVERSIBLE%<U62DB>     /x8e/xa1/xcd/xdd <CJK>
+ %IRREVERSIBLE%<U62AB>     /x8e/xa1/xcd/xde <CJK>
+ %IRREVERSIBLE%<U62D3>     /x8e/xa1/xcd/xdf <CJK>
+ %IRREVERSIBLE%<U62D4>     /x8e/xa1/xcd/xe0 <CJK>
+ %IRREVERSIBLE%<U62CB>     /x8e/xa1/xcd/xe1 <CJK>
+ %IRREVERSIBLE%<U62C8>     /x8e/xa1/xcd/xe2 <CJK>
+ %IRREVERSIBLE%<U62A8>     /x8e/xa1/xcd/xe3 <CJK>
+ %IRREVERSIBLE%<U62BD>     /x8e/xa1/xcd/xe4 <CJK>
+ %IRREVERSIBLE%<U62BC>     /x8e/xa1/xcd/xe5 <CJK>
+ %IRREVERSIBLE%<U62D0>     /x8e/xa1/xcd/xe6 <CJK>
+ %IRREVERSIBLE%<U62D9>     /x8e/xa1/xcd/xe7 <CJK>
+ %IRREVERSIBLE%<U62C7>     /x8e/xa1/xcd/xe8 <CJK>
+ %IRREVERSIBLE%<U62CD>     /x8e/xa1/xcd/xe9 <CJK>
+ %IRREVERSIBLE%<U62B5>     /x8e/xa1/xcd/xea <CJK>
+ %IRREVERSIBLE%<U62DA>     /x8e/xa1/xcd/xeb <CJK>
+ %IRREVERSIBLE%<U62B1>     /x8e/xa1/xcd/xec <CJK>
+ %IRREVERSIBLE%<U62D8>     /x8e/xa1/xcd/xed <CJK>
+ %IRREVERSIBLE%<U62D6>     /x8e/xa1/xcd/xee <CJK>
+ %IRREVERSIBLE%<U62D7>     /x8e/xa1/xcd/xef <CJK>
+ %IRREVERSIBLE%<U62C6>     /x8e/xa1/xcd/xf0 <CJK>
+ %IRREVERSIBLE%<U62AC>     /x8e/xa1/xcd/xf1 <CJK>
+ %IRREVERSIBLE%<U62CE>     /x8e/xa1/xcd/xf2 <CJK>
+ %IRREVERSIBLE%<U653E>     /x8e/xa1/xcd/xf3 <CJK>
+ %IRREVERSIBLE%<U65A7>     /x8e/xa1/xcd/xf4 <CJK>
+ %IRREVERSIBLE%<U65BC>     /x8e/xa1/xcd/xf5 <CJK>
+ %IRREVERSIBLE%<U65FA>     /x8e/xa1/xcd/xf6 <CJK>
+ %IRREVERSIBLE%<U6614>     /x8e/xa1/xcd/xf7 <CJK>
+ %IRREVERSIBLE%<U6613>     /x8e/xa1/xcd/xf8 <CJK>
+ %IRREVERSIBLE%<U660C>     /x8e/xa1/xcd/xf9 <CJK>
+ %IRREVERSIBLE%<U6606>     /x8e/xa1/xcd/xfa <CJK>
+ %IRREVERSIBLE%<U6602>     /x8e/xa1/xcd/xfb <CJK>
+ %IRREVERSIBLE%<U660E>     /x8e/xa1/xcd/xfc <CJK>
+ %IRREVERSIBLE%<U6600>     /x8e/xa1/xcd/xfd <CJK>
+ %IRREVERSIBLE%<U660F>     /x8e/xa1/xcd/xfe <CJK>
+ %IRREVERSIBLE%<U6615>     /x8e/xa1/xce/xa1 <CJK>
+ %IRREVERSIBLE%<U660A>     /x8e/xa1/xce/xa2 <CJK>
+ %IRREVERSIBLE%<U6607>     /x8e/xa1/xce/xa3 <CJK>
+ %IRREVERSIBLE%<U670D>     /x8e/xa1/xce/xa4 <CJK>
+ %IRREVERSIBLE%<U670B>     /x8e/xa1/xce/xa5 <CJK>
+ %IRREVERSIBLE%<U676D>     /x8e/xa1/xce/xa6 <CJK>
+ %IRREVERSIBLE%<U678B>     /x8e/xa1/xce/xa7 <CJK>
+ %IRREVERSIBLE%<U6795>     /x8e/xa1/xce/xa8 <CJK>
+ %IRREVERSIBLE%<U6771>     /x8e/xa1/xce/xa9 <CJK>
+ %IRREVERSIBLE%<U679C>     /x8e/xa1/xce/xaa <CJK>
+ %IRREVERSIBLE%<U6773>     /x8e/xa1/xce/xab <CJK>
+ %IRREVERSIBLE%<U6777>     /x8e/xa1/xce/xac <CJK>
+ %IRREVERSIBLE%<U6787>     /x8e/xa1/xce/xad <CJK>
+ %IRREVERSIBLE%<U679D>     /x8e/xa1/xce/xae <CJK>
+ %IRREVERSIBLE%<U6797>     /x8e/xa1/xce/xaf <CJK>
+ %IRREVERSIBLE%<U676F>     /x8e/xa1/xce/xb0 <CJK>
+ %IRREVERSIBLE%<U6770>     /x8e/xa1/xce/xb1 <CJK>
+ %IRREVERSIBLE%<U677F>     /x8e/xa1/xce/xb2 <CJK>
+ %IRREVERSIBLE%<U6789>     /x8e/xa1/xce/xb3 <CJK>
+ %IRREVERSIBLE%<U677E>     /x8e/xa1/xce/xb4 <CJK>
+ %IRREVERSIBLE%<U6790>     /x8e/xa1/xce/xb5 <CJK>
+ %IRREVERSIBLE%<U6775>     /x8e/xa1/xce/xb6 <CJK>
+ %IRREVERSIBLE%<U679A>     /x8e/xa1/xce/xb7 <CJK>
+ %IRREVERSIBLE%<U6793>     /x8e/xa1/xce/xb8 <CJK>
+ %IRREVERSIBLE%<U677C>     /x8e/xa1/xce/xb9 <CJK>
+ %IRREVERSIBLE%<U676A>     /x8e/xa1/xce/xba <CJK>
+ %IRREVERSIBLE%<U6772>     /x8e/xa1/xce/xbb <CJK>
+ %IRREVERSIBLE%<U6B23>     /x8e/xa1/xce/xbc <CJK>
+ %IRREVERSIBLE%<U6B66>     /x8e/xa1/xce/xbd <CJK>
+ %IRREVERSIBLE%<U6B67>     /x8e/xa1/xce/xbe <CJK>
+ %IRREVERSIBLE%<U6B7F>     /x8e/xa1/xce/xbf <CJK>
+ %IRREVERSIBLE%<U6C13>     /x8e/xa1/xce/xc0 <CJK>
+ %IRREVERSIBLE%<U6C1B>     /x8e/xa1/xce/xc1 <CJK>
+ %IRREVERSIBLE%<U6CE3>     /x8e/xa1/xce/xc2 <CJK>
+ %IRREVERSIBLE%<U6CE8>     /x8e/xa1/xce/xc3 <CJK>
+ %IRREVERSIBLE%<U6CF3>     /x8e/xa1/xce/xc4 <CJK>
+ %IRREVERSIBLE%<U6CB1>     /x8e/xa1/xce/xc5 <CJK>
+ %IRREVERSIBLE%<U6CCC>     /x8e/xa1/xce/xc6 <CJK>
+ %IRREVERSIBLE%<U6CE5>     /x8e/xa1/xce/xc7 <CJK>
+ %IRREVERSIBLE%<U6CB3>     /x8e/xa1/xce/xc8 <CJK>
+ %IRREVERSIBLE%<U6CBD>     /x8e/xa1/xce/xc9 <CJK>
+ %IRREVERSIBLE%<U6CBE>     /x8e/xa1/xce/xca <CJK>
+ %IRREVERSIBLE%<U6CBC>     /x8e/xa1/xce/xcb <CJK>
+ %IRREVERSIBLE%<U6CE2>     /x8e/xa1/xce/xcc <CJK>
+ %IRREVERSIBLE%<U6CAB>     /x8e/xa1/xce/xcd <CJK>
+ %IRREVERSIBLE%<U6CD5>     /x8e/xa1/xce/xce <CJK>
+ %IRREVERSIBLE%<U6CD3>     /x8e/xa1/xce/xcf <CJK>
+ %IRREVERSIBLE%<U6CB8>     /x8e/xa1/xce/xd0 <CJK>
+ %IRREVERSIBLE%<U6CC4>     /x8e/xa1/xce/xd1 <CJK>
+ %IRREVERSIBLE%<U6CB9>     /x8e/xa1/xce/xd2 <CJK>
+ %IRREVERSIBLE%<U6CC1>     /x8e/xa1/xce/xd3 <CJK>
+ %IRREVERSIBLE%<U6CAE>     /x8e/xa1/xce/xd4 <CJK>
+ %IRREVERSIBLE%<U6CD7>     /x8e/xa1/xce/xd5 <CJK>
+ %IRREVERSIBLE%<U6CC5>     /x8e/xa1/xce/xd6 <CJK>
+ %IRREVERSIBLE%<U6CF1>     /x8e/xa1/xce/xd7 <CJK>
+ %IRREVERSIBLE%<U6CBF>     /x8e/xa1/xce/xd8 <CJK>
+ %IRREVERSIBLE%<U6CBB>     /x8e/xa1/xce/xd9 <CJK>
+ %IRREVERSIBLE%<U6CE1>     /x8e/xa1/xce/xda <CJK>
+ %IRREVERSIBLE%<U6CDB>     /x8e/xa1/xce/xdb <CJK>
+ %IRREVERSIBLE%<U6CCA>     /x8e/xa1/xce/xdc <CJK>
+ %IRREVERSIBLE%<U6CAC>     /x8e/xa1/xce/xdd <CJK>
+ %IRREVERSIBLE%<U6CEF>     /x8e/xa1/xce/xde <CJK>
+ %IRREVERSIBLE%<U6CDC>     /x8e/xa1/xce/xdf <CJK>
+ %IRREVERSIBLE%<U6CD6>     /x8e/xa1/xce/xe0 <CJK>
+ %IRREVERSIBLE%<U6CE0>     /x8e/xa1/xce/xe1 <CJK>
+ %IRREVERSIBLE%<U7095>     /x8e/xa1/xce/xe2 <CJK>
+ %IRREVERSIBLE%<U708E>     /x8e/xa1/xce/xe3 <CJK>
+ %IRREVERSIBLE%<U7092>     /x8e/xa1/xce/xe4 <CJK>
+ %IRREVERSIBLE%<U708A>     /x8e/xa1/xce/xe5 <CJK>
+ %IRREVERSIBLE%<U7099>     /x8e/xa1/xce/xe6 <CJK>
+ %IRREVERSIBLE%<U722C>     /x8e/xa1/xce/xe7 <CJK>
+ %IRREVERSIBLE%<U722D>     /x8e/xa1/xce/xe8 <CJK>
+ %IRREVERSIBLE%<U7238>     /x8e/xa1/xce/xe9 <CJK>
+ %IRREVERSIBLE%<U7248>     /x8e/xa1/xce/xea <CJK>
+ %IRREVERSIBLE%<U7267>     /x8e/xa1/xce/xeb <CJK>
+ %IRREVERSIBLE%<U7269>     /x8e/xa1/xce/xec <CJK>
+ %IRREVERSIBLE%<U72C0>     /x8e/xa1/xce/xed <CJK>
+ %IRREVERSIBLE%<U72CE>     /x8e/xa1/xce/xee <CJK>
+ %IRREVERSIBLE%<U72D9>     /x8e/xa1/xce/xef <CJK>
+ %IRREVERSIBLE%<U72D7>     /x8e/xa1/xce/xf0 <CJK>
+ %IRREVERSIBLE%<U72D0>     /x8e/xa1/xce/xf1 <CJK>
+ %IRREVERSIBLE%<U73A9>     /x8e/xa1/xce/xf2 <CJK>
+ %IRREVERSIBLE%<U73A8>     /x8e/xa1/xce/xf3 <CJK>
+ %IRREVERSIBLE%<U739F>     /x8e/xa1/xce/xf4 <CJK>
+ %IRREVERSIBLE%<U73AB>     /x8e/xa1/xce/xf5 <CJK>
+ %IRREVERSIBLE%<U73A5>     /x8e/xa1/xce/xf6 <CJK>
+ %IRREVERSIBLE%<U753D>     /x8e/xa1/xce/xf7 <CJK>
+ %IRREVERSIBLE%<U759D>     /x8e/xa1/xce/xf8 <CJK>
+ %IRREVERSIBLE%<U7599>     /x8e/xa1/xce/xf9 <CJK>
+ %IRREVERSIBLE%<U759A>     /x8e/xa1/xce/xfa <CJK>
+ %IRREVERSIBLE%<U7684>     /x8e/xa1/xce/xfb <CJK>
+ %IRREVERSIBLE%<U76C2>     /x8e/xa1/xce/xfc <CJK>
+ %IRREVERSIBLE%<U76F2>     /x8e/xa1/xce/xfd <CJK>
+ %IRREVERSIBLE%<U76F4>     /x8e/xa1/xce/xfe <CJK>
+ %IRREVERSIBLE%<U77E5>     /x8e/xa1/xcf/xa1 <CJK>
+ %IRREVERSIBLE%<U77FD>     /x8e/xa1/xcf/xa2 <CJK>
+ %IRREVERSIBLE%<U793E>     /x8e/xa1/xcf/xa3 <CJK>
+ %IRREVERSIBLE%<U7940>     /x8e/xa1/xcf/xa4 <CJK>
+ %IRREVERSIBLE%<U7941>     /x8e/xa1/xcf/xa5 <CJK>
+ %IRREVERSIBLE%<U79C9>     /x8e/xa1/xcf/xa6 <CJK>
+ %IRREVERSIBLE%<U79C8>     /x8e/xa1/xcf/xa7 <CJK>
+ %IRREVERSIBLE%<U7A7A>     /x8e/xa1/xcf/xa8 <CJK>
+ %IRREVERSIBLE%<U7A79>     /x8e/xa1/xcf/xa9 <CJK>
+ %IRREVERSIBLE%<U7AFA>     /x8e/xa1/xcf/xaa <CJK>
+ %IRREVERSIBLE%<U7CFE>     /x8e/xa1/xcf/xab <CJK>
+ %IRREVERSIBLE%<U7F54>     /x8e/xa1/xcf/xac <CJK>
+ %IRREVERSIBLE%<U7F8C>     /x8e/xa1/xcf/xad <CJK>
+ %IRREVERSIBLE%<U7F8B>     /x8e/xa1/xcf/xae <CJK>
+ %IRREVERSIBLE%<U8005>     /x8e/xa1/xcf/xaf <CJK>
+ %IRREVERSIBLE%<U80BA>     /x8e/xa1/xcf/xb0 <CJK>
+ %IRREVERSIBLE%<U80A5>     /x8e/xa1/xcf/xb1 <CJK>
+ %IRREVERSIBLE%<U80A2>     /x8e/xa1/xcf/xb2 <CJK>
+ %IRREVERSIBLE%<U80B1>     /x8e/xa1/xcf/xb3 <CJK>
+ %IRREVERSIBLE%<U80A1>     /x8e/xa1/xcf/xb4 <CJK>
+ %IRREVERSIBLE%<U80AB>     /x8e/xa1/xcf/xb5 <CJK>
+ %IRREVERSIBLE%<U80A9>     /x8e/xa1/xcf/xb6 <CJK>
+ %IRREVERSIBLE%<U80B4>     /x8e/xa1/xcf/xb7 <CJK>
+ %IRREVERSIBLE%<U80AA>     /x8e/xa1/xcf/xb8 <CJK>
+ %IRREVERSIBLE%<U80AF>     /x8e/xa1/xcf/xb9 <CJK>
+ %IRREVERSIBLE%<U81E5>     /x8e/xa1/xcf/xba <CJK>
+ %IRREVERSIBLE%<U81FE>     /x8e/xa1/xcf/xbb <CJK>
+ %IRREVERSIBLE%<U820D>     /x8e/xa1/xcf/xbc <CJK>
+ %IRREVERSIBLE%<U82B3>     /x8e/xa1/xcf/xbd <CJK>
+ %IRREVERSIBLE%<U829D>     /x8e/xa1/xcf/xbe <CJK>
+ %IRREVERSIBLE%<U8299>     /x8e/xa1/xcf/xbf <CJK>
+ %IRREVERSIBLE%<U82AD>     /x8e/xa1/xcf/xc0 <CJK>
+ %IRREVERSIBLE%<U82BD>     /x8e/xa1/xcf/xc1 <CJK>
+ %IRREVERSIBLE%<U829F>     /x8e/xa1/xcf/xc2 <CJK>
+ %IRREVERSIBLE%<U82B9>     /x8e/xa1/xcf/xc3 <CJK>
+ %IRREVERSIBLE%<U82B1>     /x8e/xa1/xcf/xc4 <CJK>
+ %IRREVERSIBLE%<U82AC>     /x8e/xa1/xcf/xc5 <CJK>
+ %IRREVERSIBLE%<U82A5>     /x8e/xa1/xcf/xc6 <CJK>
+ %IRREVERSIBLE%<U82AF>     /x8e/xa1/xcf/xc7 <CJK>
+ %IRREVERSIBLE%<U82B8>     /x8e/xa1/xcf/xc8 <CJK>
+ %IRREVERSIBLE%<U82A3>     /x8e/xa1/xcf/xc9 <CJK>
+ %IRREVERSIBLE%<U82B0>     /x8e/xa1/xcf/xca <CJK>
+ %IRREVERSIBLE%<U82BE>     /x8e/xa1/xcf/xcb <CJK>
+ %IRREVERSIBLE%<U82B7>     /x8e/xa1/xcf/xcc <CJK>
+ %IRREVERSIBLE%<U864E>     /x8e/xa1/xcf/xcd <CJK>
+ %IRREVERSIBLE%<U8671>     /x8e/xa1/xcf/xce <CJK>
+ %IRREVERSIBLE%<U521D>     /x8e/xa1/xcf/xcf <CJK>
+ %IRREVERSIBLE%<U8868>     /x8e/xa1/xcf/xd0 <CJK>
+ %IRREVERSIBLE%<U8ECB>     /x8e/xa1/xcf/xd1 <CJK>
+ %IRREVERSIBLE%<U8FCE>     /x8e/xa1/xcf/xd2 <CJK>
+ %IRREVERSIBLE%<U8FD4>     /x8e/xa1/xcf/xd3 <CJK>
+ %IRREVERSIBLE%<U8FD1>     /x8e/xa1/xcf/xd4 <CJK>
+ %IRREVERSIBLE%<U90B5>     /x8e/xa1/xcf/xd5 <CJK>
+ %IRREVERSIBLE%<U90B8>     /x8e/xa1/xcf/xd6 <CJK>
+ %IRREVERSIBLE%<U90B1>     /x8e/xa1/xcf/xd7 <CJK>
+ %IRREVERSIBLE%<U90B6>     /x8e/xa1/xcf/xd8 <CJK>
+ %IRREVERSIBLE%<U91C7>     /x8e/xa1/xcf/xd9 <CJK>
+ %IRREVERSIBLE%<U91D1>     /x8e/xa1/xcf/xda <CJK>
+ %IRREVERSIBLE%<U9577>     /x8e/xa1/xcf/xdb <CJK>
+ %IRREVERSIBLE%<U9580>     /x8e/xa1/xcf/xdc <CJK>
+ %IRREVERSIBLE%<U961C>     /x8e/xa1/xcf/xdd <CJK>
+ %IRREVERSIBLE%<U9640>     /x8e/xa1/xcf/xde <CJK>
+ %IRREVERSIBLE%<U963F>     /x8e/xa1/xcf/xdf <CJK>
+ %IRREVERSIBLE%<U963B>     /x8e/xa1/xcf/xe0 <CJK>
+ %IRREVERSIBLE%<U9644>     /x8e/xa1/xcf/xe1 <CJK>
+ %IRREVERSIBLE%<U9642>     /x8e/xa1/xcf/xe2 <CJK>
+ %IRREVERSIBLE%<U96B9>     /x8e/xa1/xcf/xe3 <CJK>
+ %IRREVERSIBLE%<U96E8>     /x8e/xa1/xcf/xe4 <CJK>
+ %IRREVERSIBLE%<U9752>     /x8e/xa1/xcf/xe5 <CJK>
+ %IRREVERSIBLE%<U975E>     /x8e/xa1/xcf/xe6 <CJK>
+ %IRREVERSIBLE%<U4E9F>     /x8e/xa1/xcf/xe7 <CJK>
+ %IRREVERSIBLE%<U4EAD>     /x8e/xa1/xcf/xe8 <CJK>
+ %IRREVERSIBLE%<U4EAE>     /x8e/xa1/xcf/xe9 <CJK>
+ %IRREVERSIBLE%<U4FE1>     /x8e/xa1/xcf/xea <CJK>
+ %IRREVERSIBLE%<U4FB5>     /x8e/xa1/xcf/xeb <CJK>
+ %IRREVERSIBLE%<U4FAF>     /x8e/xa1/xcf/xec <CJK>
+ %IRREVERSIBLE%<U4FBF>     /x8e/xa1/xcf/xed <CJK>
+ %IRREVERSIBLE%<U4FE0>     /x8e/xa1/xcf/xee <CJK>
+ %IRREVERSIBLE%<U4FD1>     /x8e/xa1/xcf/xef <CJK>
+ %IRREVERSIBLE%<U4FCF>     /x8e/xa1/xcf/xf0 <CJK>
+ %IRREVERSIBLE%<U4FDD>     /x8e/xa1/xcf/xf1 <CJK>
+ %IRREVERSIBLE%<U4FC3>     /x8e/xa1/xcf/xf2 <CJK>
+ %IRREVERSIBLE%<U4FB6>     /x8e/xa1/xcf/xf3 <CJK>
+ %IRREVERSIBLE%<U4FD8>     /x8e/xa1/xcf/xf4 <CJK>
+ %IRREVERSIBLE%<U4FDF>     /x8e/xa1/xcf/xf5 <CJK>
+ %IRREVERSIBLE%<U4FCA>     /x8e/xa1/xcf/xf6 <CJK>
+ %IRREVERSIBLE%<U4FD7>     /x8e/xa1/xcf/xf7 <CJK>
+ %IRREVERSIBLE%<U4FAE>     /x8e/xa1/xcf/xf8 <CJK>
+ %IRREVERSIBLE%<U4FD0>     /x8e/xa1/xcf/xf9 <CJK>
+ %IRREVERSIBLE%<U4FC4>     /x8e/xa1/xcf/xfa <CJK>
+ %IRREVERSIBLE%<U4FC2>     /x8e/xa1/xcf/xfb <CJK>
+ %IRREVERSIBLE%<U4FDA>     /x8e/xa1/xcf/xfc <CJK>
+ %IRREVERSIBLE%<U4FCE>     /x8e/xa1/xcf/xfd <CJK>
+ %IRREVERSIBLE%<U4FDE>     /x8e/xa1/xcf/xfe <CJK>
+ %IRREVERSIBLE%<U4FB7>     /x8e/xa1/xd0/xa1 <CJK>
+ %IRREVERSIBLE%<U5157>     /x8e/xa1/xd0/xa2 <CJK>
+ %IRREVERSIBLE%<U5192>     /x8e/xa1/xd0/xa3 <CJK>
+ %IRREVERSIBLE%<U5191>     /x8e/xa1/xd0/xa4 <CJK>
+ %IRREVERSIBLE%<U51A0>     /x8e/xa1/xd0/xa5 <CJK>
+ %IRREVERSIBLE%<U524E>     /x8e/xa1/xd0/xa6 <CJK>
+ %IRREVERSIBLE%<U5243>     /x8e/xa1/xd0/xa7 <CJK>
+ %IRREVERSIBLE%<U524A>     /x8e/xa1/xd0/xa8 <CJK>
+ %IRREVERSIBLE%<U524D>     /x8e/xa1/xd0/xa9 <CJK>
+ %IRREVERSIBLE%<U524C>     /x8e/xa1/xd0/xaa <CJK>
+ %IRREVERSIBLE%<U524B>     /x8e/xa1/xd0/xab <CJK>
+ %IRREVERSIBLE%<U5247>     /x8e/xa1/xd0/xac <CJK>
+ %IRREVERSIBLE%<U52C7>     /x8e/xa1/xd0/xad <CJK>
+ %IRREVERSIBLE%<U52C9>     /x8e/xa1/xd0/xae <CJK>
+ %IRREVERSIBLE%<U52C3>     /x8e/xa1/xd0/xaf <CJK>
+ %IRREVERSIBLE%<U52C1>     /x8e/xa1/xd0/xb0 <CJK>
+ %IRREVERSIBLE%<U530D>     /x8e/xa1/xd0/xb1 <CJK>
+ %IRREVERSIBLE%<U5357>     /x8e/xa1/xd0/xb2 <CJK>
+ %IRREVERSIBLE%<U537B>     /x8e/xa1/xd0/xb3 <CJK>
+ %IRREVERSIBLE%<U539A>     /x8e/xa1/xd0/xb4 <CJK>
+ %IRREVERSIBLE%<U53DB>     /x8e/xa1/xd0/xb5 <CJK>
+ %IRREVERSIBLE%<U54AC>     /x8e/xa1/xd0/xb6 <CJK>
+ %IRREVERSIBLE%<U54C0>     /x8e/xa1/xd0/xb7 <CJK>
+ %IRREVERSIBLE%<U54A8>     /x8e/xa1/xd0/xb8 <CJK>
+ %IRREVERSIBLE%<U54CE>     /x8e/xa1/xd0/xb9 <CJK>
+ %IRREVERSIBLE%<U54C9>     /x8e/xa1/xd0/xba <CJK>
+ %IRREVERSIBLE%<U54B8>     /x8e/xa1/xd0/xbb <CJK>
+ %IRREVERSIBLE%<U54A6>     /x8e/xa1/xd0/xbc <CJK>
+ %IRREVERSIBLE%<U54B3>     /x8e/xa1/xd0/xbd <CJK>
+ %IRREVERSIBLE%<U54C7>     /x8e/xa1/xd0/xbe <CJK>
+ %IRREVERSIBLE%<U54C2>     /x8e/xa1/xd0/xbf <CJK>
+ %IRREVERSIBLE%<U54BD>     /x8e/xa1/xd0/xc0 <CJK>
+ %IRREVERSIBLE%<U54AA>     /x8e/xa1/xd0/xc1 <CJK>
+ %IRREVERSIBLE%<U54C1>     /x8e/xa1/xd0/xc2 <CJK>
+ %IRREVERSIBLE%<U54C4>     /x8e/xa1/xd0/xc3 <CJK>
+ %IRREVERSIBLE%<U54C8>     /x8e/xa1/xd0/xc4 <CJK>
+ %IRREVERSIBLE%<U54AF>     /x8e/xa1/xd0/xc5 <CJK>
+ %IRREVERSIBLE%<U54AB>     /x8e/xa1/xd0/xc6 <CJK>
+ %IRREVERSIBLE%<U54B1>     /x8e/xa1/xd0/xc7 <CJK>
+ %IRREVERSIBLE%<U54BB>     /x8e/xa1/xd0/xc8 <CJK>
+ %IRREVERSIBLE%<U54A9>     /x8e/xa1/xd0/xc9 <CJK>
+ %IRREVERSIBLE%<U54A7>     /x8e/xa1/xd0/xca <CJK>
+ %IRREVERSIBLE%<U54BF>     /x8e/xa1/xd0/xcb <CJK>
+ %IRREVERSIBLE%<U56FF>     /x8e/xa1/xd0/xcc <CJK>
+ %IRREVERSIBLE%<U5782>     /x8e/xa1/xd0/xcd <CJK>
+ %IRREVERSIBLE%<U578B>     /x8e/xa1/xd0/xce <CJK>
+ %IRREVERSIBLE%<U57A0>     /x8e/xa1/xd0/xcf <CJK>
+ %IRREVERSIBLE%<U57A3>     /x8e/xa1/xd0/xd0 <CJK>
+ %IRREVERSIBLE%<U57A2>     /x8e/xa1/xd0/xd1 <CJK>
+ %IRREVERSIBLE%<U57CE>     /x8e/xa1/xd0/xd2 <CJK>
+ %IRREVERSIBLE%<U57AE>     /x8e/xa1/xd0/xd3 <CJK>
+ %IRREVERSIBLE%<U5793>     /x8e/xa1/xd0/xd4 <CJK>
+ %IRREVERSIBLE%<U5955>     /x8e/xa1/xd0/xd5 <CJK>
+ %IRREVERSIBLE%<U5951>     /x8e/xa1/xd0/xd6 <CJK>
+ %IRREVERSIBLE%<U594F>     /x8e/xa1/xd0/xd7 <CJK>
+ %IRREVERSIBLE%<U594E>     /x8e/xa1/xd0/xd8 <CJK>
+ %IRREVERSIBLE%<U5950>     /x8e/xa1/xd0/xd9 <CJK>
+ %IRREVERSIBLE%<U59DC>     /x8e/xa1/xd0/xda <CJK>
+ %IRREVERSIBLE%<U59D8>     /x8e/xa1/xd0/xdb <CJK>
+ %IRREVERSIBLE%<U59FF>     /x8e/xa1/xd0/xdc <CJK>
+ %IRREVERSIBLE%<U59E3>     /x8e/xa1/xd0/xdd <CJK>
+ %IRREVERSIBLE%<U59E8>     /x8e/xa1/xd0/xde <CJK>
+ %IRREVERSIBLE%<U5A03>     /x8e/xa1/xd0/xdf <CJK>
+ %IRREVERSIBLE%<U59E5>     /x8e/xa1/xd0/xe0 <CJK>
+ %IRREVERSIBLE%<U59EA>     /x8e/xa1/xd0/xe1 <CJK>
+ %IRREVERSIBLE%<U59DA>     /x8e/xa1/xd0/xe2 <CJK>
+ %IRREVERSIBLE%<U59E6>     /x8e/xa1/xd0/xe3 <CJK>
+ %IRREVERSIBLE%<U5A01>     /x8e/xa1/xd0/xe4 <CJK>
+ %IRREVERSIBLE%<U59FB>     /x8e/xa1/xd0/xe5 <CJK>
+ %IRREVERSIBLE%<U5B69>     /x8e/xa1/xd0/xe6 <CJK>
+ %IRREVERSIBLE%<U5BA3>     /x8e/xa1/xd0/xe7 <CJK>
+ %IRREVERSIBLE%<U5BA6>     /x8e/xa1/xd0/xe8 <CJK>
+ %IRREVERSIBLE%<U5BA4>     /x8e/xa1/xd0/xe9 <CJK>
+ %IRREVERSIBLE%<U5BA2>     /x8e/xa1/xd0/xea <CJK>
+ %IRREVERSIBLE%<U5BA5>     /x8e/xa1/xd0/xeb <CJK>
+ %IRREVERSIBLE%<U5C01>     /x8e/xa1/xd0/xec <CJK>
+ %IRREVERSIBLE%<U5C4E>     /x8e/xa1/xd0/xed <CJK>
+ %IRREVERSIBLE%<U5C4F>     /x8e/xa1/xd0/xee <CJK>
+ %IRREVERSIBLE%<U5C4D>     /x8e/xa1/xd0/xef <CJK>
+ %IRREVERSIBLE%<U5C4B>     /x8e/xa1/xd0/xf0 <CJK>
+ %IRREVERSIBLE%<U5CD9>     /x8e/xa1/xd0/xf1 <CJK>
+ %IRREVERSIBLE%<U5CD2>     /x8e/xa1/xd0/xf2 <CJK>
+ %IRREVERSIBLE%<U5DF7>     /x8e/xa1/xd0/xf3 <CJK>
+ %IRREVERSIBLE%<U5E1D>     /x8e/xa1/xd0/xf4 <CJK>
+ %IRREVERSIBLE%<U5E25>     /x8e/xa1/xd0/xf5 <CJK>
+ %IRREVERSIBLE%<U5E1F>     /x8e/xa1/xd0/xf6 <CJK>
+ %IRREVERSIBLE%<U5E7D>     /x8e/xa1/xd0/xf7 <CJK>
+ %IRREVERSIBLE%<U5EA0>     /x8e/xa1/xd0/xf8 <CJK>
+ %IRREVERSIBLE%<U5EA6>     /x8e/xa1/xd0/xf9 <CJK>
+ %IRREVERSIBLE%<U5EFA>     /x8e/xa1/xd0/xfa <CJK>
+ %IRREVERSIBLE%<U5F08>     /x8e/xa1/xd0/xfb <CJK>
+ %IRREVERSIBLE%<U5F2D>     /x8e/xa1/xd0/xfc <CJK>
+ %IRREVERSIBLE%<U5F65>     /x8e/xa1/xd0/xfd <CJK>
+ %IRREVERSIBLE%<U5F88>     /x8e/xa1/xd0/xfe <CJK>
+ %IRREVERSIBLE%<U5F85>     /x8e/xa1/xd1/xa1 <CJK>
+ %IRREVERSIBLE%<U5F8A>     /x8e/xa1/xd1/xa2 <CJK>
+ %IRREVERSIBLE%<U5F8B>     /x8e/xa1/xd1/xa3 <CJK>
+ %IRREVERSIBLE%<U5F87>     /x8e/xa1/xd1/xa4 <CJK>
+ %IRREVERSIBLE%<U5F8C>     /x8e/xa1/xd1/xa5 <CJK>
+ %IRREVERSIBLE%<U5F89>     /x8e/xa1/xd1/xa6 <CJK>
+ %IRREVERSIBLE%<U6012>     /x8e/xa1/xd1/xa7 <CJK>
+ %IRREVERSIBLE%<U601D>     /x8e/xa1/xd1/xa8 <CJK>
+ %IRREVERSIBLE%<U6020>     /x8e/xa1/xd1/xa9 <CJK>
+ %IRREVERSIBLE%<U6025>     /x8e/xa1/xd1/xaa <CJK>
+ %IRREVERSIBLE%<U600E>     /x8e/xa1/xd1/xab <CJK>
+ %IRREVERSIBLE%<U6028>     /x8e/xa1/xd1/xac <CJK>
+ %IRREVERSIBLE%<U604D>     /x8e/xa1/xd1/xad <CJK>
+ %IRREVERSIBLE%<U6070>     /x8e/xa1/xd1/xae <CJK>
+ %IRREVERSIBLE%<U6068>     /x8e/xa1/xd1/xaf <CJK>
+ %IRREVERSIBLE%<U6062>     /x8e/xa1/xd1/xb0 <CJK>
+ %IRREVERSIBLE%<U6046>     /x8e/xa1/xd1/xb1 <CJK>
+ %IRREVERSIBLE%<U6043>     /x8e/xa1/xd1/xb2 <CJK>
+ %IRREVERSIBLE%<U606C>     /x8e/xa1/xd1/xb3 <CJK>
+ %IRREVERSIBLE%<U606B>     /x8e/xa1/xd1/xb4 <CJK>
+ %IRREVERSIBLE%<U606A>     /x8e/xa1/xd1/xb5 <CJK>
+ %IRREVERSIBLE%<U6064>     /x8e/xa1/xd1/xb6 <CJK>
+ %IRREVERSIBLE%<U6241>     /x8e/xa1/xd1/xb7 <CJK>
+ %IRREVERSIBLE%<U62DC>     /x8e/xa1/xd1/xb8 <CJK>
+ %IRREVERSIBLE%<U6316>     /x8e/xa1/xd1/xb9 <CJK>
+ %IRREVERSIBLE%<U6309>     /x8e/xa1/xd1/xba <CJK>
+ %IRREVERSIBLE%<U62FC>     /x8e/xa1/xd1/xbb <CJK>
+ %IRREVERSIBLE%<U62ED>     /x8e/xa1/xd1/xbc <CJK>
+ %IRREVERSIBLE%<U6301>     /x8e/xa1/xd1/xbd <CJK>
+ %IRREVERSIBLE%<U62EE>     /x8e/xa1/xd1/xbe <CJK>
+ %IRREVERSIBLE%<U62FD>     /x8e/xa1/xd1/xbf <CJK>
+ %IRREVERSIBLE%<U6307>     /x8e/xa1/xd1/xc0 <CJK>
+ %IRREVERSIBLE%<U62F1>     /x8e/xa1/xd1/xc1 <CJK>
+ %IRREVERSIBLE%<U62F7>     /x8e/xa1/xd1/xc2 <CJK>
+ %IRREVERSIBLE%<U62EF>     /x8e/xa1/xd1/xc3 <CJK>
+ %IRREVERSIBLE%<U62EC>     /x8e/xa1/xd1/xc4 <CJK>
+ %IRREVERSIBLE%<U62FE>     /x8e/xa1/xd1/xc5 <CJK>
+ %IRREVERSIBLE%<U62F4>     /x8e/xa1/xd1/xc6 <CJK>
+ %IRREVERSIBLE%<U6311>     /x8e/xa1/xd1/xc7 <CJK>
+ %IRREVERSIBLE%<U6302>     /x8e/xa1/xd1/xc8 <CJK>
+ %IRREVERSIBLE%<U653F>     /x8e/xa1/xd1/xc9 <CJK>
+ %IRREVERSIBLE%<U6545>     /x8e/xa1/xd1/xca <CJK>
+ %IRREVERSIBLE%<U65AB>     /x8e/xa1/xd1/xcb <CJK>
+ %IRREVERSIBLE%<U65BD>     /x8e/xa1/xd1/xcc <CJK>
+ %IRREVERSIBLE%<U65E2>     /x8e/xa1/xd1/xcd <CJK>
+ %IRREVERSIBLE%<U6625>     /x8e/xa1/xd1/xce <CJK>
+ %IRREVERSIBLE%<U662D>     /x8e/xa1/xd1/xcf <CJK>
+ %IRREVERSIBLE%<U6620>     /x8e/xa1/xd1/xd0 <CJK>
+ %IRREVERSIBLE%<U6627>     /x8e/xa1/xd1/xd1 <CJK>
+ %IRREVERSIBLE%<U662F>     /x8e/xa1/xd1/xd2 <CJK>
+ %IRREVERSIBLE%<U661F>     /x8e/xa1/xd1/xd3 <CJK>
+ %IRREVERSIBLE%<U6628>     /x8e/xa1/xd1/xd4 <CJK>
+ %IRREVERSIBLE%<U6631>     /x8e/xa1/xd1/xd5 <CJK>
+ %IRREVERSIBLE%<U6624>     /x8e/xa1/xd1/xd6 <CJK>
+ %IRREVERSIBLE%<U66F7>     /x8e/xa1/xd1/xd7 <CJK>
+ %IRREVERSIBLE%<U67FF>     /x8e/xa1/xd1/xd8 <CJK>
+ %IRREVERSIBLE%<U67D3>     /x8e/xa1/xd1/xd9 <CJK>
+ %IRREVERSIBLE%<U67F1>     /x8e/xa1/xd1/xda <CJK>
+ %IRREVERSIBLE%<U67D4>     /x8e/xa1/xd1/xdb <CJK>
+ %IRREVERSIBLE%<U67D0>     /x8e/xa1/xd1/xdc <CJK>
+ %IRREVERSIBLE%<U67EC>     /x8e/xa1/xd1/xdd <CJK>
+ %IRREVERSIBLE%<U67B6>     /x8e/xa1/xd1/xde <CJK>
+ %IRREVERSIBLE%<U67AF>     /x8e/xa1/xd1/xdf <CJK>
+ %IRREVERSIBLE%<U67F5>     /x8e/xa1/xd1/xe0 <CJK>
+ %IRREVERSIBLE%<U67E9>     /x8e/xa1/xd1/xe1 <CJK>
+ %IRREVERSIBLE%<U67EF>     /x8e/xa1/xd1/xe2 <CJK>
+ %IRREVERSIBLE%<U67C4>     /x8e/xa1/xd1/xe3 <CJK>
+ %IRREVERSIBLE%<U67D1>     /x8e/xa1/xd1/xe4 <CJK>
+ %IRREVERSIBLE%<U67B4>     /x8e/xa1/xd1/xe5 <CJK>
+ %IRREVERSIBLE%<U67DA>     /x8e/xa1/xd1/xe6 <CJK>
+ %IRREVERSIBLE%<U67E5>     /x8e/xa1/xd1/xe7 <CJK>
+ %IRREVERSIBLE%<U67B8>     /x8e/xa1/xd1/xe8 <CJK>
+ %IRREVERSIBLE%<U67CF>     /x8e/xa1/xd1/xe9 <CJK>
+ %IRREVERSIBLE%<U67DE>     /x8e/xa1/xd1/xea <CJK>
+ %IRREVERSIBLE%<U67F3>     /x8e/xa1/xd1/xeb <CJK>
+ %IRREVERSIBLE%<U67B0>     /x8e/xa1/xd1/xec <CJK>
+ %IRREVERSIBLE%<U67D9>     /x8e/xa1/xd1/xed <CJK>
+ %IRREVERSIBLE%<U67E2>     /x8e/xa1/xd1/xee <CJK>
+ %IRREVERSIBLE%<U67DD>     /x8e/xa1/xd1/xef <CJK>
+ %IRREVERSIBLE%<U67D2>     /x8e/xa1/xd1/xf0 <CJK>
+ %IRREVERSIBLE%<U6B6A>     /x8e/xa1/xd1/xf1 <CJK>
+ %IRREVERSIBLE%<U6B83>     /x8e/xa1/xd1/xf2 <CJK>
+ %IRREVERSIBLE%<U6B86>     /x8e/xa1/xd1/xf3 <CJK>
+ %IRREVERSIBLE%<U6BB5>     /x8e/xa1/xd1/xf4 <CJK>
+ %IRREVERSIBLE%<U6BD2>     /x8e/xa1/xd1/xf5 <CJK>
+ %IRREVERSIBLE%<U6BD7>     /x8e/xa1/xd1/xf6 <CJK>
+ %IRREVERSIBLE%<U6C1F>     /x8e/xa1/xd1/xf7 <CJK>
+ %IRREVERSIBLE%<U6CC9>     /x8e/xa1/xd1/xf8 <CJK>
+ %IRREVERSIBLE%<U6D0B>     /x8e/xa1/xd1/xf9 <CJK>
+ %IRREVERSIBLE%<U6D32>     /x8e/xa1/xd1/xfa <CJK>
+ %IRREVERSIBLE%<U6D2A>     /x8e/xa1/xd1/xfb <CJK>
+ %IRREVERSIBLE%<U6D41>     /x8e/xa1/xd1/xfc <CJK>
+ %IRREVERSIBLE%<U6D25>     /x8e/xa1/xd1/xfd <CJK>
+ %IRREVERSIBLE%<U6D0C>     /x8e/xa1/xd1/xfe <CJK>
+ %IRREVERSIBLE%<U6D31>     /x8e/xa1/xd2/xa1 <CJK>
+ %IRREVERSIBLE%<U6D1E>     /x8e/xa1/xd2/xa2 <CJK>
+ %IRREVERSIBLE%<U6D17>     /x8e/xa1/xd2/xa3 <CJK>
+ %IRREVERSIBLE%<U6D3B>     /x8e/xa1/xd2/xa4 <CJK>
+ %IRREVERSIBLE%<U6D3D>     /x8e/xa1/xd2/xa5 <CJK>
+ %IRREVERSIBLE%<U6D3E>     /x8e/xa1/xd2/xa6 <CJK>
+ %IRREVERSIBLE%<U6D36>     /x8e/xa1/xd2/xa7 <CJK>
+ %IRREVERSIBLE%<U6D1B>     /x8e/xa1/xd2/xa8 <CJK>
+ %IRREVERSIBLE%<U6CF5>     /x8e/xa1/xd2/xa9 <CJK>
+ %IRREVERSIBLE%<U6D39>     /x8e/xa1/xd2/xaa <CJK>
+ %IRREVERSIBLE%<U6D27>     /x8e/xa1/xd2/xab <CJK>
+ %IRREVERSIBLE%<U6D38>     /x8e/xa1/xd2/xac <CJK>
+ %IRREVERSIBLE%<U6D29>     /x8e/xa1/xd2/xad <CJK>
+ %IRREVERSIBLE%<U6D2E>     /x8e/xa1/xd2/xae <CJK>
+ %IRREVERSIBLE%<U6D35>     /x8e/xa1/xd2/xaf <CJK>
+ %IRREVERSIBLE%<U6D0E>     /x8e/xa1/xd2/xb0 <CJK>
+ %IRREVERSIBLE%<U6D2B>     /x8e/xa1/xd2/xb1 <CJK>
+ %IRREVERSIBLE%<U70AB>     /x8e/xa1/xd2/xb2 <CJK>
+ %IRREVERSIBLE%<U70BA>     /x8e/xa1/xd2/xb3 <CJK>
+ %IRREVERSIBLE%<U70B3>     /x8e/xa1/xd2/xb4 <CJK>
+ %IRREVERSIBLE%<U70AC>     /x8e/xa1/xd2/xb5 <CJK>
+ %IRREVERSIBLE%<U70AF>     /x8e/xa1/xd2/xb6 <CJK>
+ %IRREVERSIBLE%<U70AD>     /x8e/xa1/xd2/xb7 <CJK>
+ %IRREVERSIBLE%<U70B8>     /x8e/xa1/xd2/xb8 <CJK>
+ %IRREVERSIBLE%<U70AE>     /x8e/xa1/xd2/xb9 <CJK>
+ %IRREVERSIBLE%<U70A4>     /x8e/xa1/xd2/xba <CJK>
+ %IRREVERSIBLE%<U7230>     /x8e/xa1/xd2/xbb <CJK>
+ %IRREVERSIBLE%<U7272>     /x8e/xa1/xd2/xbc <CJK>
+ %IRREVERSIBLE%<U726F>     /x8e/xa1/xd2/xbd <CJK>
+ %IRREVERSIBLE%<U7274>     /x8e/xa1/xd2/xbe <CJK>
+ %IRREVERSIBLE%<U72E9>     /x8e/xa1/xd2/xbf <CJK>
+ %IRREVERSIBLE%<U72E0>     /x8e/xa1/xd2/xc0 <CJK>
+ %IRREVERSIBLE%<U72E1>     /x8e/xa1/xd2/xc1 <CJK>
+ %IRREVERSIBLE%<U73B7>     /x8e/xa1/xd2/xc2 <CJK>
+ %IRREVERSIBLE%<U73CA>     /x8e/xa1/xd2/xc3 <CJK>
+ %IRREVERSIBLE%<U73BB>     /x8e/xa1/xd2/xc4 <CJK>
+ %IRREVERSIBLE%<U73B2>     /x8e/xa1/xd2/xc5 <CJK>
+ %IRREVERSIBLE%<U73CD>     /x8e/xa1/xd2/xc6 <CJK>
+ %IRREVERSIBLE%<U73C0>     /x8e/xa1/xd2/xc7 <CJK>
+ %IRREVERSIBLE%<U73B3>     /x8e/xa1/xd2/xc8 <CJK>
+ %IRREVERSIBLE%<U751A>     /x8e/xa1/xd2/xc9 <CJK>
+ %IRREVERSIBLE%<U752D>     /x8e/xa1/xd2/xca <CJK>
+ %IRREVERSIBLE%<U754F>     /x8e/xa1/xd2/xcb <CJK>
+ %IRREVERSIBLE%<U754C>     /x8e/xa1/xd2/xcc <CJK>
+ %IRREVERSIBLE%<U754E>     /x8e/xa1/xd2/xcd <CJK>
+ %IRREVERSIBLE%<U754B>     /x8e/xa1/xd2/xce <CJK>
+ %IRREVERSIBLE%<U75AB>     /x8e/xa1/xd2/xcf <CJK>
+ %IRREVERSIBLE%<U75A4>     /x8e/xa1/xd2/xd0 <CJK>
+ %IRREVERSIBLE%<U75A5>     /x8e/xa1/xd2/xd1 <CJK>
+ %IRREVERSIBLE%<U75A2>     /x8e/xa1/xd2/xd2 <CJK>
+ %IRREVERSIBLE%<U75A3>     /x8e/xa1/xd2/xd3 <CJK>
+ %IRREVERSIBLE%<U7678>     /x8e/xa1/xd2/xd4 <CJK>
+ %IRREVERSIBLE%<U7686>     /x8e/xa1/xd2/xd5 <CJK>
+ %IRREVERSIBLE%<U7687>     /x8e/xa1/xd2/xd6 <CJK>
+ %IRREVERSIBLE%<U7688>     /x8e/xa1/xd2/xd7 <CJK>
+ %IRREVERSIBLE%<U76C8>     /x8e/xa1/xd2/xd8 <CJK>
+ %IRREVERSIBLE%<U76C6>     /x8e/xa1/xd2/xd9 <CJK>
+ %IRREVERSIBLE%<U76C3>     /x8e/xa1/xd2/xda <CJK>
+ %IRREVERSIBLE%<U76C5>     /x8e/xa1/xd2/xdb <CJK>
+ %IRREVERSIBLE%<U7701>     /x8e/xa1/xd2/xdc <CJK>
+ %IRREVERSIBLE%<U76F9>     /x8e/xa1/xd2/xdd <CJK>
+ %IRREVERSIBLE%<U76F8>     /x8e/xa1/xd2/xde <CJK>
+ %IRREVERSIBLE%<U7709>     /x8e/xa1/xd2/xdf <CJK>
+ %IRREVERSIBLE%<U770B>     /x8e/xa1/xd2/xe0 <CJK>
+ %IRREVERSIBLE%<U76FE>     /x8e/xa1/xd2/xe1 <CJK>
+ %IRREVERSIBLE%<U76FC>     /x8e/xa1/xd2/xe2 <CJK>
+ %IRREVERSIBLE%<U7707>     /x8e/xa1/xd2/xe3 <CJK>
+ %IRREVERSIBLE%<U77DC>     /x8e/xa1/xd2/xe4 <CJK>
+ %IRREVERSIBLE%<U7802>     /x8e/xa1/xd2/xe5 <CJK>
+ %IRREVERSIBLE%<U7814>     /x8e/xa1/xd2/xe6 <CJK>
+ %IRREVERSIBLE%<U780C>     /x8e/xa1/xd2/xe7 <CJK>
+ %IRREVERSIBLE%<U780D>     /x8e/xa1/xd2/xe8 <CJK>
+ %IRREVERSIBLE%<U7946>     /x8e/xa1/xd2/xe9 <CJK>
+ %IRREVERSIBLE%<U7949>     /x8e/xa1/xd2/xea <CJK>
+ %IRREVERSIBLE%<U7948>     /x8e/xa1/xd2/xeb <CJK>
+ %IRREVERSIBLE%<U7947>     /x8e/xa1/xd2/xec <CJK>
+ %IRREVERSIBLE%<U79B9>     /x8e/xa1/xd2/xed <CJK>
+ %IRREVERSIBLE%<U79BA>     /x8e/xa1/xd2/xee <CJK>
+ %IRREVERSIBLE%<U79D1>     /x8e/xa1/xd2/xef <CJK>
+ %IRREVERSIBLE%<U79D2>     /x8e/xa1/xd2/xf0 <CJK>
+ %IRREVERSIBLE%<U79CB>     /x8e/xa1/xd2/xf1 <CJK>
+ %IRREVERSIBLE%<U7A7F>     /x8e/xa1/xd2/xf2 <CJK>
+ %IRREVERSIBLE%<U7A81>     /x8e/xa1/xd2/xf3 <CJK>
+ %IRREVERSIBLE%<U7AFF>     /x8e/xa1/xd2/xf4 <CJK>
+ %IRREVERSIBLE%<U7AFD>     /x8e/xa1/xd2/xf5 <CJK>
+ %IRREVERSIBLE%<U7C7D>     /x8e/xa1/xd2/xf6 <CJK>
+ %IRREVERSIBLE%<U7D02>     /x8e/xa1/xd2/xf7 <CJK>
+ %IRREVERSIBLE%<U7D05>     /x8e/xa1/xd2/xf8 <CJK>
+ %IRREVERSIBLE%<U7D00>     /x8e/xa1/xd2/xf9 <CJK>
+ %IRREVERSIBLE%<U7D09>     /x8e/xa1/xd2/xfa <CJK>
+ %IRREVERSIBLE%<U7D07>     /x8e/xa1/xd2/xfb <CJK>
+ %IRREVERSIBLE%<U7D04>     /x8e/xa1/xd2/xfc <CJK>
+ %IRREVERSIBLE%<U7D06>     /x8e/xa1/xd2/xfd <CJK>
+ %IRREVERSIBLE%<U7F38>     /x8e/xa1/xd2/xfe <CJK>
+ %IRREVERSIBLE%<U7F8E>     /x8e/xa1/xd3/xa1 <CJK>
+ %IRREVERSIBLE%<U7FBF>     /x8e/xa1/xd3/xa2 <CJK>
+ %IRREVERSIBLE%<U8010>     /x8e/xa1/xd3/xa3 <CJK>
+ %IRREVERSIBLE%<U800D>     /x8e/xa1/xd3/xa4 <CJK>
+ %IRREVERSIBLE%<U8011>     /x8e/xa1/xd3/xa5 <CJK>
+ %IRREVERSIBLE%<U8036>     /x8e/xa1/xd3/xa6 <CJK>
+ %IRREVERSIBLE%<U80D6>     /x8e/xa1/xd3/xa7 <CJK>
+ %IRREVERSIBLE%<U80E5>     /x8e/xa1/xd3/xa8 <CJK>
+ %IRREVERSIBLE%<U80DA>     /x8e/xa1/xd3/xa9 <CJK>
+ %IRREVERSIBLE%<U80C3>     /x8e/xa1/xd3/xaa <CJK>
+ %IRREVERSIBLE%<U80C4>     /x8e/xa1/xd3/xab <CJK>
+ %IRREVERSIBLE%<U80CC>     /x8e/xa1/xd3/xac <CJK>
+ %IRREVERSIBLE%<U80E1>     /x8e/xa1/xd3/xad <CJK>
+ %IRREVERSIBLE%<U80DB>     /x8e/xa1/xd3/xae <CJK>
+ %IRREVERSIBLE%<U80CE>     /x8e/xa1/xd3/xaf <CJK>
+ %IRREVERSIBLE%<U80DE>     /x8e/xa1/xd3/xb0 <CJK>
+ %IRREVERSIBLE%<U80E4>     /x8e/xa1/xd3/xb1 <CJK>
+ %IRREVERSIBLE%<U80DD>     /x8e/xa1/xd3/xb2 <CJK>
+ %IRREVERSIBLE%<U81F4>     /x8e/xa1/xd3/xb3 <CJK>
+ %IRREVERSIBLE%<U8222>     /x8e/xa1/xd3/xb4 <CJK>
+ %IRREVERSIBLE%<U82E7>     /x8e/xa1/xd3/xb5 <CJK>
+ %IRREVERSIBLE%<U8303>     /x8e/xa1/xd3/xb6 <CJK>
+ %IRREVERSIBLE%<U8305>     /x8e/xa1/xd3/xb7 <CJK>
+ %IRREVERSIBLE%<U82E3>     /x8e/xa1/xd3/xb8 <CJK>
+ %IRREVERSIBLE%<U82DB>     /x8e/xa1/xd3/xb9 <CJK>
+ %IRREVERSIBLE%<U82E6>     /x8e/xa1/xd3/xba <CJK>
+ %IRREVERSIBLE%<U8304>     /x8e/xa1/xd3/xbb <CJK>
+ %IRREVERSIBLE%<U82E5>     /x8e/xa1/xd3/xbc <CJK>
+ %IRREVERSIBLE%<U8302>     /x8e/xa1/xd3/xbd <CJK>
+ %IRREVERSIBLE%<U8309>     /x8e/xa1/xd3/xbe <CJK>
+ %IRREVERSIBLE%<U82D2>     /x8e/xa1/xd3/xbf <CJK>
+ %IRREVERSIBLE%<U82D7>     /x8e/xa1/xd3/xc0 <CJK>
+ %IRREVERSIBLE%<U82F1>     /x8e/xa1/xd3/xc1 <CJK>
+ %IRREVERSIBLE%<U8301>     /x8e/xa1/xd3/xc2 <CJK>
+ %IRREVERSIBLE%<U82DC>     /x8e/xa1/xd3/xc3 <CJK>
+ %IRREVERSIBLE%<U82D4>     /x8e/xa1/xd3/xc4 <CJK>
+ %IRREVERSIBLE%<U82D1>     /x8e/xa1/xd3/xc5 <CJK>
+ %IRREVERSIBLE%<U82DE>     /x8e/xa1/xd3/xc6 <CJK>
+ %IRREVERSIBLE%<U82D3>     /x8e/xa1/xd3/xc7 <CJK>
+ %IRREVERSIBLE%<U82DF>     /x8e/xa1/xd3/xc8 <CJK>
+ %IRREVERSIBLE%<U82EF>     /x8e/xa1/xd3/xc9 <CJK>
+ %IRREVERSIBLE%<U8306>     /x8e/xa1/xd3/xca <CJK>
+ %IRREVERSIBLE%<U8650>     /x8e/xa1/xd3/xcb <CJK>
+ %IRREVERSIBLE%<U8679>     /x8e/xa1/xd3/xcc <CJK>
+ %IRREVERSIBLE%<U867B>     /x8e/xa1/xd3/xcd <CJK>
+ %IRREVERSIBLE%<U867A>     /x8e/xa1/xd3/xce <CJK>
+ %IRREVERSIBLE%<U884D>     /x8e/xa1/xd3/xcf <CJK>
+ %IRREVERSIBLE%<U886B>     /x8e/xa1/xd3/xd0 <CJK>
+ %IRREVERSIBLE%<U8981>     /x8e/xa1/xd3/xd1 <CJK>
+ %IRREVERSIBLE%<U89D4>     /x8e/xa1/xd3/xd2 <CJK>
+ %IRREVERSIBLE%<U8A08>     /x8e/xa1/xd3/xd3 <CJK>
+ %IRREVERSIBLE%<U8A02>     /x8e/xa1/xd3/xd4 <CJK>
+ %IRREVERSIBLE%<U8A03>     /x8e/xa1/xd3/xd5 <CJK>
+ %IRREVERSIBLE%<U8C9E>     /x8e/xa1/xd3/xd6 <CJK>
+ %IRREVERSIBLE%<U8CA0>     /x8e/xa1/xd3/xd7 <CJK>
+ %IRREVERSIBLE%<U8D74>     /x8e/xa1/xd3/xd8 <CJK>
+ %IRREVERSIBLE%<U8D73>     /x8e/xa1/xd3/xd9 <CJK>
+ %IRREVERSIBLE%<U8DB4>     /x8e/xa1/xd3/xda <CJK>
+ %IRREVERSIBLE%<U8ECD>     /x8e/xa1/xd3/xdb <CJK>
+ %IRREVERSIBLE%<U8ECC>     /x8e/xa1/xd3/xdc <CJK>
+ %IRREVERSIBLE%<U8FF0>     /x8e/xa1/xd3/xdd <CJK>
+ %IRREVERSIBLE%<U8FE6>     /x8e/xa1/xd3/xde <CJK>
+ %IRREVERSIBLE%<U8FE2>     /x8e/xa1/xd3/xdf <CJK>
+ %IRREVERSIBLE%<U8FEA>     /x8e/xa1/xd3/xe0 <CJK>
+ %IRREVERSIBLE%<U8FE5>     /x8e/xa1/xd3/xe1 <CJK>
+ %IRREVERSIBLE%<U8FED>     /x8e/xa1/xd3/xe2 <CJK>
+ %IRREVERSIBLE%<U8FEB>     /x8e/xa1/xd3/xe3 <CJK>
+ %IRREVERSIBLE%<U8FE4>     /x8e/xa1/xd3/xe4 <CJK>
+ %IRREVERSIBLE%<U8FE8>     /x8e/xa1/xd3/xe5 <CJK>
+ %IRREVERSIBLE%<U90CA>     /x8e/xa1/xd3/xe6 <CJK>
+ %IRREVERSIBLE%<U90CE>     /x8e/xa1/xd3/xe7 <CJK>
+ %IRREVERSIBLE%<U90C1>     /x8e/xa1/xd3/xe8 <CJK>
+ %IRREVERSIBLE%<U90C3>     /x8e/xa1/xd3/xe9 <CJK>
+ %IRREVERSIBLE%<U914B>     /x8e/xa1/xd3/xea <CJK>
+ %IRREVERSIBLE%<U914A>     /x8e/xa1/xd3/xeb <CJK>
+ %IRREVERSIBLE%<U91CD>     /x8e/xa1/xd3/xec <CJK>
+ %IRREVERSIBLE%<U9582>     /x8e/xa1/xd3/xed <CJK>
+ %IRREVERSIBLE%<U9650>     /x8e/xa1/xd3/xee <CJK>
+ %IRREVERSIBLE%<U964B>     /x8e/xa1/xd3/xef <CJK>
+ %IRREVERSIBLE%<U964C>     /x8e/xa1/xd3/xf0 <CJK>
+ %IRREVERSIBLE%<U964D>     /x8e/xa1/xd3/xf1 <CJK>
+ %IRREVERSIBLE%<U9762>     /x8e/xa1/xd3/xf2 <CJK>
+ %IRREVERSIBLE%<U9769>     /x8e/xa1/xd3/xf3 <CJK>
+ %IRREVERSIBLE%<U97CB>     /x8e/xa1/xd3/xf4 <CJK>
+ %IRREVERSIBLE%<U97ED>     /x8e/xa1/xd3/xf5 <CJK>
+ %IRREVERSIBLE%<U97F3>     /x8e/xa1/xd3/xf6 <CJK>
+ %IRREVERSIBLE%<U9801>     /x8e/xa1/xd3/xf7 <CJK>
+ %IRREVERSIBLE%<U98A8>     /x8e/xa1/xd3/xf8 <CJK>
+ %IRREVERSIBLE%<U98DB>     /x8e/xa1/xd3/xf9 <CJK>
+ %IRREVERSIBLE%<U98DF>     /x8e/xa1/xd3/xfa <CJK>
+ %IRREVERSIBLE%<U9996>     /x8e/xa1/xd3/xfb <CJK>
+ %IRREVERSIBLE%<U9999>     /x8e/xa1/xd3/xfc <CJK>
+ %IRREVERSIBLE%<U4E58>     /x8e/xa1/xd3/xfd <CJK>
+ %IRREVERSIBLE%<U4EB3>     /x8e/xa1/xd3/xfe <CJK>
+ %IRREVERSIBLE%<U500C>     /x8e/xa1/xd4/xa1 <CJK>
+ %IRREVERSIBLE%<U500D>     /x8e/xa1/xd4/xa2 <CJK>
+ %IRREVERSIBLE%<U5023>     /x8e/xa1/xd4/xa3 <CJK>
+ %IRREVERSIBLE%<U4FEF>     /x8e/xa1/xd4/xa4 <CJK>
+ %IRREVERSIBLE%<U5026>     /x8e/xa1/xd4/xa5 <CJK>
+ %IRREVERSIBLE%<U5025>     /x8e/xa1/xd4/xa6 <CJK>
+ %IRREVERSIBLE%<U4FF8>     /x8e/xa1/xd4/xa7 <CJK>
+ %IRREVERSIBLE%<U5029>     /x8e/xa1/xd4/xa8 <CJK>
+ %IRREVERSIBLE%<U5016>     /x8e/xa1/xd4/xa9 <CJK>
+ %IRREVERSIBLE%<U5006>     /x8e/xa1/xd4/xaa <CJK>
+ %IRREVERSIBLE%<U503C>     /x8e/xa1/xd4/xab <CJK>
+ %IRREVERSIBLE%<U501F>     /x8e/xa1/xd4/xac <CJK>
+ %IRREVERSIBLE%<U501A>     /x8e/xa1/xd4/xad <CJK>
+ %IRREVERSIBLE%<U5012>     /x8e/xa1/xd4/xae <CJK>
+ %IRREVERSIBLE%<U5011>     /x8e/xa1/xd4/xaf <CJK>
+ %IRREVERSIBLE%<U4FFA>     /x8e/xa1/xd4/xb0 <CJK>
+ %IRREVERSIBLE%<U5000>     /x8e/xa1/xd4/xb1 <CJK>
+ %IRREVERSIBLE%<U5014>     /x8e/xa1/xd4/xb2 <CJK>
+ %IRREVERSIBLE%<U5028>     /x8e/xa1/xd4/xb3 <CJK>
+ %IRREVERSIBLE%<U4FF1>     /x8e/xa1/xd4/xb4 <CJK>
+ %IRREVERSIBLE%<U5021>     /x8e/xa1/xd4/xb5 <CJK>
+ %IRREVERSIBLE%<U500B>     /x8e/xa1/xd4/xb6 <CJK>
+ %IRREVERSIBLE%<U5019>     /x8e/xa1/xd4/xb7 <CJK>
+ %IRREVERSIBLE%<U5018>     /x8e/xa1/xd4/xb8 <CJK>
+ %IRREVERSIBLE%<U4FF3>     /x8e/xa1/xd4/xb9 <CJK>
+ %IRREVERSIBLE%<U4FEE>     /x8e/xa1/xd4/xba <CJK>
+ %IRREVERSIBLE%<U502D>     /x8e/xa1/xd4/xbb <CJK>
+ %IRREVERSIBLE%<U502A>     /x8e/xa1/xd4/xbc <CJK>
+ %IRREVERSIBLE%<U4FFE>     /x8e/xa1/xd4/xbd <CJK>
+ %IRREVERSIBLE%<U502B>     /x8e/xa1/xd4/xbe <CJK>
+ %IRREVERSIBLE%<U5009>     /x8e/xa1/xd4/xbf <CJK>
+ %IRREVERSIBLE%<U517C>     /x8e/xa1/xd4/xc0 <CJK>
+ %IRREVERSIBLE%<U51A4>     /x8e/xa1/xd4/xc1 <CJK>
+ %IRREVERSIBLE%<U51A5>     /x8e/xa1/xd4/xc2 <CJK>
+ %IRREVERSIBLE%<U51A2>     /x8e/xa1/xd4/xc3 <CJK>
+ %IRREVERSIBLE%<U51CD>     /x8e/xa1/xd4/xc4 <CJK>
+ %IRREVERSIBLE%<U51CC>     /x8e/xa1/xd4/xc5 <CJK>
+ %IRREVERSIBLE%<U51C6>     /x8e/xa1/xd4/xc6 <CJK>
+ %IRREVERSIBLE%<U51CB>     /x8e/xa1/xd4/xc7 <CJK>
+ %IRREVERSIBLE%<U5256>     /x8e/xa1/xd4/xc8 <CJK>
+ %IRREVERSIBLE%<U525C>     /x8e/xa1/xd4/xc9 <CJK>
+ %IRREVERSIBLE%<U5254>     /x8e/xa1/xd4/xca <CJK>
+ %IRREVERSIBLE%<U525B>     /x8e/xa1/xd4/xcb <CJK>
+ %IRREVERSIBLE%<U525D>     /x8e/xa1/xd4/xcc <CJK>
+ %IRREVERSIBLE%<U532A>     /x8e/xa1/xd4/xcd <CJK>
+ %IRREVERSIBLE%<U537F>     /x8e/xa1/xd4/xce <CJK>
+ %IRREVERSIBLE%<U539F>     /x8e/xa1/xd4/xcf <CJK>
+ %IRREVERSIBLE%<U539D>     /x8e/xa1/xd4/xd0 <CJK>
+ %IRREVERSIBLE%<U53DF>     /x8e/xa1/xd4/xd1 <CJK>
+ %IRREVERSIBLE%<U54E8>     /x8e/xa1/xd4/xd2 <CJK>
+ %IRREVERSIBLE%<U5510>     /x8e/xa1/xd4/xd3 <CJK>
+ %IRREVERSIBLE%<U5501>     /x8e/xa1/xd4/xd4 <CJK>
+ %IRREVERSIBLE%<U5537>     /x8e/xa1/xd4/xd5 <CJK>
+ %IRREVERSIBLE%<U54FC>     /x8e/xa1/xd4/xd6 <CJK>
+ %IRREVERSIBLE%<U54E5>     /x8e/xa1/xd4/xd7 <CJK>
+ %IRREVERSIBLE%<U54F2>     /x8e/xa1/xd4/xd8 <CJK>
+ %IRREVERSIBLE%<U5506>     /x8e/xa1/xd4/xd9 <CJK>
+ %IRREVERSIBLE%<U54FA>     /x8e/xa1/xd4/xda <CJK>
+ %IRREVERSIBLE%<U5514>     /x8e/xa1/xd4/xdb <CJK>
+ %IRREVERSIBLE%<U54E9>     /x8e/xa1/xd4/xdc <CJK>
+ %IRREVERSIBLE%<U54ED>     /x8e/xa1/xd4/xdd <CJK>
+ %IRREVERSIBLE%<U54E1>     /x8e/xa1/xd4/xde <CJK>
+ %IRREVERSIBLE%<U5509>     /x8e/xa1/xd4/xdf <CJK>
+ %IRREVERSIBLE%<U54EE>     /x8e/xa1/xd4/xe0 <CJK>
+ %IRREVERSIBLE%<U54EA>     /x8e/xa1/xd4/xe1 <CJK>
+ %IRREVERSIBLE%<U54E6>     /x8e/xa1/xd4/xe2 <CJK>
+ %IRREVERSIBLE%<U5527>     /x8e/xa1/xd4/xe3 <CJK>
+ %IRREVERSIBLE%<U5507>     /x8e/xa1/xd4/xe4 <CJK>
+ %IRREVERSIBLE%<U54FD>     /x8e/xa1/xd4/xe5 <CJK>
+ %IRREVERSIBLE%<U550F>     /x8e/xa1/xd4/xe6 <CJK>
+ %IRREVERSIBLE%<U5703>     /x8e/xa1/xd4/xe7 <CJK>
+ %IRREVERSIBLE%<U5704>     /x8e/xa1/xd4/xe8 <CJK>
+ %IRREVERSIBLE%<U57C2>     /x8e/xa1/xd4/xe9 <CJK>
+ %IRREVERSIBLE%<U57D4>     /x8e/xa1/xd4/xea <CJK>
+ %IRREVERSIBLE%<U57CB>     /x8e/xa1/xd4/xeb <CJK>
+ %IRREVERSIBLE%<U57C3>     /x8e/xa1/xd4/xec <CJK>
+ %IRREVERSIBLE%<U5809>     /x8e/xa1/xd4/xed <CJK>
+ %IRREVERSIBLE%<U590F>     /x8e/xa1/xd4/xee <CJK>
+ %IRREVERSIBLE%<U5957>     /x8e/xa1/xd4/xef <CJK>
+ %IRREVERSIBLE%<U5958>     /x8e/xa1/xd4/xf0 <CJK>
+ %IRREVERSIBLE%<U595A>     /x8e/xa1/xd4/xf1 <CJK>
+ %IRREVERSIBLE%<U5A11>     /x8e/xa1/xd4/xf2 <CJK>
+ %IRREVERSIBLE%<U5A18>     /x8e/xa1/xd4/xf3 <CJK>
+ %IRREVERSIBLE%<U5A1C>     /x8e/xa1/xd4/xf4 <CJK>
+ %IRREVERSIBLE%<U5A1F>     /x8e/xa1/xd4/xf5 <CJK>
+ %IRREVERSIBLE%<U5A1B>     /x8e/xa1/xd4/xf6 <CJK>
+ %IRREVERSIBLE%<U5A13>     /x8e/xa1/xd4/xf7 <CJK>
+ %IRREVERSIBLE%<U59EC>     /x8e/xa1/xd4/xf8 <CJK>
+ %IRREVERSIBLE%<U5A20>     /x8e/xa1/xd4/xf9 <CJK>
+ %IRREVERSIBLE%<U5A23>     /x8e/xa1/xd4/xfa <CJK>
+ %IRREVERSIBLE%<U5A29>     /x8e/xa1/xd4/xfb <CJK>
+ %IRREVERSIBLE%<U5A25>     /x8e/xa1/xd4/xfc <CJK>
+ %IRREVERSIBLE%<U5A0C>     /x8e/xa1/xd4/xfd <CJK>
+ %IRREVERSIBLE%<U5A09>     /x8e/xa1/xd4/xfe <CJK>
+ %IRREVERSIBLE%<U5B6B>     /x8e/xa1/xd5/xa1 <CJK>
+ %IRREVERSIBLE%<U5C58>     /x8e/xa1/xd5/xa2 <CJK>
+ %IRREVERSIBLE%<U5BB0>     /x8e/xa1/xd5/xa3 <CJK>
+ %IRREVERSIBLE%<U5BB3>     /x8e/xa1/xd5/xa4 <CJK>
+ %IRREVERSIBLE%<U5BB6>     /x8e/xa1/xd5/xa5 <CJK>
+ %IRREVERSIBLE%<U5BB4>     /x8e/xa1/xd5/xa6 <CJK>
+ %IRREVERSIBLE%<U5BAE>     /x8e/xa1/xd5/xa7 <CJK>
+ %IRREVERSIBLE%<U5BB5>     /x8e/xa1/xd5/xa8 <CJK>
+ %IRREVERSIBLE%<U5BB9>     /x8e/xa1/xd5/xa9 <CJK>
+ %IRREVERSIBLE%<U5BB8>     /x8e/xa1/xd5/xaa <CJK>
+ %IRREVERSIBLE%<U5C04>     /x8e/xa1/xd5/xab <CJK>
+ %IRREVERSIBLE%<U5C51>     /x8e/xa1/xd5/xac <CJK>
+ %IRREVERSIBLE%<U5C55>     /x8e/xa1/xd5/xad <CJK>
+ %IRREVERSIBLE%<U5C50>     /x8e/xa1/xd5/xae <CJK>
+ %IRREVERSIBLE%<U5CED>     /x8e/xa1/xd5/xaf <CJK>
+ %IRREVERSIBLE%<U5CFD>     /x8e/xa1/xd5/xb0 <CJK>
+ %IRREVERSIBLE%<U5CFB>     /x8e/xa1/xd5/xb1 <CJK>
+ %IRREVERSIBLE%<U5CEA>     /x8e/xa1/xd5/xb2 <CJK>
+ %IRREVERSIBLE%<U5CE8>     /x8e/xa1/xd5/xb3 <CJK>
+ %IRREVERSIBLE%<U5CF0>     /x8e/xa1/xd5/xb4 <CJK>
+ %IRREVERSIBLE%<U5CF6>     /x8e/xa1/xd5/xb5 <CJK>
+ %IRREVERSIBLE%<U5D01>     /x8e/xa1/xd5/xb6 <CJK>
+ %IRREVERSIBLE%<U5CF4>     /x8e/xa1/xd5/xb7 <CJK>
+ %IRREVERSIBLE%<U5DEE>     /x8e/xa1/xd5/xb8 <CJK>
+ %IRREVERSIBLE%<U5E2D>     /x8e/xa1/xd5/xb9 <CJK>
+ %IRREVERSIBLE%<U5E2B>     /x8e/xa1/xd5/xba <CJK>
+ %IRREVERSIBLE%<U5EAB>     /x8e/xa1/xd5/xbb <CJK>
+ %IRREVERSIBLE%<U5EAD>     /x8e/xa1/xd5/xbc <CJK>
+ %IRREVERSIBLE%<U5EA7>     /x8e/xa1/xd5/xbd <CJK>
+ %IRREVERSIBLE%<U5F31>     /x8e/xa1/xd5/xbe <CJK>
+ %IRREVERSIBLE%<U5F92>     /x8e/xa1/xd5/xbf <CJK>
+ %IRREVERSIBLE%<U5F91>     /x8e/xa1/xd5/xc0 <CJK>
+ %IRREVERSIBLE%<U5F90>     /x8e/xa1/xd5/xc1 <CJK>
+ %IRREVERSIBLE%<U6059>     /x8e/xa1/xd5/xc2 <CJK>
+ %IRREVERSIBLE%<U6063>     /x8e/xa1/xd5/xc3 <CJK>
+ %IRREVERSIBLE%<U6065>     /x8e/xa1/xd5/xc4 <CJK>
+ %IRREVERSIBLE%<U6050>     /x8e/xa1/xd5/xc5 <CJK>
+ %IRREVERSIBLE%<U6055>     /x8e/xa1/xd5/xc6 <CJK>
+ %IRREVERSIBLE%<U606D>     /x8e/xa1/xd5/xc7 <CJK>
+ %IRREVERSIBLE%<U6069>     /x8e/xa1/xd5/xc8 <CJK>
+ %IRREVERSIBLE%<U606F>     /x8e/xa1/xd5/xc9 <CJK>
+ %IRREVERSIBLE%<U6084>     /x8e/xa1/xd5/xca <CJK>
+ %IRREVERSIBLE%<U609F>     /x8e/xa1/xd5/xcb <CJK>
+ %IRREVERSIBLE%<U609A>     /x8e/xa1/xd5/xcc <CJK>
+ %IRREVERSIBLE%<U608D>     /x8e/xa1/xd5/xcd <CJK>
+ %IRREVERSIBLE%<U6094>     /x8e/xa1/xd5/xce <CJK>
+ %IRREVERSIBLE%<U608C>     /x8e/xa1/xd5/xcf <CJK>
+ %IRREVERSIBLE%<U6085>     /x8e/xa1/xd5/xd0 <CJK>
+ %IRREVERSIBLE%<U6096>     /x8e/xa1/xd5/xd1 <CJK>
+ %IRREVERSIBLE%<U6247>     /x8e/xa1/xd5/xd2 <CJK>
+ %IRREVERSIBLE%<U62F3>     /x8e/xa1/xd5/xd3 <CJK>
+ %IRREVERSIBLE%<U6308>     /x8e/xa1/xd5/xd4 <CJK>
+ %IRREVERSIBLE%<U62FF>     /x8e/xa1/xd5/xd5 <CJK>
+ %IRREVERSIBLE%<U634E>     /x8e/xa1/xd5/xd6 <CJK>
+ %IRREVERSIBLE%<U633E>     /x8e/xa1/xd5/xd7 <CJK>
+ %IRREVERSIBLE%<U632F>     /x8e/xa1/xd5/xd8 <CJK>
+ %IRREVERSIBLE%<U6355>     /x8e/xa1/xd5/xd9 <CJK>
+ %IRREVERSIBLE%<U6342>     /x8e/xa1/xd5/xda <CJK>
+ %IRREVERSIBLE%<U6346>     /x8e/xa1/xd5/xdb <CJK>
+ %IRREVERSIBLE%<U634F>     /x8e/xa1/xd5/xdc <CJK>
+ %IRREVERSIBLE%<U6349>     /x8e/xa1/xd5/xdd <CJK>
+ %IRREVERSIBLE%<U633A>     /x8e/xa1/xd5/xde <CJK>
+ %IRREVERSIBLE%<U6350>     /x8e/xa1/xd5/xdf <CJK>
+ %IRREVERSIBLE%<U633D>     /x8e/xa1/xd5/xe0 <CJK>
+ %IRREVERSIBLE%<U632A>     /x8e/xa1/xd5/xe1 <CJK>
+ %IRREVERSIBLE%<U632B>     /x8e/xa1/xd5/xe2 <CJK>
+ %IRREVERSIBLE%<U6328>     /x8e/xa1/xd5/xe3 <CJK>
+ %IRREVERSIBLE%<U634D>     /x8e/xa1/xd5/xe4 <CJK>
+ %IRREVERSIBLE%<U634C>     /x8e/xa1/xd5/xe5 <CJK>
+ %IRREVERSIBLE%<U6548>     /x8e/xa1/xd5/xe6 <CJK>
+ %IRREVERSIBLE%<U6549>     /x8e/xa1/xd5/xe7 <CJK>
+ %IRREVERSIBLE%<U6599>     /x8e/xa1/xd5/xe8 <CJK>
+ %IRREVERSIBLE%<U65C1>     /x8e/xa1/xd5/xe9 <CJK>
+ %IRREVERSIBLE%<U65C5>     /x8e/xa1/xd5/xea <CJK>
+ %IRREVERSIBLE%<U6642>     /x8e/xa1/xd5/xeb <CJK>
+ %IRREVERSIBLE%<U6649>     /x8e/xa1/xd5/xec <CJK>
+ %IRREVERSIBLE%<U664F>     /x8e/xa1/xd5/xed <CJK>
+ %IRREVERSIBLE%<U6643>     /x8e/xa1/xd5/xee <CJK>
+ %IRREVERSIBLE%<U6652>     /x8e/xa1/xd5/xef <CJK>
+ %IRREVERSIBLE%<U664C>     /x8e/xa1/xd5/xf0 <CJK>
+ %IRREVERSIBLE%<U6645>     /x8e/xa1/xd5/xf1 <CJK>
+ %IRREVERSIBLE%<U6641>     /x8e/xa1/xd5/xf2 <CJK>
+ %IRREVERSIBLE%<U66F8>     /x8e/xa1/xd5/xf3 <CJK>
+ %IRREVERSIBLE%<U6714>     /x8e/xa1/xd5/xf4 <CJK>
+ %IRREVERSIBLE%<U6715>     /x8e/xa1/xd5/xf5 <CJK>
+ %IRREVERSIBLE%<U6717>     /x8e/xa1/xd5/xf6 <CJK>
+ %IRREVERSIBLE%<U6821>     /x8e/xa1/xd5/xf7 <CJK>
+ %IRREVERSIBLE%<U6838>     /x8e/xa1/xd5/xf8 <CJK>
+ %IRREVERSIBLE%<U6848>     /x8e/xa1/xd5/xf9 <CJK>
+ %IRREVERSIBLE%<U6846>     /x8e/xa1/xd5/xfa <CJK>
+ %IRREVERSIBLE%<U6853>     /x8e/xa1/xd5/xfb <CJK>
+ %IRREVERSIBLE%<U6839>     /x8e/xa1/xd5/xfc <CJK>
+ %IRREVERSIBLE%<U6842>     /x8e/xa1/xd5/xfd <CJK>
+ %IRREVERSIBLE%<U6854>     /x8e/xa1/xd5/xfe <CJK>
+ %IRREVERSIBLE%<U6829>     /x8e/xa1/xd6/xa1 <CJK>
+ %IRREVERSIBLE%<U68B3>     /x8e/xa1/xd6/xa2 <CJK>
+ %IRREVERSIBLE%<U6817>     /x8e/xa1/xd6/xa3 <CJK>
+ %IRREVERSIBLE%<U684C>     /x8e/xa1/xd6/xa4 <CJK>
+ %IRREVERSIBLE%<U6851>     /x8e/xa1/xd6/xa5 <CJK>
+ %IRREVERSIBLE%<U683D>     /x8e/xa1/xd6/xa6 <CJK>
+ %IRREVERSIBLE%<U67F4>     /x8e/xa1/xd6/xa7 <CJK>
+ %IRREVERSIBLE%<U6850>     /x8e/xa1/xd6/xa8 <CJK>
+ %IRREVERSIBLE%<U6840>     /x8e/xa1/xd6/xa9 <CJK>
+ %IRREVERSIBLE%<U683C>     /x8e/xa1/xd6/xaa <CJK>
+ %IRREVERSIBLE%<U6843>     /x8e/xa1/xd6/xab <CJK>
+ %IRREVERSIBLE%<U682A>     /x8e/xa1/xd6/xac <CJK>
+ %IRREVERSIBLE%<U6845>     /x8e/xa1/xd6/xad <CJK>
+ %IRREVERSIBLE%<U6813>     /x8e/xa1/xd6/xae <CJK>
+ %IRREVERSIBLE%<U6818>     /x8e/xa1/xd6/xaf <CJK>
+ %IRREVERSIBLE%<U6841>     /x8e/xa1/xd6/xb0 <CJK>
+ %IRREVERSIBLE%<U6B8A>     /x8e/xa1/xd6/xb1 <CJK>
+ %IRREVERSIBLE%<U6B89>     /x8e/xa1/xd6/xb2 <CJK>
+ %IRREVERSIBLE%<U6BB7>     /x8e/xa1/xd6/xb3 <CJK>
+ %IRREVERSIBLE%<U6C23>     /x8e/xa1/xd6/xb4 <CJK>
+ %IRREVERSIBLE%<U6C27>     /x8e/xa1/xd6/xb5 <CJK>
+ %IRREVERSIBLE%<U6C28>     /x8e/xa1/xd6/xb6 <CJK>
+ %IRREVERSIBLE%<U6C26>     /x8e/xa1/xd6/xb7 <CJK>
+ %IRREVERSIBLE%<U6C24>     /x8e/xa1/xd6/xb8 <CJK>
+ %IRREVERSIBLE%<U6CF0>     /x8e/xa1/xd6/xb9 <CJK>
+ %IRREVERSIBLE%<U6D6A>     /x8e/xa1/xd6/xba <CJK>
+ %IRREVERSIBLE%<U6D95>     /x8e/xa1/xd6/xbb <CJK>
+ %IRREVERSIBLE%<U6D88>     /x8e/xa1/xd6/xbc <CJK>
+ %IRREVERSIBLE%<U6D87>     /x8e/xa1/xd6/xbd <CJK>
+ %IRREVERSIBLE%<U6D66>     /x8e/xa1/xd6/xbe <CJK>
+ %IRREVERSIBLE%<U6D78>     /x8e/xa1/xd6/xbf <CJK>
+ %IRREVERSIBLE%<U6D77>     /x8e/xa1/xd6/xc0 <CJK>
+ %IRREVERSIBLE%<U6D59>     /x8e/xa1/xd6/xc1 <CJK>
+ %IRREVERSIBLE%<U6D93>     /x8e/xa1/xd6/xc2 <CJK>
+ %IRREVERSIBLE%<U6D6C>     /x8e/xa1/xd6/xc3 <CJK>
+ %IRREVERSIBLE%<U6D89>     /x8e/xa1/xd6/xc4 <CJK>
+ %IRREVERSIBLE%<U6D6E>     /x8e/xa1/xd6/xc5 <CJK>
+ %IRREVERSIBLE%<U6D5A>     /x8e/xa1/xd6/xc6 <CJK>
+ %IRREVERSIBLE%<U6D74>     /x8e/xa1/xd6/xc7 <CJK>
+ %IRREVERSIBLE%<U6D69>     /x8e/xa1/xd6/xc8 <CJK>
+ %IRREVERSIBLE%<U6D8C>     /x8e/xa1/xd6/xc9 <CJK>
+ %IRREVERSIBLE%<U6D8A>     /x8e/xa1/xd6/xca <CJK>
+ %IRREVERSIBLE%<U6D79>     /x8e/xa1/xd6/xcb <CJK>
+ %IRREVERSIBLE%<U6D85>     /x8e/xa1/xd6/xcc <CJK>
+ %IRREVERSIBLE%<U6D65>     /x8e/xa1/xd6/xcd <CJK>
+ %IRREVERSIBLE%<U6D94>     /x8e/xa1/xd6/xce <CJK>
+ %IRREVERSIBLE%<U70CA>     /x8e/xa1/xd6/xcf <CJK>
+ %IRREVERSIBLE%<U70D8>     /x8e/xa1/xd6/xd0 <CJK>
+ %IRREVERSIBLE%<U70E4>     /x8e/xa1/xd6/xd1 <CJK>
+ %IRREVERSIBLE%<U70D9>     /x8e/xa1/xd6/xd2 <CJK>
+ %IRREVERSIBLE%<U70C8>     /x8e/xa1/xd6/xd3 <CJK>
+ %IRREVERSIBLE%<U70CF>     /x8e/xa1/xd6/xd4 <CJK>
+ %IRREVERSIBLE%<U7239>     /x8e/xa1/xd6/xd5 <CJK>
+ %IRREVERSIBLE%<U7279>     /x8e/xa1/xd6/xd6 <CJK>
+ %IRREVERSIBLE%<U72FC>     /x8e/xa1/xd6/xd7 <CJK>
+ %IRREVERSIBLE%<U72F9>     /x8e/xa1/xd6/xd8 <CJK>
+ %IRREVERSIBLE%<U72FD>     /x8e/xa1/xd6/xd9 <CJK>
+ %IRREVERSIBLE%<U72F8>     /x8e/xa1/xd6/xda <CJK>
+ %IRREVERSIBLE%<U72F7>     /x8e/xa1/xd6/xdb <CJK>
+ %IRREVERSIBLE%<U7386>     /x8e/xa1/xd6/xdc <CJK>
+ %IRREVERSIBLE%<U73ED>     /x8e/xa1/xd6/xdd <CJK>
+ %IRREVERSIBLE%<U7409>     /x8e/xa1/xd6/xde <CJK>
+ %IRREVERSIBLE%<U73EE>     /x8e/xa1/xd6/xdf <CJK>
+ %IRREVERSIBLE%<U73E0>     /x8e/xa1/xd6/xe0 <CJK>
+ %IRREVERSIBLE%<U73EA>     /x8e/xa1/xd6/xe1 <CJK>
+ %IRREVERSIBLE%<U73DE>     /x8e/xa1/xd6/xe2 <CJK>
+ %IRREVERSIBLE%<U7554>     /x8e/xa1/xd6/xe3 <CJK>
+ %IRREVERSIBLE%<U755D>     /x8e/xa1/xd6/xe4 <CJK>
+ %IRREVERSIBLE%<U755C>     /x8e/xa1/xd6/xe5 <CJK>
+ %IRREVERSIBLE%<U755A>     /x8e/xa1/xd6/xe6 <CJK>
+ %IRREVERSIBLE%<U7559>     /x8e/xa1/xd6/xe7 <CJK>
+ %IRREVERSIBLE%<U75BE>     /x8e/xa1/xd6/xe8 <CJK>
+ %IRREVERSIBLE%<U75C5>     /x8e/xa1/xd6/xe9 <CJK>
+ %IRREVERSIBLE%<U75C7>     /x8e/xa1/xd6/xea <CJK>
+ %IRREVERSIBLE%<U75B2>     /x8e/xa1/xd6/xeb <CJK>
+ %IRREVERSIBLE%<U75B3>     /x8e/xa1/xd6/xec <CJK>
+ %IRREVERSIBLE%<U75BD>     /x8e/xa1/xd6/xed <CJK>
+ %IRREVERSIBLE%<U75BC>     /x8e/xa1/xd6/xee <CJK>
+ %IRREVERSIBLE%<U75B9>     /x8e/xa1/xd6/xef <CJK>
+ %IRREVERSIBLE%<U75C2>     /x8e/xa1/xd6/xf0 <CJK>
+ %IRREVERSIBLE%<U75B8>     /x8e/xa1/xd6/xf1 <CJK>
+ %IRREVERSIBLE%<U768B>     /x8e/xa1/xd6/xf2 <CJK>
+ %IRREVERSIBLE%<U76B0>     /x8e/xa1/xd6/xf3 <CJK>
+ %IRREVERSIBLE%<U76CA>     /x8e/xa1/xd6/xf4 <CJK>
+ %IRREVERSIBLE%<U76CD>     /x8e/xa1/xd6/xf5 <CJK>
+ %IRREVERSIBLE%<U76CE>     /x8e/xa1/xd6/xf6 <CJK>
+ %IRREVERSIBLE%<U7729>     /x8e/xa1/xd6/xf7 <CJK>
+ %IRREVERSIBLE%<U771F>     /x8e/xa1/xd6/xf8 <CJK>
+ %IRREVERSIBLE%<U7720>     /x8e/xa1/xd6/xf9 <CJK>
+ %IRREVERSIBLE%<U7728>     /x8e/xa1/xd6/xfa <CJK>
+ %IRREVERSIBLE%<U77E9>     /x8e/xa1/xd6/xfb <CJK>
+ %IRREVERSIBLE%<U7830>     /x8e/xa1/xd6/xfc <CJK>
+ %IRREVERSIBLE%<U7827>     /x8e/xa1/xd6/xfd <CJK>
+ %IRREVERSIBLE%<U7838>     /x8e/xa1/xd6/xfe <CJK>
+ %IRREVERSIBLE%<U781D>     /x8e/xa1/xd7/xa1 <CJK>
+ %IRREVERSIBLE%<U7834>     /x8e/xa1/xd7/xa2 <CJK>
+ %IRREVERSIBLE%<U7837>     /x8e/xa1/xd7/xa3 <CJK>
+ %IRREVERSIBLE%<U7825>     /x8e/xa1/xd7/xa4 <CJK>
+ %IRREVERSIBLE%<U782D>     /x8e/xa1/xd7/xa5 <CJK>
+ %IRREVERSIBLE%<U7820>     /x8e/xa1/xd7/xa6 <CJK>
+ %IRREVERSIBLE%<U781F>     /x8e/xa1/xd7/xa7 <CJK>
+ %IRREVERSIBLE%<U7832>     /x8e/xa1/xd7/xa8 <CJK>
+ %IRREVERSIBLE%<U7955>     /x8e/xa1/xd7/xa9 <CJK>
+ %IRREVERSIBLE%<U7950>     /x8e/xa1/xd7/xaa <CJK>
+ %IRREVERSIBLE%<U7960>     /x8e/xa1/xd7/xab <CJK>
+ %IRREVERSIBLE%<U795F>     /x8e/xa1/xd7/xac <CJK>
+ %IRREVERSIBLE%<U7956>     /x8e/xa1/xd7/xad <CJK>
+ %IRREVERSIBLE%<U795E>     /x8e/xa1/xd7/xae <CJK>
+ %IRREVERSIBLE%<U795D>     /x8e/xa1/xd7/xaf <CJK>
+ %IRREVERSIBLE%<U7957>     /x8e/xa1/xd7/xb0 <CJK>
+ %IRREVERSIBLE%<U795A>     /x8e/xa1/xd7/xb1 <CJK>
+ %IRREVERSIBLE%<U79E4>     /x8e/xa1/xd7/xb2 <CJK>
+ %IRREVERSIBLE%<U79E3>     /x8e/xa1/xd7/xb3 <CJK>
+ %IRREVERSIBLE%<U79E7>     /x8e/xa1/xd7/xb4 <CJK>
+ %IRREVERSIBLE%<U79DF>     /x8e/xa1/xd7/xb5 <CJK>
+ %IRREVERSIBLE%<U79E6>     /x8e/xa1/xd7/xb6 <CJK>
+ %IRREVERSIBLE%<U79E9>     /x8e/xa1/xd7/xb7 <CJK>
+ %IRREVERSIBLE%<U79D8>     /x8e/xa1/xd7/xb8 <CJK>
+ %IRREVERSIBLE%<U7A84>     /x8e/xa1/xd7/xb9 <CJK>
+ %IRREVERSIBLE%<U7A88>     /x8e/xa1/xd7/xba <CJK>
+ %IRREVERSIBLE%<U7AD9>     /x8e/xa1/xd7/xbb <CJK>
+ %IRREVERSIBLE%<U7B06>     /x8e/xa1/xd7/xbc <CJK>
+ %IRREVERSIBLE%<U7B11>     /x8e/xa1/xd7/xbd <CJK>
+ %IRREVERSIBLE%<U7C89>     /x8e/xa1/xd7/xbe <CJK>
+ %IRREVERSIBLE%<U7D21>     /x8e/xa1/xd7/xbf <CJK>
+ %IRREVERSIBLE%<U7D17>     /x8e/xa1/xd7/xc0 <CJK>
+ %IRREVERSIBLE%<U7D0B>     /x8e/xa1/xd7/xc1 <CJK>
+ %IRREVERSIBLE%<U7D0A>     /x8e/xa1/xd7/xc2 <CJK>
+ %IRREVERSIBLE%<U7D20>     /x8e/xa1/xd7/xc3 <CJK>
+ %IRREVERSIBLE%<U7D22>     /x8e/xa1/xd7/xc4 <CJK>
+ %IRREVERSIBLE%<U7D14>     /x8e/xa1/xd7/xc5 <CJK>
+ %IRREVERSIBLE%<U7D10>     /x8e/xa1/xd7/xc6 <CJK>
+ %IRREVERSIBLE%<U7D15>     /x8e/xa1/xd7/xc7 <CJK>
+ %IRREVERSIBLE%<U7D1A>     /x8e/xa1/xd7/xc8 <CJK>
+ %IRREVERSIBLE%<U7D1C>     /x8e/xa1/xd7/xc9 <CJK>
+ %IRREVERSIBLE%<U7D0D>     /x8e/xa1/xd7/xca <CJK>
+ %IRREVERSIBLE%<U7D19>     /x8e/xa1/xd7/xcb <CJK>
+ %IRREVERSIBLE%<U7D1B>     /x8e/xa1/xd7/xcc <CJK>
+ %IRREVERSIBLE%<U7F3A>     /x8e/xa1/xd7/xcd <CJK>
+ %IRREVERSIBLE%<U7F5F>     /x8e/xa1/xd7/xce <CJK>
+ %IRREVERSIBLE%<U7F94>     /x8e/xa1/xd7/xcf <CJK>
+ %IRREVERSIBLE%<U7FC5>     /x8e/xa1/xd7/xd0 <CJK>
+ %IRREVERSIBLE%<U7FC1>     /x8e/xa1/xd7/xd1 <CJK>
+ %IRREVERSIBLE%<U8006>     /x8e/xa1/xd7/xd2 <CJK>
+ %IRREVERSIBLE%<U8004>     /x8e/xa1/xd7/xd3 <CJK>
+ %IRREVERSIBLE%<U8018>     /x8e/xa1/xd7/xd4 <CJK>
+ %IRREVERSIBLE%<U8015>     /x8e/xa1/xd7/xd5 <CJK>
+ %IRREVERSIBLE%<U8019>     /x8e/xa1/xd7/xd6 <CJK>
+ %IRREVERSIBLE%<U8017>     /x8e/xa1/xd7/xd7 <CJK>
+ %IRREVERSIBLE%<U803D>     /x8e/xa1/xd7/xd8 <CJK>
+ %IRREVERSIBLE%<U803F>     /x8e/xa1/xd7/xd9 <CJK>
+ %IRREVERSIBLE%<U80F1>     /x8e/xa1/xd7/xda <CJK>
+ %IRREVERSIBLE%<U8102>     /x8e/xa1/xd7/xdb <CJK>
+ %IRREVERSIBLE%<U80F0>     /x8e/xa1/xd7/xdc <CJK>
+ %IRREVERSIBLE%<U8105>     /x8e/xa1/xd7/xdd <CJK>
+ %IRREVERSIBLE%<U80ED>     /x8e/xa1/xd7/xde <CJK>
+ %IRREVERSIBLE%<U80F4>     /x8e/xa1/xd7/xdf <CJK>
+ %IRREVERSIBLE%<U8106>     /x8e/xa1/xd7/xe0 <CJK>
+ %IRREVERSIBLE%<U80F8>     /x8e/xa1/xd7/xe1 <CJK>
+ %IRREVERSIBLE%<U80F3>     /x8e/xa1/xd7/xe2 <CJK>
+ %IRREVERSIBLE%<U8108>     /x8e/xa1/xd7/xe3 <CJK>
+ %IRREVERSIBLE%<U80FD>     /x8e/xa1/xd7/xe4 <CJK>
+ %IRREVERSIBLE%<U810A>     /x8e/xa1/xd7/xe5 <CJK>
+ %IRREVERSIBLE%<U80FC>     /x8e/xa1/xd7/xe6 <CJK>
+ %IRREVERSIBLE%<U80EF>     /x8e/xa1/xd7/xe7 <CJK>
+ %IRREVERSIBLE%<U81ED>     /x8e/xa1/xd7/xe8 <CJK>
+ %IRREVERSIBLE%<U81EC>     /x8e/xa1/xd7/xe9 <CJK>
+ %IRREVERSIBLE%<U8200>     /x8e/xa1/xd7/xea <CJK>
+ %IRREVERSIBLE%<U8210>     /x8e/xa1/xd7/xeb <CJK>
+ %IRREVERSIBLE%<U822A>     /x8e/xa1/xd7/xec <CJK>
+ %IRREVERSIBLE%<U822B>     /x8e/xa1/xd7/xed <CJK>
+ %IRREVERSIBLE%<U8228>     /x8e/xa1/xd7/xee <CJK>
+ %IRREVERSIBLE%<U822C>     /x8e/xa1/xd7/xef <CJK>
+ %IRREVERSIBLE%<U82BB>     /x8e/xa1/xd7/xf0 <CJK>
+ %IRREVERSIBLE%<U832B>     /x8e/xa1/xd7/xf1 <CJK>
+ %IRREVERSIBLE%<U8352>     /x8e/xa1/xd7/xf2 <CJK>
+ %IRREVERSIBLE%<U8354>     /x8e/xa1/xd7/xf3 <CJK>
+ %IRREVERSIBLE%<U834A>     /x8e/xa1/xd7/xf4 <CJK>
+ %IRREVERSIBLE%<U8338>     /x8e/xa1/xd7/xf5 <CJK>
+ %IRREVERSIBLE%<U8350>     /x8e/xa1/xd7/xf6 <CJK>
+ %IRREVERSIBLE%<U8349>     /x8e/xa1/xd7/xf7 <CJK>
+ %IRREVERSIBLE%<U8335>     /x8e/xa1/xd7/xf8 <CJK>
+ %IRREVERSIBLE%<U8334>     /x8e/xa1/xd7/xf9 <CJK>
+ %IRREVERSIBLE%<U834F>     /x8e/xa1/xd7/xfa <CJK>
+ %IRREVERSIBLE%<U8332>     /x8e/xa1/xd7/xfb <CJK>
+ %IRREVERSIBLE%<U8339>     /x8e/xa1/xd7/xfc <CJK>
+ %IRREVERSIBLE%<U8336>     /x8e/xa1/xd7/xfd <CJK>
+ %IRREVERSIBLE%<U8317>     /x8e/xa1/xd7/xfe <CJK>
+ %IRREVERSIBLE%<U8340>     /x8e/xa1/xd8/xa1 <CJK>
+ %IRREVERSIBLE%<U8331>     /x8e/xa1/xd8/xa2 <CJK>
+ %IRREVERSIBLE%<U8328>     /x8e/xa1/xd8/xa3 <CJK>
+ %IRREVERSIBLE%<U8343>     /x8e/xa1/xd8/xa4 <CJK>
+ %IRREVERSIBLE%<U8654>     /x8e/xa1/xd8/xa5 <CJK>
+ %IRREVERSIBLE%<U868A>     /x8e/xa1/xd8/xa6 <CJK>
+ %IRREVERSIBLE%<U86AA>     /x8e/xa1/xd8/xa7 <CJK>
+ %IRREVERSIBLE%<U8693>     /x8e/xa1/xd8/xa8 <CJK>
+ %IRREVERSIBLE%<U86A4>     /x8e/xa1/xd8/xa9 <CJK>
+ %IRREVERSIBLE%<U86A9>     /x8e/xa1/xd8/xaa <CJK>
+ %IRREVERSIBLE%<U868C>     /x8e/xa1/xd8/xab <CJK>
+ %IRREVERSIBLE%<U86A3>     /x8e/xa1/xd8/xac <CJK>
+ %IRREVERSIBLE%<U869C>     /x8e/xa1/xd8/xad <CJK>
+ %IRREVERSIBLE%<U8870>     /x8e/xa1/xd8/xae <CJK>
+ %IRREVERSIBLE%<U8877>     /x8e/xa1/xd8/xaf <CJK>
+ %IRREVERSIBLE%<U8881>     /x8e/xa1/xd8/xb0 <CJK>
+ %IRREVERSIBLE%<U8882>     /x8e/xa1/xd8/xb1 <CJK>
+ %IRREVERSIBLE%<U887D>     /x8e/xa1/xd8/xb2 <CJK>
+ %IRREVERSIBLE%<U8879>     /x8e/xa1/xd8/xb3 <CJK>
+ %IRREVERSIBLE%<U8A18>     /x8e/xa1/xd8/xb4 <CJK>
+ %IRREVERSIBLE%<U8A10>     /x8e/xa1/xd8/xb5 <CJK>
+ %IRREVERSIBLE%<U8A0E>     /x8e/xa1/xd8/xb6 <CJK>
+ %IRREVERSIBLE%<U8A0C>     /x8e/xa1/xd8/xb7 <CJK>
+ %IRREVERSIBLE%<U8A15>     /x8e/xa1/xd8/xb8 <CJK>
+ %IRREVERSIBLE%<U8A0A>     /x8e/xa1/xd8/xb9 <CJK>
+ %IRREVERSIBLE%<U8A17>     /x8e/xa1/xd8/xba <CJK>
+ %IRREVERSIBLE%<U8A13>     /x8e/xa1/xd8/xbb <CJK>
+ %IRREVERSIBLE%<U8A16>     /x8e/xa1/xd8/xbc <CJK>
+ %IRREVERSIBLE%<U8A0F>     /x8e/xa1/xd8/xbd <CJK>
+ %IRREVERSIBLE%<U8A11>     /x8e/xa1/xd8/xbe <CJK>
+ %IRREVERSIBLE%<U8C48>     /x8e/xa1/xd8/xbf <CJK>
+ %IRREVERSIBLE%<U8C7A>     /x8e/xa1/xd8/xc0 <CJK>
+ %IRREVERSIBLE%<U8C79>     /x8e/xa1/xd8/xc1 <CJK>
+ %IRREVERSIBLE%<U8CA1>     /x8e/xa1/xd8/xc2 <CJK>
+ %IRREVERSIBLE%<U8CA2>     /x8e/xa1/xd8/xc3 <CJK>
+ %IRREVERSIBLE%<U8D77>     /x8e/xa1/xd8/xc4 <CJK>
+ %IRREVERSIBLE%<U8EAC>     /x8e/xa1/xd8/xc5 <CJK>
+ %IRREVERSIBLE%<U8ED2>     /x8e/xa1/xd8/xc6 <CJK>
+ %IRREVERSIBLE%<U8ED4>     /x8e/xa1/xd8/xc7 <CJK>
+ %IRREVERSIBLE%<U8ECF>     /x8e/xa1/xd8/xc8 <CJK>
+ %IRREVERSIBLE%<U8FB1>     /x8e/xa1/xd8/xc9 <CJK>
+ %IRREVERSIBLE%<U9001>     /x8e/xa1/xd8/xca <CJK>
+ %IRREVERSIBLE%<U9006>     /x8e/xa1/xd8/xcb <CJK>
+ %IRREVERSIBLE%<U8FF7>     /x8e/xa1/xd8/xcc <CJK>
+ %IRREVERSIBLE%<U9000>     /x8e/xa1/xd8/xcd <CJK>
+ %IRREVERSIBLE%<U8FFA>     /x8e/xa1/xd8/xce <CJK>
+ %IRREVERSIBLE%<U8FF4>     /x8e/xa1/xd8/xcf <CJK>
+ %IRREVERSIBLE%<U9003>     /x8e/xa1/xd8/xd0 <CJK>
+ %IRREVERSIBLE%<U8FFD>     /x8e/xa1/xd8/xd1 <CJK>
+ %IRREVERSIBLE%<U9005>     /x8e/xa1/xd8/xd2 <CJK>
+ %IRREVERSIBLE%<U8FF8>     /x8e/xa1/xd8/xd3 <CJK>
+ %IRREVERSIBLE%<U9095>     /x8e/xa1/xd8/xd4 <CJK>
+ %IRREVERSIBLE%<U90E1>     /x8e/xa1/xd8/xd5 <CJK>
+ %IRREVERSIBLE%<U90DD>     /x8e/xa1/xd8/xd6 <CJK>
+ %IRREVERSIBLE%<U90E2>     /x8e/xa1/xd8/xd7 <CJK>
+ %IRREVERSIBLE%<U9152>     /x8e/xa1/xd8/xd8 <CJK>
+ %IRREVERSIBLE%<U914D>     /x8e/xa1/xd8/xd9 <CJK>
+ %IRREVERSIBLE%<U914C>     /x8e/xa1/xd8/xda <CJK>
+ %IRREVERSIBLE%<U91D8>     /x8e/xa1/xd8/xdb <CJK>
+ %IRREVERSIBLE%<U91DD>     /x8e/xa1/xd8/xdc <CJK>
+ %IRREVERSIBLE%<U91D7>     /x8e/xa1/xd8/xdd <CJK>
+ %IRREVERSIBLE%<U91DC>     /x8e/xa1/xd8/xde <CJK>
+ %IRREVERSIBLE%<U91D9>     /x8e/xa1/xd8/xdf <CJK>
+ %IRREVERSIBLE%<U9583>     /x8e/xa1/xd8/xe0 <CJK>
+ %IRREVERSIBLE%<U9662>     /x8e/xa1/xd8/xe1 <CJK>
+ %IRREVERSIBLE%<U9663>     /x8e/xa1/xd8/xe2 <CJK>
+ %IRREVERSIBLE%<U9661>     /x8e/xa1/xd8/xe3 <CJK>
+ %IRREVERSIBLE%<U965B>     /x8e/xa1/xd8/xe4 <CJK>
+ %IRREVERSIBLE%<U965D>     /x8e/xa1/xd8/xe5 <CJK>
+ %IRREVERSIBLE%<U9664>     /x8e/xa1/xd8/xe6 <CJK>
+ %IRREVERSIBLE%<U9658>     /x8e/xa1/xd8/xe7 <CJK>
+ %IRREVERSIBLE%<U965E>     /x8e/xa1/xd8/xe8 <CJK>
+ %IRREVERSIBLE%<U96BB>     /x8e/xa1/xd8/xe9 <CJK>
+ %IRREVERSIBLE%<U98E2>     /x8e/xa1/xd8/xea <CJK>
+ %IRREVERSIBLE%<U99AC>     /x8e/xa1/xd8/xeb <CJK>
+ %IRREVERSIBLE%<U9AA8>     /x8e/xa1/xd8/xec <CJK>
+ %IRREVERSIBLE%<U9AD8>     /x8e/xa1/xd8/xed <CJK>
+ %IRREVERSIBLE%<U9B25>     /x8e/xa1/xd8/xee <CJK>
+ %IRREVERSIBLE%<U9B32>     /x8e/xa1/xd8/xef <CJK>
+ %IRREVERSIBLE%<U9B3C>     /x8e/xa1/xd8/xf0 <CJK>
+ %IRREVERSIBLE%<U4E7E>     /x8e/xa1/xd8/xf1 <CJK>
+ %IRREVERSIBLE%<U507A>     /x8e/xa1/xd8/xf2 <CJK>
+ %IRREVERSIBLE%<U507D>     /x8e/xa1/xd8/xf3 <CJK>
+ %IRREVERSIBLE%<U505C>     /x8e/xa1/xd8/xf4 <CJK>
+ %IRREVERSIBLE%<U5047>     /x8e/xa1/xd8/xf5 <CJK>
+ %IRREVERSIBLE%<U5043>     /x8e/xa1/xd8/xf6 <CJK>
+ %IRREVERSIBLE%<U504C>     /x8e/xa1/xd8/xf7 <CJK>
+ %IRREVERSIBLE%<U505A>     /x8e/xa1/xd8/xf8 <CJK>
+ %IRREVERSIBLE%<U5049>     /x8e/xa1/xd8/xf9 <CJK>
+ %IRREVERSIBLE%<U5065>     /x8e/xa1/xd8/xfa <CJK>
+ %IRREVERSIBLE%<U5076>     /x8e/xa1/xd8/xfb <CJK>
+ %IRREVERSIBLE%<U504E>     /x8e/xa1/xd8/xfc <CJK>
+ %IRREVERSIBLE%<U5055>     /x8e/xa1/xd8/xfd <CJK>
+ %IRREVERSIBLE%<U5075>     /x8e/xa1/xd8/xfe <CJK>
+ %IRREVERSIBLE%<U5074>     /x8e/xa1/xd9/xa1 <CJK>
+ %IRREVERSIBLE%<U5077>     /x8e/xa1/xd9/xa2 <CJK>
+ %IRREVERSIBLE%<U504F>     /x8e/xa1/xd9/xa3 <CJK>
+ %IRREVERSIBLE%<U500F>     /x8e/xa1/xd9/xa4 <CJK>
+ %IRREVERSIBLE%<U506F>     /x8e/xa1/xd9/xa5 <CJK>
+ %IRREVERSIBLE%<U506D>     /x8e/xa1/xd9/xa6 <CJK>
+ %IRREVERSIBLE%<U515C>     /x8e/xa1/xd9/xa7 <CJK>
+ %IRREVERSIBLE%<U5195>     /x8e/xa1/xd9/xa8 <CJK>
+ %IRREVERSIBLE%<U51F0>     /x8e/xa1/xd9/xa9 <CJK>
+ %IRREVERSIBLE%<U526A>     /x8e/xa1/xd9/xaa <CJK>
+ %IRREVERSIBLE%<U526F>     /x8e/xa1/xd9/xab <CJK>
+ %IRREVERSIBLE%<U52D2>     /x8e/xa1/xd9/xac <CJK>
+ %IRREVERSIBLE%<U52D9>     /x8e/xa1/xd9/xad <CJK>
+ %IRREVERSIBLE%<U52D8>     /x8e/xa1/xd9/xae <CJK>
+ %IRREVERSIBLE%<U52D5>     /x8e/xa1/xd9/xaf <CJK>
+ %IRREVERSIBLE%<U5310>     /x8e/xa1/xd9/xb0 <CJK>
+ %IRREVERSIBLE%<U530F>     /x8e/xa1/xd9/xb1 <CJK>
+ %IRREVERSIBLE%<U5319>     /x8e/xa1/xd9/xb2 <CJK>
+ %IRREVERSIBLE%<U533F>     /x8e/xa1/xd9/xb3 <CJK>
+ %IRREVERSIBLE%<U5340>     /x8e/xa1/xd9/xb4 <CJK>
+ %IRREVERSIBLE%<U533E>     /x8e/xa1/xd9/xb5 <CJK>
+ %IRREVERSIBLE%<U53C3>     /x8e/xa1/xd9/xb6 <CJK>
+ %IRREVERSIBLE%<U66FC>     /x8e/xa1/xd9/xb7 <CJK>
+ %IRREVERSIBLE%<U5546>     /x8e/xa1/xd9/xb8 <CJK>
+ %IRREVERSIBLE%<U556A>     /x8e/xa1/xd9/xb9 <CJK>
+ %IRREVERSIBLE%<U5566>     /x8e/xa1/xd9/xba <CJK>
+ %IRREVERSIBLE%<U5544>     /x8e/xa1/xd9/xbb <CJK>
+ %IRREVERSIBLE%<U555E>     /x8e/xa1/xd9/xbc <CJK>
+ %IRREVERSIBLE%<U5561>     /x8e/xa1/xd9/xbd <CJK>
+ %IRREVERSIBLE%<U5543>     /x8e/xa1/xd9/xbe <CJK>
+ %IRREVERSIBLE%<U554A>     /x8e/xa1/xd9/xbf <CJK>
+ %IRREVERSIBLE%<U5531>     /x8e/xa1/xd9/xc0 <CJK>
+ %IRREVERSIBLE%<U5556>     /x8e/xa1/xd9/xc1 <CJK>
+ %IRREVERSIBLE%<U554F>     /x8e/xa1/xd9/xc2 <CJK>
+ %IRREVERSIBLE%<U5555>     /x8e/xa1/xd9/xc3 <CJK>
+ %IRREVERSIBLE%<U552F>     /x8e/xa1/xd9/xc4 <CJK>
+ %IRREVERSIBLE%<U5564>     /x8e/xa1/xd9/xc5 <CJK>
+ %IRREVERSIBLE%<U5538>     /x8e/xa1/xd9/xc6 <CJK>
+ %IRREVERSIBLE%<U552E>     /x8e/xa1/xd9/xc7 <CJK>
+ %IRREVERSIBLE%<U555C>     /x8e/xa1/xd9/xc8 <CJK>
+ %IRREVERSIBLE%<U552C>     /x8e/xa1/xd9/xc9 <CJK>
+ %IRREVERSIBLE%<U5563>     /x8e/xa1/xd9/xca <CJK>
+ %IRREVERSIBLE%<U5533>     /x8e/xa1/xd9/xcb <CJK>
+ %IRREVERSIBLE%<U5541>     /x8e/xa1/xd9/xcc <CJK>
+ %IRREVERSIBLE%<U5557>     /x8e/xa1/xd9/xcd <CJK>
+ %IRREVERSIBLE%<U5708>     /x8e/xa1/xd9/xce <CJK>
+ %IRREVERSIBLE%<U570B>     /x8e/xa1/xd9/xcf <CJK>
+ %IRREVERSIBLE%<U5709>     /x8e/xa1/xd9/xd0 <CJK>
+ %IRREVERSIBLE%<U57DF>     /x8e/xa1/xd9/xd1 <CJK>
+ %IRREVERSIBLE%<U5805>     /x8e/xa1/xd9/xd2 <CJK>
+ %IRREVERSIBLE%<U580A>     /x8e/xa1/xd9/xd3 <CJK>
+ %IRREVERSIBLE%<U5806>     /x8e/xa1/xd9/xd4 <CJK>
+ %IRREVERSIBLE%<U57E0>     /x8e/xa1/xd9/xd5 <CJK>
+ %IRREVERSIBLE%<U57E4>     /x8e/xa1/xd9/xd6 <CJK>
+ %IRREVERSIBLE%<U57FA>     /x8e/xa1/xd9/xd7 <CJK>
+ %IRREVERSIBLE%<U5802>     /x8e/xa1/xd9/xd8 <CJK>
+ %IRREVERSIBLE%<U5835>     /x8e/xa1/xd9/xd9 <CJK>
+ %IRREVERSIBLE%<U57F7>     /x8e/xa1/xd9/xda <CJK>
+ %IRREVERSIBLE%<U57F9>     /x8e/xa1/xd9/xdb <CJK>
+ %IRREVERSIBLE%<U5920>     /x8e/xa1/xd9/xdc <CJK>
+ %IRREVERSIBLE%<U5962>     /x8e/xa1/xd9/xdd <CJK>
+ %IRREVERSIBLE%<U5A36>     /x8e/xa1/xd9/xde <CJK>
+ %IRREVERSIBLE%<U5A41>     /x8e/xa1/xd9/xdf <CJK>
+ %IRREVERSIBLE%<U5A49>     /x8e/xa1/xd9/xe0 <CJK>
+ %IRREVERSIBLE%<U5A66>     /x8e/xa1/xd9/xe1 <CJK>
+ %IRREVERSIBLE%<U5A6A>     /x8e/xa1/xd9/xe2 <CJK>
+ %IRREVERSIBLE%<U5A40>     /x8e/xa1/xd9/xe3 <CJK>
+ %IRREVERSIBLE%<U5A3C>     /x8e/xa1/xd9/xe4 <CJK>
+ %IRREVERSIBLE%<U5A62>     /x8e/xa1/xd9/xe5 <CJK>
+ %IRREVERSIBLE%<U5A5A>     /x8e/xa1/xd9/xe6 <CJK>
+ %IRREVERSIBLE%<U5A46>     /x8e/xa1/xd9/xe7 <CJK>
+ %IRREVERSIBLE%<U5A4A>     /x8e/xa1/xd9/xe8 <CJK>
+ %IRREVERSIBLE%<U5B70>     /x8e/xa1/xd9/xe9 <CJK>
+ %IRREVERSIBLE%<U5BC7>     /x8e/xa1/xd9/xea <CJK>
+ %IRREVERSIBLE%<U5BC5>     /x8e/xa1/xd9/xeb <CJK>
+ %IRREVERSIBLE%<U5BC4>     /x8e/xa1/xd9/xec <CJK>
+ %IRREVERSIBLE%<U5BC2>     /x8e/xa1/xd9/xed <CJK>
+ %IRREVERSIBLE%<U5BBF>     /x8e/xa1/xd9/xee <CJK>
+ %IRREVERSIBLE%<U5BC6>     /x8e/xa1/xd9/xef <CJK>
+ %IRREVERSIBLE%<U5C09>     /x8e/xa1/xd9/xf0 <CJK>
+ %IRREVERSIBLE%<U5C08>     /x8e/xa1/xd9/xf1 <CJK>
+ %IRREVERSIBLE%<U5C07>     /x8e/xa1/xd9/xf2 <CJK>
+ %IRREVERSIBLE%<U5C60>     /x8e/xa1/xd9/xf3 <CJK>
+ %IRREVERSIBLE%<U5C5C>     /x8e/xa1/xd9/xf4 <CJK>
+ %IRREVERSIBLE%<U5C5D>     /x8e/xa1/xd9/xf5 <CJK>
+ %IRREVERSIBLE%<U5D07>     /x8e/xa1/xd9/xf6 <CJK>
+ %IRREVERSIBLE%<U5D06>     /x8e/xa1/xd9/xf7 <CJK>
+ %IRREVERSIBLE%<U5D0E>     /x8e/xa1/xd9/xf8 <CJK>
+ %IRREVERSIBLE%<U5D1B>     /x8e/xa1/xd9/xf9 <CJK>
+ %IRREVERSIBLE%<U5D16>     /x8e/xa1/xd9/xfa <CJK>
+ %IRREVERSIBLE%<U5D22>     /x8e/xa1/xd9/xfb <CJK>
+ %IRREVERSIBLE%<U5D11>     /x8e/xa1/xd9/xfc <CJK>
+ %IRREVERSIBLE%<U5D29>     /x8e/xa1/xd9/xfd <CJK>
+ %IRREVERSIBLE%<U5D14>     /x8e/xa1/xd9/xfe <CJK>
+ %IRREVERSIBLE%<U5D19>     /x8e/xa1/xda/xa1 <CJK>
+ %IRREVERSIBLE%<U5D24>     /x8e/xa1/xda/xa2 <CJK>
+ %IRREVERSIBLE%<U5D27>     /x8e/xa1/xda/xa3 <CJK>
+ %IRREVERSIBLE%<U5D17>     /x8e/xa1/xda/xa4 <CJK>
+ %IRREVERSIBLE%<U5DE2>     /x8e/xa1/xda/xa5 <CJK>
+ %IRREVERSIBLE%<U5E38>     /x8e/xa1/xda/xa6 <CJK>
+ %IRREVERSIBLE%<U5E36>     /x8e/xa1/xda/xa7 <CJK>
+ %IRREVERSIBLE%<U5E33>     /x8e/xa1/xda/xa8 <CJK>
+ %IRREVERSIBLE%<U5E37>     /x8e/xa1/xda/xa9 <CJK>
+ %IRREVERSIBLE%<U5EB7>     /x8e/xa1/xda/xaa <CJK>
+ %IRREVERSIBLE%<U5EB8>     /x8e/xa1/xda/xab <CJK>
+ %IRREVERSIBLE%<U5EB6>     /x8e/xa1/xda/xac <CJK>
+ %IRREVERSIBLE%<U5EB5>     /x8e/xa1/xda/xad <CJK>
+ %IRREVERSIBLE%<U5EBE>     /x8e/xa1/xda/xae <CJK>
+ %IRREVERSIBLE%<U5F35>     /x8e/xa1/xda/xaf <CJK>
+ %IRREVERSIBLE%<U5F37>     /x8e/xa1/xda/xb0 <CJK>
+ %IRREVERSIBLE%<U5F57>     /x8e/xa1/xda/xb1 <CJK>
+ %IRREVERSIBLE%<U5F6C>     /x8e/xa1/xda/xb2 <CJK>
+ %IRREVERSIBLE%<U5F69>     /x8e/xa1/xda/xb3 <CJK>
+ %IRREVERSIBLE%<U5F6B>     /x8e/xa1/xda/xb4 <CJK>
+ %IRREVERSIBLE%<U5F97>     /x8e/xa1/xda/xb5 <CJK>
+ %IRREVERSIBLE%<U5F99>     /x8e/xa1/xda/xb6 <CJK>
+ %IRREVERSIBLE%<U5F9E>     /x8e/xa1/xda/xb7 <CJK>
+ %IRREVERSIBLE%<U5F98>     /x8e/xa1/xda/xb8 <CJK>
+ %IRREVERSIBLE%<U5FA1>     /x8e/xa1/xda/xb9 <CJK>
+ %IRREVERSIBLE%<U5FA0>     /x8e/xa1/xda/xba <CJK>
+ %IRREVERSIBLE%<U5F9C>     /x8e/xa1/xda/xbb <CJK>
+ %IRREVERSIBLE%<U607F>     /x8e/xa1/xda/xbc <CJK>
+ %IRREVERSIBLE%<U60A3>     /x8e/xa1/xda/xbd <CJK>
+ %IRREVERSIBLE%<U6089>     /x8e/xa1/xda/xbe <CJK>
+ %IRREVERSIBLE%<U60A0>     /x8e/xa1/xda/xbf <CJK>
+ %IRREVERSIBLE%<U60A8>     /x8e/xa1/xda/xc0 <CJK>
+ %IRREVERSIBLE%<U60CB>     /x8e/xa1/xda/xc1 <CJK>
+ %IRREVERSIBLE%<U60B4>     /x8e/xa1/xda/xc2 <CJK>
+ %IRREVERSIBLE%<U60E6>     /x8e/xa1/xda/xc3 <CJK>
+ %IRREVERSIBLE%<U60BD>     /x8e/xa1/xda/xc4 <CJK>
+ %IRREVERSIBLE%<U60C5>     /x8e/xa1/xda/xc5 <CJK>
+ %IRREVERSIBLE%<U60BB>     /x8e/xa1/xda/xc6 <CJK>
+ %IRREVERSIBLE%<U60B5>     /x8e/xa1/xda/xc7 <CJK>
+ %IRREVERSIBLE%<U60DC>     /x8e/xa1/xda/xc8 <CJK>
+ %IRREVERSIBLE%<U60BC>     /x8e/xa1/xda/xc9 <CJK>
+ %IRREVERSIBLE%<U60D8>     /x8e/xa1/xda/xca <CJK>
+ %IRREVERSIBLE%<U60D5>     /x8e/xa1/xda/xcb <CJK>
+ %IRREVERSIBLE%<U60C6>     /x8e/xa1/xda/xcc <CJK>
+ %IRREVERSIBLE%<U60DF>     /x8e/xa1/xda/xcd <CJK>
+ %IRREVERSIBLE%<U60B8>     /x8e/xa1/xda/xce <CJK>
+ %IRREVERSIBLE%<U60DA>     /x8e/xa1/xda/xcf <CJK>
+ %IRREVERSIBLE%<U60C7>     /x8e/xa1/xda/xd0 <CJK>
+ %IRREVERSIBLE%<U621A>     /x8e/xa1/xda/xd1 <CJK>
+ %IRREVERSIBLE%<U621B>     /x8e/xa1/xda/xd2 <CJK>
+ %IRREVERSIBLE%<U6248>     /x8e/xa1/xda/xd3 <CJK>
+ %IRREVERSIBLE%<U63A0>     /x8e/xa1/xda/xd4 <CJK>
+ %IRREVERSIBLE%<U63A7>     /x8e/xa1/xda/xd5 <CJK>
+ %IRREVERSIBLE%<U6372>     /x8e/xa1/xda/xd6 <CJK>
+ %IRREVERSIBLE%<U6396>     /x8e/xa1/xda/xd7 <CJK>
+ %IRREVERSIBLE%<U63A2>     /x8e/xa1/xda/xd8 <CJK>
+ %IRREVERSIBLE%<U63A5>     /x8e/xa1/xda/xd9 <CJK>
+ %IRREVERSIBLE%<U6377>     /x8e/xa1/xda/xda <CJK>
+ %IRREVERSIBLE%<U6367>     /x8e/xa1/xda/xdb <CJK>
+ %IRREVERSIBLE%<U6398>     /x8e/xa1/xda/xdc <CJK>
+ %IRREVERSIBLE%<U63AA>     /x8e/xa1/xda/xdd <CJK>
+ %IRREVERSIBLE%<U6371>     /x8e/xa1/xda/xde <CJK>
+ %IRREVERSIBLE%<U63A9>     /x8e/xa1/xda/xdf <CJK>
+ %IRREVERSIBLE%<U6389>     /x8e/xa1/xda/xe0 <CJK>
+ %IRREVERSIBLE%<U6383>     /x8e/xa1/xda/xe1 <CJK>
+ %IRREVERSIBLE%<U639B>     /x8e/xa1/xda/xe2 <CJK>
+ %IRREVERSIBLE%<U636B>     /x8e/xa1/xda/xe3 <CJK>
+ %IRREVERSIBLE%<U63A8>     /x8e/xa1/xda/xe4 <CJK>
+ %IRREVERSIBLE%<U6384>     /x8e/xa1/xda/xe5 <CJK>
+ %IRREVERSIBLE%<U6388>     /x8e/xa1/xda/xe6 <CJK>
+ %IRREVERSIBLE%<U6399>     /x8e/xa1/xda/xe7 <CJK>
+ %IRREVERSIBLE%<U63A1>     /x8e/xa1/xda/xe8 <CJK>
+ %IRREVERSIBLE%<U63AC>     /x8e/xa1/xda/xe9 <CJK>
+ %IRREVERSIBLE%<U6392>     /x8e/xa1/xda/xea <CJK>
+ %IRREVERSIBLE%<U638F>     /x8e/xa1/xda/xeb <CJK>
+ %IRREVERSIBLE%<U6380>     /x8e/xa1/xda/xec <CJK>
+ %IRREVERSIBLE%<U637B>     /x8e/xa1/xda/xed <CJK>
+ %IRREVERSIBLE%<U6369>     /x8e/xa1/xda/xee <CJK>
+ %IRREVERSIBLE%<U6368>     /x8e/xa1/xda/xef <CJK>
+ %IRREVERSIBLE%<U637A>     /x8e/xa1/xda/xf0 <CJK>
+ %IRREVERSIBLE%<U655D>     /x8e/xa1/xda/xf1 <CJK>
+ %IRREVERSIBLE%<U6556>     /x8e/xa1/xda/xf2 <CJK>
+ %IRREVERSIBLE%<U6551>     /x8e/xa1/xda/xf3 <CJK>
+ %IRREVERSIBLE%<U6559>     /x8e/xa1/xda/xf4 <CJK>
+ %IRREVERSIBLE%<U6557>     /x8e/xa1/xda/xf5 <CJK>
+ %IRREVERSIBLE%<U555F>     /x8e/xa1/xda/xf6 <CJK>
+ %IRREVERSIBLE%<U654F>     /x8e/xa1/xda/xf7 <CJK>
+ %IRREVERSIBLE%<U6558>     /x8e/xa1/xda/xf8 <CJK>
+ %IRREVERSIBLE%<U6555>     /x8e/xa1/xda/xf9 <CJK>
+ %IRREVERSIBLE%<U6554>     /x8e/xa1/xda/xfa <CJK>
+ %IRREVERSIBLE%<U659C>     /x8e/xa1/xda/xfb <CJK>
+ %IRREVERSIBLE%<U659B>     /x8e/xa1/xda/xfc <CJK>
+ %IRREVERSIBLE%<U65AC>     /x8e/xa1/xda/xfd <CJK>
+ %IRREVERSIBLE%<U65CF>     /x8e/xa1/xda/xfe <CJK>
+ %IRREVERSIBLE%<U65CB>     /x8e/xa1/xdb/xa1 <CJK>
+ %IRREVERSIBLE%<U65CC>     /x8e/xa1/xdb/xa2 <CJK>
+ %IRREVERSIBLE%<U65CE>     /x8e/xa1/xdb/xa3 <CJK>
+ %IRREVERSIBLE%<U665D>     /x8e/xa1/xdb/xa4 <CJK>
+ %IRREVERSIBLE%<U665A>     /x8e/xa1/xdb/xa5 <CJK>
+ %IRREVERSIBLE%<U6664>     /x8e/xa1/xdb/xa6 <CJK>
+ %IRREVERSIBLE%<U6668>     /x8e/xa1/xdb/xa7 <CJK>
+ %IRREVERSIBLE%<U6666>     /x8e/xa1/xdb/xa8 <CJK>
+ %IRREVERSIBLE%<U665E>     /x8e/xa1/xdb/xa9 <CJK>
+ %IRREVERSIBLE%<U66F9>     /x8e/xa1/xdb/xaa <CJK>
+ %IRREVERSIBLE%<U52D7>     /x8e/xa1/xdb/xab <CJK>
+ %IRREVERSIBLE%<U671B>     /x8e/xa1/xdb/xac <CJK>
+ %IRREVERSIBLE%<U6881>     /x8e/xa1/xdb/xad <CJK>
+ %IRREVERSIBLE%<U68AF>     /x8e/xa1/xdb/xae <CJK>
+ %IRREVERSIBLE%<U68A2>     /x8e/xa1/xdb/xaf <CJK>
+ %IRREVERSIBLE%<U6893>     /x8e/xa1/xdb/xb0 <CJK>
+ %IRREVERSIBLE%<U68B5>     /x8e/xa1/xdb/xb1 <CJK>
+ %IRREVERSIBLE%<U687F>     /x8e/xa1/xdb/xb2 <CJK>
+ %IRREVERSIBLE%<U6876>     /x8e/xa1/xdb/xb3 <CJK>
+ %IRREVERSIBLE%<U68B1>     /x8e/xa1/xdb/xb4 <CJK>
+ %IRREVERSIBLE%<U68A7>     /x8e/xa1/xdb/xb5 <CJK>
+ %IRREVERSIBLE%<U6897>     /x8e/xa1/xdb/xb6 <CJK>
+ %IRREVERSIBLE%<U68B0>     /x8e/xa1/xdb/xb7 <CJK>
+ %IRREVERSIBLE%<U6883>     /x8e/xa1/xdb/xb8 <CJK>
+ %IRREVERSIBLE%<U68C4>     /x8e/xa1/xdb/xb9 <CJK>
+ %IRREVERSIBLE%<U68AD>     /x8e/xa1/xdb/xba <CJK>
+ %IRREVERSIBLE%<U6886>     /x8e/xa1/xdb/xbb <CJK>
+ %IRREVERSIBLE%<U6885>     /x8e/xa1/xdb/xbc <CJK>
+ %IRREVERSIBLE%<U6894>     /x8e/xa1/xdb/xbd <CJK>
+ %IRREVERSIBLE%<U689D>     /x8e/xa1/xdb/xbe <CJK>
+ %IRREVERSIBLE%<U68A8>     /x8e/xa1/xdb/xbf <CJK>
+ %IRREVERSIBLE%<U689F>     /x8e/xa1/xdb/xc0 <CJK>
+ %IRREVERSIBLE%<U68A1>     /x8e/xa1/xdb/xc1 <CJK>
+ %IRREVERSIBLE%<U6882>     /x8e/xa1/xdb/xc2 <CJK>
+ %IRREVERSIBLE%<U6B32>     /x8e/xa1/xdb/xc3 <CJK>
+ %IRREVERSIBLE%<U6BBA>     /x8e/xa1/xdb/xc4 <CJK>
+ %IRREVERSIBLE%<U6BEB>     /x8e/xa1/xdb/xc5 <CJK>
+ %IRREVERSIBLE%<U6BEC>     /x8e/xa1/xdb/xc6 <CJK>
+ %IRREVERSIBLE%<U6C2B>     /x8e/xa1/xdb/xc7 <CJK>
+ %IRREVERSIBLE%<U6D8E>     /x8e/xa1/xdb/xc8 <CJK>
+ %IRREVERSIBLE%<U6DBC>     /x8e/xa1/xdb/xc9 <CJK>
+ %IRREVERSIBLE%<U6DF3>     /x8e/xa1/xdb/xca <CJK>
+ %IRREVERSIBLE%<U6DD9>     /x8e/xa1/xdb/xcb <CJK>
+ %IRREVERSIBLE%<U6DB2>     /x8e/xa1/xdb/xcc <CJK>
+ %IRREVERSIBLE%<U6DE1>     /x8e/xa1/xdb/xcd <CJK>
+ %IRREVERSIBLE%<U6DCC>     /x8e/xa1/xdb/xce <CJK>
+ %IRREVERSIBLE%<U6DE4>     /x8e/xa1/xdb/xcf <CJK>
+ %IRREVERSIBLE%<U6DFB>     /x8e/xa1/xdb/xd0 <CJK>
+ %IRREVERSIBLE%<U6DFA>     /x8e/xa1/xdb/xd1 <CJK>
+ %IRREVERSIBLE%<U6E05>     /x8e/xa1/xdb/xd2 <CJK>
+ %IRREVERSIBLE%<U6DC7>     /x8e/xa1/xdb/xd3 <CJK>
+ %IRREVERSIBLE%<U6DCB>     /x8e/xa1/xdb/xd4 <CJK>
+ %IRREVERSIBLE%<U6DAF>     /x8e/xa1/xdb/xd5 <CJK>
+ %IRREVERSIBLE%<U6DD1>     /x8e/xa1/xdb/xd6 <CJK>
+ %IRREVERSIBLE%<U6DAE>     /x8e/xa1/xdb/xd7 <CJK>
+ %IRREVERSIBLE%<U6DDE>     /x8e/xa1/xdb/xd8 <CJK>
+ %IRREVERSIBLE%<U6DF9>     /x8e/xa1/xdb/xd9 <CJK>
+ %IRREVERSIBLE%<U6DB8>     /x8e/xa1/xdb/xda <CJK>
+ %IRREVERSIBLE%<U6DF7>     /x8e/xa1/xdb/xdb <CJK>
+ %IRREVERSIBLE%<U6DF5>     /x8e/xa1/xdb/xdc <CJK>
+ %IRREVERSIBLE%<U6DC5>     /x8e/xa1/xdb/xdd <CJK>
+ %IRREVERSIBLE%<U6DD2>     /x8e/xa1/xdb/xde <CJK>
+ %IRREVERSIBLE%<U6E1A>     /x8e/xa1/xdb/xdf <CJK>
+ %IRREVERSIBLE%<U6DB5>     /x8e/xa1/xdb/xe0 <CJK>
+ %IRREVERSIBLE%<U6DDA>     /x8e/xa1/xdb/xe1 <CJK>
+ %IRREVERSIBLE%<U6DEB>     /x8e/xa1/xdb/xe2 <CJK>
+ %IRREVERSIBLE%<U6DD8>     /x8e/xa1/xdb/xe3 <CJK>
+ %IRREVERSIBLE%<U6DEA>     /x8e/xa1/xdb/xe4 <CJK>
+ %IRREVERSIBLE%<U6DF1>     /x8e/xa1/xdb/xe5 <CJK>
+ %IRREVERSIBLE%<U6DEE>     /x8e/xa1/xdb/xe6 <CJK>
+ %IRREVERSIBLE%<U6DE8>     /x8e/xa1/xdb/xe7 <CJK>
+ %IRREVERSIBLE%<U6DC6>     /x8e/xa1/xdb/xe8 <CJK>
+ %IRREVERSIBLE%<U6DC4>     /x8e/xa1/xdb/xe9 <CJK>
+ %IRREVERSIBLE%<U6DAA>     /x8e/xa1/xdb/xea <CJK>
+ %IRREVERSIBLE%<U6DEC>     /x8e/xa1/xdb/xeb <CJK>
+ %IRREVERSIBLE%<U6DBF>     /x8e/xa1/xdb/xec <CJK>
+ %IRREVERSIBLE%<U6DE6>     /x8e/xa1/xdb/xed <CJK>
+ %IRREVERSIBLE%<U70F9>     /x8e/xa1/xdb/xee <CJK>
+ %IRREVERSIBLE%<U7109>     /x8e/xa1/xdb/xef <CJK>
+ %IRREVERSIBLE%<U710A>     /x8e/xa1/xdb/xf0 <CJK>
+ %IRREVERSIBLE%<U70FD>     /x8e/xa1/xdb/xf1 <CJK>
+ %IRREVERSIBLE%<U70EF>     /x8e/xa1/xdb/xf2 <CJK>
+ %IRREVERSIBLE%<U723D>     /x8e/xa1/xdb/xf3 <CJK>
+ %IRREVERSIBLE%<U727D>     /x8e/xa1/xdb/xf4 <CJK>
+ %IRREVERSIBLE%<U7281>     /x8e/xa1/xdb/xf5 <CJK>
+ %IRREVERSIBLE%<U731C>     /x8e/xa1/xdb/xf6 <CJK>
+ %IRREVERSIBLE%<U731B>     /x8e/xa1/xdb/xf7 <CJK>
+ %IRREVERSIBLE%<U7316>     /x8e/xa1/xdb/xf8 <CJK>
+ %IRREVERSIBLE%<U7313>     /x8e/xa1/xdb/xf9 <CJK>
+ %IRREVERSIBLE%<U7319>     /x8e/xa1/xdb/xfa <CJK>
+ %IRREVERSIBLE%<U7387>     /x8e/xa1/xdb/xfb <CJK>
+ %IRREVERSIBLE%<U7405>     /x8e/xa1/xdb/xfc <CJK>
+ %IRREVERSIBLE%<U740A>     /x8e/xa1/xdb/xfd <CJK>
+ %IRREVERSIBLE%<U7403>     /x8e/xa1/xdb/xfe <CJK>
+ %IRREVERSIBLE%<U7406>     /x8e/xa1/xdc/xa1 <CJK>
+ %IRREVERSIBLE%<U73FE>     /x8e/xa1/xdc/xa2 <CJK>
+ %IRREVERSIBLE%<U740D>     /x8e/xa1/xdc/xa3 <CJK>
+ %IRREVERSIBLE%<U74E0>     /x8e/xa1/xdc/xa4 <CJK>
+ %IRREVERSIBLE%<U74F6>     /x8e/xa1/xdc/xa5 <CJK>
+ %IRREVERSIBLE%<U74F7>     /x8e/xa1/xdc/xa6 <CJK>
+ %IRREVERSIBLE%<U751C>     /x8e/xa1/xdc/xa7 <CJK>
+ %IRREVERSIBLE%<U7522>     /x8e/xa1/xdc/xa8 <CJK>
+ %IRREVERSIBLE%<U7565>     /x8e/xa1/xdc/xa9 <CJK>
+ %IRREVERSIBLE%<U7566>     /x8e/xa1/xdc/xaa <CJK>
+ %IRREVERSIBLE%<U7562>     /x8e/xa1/xdc/xab <CJK>
+ %IRREVERSIBLE%<U7570>     /x8e/xa1/xdc/xac <CJK>
+ %IRREVERSIBLE%<U758F>     /x8e/xa1/xdc/xad <CJK>
+ %IRREVERSIBLE%<U75D4>     /x8e/xa1/xdc/xae <CJK>
+ %IRREVERSIBLE%<U75D5>     /x8e/xa1/xdc/xaf <CJK>
+ %IRREVERSIBLE%<U75B5>     /x8e/xa1/xdc/xb0 <CJK>
+ %IRREVERSIBLE%<U75CA>     /x8e/xa1/xdc/xb1 <CJK>
+ %IRREVERSIBLE%<U75CD>     /x8e/xa1/xdc/xb2 <CJK>
+ %IRREVERSIBLE%<U768E>     /x8e/xa1/xdc/xb3 <CJK>
+ %IRREVERSIBLE%<U76D4>     /x8e/xa1/xdc/xb4 <CJK>
+ %IRREVERSIBLE%<U76D2>     /x8e/xa1/xdc/xb5 <CJK>
+ %IRREVERSIBLE%<U76DB>     /x8e/xa1/xdc/xb6 <CJK>
+ %IRREVERSIBLE%<U7737>     /x8e/xa1/xdc/xb7 <CJK>
+ %IRREVERSIBLE%<U773E>     /x8e/xa1/xdc/xb8 <CJK>
+ %IRREVERSIBLE%<U773C>     /x8e/xa1/xdc/xb9 <CJK>
+ %IRREVERSIBLE%<U7736>     /x8e/xa1/xdc/xba <CJK>
+ %IRREVERSIBLE%<U7738>     /x8e/xa1/xdc/xbb <CJK>
+ %IRREVERSIBLE%<U773A>     /x8e/xa1/xdc/xbc <CJK>
+ %IRREVERSIBLE%<U786B>     /x8e/xa1/xdc/xbd <CJK>
+ %IRREVERSIBLE%<U7843>     /x8e/xa1/xdc/xbe <CJK>
+ %IRREVERSIBLE%<U784E>     /x8e/xa1/xdc/xbf <CJK>
+ %IRREVERSIBLE%<U7965>     /x8e/xa1/xdc/xc0 <CJK>
+ %IRREVERSIBLE%<U7968>     /x8e/xa1/xdc/xc1 <CJK>
+ %IRREVERSIBLE%<U796D>     /x8e/xa1/xdc/xc2 <CJK>
+ %IRREVERSIBLE%<U79FB>     /x8e/xa1/xdc/xc3 <CJK>
+ %IRREVERSIBLE%<U7A92>     /x8e/xa1/xdc/xc4 <CJK>
+ %IRREVERSIBLE%<U7A95>     /x8e/xa1/xdc/xc5 <CJK>
+ %IRREVERSIBLE%<U7B20>     /x8e/xa1/xdc/xc6 <CJK>
+ %IRREVERSIBLE%<U7B28>     /x8e/xa1/xdc/xc7 <CJK>
+ %IRREVERSIBLE%<U7B1B>     /x8e/xa1/xdc/xc8 <CJK>
+ %IRREVERSIBLE%<U7B2C>     /x8e/xa1/xdc/xc9 <CJK>
+ %IRREVERSIBLE%<U7B26>     /x8e/xa1/xdc/xca <CJK>
+ %IRREVERSIBLE%<U7B19>     /x8e/xa1/xdc/xcb <CJK>
+ %IRREVERSIBLE%<U7B1E>     /x8e/xa1/xdc/xcc <CJK>
+ %IRREVERSIBLE%<U7B2E>     /x8e/xa1/xdc/xcd <CJK>
+ %IRREVERSIBLE%<U7C92>     /x8e/xa1/xdc/xce <CJK>
+ %IRREVERSIBLE%<U7C97>     /x8e/xa1/xdc/xcf <CJK>
+ %IRREVERSIBLE%<U7C95>     /x8e/xa1/xdc/xd0 <CJK>
+ %IRREVERSIBLE%<U7D46>     /x8e/xa1/xdc/xd1 <CJK>
+ %IRREVERSIBLE%<U7D43>     /x8e/xa1/xdc/xd2 <CJK>
+ %IRREVERSIBLE%<U7D71>     /x8e/xa1/xdc/xd3 <CJK>
+ %IRREVERSIBLE%<U7D2E>     /x8e/xa1/xdc/xd4 <CJK>
+ %IRREVERSIBLE%<U7D39>     /x8e/xa1/xdc/xd5 <CJK>
+ %IRREVERSIBLE%<U7D3C>     /x8e/xa1/xdc/xd6 <CJK>
+ %IRREVERSIBLE%<U7D40>     /x8e/xa1/xdc/xd7 <CJK>
+ %IRREVERSIBLE%<U7D30>     /x8e/xa1/xdc/xd8 <CJK>
+ %IRREVERSIBLE%<U7D33>     /x8e/xa1/xdc/xd9 <CJK>
+ %IRREVERSIBLE%<U7D44>     /x8e/xa1/xdc/xda <CJK>
+ %IRREVERSIBLE%<U7D2F>     /x8e/xa1/xdc/xdb <CJK>
+ %IRREVERSIBLE%<U7D42>     /x8e/xa1/xdc/xdc <CJK>
+ %IRREVERSIBLE%<U7D32>     /x8e/xa1/xdc/xdd <CJK>
+ %IRREVERSIBLE%<U7D31>     /x8e/xa1/xdc/xde <CJK>
+ %IRREVERSIBLE%<U7F3D>     /x8e/xa1/xdc/xdf <CJK>
+ %IRREVERSIBLE%<U7F9E>     /x8e/xa1/xdc/xe0 <CJK>
+ %IRREVERSIBLE%<U7F9A>     /x8e/xa1/xdc/xe1 <CJK>
+ %IRREVERSIBLE%<U7FCC>     /x8e/xa1/xdc/xe2 <CJK>
+ %IRREVERSIBLE%<U7FCE>     /x8e/xa1/xdc/xe3 <CJK>
+ %IRREVERSIBLE%<U7FD2>     /x8e/xa1/xdc/xe4 <CJK>
+ %IRREVERSIBLE%<U801C>     /x8e/xa1/xdc/xe5 <CJK>
+ %IRREVERSIBLE%<U804A>     /x8e/xa1/xdc/xe6 <CJK>
+ %IRREVERSIBLE%<U8046>     /x8e/xa1/xdc/xe7 <CJK>
+ %IRREVERSIBLE%<U812F>     /x8e/xa1/xdc/xe8 <CJK>
+ %IRREVERSIBLE%<U8116>     /x8e/xa1/xdc/xe9 <CJK>
+ %IRREVERSIBLE%<U8123>     /x8e/xa1/xdc/xea <CJK>
+ %IRREVERSIBLE%<U812B>     /x8e/xa1/xdc/xeb <CJK>
+ %IRREVERSIBLE%<U8129>     /x8e/xa1/xdc/xec <CJK>
+ %IRREVERSIBLE%<U8130>     /x8e/xa1/xdc/xed <CJK>
+ %IRREVERSIBLE%<U8124>     /x8e/xa1/xdc/xee <CJK>
+ %IRREVERSIBLE%<U8202>     /x8e/xa1/xdc/xef <CJK>
+ %IRREVERSIBLE%<U8235>     /x8e/xa1/xdc/xf0 <CJK>
+ %IRREVERSIBLE%<U8237>     /x8e/xa1/xdc/xf1 <CJK>
+ %IRREVERSIBLE%<U8236>     /x8e/xa1/xdc/xf2 <CJK>
+ %IRREVERSIBLE%<U8239>     /x8e/xa1/xdc/xf3 <CJK>
+ %IRREVERSIBLE%<U838E>     /x8e/xa1/xdc/xf4 <CJK>
+ %IRREVERSIBLE%<U839E>     /x8e/xa1/xdc/xf5 <CJK>
+ %IRREVERSIBLE%<U8398>     /x8e/xa1/xdc/xf6 <CJK>
+ %IRREVERSIBLE%<U8378>     /x8e/xa1/xdc/xf7 <CJK>
+ %IRREVERSIBLE%<U83A2>     /x8e/xa1/xdc/xf8 <CJK>
+ %IRREVERSIBLE%<U8396>     /x8e/xa1/xdc/xf9 <CJK>
+ %IRREVERSIBLE%<U83BD>     /x8e/xa1/xdc/xfa <CJK>
+ %IRREVERSIBLE%<U83AB>     /x8e/xa1/xdc/xfb <CJK>
+ %IRREVERSIBLE%<U8392>     /x8e/xa1/xdc/xfc <CJK>
+ %IRREVERSIBLE%<U838A>     /x8e/xa1/xdc/xfd <CJK>
+ %IRREVERSIBLE%<U8393>     /x8e/xa1/xdc/xfe <CJK>
+ %IRREVERSIBLE%<U8389>     /x8e/xa1/xdd/xa1 <CJK>
+ %IRREVERSIBLE%<U83A0>     /x8e/xa1/xdd/xa2 <CJK>
+ %IRREVERSIBLE%<U8377>     /x8e/xa1/xdd/xa3 <CJK>
+ %IRREVERSIBLE%<U837B>     /x8e/xa1/xdd/xa4 <CJK>
+ %IRREVERSIBLE%<U837C>     /x8e/xa1/xdd/xa5 <CJK>
+ %IRREVERSIBLE%<U8386>     /x8e/xa1/xdd/xa6 <CJK>
+ %IRREVERSIBLE%<U83A7>     /x8e/xa1/xdd/xa7 <CJK>
+ %IRREVERSIBLE%<U8655>     /x8e/xa1/xdd/xa8 <CJK>
+ %IRREVERSIBLE%<U5F6A>     /x8e/xa1/xdd/xa9 <CJK>
+ %IRREVERSIBLE%<U86C7>     /x8e/xa1/xdd/xaa <CJK>
+ %IRREVERSIBLE%<U86C0>     /x8e/xa1/xdd/xab <CJK>
+ %IRREVERSIBLE%<U86B6>     /x8e/xa1/xdd/xac <CJK>
+ %IRREVERSIBLE%<U86C4>     /x8e/xa1/xdd/xad <CJK>
+ %IRREVERSIBLE%<U86B5>     /x8e/xa1/xdd/xae <CJK>
+ %IRREVERSIBLE%<U86C6>     /x8e/xa1/xdd/xaf <CJK>
+ %IRREVERSIBLE%<U86CB>     /x8e/xa1/xdd/xb0 <CJK>
+ %IRREVERSIBLE%<U86B1>     /x8e/xa1/xdd/xb1 <CJK>
+ %IRREVERSIBLE%<U86AF>     /x8e/xa1/xdd/xb2 <CJK>
+ %IRREVERSIBLE%<U86C9>     /x8e/xa1/xdd/xb3 <CJK>
+ %IRREVERSIBLE%<U8853>     /x8e/xa1/xdd/xb4 <CJK>
+ %IRREVERSIBLE%<U889E>     /x8e/xa1/xdd/xb5 <CJK>
+ %IRREVERSIBLE%<U8888>     /x8e/xa1/xdd/xb6 <CJK>
+ %IRREVERSIBLE%<U88AB>     /x8e/xa1/xdd/xb7 <CJK>
+ %IRREVERSIBLE%<U8892>     /x8e/xa1/xdd/xb8 <CJK>
+ %IRREVERSIBLE%<U8896>     /x8e/xa1/xdd/xb9 <CJK>
+ %IRREVERSIBLE%<U888D>     /x8e/xa1/xdd/xba <CJK>
+ %IRREVERSIBLE%<U888B>     /x8e/xa1/xdd/xbb <CJK>
+ %IRREVERSIBLE%<U8993>     /x8e/xa1/xdd/xbc <CJK>
+ %IRREVERSIBLE%<U898F>     /x8e/xa1/xdd/xbd <CJK>
+ %IRREVERSIBLE%<U8A2A>     /x8e/xa1/xdd/xbe <CJK>
+ %IRREVERSIBLE%<U8A1D>     /x8e/xa1/xdd/xbf <CJK>
+ %IRREVERSIBLE%<U8A23>     /x8e/xa1/xdd/xc0 <CJK>
+ %IRREVERSIBLE%<U8A25>     /x8e/xa1/xdd/xc1 <CJK>
+ %IRREVERSIBLE%<U8A31>     /x8e/xa1/xdd/xc2 <CJK>
+ %IRREVERSIBLE%<U8A2D>     /x8e/xa1/xdd/xc3 <CJK>
+ %IRREVERSIBLE%<U8A1F>     /x8e/xa1/xdd/xc4 <CJK>
+ %IRREVERSIBLE%<U8A1B>     /x8e/xa1/xdd/xc5 <CJK>
+ %IRREVERSIBLE%<U8A22>     /x8e/xa1/xdd/xc6 <CJK>
+ %IRREVERSIBLE%<U8C49>     /x8e/xa1/xdd/xc7 <CJK>
+ %IRREVERSIBLE%<U8C5A>     /x8e/xa1/xdd/xc8 <CJK>
+ %IRREVERSIBLE%<U8CA9>     /x8e/xa1/xdd/xc9 <CJK>
+ %IRREVERSIBLE%<U8CAC>     /x8e/xa1/xdd/xca <CJK>
+ %IRREVERSIBLE%<U8CAB>     /x8e/xa1/xdd/xcb <CJK>
+ %IRREVERSIBLE%<U8CA8>     /x8e/xa1/xdd/xcc <CJK>
+ %IRREVERSIBLE%<U8CAA>     /x8e/xa1/xdd/xcd <CJK>
+ %IRREVERSIBLE%<U8CA7>     /x8e/xa1/xdd/xce <CJK>
+ %IRREVERSIBLE%<U8D67>     /x8e/xa1/xdd/xcf <CJK>
+ %IRREVERSIBLE%<U8D66>     /x8e/xa1/xdd/xd0 <CJK>
+ %IRREVERSIBLE%<U8DBE>     /x8e/xa1/xdd/xd1 <CJK>
+ %IRREVERSIBLE%<U8DBA>     /x8e/xa1/xdd/xd2 <CJK>
+ %IRREVERSIBLE%<U8EDB>     /x8e/xa1/xdd/xd3 <CJK>
+ %IRREVERSIBLE%<U8EDF>     /x8e/xa1/xdd/xd4 <CJK>
+ %IRREVERSIBLE%<U9019>     /x8e/xa1/xdd/xd5 <CJK>
+ %IRREVERSIBLE%<U900D>     /x8e/xa1/xdd/xd6 <CJK>
+ %IRREVERSIBLE%<U901A>     /x8e/xa1/xdd/xd7 <CJK>
+ %IRREVERSIBLE%<U9017>     /x8e/xa1/xdd/xd8 <CJK>
+ %IRREVERSIBLE%<U9023>     /x8e/xa1/xdd/xd9 <CJK>
+ %IRREVERSIBLE%<U901F>     /x8e/xa1/xdd/xda <CJK>
+ %IRREVERSIBLE%<U901D>     /x8e/xa1/xdd/xdb <CJK>
+ %IRREVERSIBLE%<U9010>     /x8e/xa1/xdd/xdc <CJK>
+ %IRREVERSIBLE%<U9015>     /x8e/xa1/xdd/xdd <CJK>
+ %IRREVERSIBLE%<U901E>     /x8e/xa1/xdd/xde <CJK>
+ %IRREVERSIBLE%<U9020>     /x8e/xa1/xdd/xdf <CJK>
+ %IRREVERSIBLE%<U900F>     /x8e/xa1/xdd/xe0 <CJK>
+ %IRREVERSIBLE%<U9022>     /x8e/xa1/xdd/xe1 <CJK>
+ %IRREVERSIBLE%<U9016>     /x8e/xa1/xdd/xe2 <CJK>
+ %IRREVERSIBLE%<U901B>     /x8e/xa1/xdd/xe3 <CJK>
+ %IRREVERSIBLE%<U9014>     /x8e/xa1/xdd/xe4 <CJK>
+ %IRREVERSIBLE%<U90E8>     /x8e/xa1/xdd/xe5 <CJK>
+ %IRREVERSIBLE%<U90ED>     /x8e/xa1/xdd/xe6 <CJK>
+ %IRREVERSIBLE%<U90FD>     /x8e/xa1/xdd/xe7 <CJK>
+ %IRREVERSIBLE%<U9157>     /x8e/xa1/xdd/xe8 <CJK>
+ %IRREVERSIBLE%<U91CE>     /x8e/xa1/xdd/xe9 <CJK>
+ %IRREVERSIBLE%<U91F5>     /x8e/xa1/xdd/xea <CJK>
+ %IRREVERSIBLE%<U91E6>     /x8e/xa1/xdd/xeb <CJK>
+ %IRREVERSIBLE%<U91E3>     /x8e/xa1/xdd/xec <CJK>
+ %IRREVERSIBLE%<U91E7>     /x8e/xa1/xdd/xed <CJK>
+ %IRREVERSIBLE%<U91ED>     /x8e/xa1/xdd/xee <CJK>
+ %IRREVERSIBLE%<U91E9>     /x8e/xa1/xdd/xef <CJK>
+ %IRREVERSIBLE%<U9589>     /x8e/xa1/xdd/xf0 <CJK>
+ %IRREVERSIBLE%<U966A>     /x8e/xa1/xdd/xf1 <CJK>
+ %IRREVERSIBLE%<U9675>     /x8e/xa1/xdd/xf2 <CJK>
+ %IRREVERSIBLE%<U9673>     /x8e/xa1/xdd/xf3 <CJK>
+ %IRREVERSIBLE%<U9678>     /x8e/xa1/xdd/xf4 <CJK>
+ %IRREVERSIBLE%<U9670>     /x8e/xa1/xdd/xf5 <CJK>
+ %IRREVERSIBLE%<U9674>     /x8e/xa1/xdd/xf6 <CJK>
+ %IRREVERSIBLE%<U9676>     /x8e/xa1/xdd/xf7 <CJK>
+ %IRREVERSIBLE%<U9677>     /x8e/xa1/xdd/xf8 <CJK>
+ %IRREVERSIBLE%<U966C>     /x8e/xa1/xdd/xf9 <CJK>
+ %IRREVERSIBLE%<U96C0>     /x8e/xa1/xdd/xfa <CJK>
+ %IRREVERSIBLE%<U96EA>     /x8e/xa1/xdd/xfb <CJK>
+ %IRREVERSIBLE%<U96E9>     /x8e/xa1/xdd/xfc <CJK>
+ %IRREVERSIBLE%<U7AE0>     /x8e/xa1/xdd/xfd <CJK>
+ %IRREVERSIBLE%<U7ADF>     /x8e/xa1/xdd/xfe <CJK>
+ %IRREVERSIBLE%<U9802>     /x8e/xa1/xde/xa1 <CJK>
+ %IRREVERSIBLE%<U9803>     /x8e/xa1/xde/xa2 <CJK>
+ %IRREVERSIBLE%<U9B5A>     /x8e/xa1/xde/xa3 <CJK>
+ %IRREVERSIBLE%<U9CE5>     /x8e/xa1/xde/xa4 <CJK>
+ %IRREVERSIBLE%<U9E75>     /x8e/xa1/xde/xa5 <CJK>
+ %IRREVERSIBLE%<U9E7F>     /x8e/xa1/xde/xa6 <CJK>
+ %IRREVERSIBLE%<U9EA5>     /x8e/xa1/xde/xa7 <CJK>
+ %IRREVERSIBLE%<U9EBB>     /x8e/xa1/xde/xa8 <CJK>
+ %IRREVERSIBLE%<U50A2>     /x8e/xa1/xde/xa9 <CJK>
+ %IRREVERSIBLE%<U508D>     /x8e/xa1/xde/xaa <CJK>
+ %IRREVERSIBLE%<U5085>     /x8e/xa1/xde/xab <CJK>
+ %IRREVERSIBLE%<U5099>     /x8e/xa1/xde/xac <CJK>
+ %IRREVERSIBLE%<U5091>     /x8e/xa1/xde/xad <CJK>
+ %IRREVERSIBLE%<U5080>     /x8e/xa1/xde/xae <CJK>
+ %IRREVERSIBLE%<U5096>     /x8e/xa1/xde/xaf <CJK>
+ %IRREVERSIBLE%<U5098>     /x8e/xa1/xde/xb0 <CJK>
+ %IRREVERSIBLE%<U509A>     /x8e/xa1/xde/xb1 <CJK>
+ %IRREVERSIBLE%<U6700>     /x8e/xa1/xde/xb2 <CJK>
+ %IRREVERSIBLE%<U51F1>     /x8e/xa1/xde/xb3 <CJK>
+ %IRREVERSIBLE%<U5272>     /x8e/xa1/xde/xb4 <CJK>
+ %IRREVERSIBLE%<U5274>     /x8e/xa1/xde/xb5 <CJK>
+ %IRREVERSIBLE%<U5275>     /x8e/xa1/xde/xb6 <CJK>
+ %IRREVERSIBLE%<U5269>     /x8e/xa1/xde/xb7 <CJK>
+ %IRREVERSIBLE%<U52DE>     /x8e/xa1/xde/xb8 <CJK>
+ %IRREVERSIBLE%<U52DD>     /x8e/xa1/xde/xb9 <CJK>
+ %IRREVERSIBLE%<U52DB>     /x8e/xa1/xde/xba <CJK>
+ %IRREVERSIBLE%<U535A>     /x8e/xa1/xde/xbb <CJK>
+ %IRREVERSIBLE%<U53A5>     /x8e/xa1/xde/xbc <CJK>
+ %IRREVERSIBLE%<U557B>     /x8e/xa1/xde/xbd <CJK>
+ %IRREVERSIBLE%<U5580>     /x8e/xa1/xde/xbe <CJK>
+ %IRREVERSIBLE%<U55A7>     /x8e/xa1/xde/xbf <CJK>
+ %IRREVERSIBLE%<U557C>     /x8e/xa1/xde/xc0 <CJK>
+ %IRREVERSIBLE%<U558A>     /x8e/xa1/xde/xc1 <CJK>
+ %IRREVERSIBLE%<U559D>     /x8e/xa1/xde/xc2 <CJK>
+ %IRREVERSIBLE%<U5598>     /x8e/xa1/xde/xc3 <CJK>
+ %IRREVERSIBLE%<U5582>     /x8e/xa1/xde/xc4 <CJK>
+ %IRREVERSIBLE%<U559C>     /x8e/xa1/xde/xc5 <CJK>
+ %IRREVERSIBLE%<U55AA>     /x8e/xa1/xde/xc6 <CJK>
+ %IRREVERSIBLE%<U5594>     /x8e/xa1/xde/xc7 <CJK>
+ %IRREVERSIBLE%<U5587>     /x8e/xa1/xde/xc8 <CJK>
+ %IRREVERSIBLE%<U558B>     /x8e/xa1/xde/xc9 <CJK>
+ %IRREVERSIBLE%<U5583>     /x8e/xa1/xde/xca <CJK>
+ %IRREVERSIBLE%<U55B3>     /x8e/xa1/xde/xcb <CJK>
+ %IRREVERSIBLE%<U55AE>     /x8e/xa1/xde/xcc <CJK>
+ %IRREVERSIBLE%<U559F>     /x8e/xa1/xde/xcd <CJK>
+ %IRREVERSIBLE%<U553E>     /x8e/xa1/xde/xce <CJK>
+ %IRREVERSIBLE%<U55B2>     /x8e/xa1/xde/xcf <CJK>
+ %IRREVERSIBLE%<U559A>     /x8e/xa1/xde/xd0 <CJK>
+ %IRREVERSIBLE%<U55BB>     /x8e/xa1/xde/xd1 <CJK>
+ %IRREVERSIBLE%<U55AC>     /x8e/xa1/xde/xd2 <CJK>
+ %IRREVERSIBLE%<U55B1>     /x8e/xa1/xde/xd3 <CJK>
+ %IRREVERSIBLE%<U557E>     /x8e/xa1/xde/xd4 <CJK>
+ %IRREVERSIBLE%<U5589>     /x8e/xa1/xde/xd5 <CJK>
+ %IRREVERSIBLE%<U55AB>     /x8e/xa1/xde/xd6 <CJK>
+ %IRREVERSIBLE%<U5599>     /x8e/xa1/xde/xd7 <CJK>
+ %IRREVERSIBLE%<U570D>     /x8e/xa1/xde/xd8 <CJK>
+ %IRREVERSIBLE%<U582F>     /x8e/xa1/xde/xd9 <CJK>
+ %IRREVERSIBLE%<U582A>     /x8e/xa1/xde/xda <CJK>
+ %IRREVERSIBLE%<U5834>     /x8e/xa1/xde/xdb <CJK>
+ %IRREVERSIBLE%<U5824>     /x8e/xa1/xde/xdc <CJK>
+ %IRREVERSIBLE%<U5830>     /x8e/xa1/xde/xdd <CJK>
+ %IRREVERSIBLE%<U5831>     /x8e/xa1/xde/xde <CJK>
+ %IRREVERSIBLE%<U5821>     /x8e/xa1/xde/xdf <CJK>
+ %IRREVERSIBLE%<U581D>     /x8e/xa1/xde/xe0 <CJK>
+ %IRREVERSIBLE%<U5820>     /x8e/xa1/xde/xe1 <CJK>
+ %IRREVERSIBLE%<U58F9>     /x8e/xa1/xde/xe2 <CJK>
+ %IRREVERSIBLE%<U58FA>     /x8e/xa1/xde/xe3 <CJK>
+ %IRREVERSIBLE%<U5960>     /x8e/xa1/xde/xe4 <CJK>
+ %IRREVERSIBLE%<U5A77>     /x8e/xa1/xde/xe5 <CJK>
+ %IRREVERSIBLE%<U5A9A>     /x8e/xa1/xde/xe6 <CJK>
+ %IRREVERSIBLE%<U5A7F>     /x8e/xa1/xde/xe7 <CJK>
+ %IRREVERSIBLE%<U5A92>     /x8e/xa1/xde/xe8 <CJK>
+ %IRREVERSIBLE%<U5A9B>     /x8e/xa1/xde/xe9 <CJK>
+ %IRREVERSIBLE%<U5AA7>     /x8e/xa1/xde/xea <CJK>
+ %IRREVERSIBLE%<U5B73>     /x8e/xa1/xde/xeb <CJK>
+ %IRREVERSIBLE%<U5B71>     /x8e/xa1/xde/xec <CJK>
+ %IRREVERSIBLE%<U5BD2>     /x8e/xa1/xde/xed <CJK>
+ %IRREVERSIBLE%<U5BCC>     /x8e/xa1/xde/xee <CJK>
+ %IRREVERSIBLE%<U5BD3>     /x8e/xa1/xde/xef <CJK>
+ %IRREVERSIBLE%<U5BD0>     /x8e/xa1/xde/xf0 <CJK>
+ %IRREVERSIBLE%<U5C0A>     /x8e/xa1/xde/xf1 <CJK>
+ %IRREVERSIBLE%<U5C0B>     /x8e/xa1/xde/xf2 <CJK>
+ %IRREVERSIBLE%<U5C31>     /x8e/xa1/xde/xf3 <CJK>
+ %IRREVERSIBLE%<U5D4C>     /x8e/xa1/xde/xf4 <CJK>
+ %IRREVERSIBLE%<U5D50>     /x8e/xa1/xde/xf5 <CJK>
+ %IRREVERSIBLE%<U5D34>     /x8e/xa1/xde/xf6 <CJK>
+ %IRREVERSIBLE%<U5D47>     /x8e/xa1/xde/xf7 <CJK>
+ %IRREVERSIBLE%<U5DFD>     /x8e/xa1/xde/xf8 <CJK>
+ %IRREVERSIBLE%<U5E45>     /x8e/xa1/xde/xf9 <CJK>
+ %IRREVERSIBLE%<U5E3D>     /x8e/xa1/xde/xfa <CJK>
+ %IRREVERSIBLE%<U5E40>     /x8e/xa1/xde/xfb <CJK>
+ %IRREVERSIBLE%<U5E43>     /x8e/xa1/xde/xfc <CJK>
+ %IRREVERSIBLE%<U5E7E>     /x8e/xa1/xde/xfd <CJK>
+ %IRREVERSIBLE%<U5ECA>     /x8e/xa1/xde/xfe <CJK>
+ %IRREVERSIBLE%<U5EC1>     /x8e/xa1/xdf/xa1 <CJK>
+ %IRREVERSIBLE%<U5EC2>     /x8e/xa1/xdf/xa2 <CJK>
+ %IRREVERSIBLE%<U5EC4>     /x8e/xa1/xdf/xa3 <CJK>
+ %IRREVERSIBLE%<U5F3C>     /x8e/xa1/xdf/xa4 <CJK>
+ %IRREVERSIBLE%<U5F6D>     /x8e/xa1/xdf/xa5 <CJK>
+ %IRREVERSIBLE%<U5FA9>     /x8e/xa1/xdf/xa6 <CJK>
+ %IRREVERSIBLE%<U5FAA>     /x8e/xa1/xdf/xa7 <CJK>
+ %IRREVERSIBLE%<U5FA8>     /x8e/xa1/xdf/xa8 <CJK>
+ %IRREVERSIBLE%<U60D1>     /x8e/xa1/xdf/xa9 <CJK>
+ %IRREVERSIBLE%<U60E1>     /x8e/xa1/xdf/xaa <CJK>
+ %IRREVERSIBLE%<U60B2>     /x8e/xa1/xdf/xab <CJK>
+ %IRREVERSIBLE%<U60B6>     /x8e/xa1/xdf/xac <CJK>
+ %IRREVERSIBLE%<U60E0>     /x8e/xa1/xdf/xad <CJK>
+ %IRREVERSIBLE%<U611C>     /x8e/xa1/xdf/xae <CJK>
+ %IRREVERSIBLE%<U6123>     /x8e/xa1/xdf/xaf <CJK>
+ %IRREVERSIBLE%<U60FA>     /x8e/xa1/xdf/xb0 <CJK>
+ %IRREVERSIBLE%<U6115>     /x8e/xa1/xdf/xb1 <CJK>
+ %IRREVERSIBLE%<U60F0>     /x8e/xa1/xdf/xb2 <CJK>
+ %IRREVERSIBLE%<U60FB>     /x8e/xa1/xdf/xb3 <CJK>
+ %IRREVERSIBLE%<U60F4>     /x8e/xa1/xdf/xb4 <CJK>
+ %IRREVERSIBLE%<U6168>     /x8e/xa1/xdf/xb5 <CJK>
+ %IRREVERSIBLE%<U60F1>     /x8e/xa1/xdf/xb6 <CJK>
+ %IRREVERSIBLE%<U610E>     /x8e/xa1/xdf/xb7 <CJK>
+ %IRREVERSIBLE%<U60F6>     /x8e/xa1/xdf/xb8 <CJK>
+ %IRREVERSIBLE%<U6109>     /x8e/xa1/xdf/xb9 <CJK>
+ %IRREVERSIBLE%<U6100>     /x8e/xa1/xdf/xba <CJK>
+ %IRREVERSIBLE%<U6112>     /x8e/xa1/xdf/xbb <CJK>
+ %IRREVERSIBLE%<U621F>     /x8e/xa1/xdf/xbc <CJK>
+ %IRREVERSIBLE%<U6249>     /x8e/xa1/xdf/xbd <CJK>
+ %IRREVERSIBLE%<U63A3>     /x8e/xa1/xdf/xbe <CJK>
+ %IRREVERSIBLE%<U638C>     /x8e/xa1/xdf/xbf <CJK>
+ %IRREVERSIBLE%<U63CF>     /x8e/xa1/xdf/xc0 <CJK>
+ %IRREVERSIBLE%<U63C0>     /x8e/xa1/xdf/xc1 <CJK>
+ %IRREVERSIBLE%<U63E9>     /x8e/xa1/xdf/xc2 <CJK>
+ %IRREVERSIBLE%<U63C9>     /x8e/xa1/xdf/xc3 <CJK>
+ %IRREVERSIBLE%<U63C6>     /x8e/xa1/xdf/xc4 <CJK>
+ %IRREVERSIBLE%<U63CD>     /x8e/xa1/xdf/xc5 <CJK>
+ %IRREVERSIBLE%<U63D2>     /x8e/xa1/xdf/xc6 <CJK>
+ %IRREVERSIBLE%<U63E3>     /x8e/xa1/xdf/xc7 <CJK>
+ %IRREVERSIBLE%<U63D0>     /x8e/xa1/xdf/xc8 <CJK>
+ %IRREVERSIBLE%<U63E1>     /x8e/xa1/xdf/xc9 <CJK>
+ %IRREVERSIBLE%<U63D6>     /x8e/xa1/xdf/xca <CJK>
+ %IRREVERSIBLE%<U63ED>     /x8e/xa1/xdf/xcb <CJK>
+ %IRREVERSIBLE%<U63EE>     /x8e/xa1/xdf/xcc <CJK>
+ %IRREVERSIBLE%<U6376>     /x8e/xa1/xdf/xcd <CJK>
+ %IRREVERSIBLE%<U63F4>     /x8e/xa1/xdf/xce <CJK>
+ %IRREVERSIBLE%<U63EA>     /x8e/xa1/xdf/xcf <CJK>
+ %IRREVERSIBLE%<U63DB>     /x8e/xa1/xdf/xd0 <CJK>
+ %IRREVERSIBLE%<U6452>     /x8e/xa1/xdf/xd1 <CJK>
+ %IRREVERSIBLE%<U63DA>     /x8e/xa1/xdf/xd2 <CJK>
+ %IRREVERSIBLE%<U63F9>     /x8e/xa1/xdf/xd3 <CJK>
+ %IRREVERSIBLE%<U655E>     /x8e/xa1/xdf/xd4 <CJK>
+ %IRREVERSIBLE%<U6566>     /x8e/xa1/xdf/xd5 <CJK>
+ %IRREVERSIBLE%<U6562>     /x8e/xa1/xdf/xd6 <CJK>
+ %IRREVERSIBLE%<U6563>     /x8e/xa1/xdf/xd7 <CJK>
+ %IRREVERSIBLE%<U6591>     /x8e/xa1/xdf/xd8 <CJK>
+ %IRREVERSIBLE%<U6590>     /x8e/xa1/xdf/xd9 <CJK>
+ %IRREVERSIBLE%<U65AF>     /x8e/xa1/xdf/xda <CJK>
+ %IRREVERSIBLE%<U666E>     /x8e/xa1/xdf/xdb <CJK>
+ %IRREVERSIBLE%<U6670>     /x8e/xa1/xdf/xdc <CJK>
+ %IRREVERSIBLE%<U6674>     /x8e/xa1/xdf/xdd <CJK>
+ %IRREVERSIBLE%<U6676>     /x8e/xa1/xdf/xde <CJK>
+ %IRREVERSIBLE%<U666F>     /x8e/xa1/xdf/xdf <CJK>
+ %IRREVERSIBLE%<U6691>     /x8e/xa1/xdf/xe0 <CJK>
+ %IRREVERSIBLE%<U667A>     /x8e/xa1/xdf/xe1 <CJK>
+ %IRREVERSIBLE%<U667E>     /x8e/xa1/xdf/xe2 <CJK>
+ %IRREVERSIBLE%<U6677>     /x8e/xa1/xdf/xe3 <CJK>
+ %IRREVERSIBLE%<U66FE>     /x8e/xa1/xdf/xe4 <CJK>
+ %IRREVERSIBLE%<U66FF>     /x8e/xa1/xdf/xe5 <CJK>
+ %IRREVERSIBLE%<U671F>     /x8e/xa1/xdf/xe6 <CJK>
+ %IRREVERSIBLE%<U671D>     /x8e/xa1/xdf/xe7 <CJK>
+ %IRREVERSIBLE%<U68FA>     /x8e/xa1/xdf/xe8 <CJK>
+ %IRREVERSIBLE%<U68D5>     /x8e/xa1/xdf/xe9 <CJK>
+ %IRREVERSIBLE%<U68E0>     /x8e/xa1/xdf/xea <CJK>
+ %IRREVERSIBLE%<U68D8>     /x8e/xa1/xdf/xeb <CJK>
+ %IRREVERSIBLE%<U68D7>     /x8e/xa1/xdf/xec <CJK>
+ %IRREVERSIBLE%<U6905>     /x8e/xa1/xdf/xed <CJK>
+ %IRREVERSIBLE%<U68DF>     /x8e/xa1/xdf/xee <CJK>
+ %IRREVERSIBLE%<U68F5>     /x8e/xa1/xdf/xef <CJK>
+ %IRREVERSIBLE%<U68EE>     /x8e/xa1/xdf/xf0 <CJK>
+ %IRREVERSIBLE%<U68E7>     /x8e/xa1/xdf/xf1 <CJK>
+ %IRREVERSIBLE%<U68F9>     /x8e/xa1/xdf/xf2 <CJK>
+ %IRREVERSIBLE%<U68D2>     /x8e/xa1/xdf/xf3 <CJK>
+ %IRREVERSIBLE%<U68F2>     /x8e/xa1/xdf/xf4 <CJK>
+ %IRREVERSIBLE%<U68E3>     /x8e/xa1/xdf/xf5 <CJK>
+ %IRREVERSIBLE%<U68CB>     /x8e/xa1/xdf/xf6 <CJK>
+ %IRREVERSIBLE%<U68CD>     /x8e/xa1/xdf/xf7 <CJK>
+ %IRREVERSIBLE%<U690D>     /x8e/xa1/xdf/xf8 <CJK>
+ %IRREVERSIBLE%<U6912>     /x8e/xa1/xdf/xf9 <CJK>
+ %IRREVERSIBLE%<U690E>     /x8e/xa1/xdf/xfa <CJK>
+ %IRREVERSIBLE%<U68C9>     /x8e/xa1/xdf/xfb <CJK>
+ %IRREVERSIBLE%<U68DA>     /x8e/xa1/xdf/xfc <CJK>
+ %IRREVERSIBLE%<U696E>     /x8e/xa1/xdf/xfd <CJK>
+ %IRREVERSIBLE%<U68FB>     /x8e/xa1/xdf/xfe <CJK>
+ %IRREVERSIBLE%<U6B3E>     /x8e/xa1/xe0/xa1 <CJK>
+ %IRREVERSIBLE%<U6B3A>     /x8e/xa1/xe0/xa2 <CJK>
+ %IRREVERSIBLE%<U6B3D>     /x8e/xa1/xe0/xa3 <CJK>
+ %IRREVERSIBLE%<U6B98>     /x8e/xa1/xe0/xa4 <CJK>
+ %IRREVERSIBLE%<U6B96>     /x8e/xa1/xe0/xa5 <CJK>
+ %IRREVERSIBLE%<U6BBC>     /x8e/xa1/xe0/xa6 <CJK>
+ %IRREVERSIBLE%<U6BEF>     /x8e/xa1/xe0/xa7 <CJK>
+ %IRREVERSIBLE%<U6C2E>     /x8e/xa1/xe0/xa8 <CJK>
+ %IRREVERSIBLE%<U6C2F>     /x8e/xa1/xe0/xa9 <CJK>
+ %IRREVERSIBLE%<U6C2C>     /x8e/xa1/xe0/xaa <CJK>
+ %IRREVERSIBLE%<U6E2F>     /x8e/xa1/xe0/xab <CJK>
+ %IRREVERSIBLE%<U6E38>     /x8e/xa1/xe0/xac <CJK>
+ %IRREVERSIBLE%<U6E54>     /x8e/xa1/xe0/xad <CJK>
+ %IRREVERSIBLE%<U6E21>     /x8e/xa1/xe0/xae <CJK>
+ %IRREVERSIBLE%<U6E32>     /x8e/xa1/xe0/xaf <CJK>
+ %IRREVERSIBLE%<U6E67>     /x8e/xa1/xe0/xb0 <CJK>
+ %IRREVERSIBLE%<U6E4A>     /x8e/xa1/xe0/xb1 <CJK>
+ %IRREVERSIBLE%<U6E20>     /x8e/xa1/xe0/xb2 <CJK>
+ %IRREVERSIBLE%<U6E25>     /x8e/xa1/xe0/xb3 <CJK>
+ %IRREVERSIBLE%<U6E23>     /x8e/xa1/xe0/xb4 <CJK>
+ %IRREVERSIBLE%<U6E1B>     /x8e/xa1/xe0/xb5 <CJK>
+ %IRREVERSIBLE%<U6E5B>     /x8e/xa1/xe0/xb6 <CJK>
+ %IRREVERSIBLE%<U6E58>     /x8e/xa1/xe0/xb7 <CJK>
+ %IRREVERSIBLE%<U6E24>     /x8e/xa1/xe0/xb8 <CJK>
+ %IRREVERSIBLE%<U6E56>     /x8e/xa1/xe0/xb9 <CJK>
+ %IRREVERSIBLE%<U6E6E>     /x8e/xa1/xe0/xba <CJK>
+ %IRREVERSIBLE%<U6E2D>     /x8e/xa1/xe0/xbb <CJK>
+ %IRREVERSIBLE%<U6E26>     /x8e/xa1/xe0/xbc <CJK>
+ %IRREVERSIBLE%<U6E6F>     /x8e/xa1/xe0/xbd <CJK>
+ %IRREVERSIBLE%<U6E34>     /x8e/xa1/xe0/xbe <CJK>
+ %IRREVERSIBLE%<U6E4D>     /x8e/xa1/xe0/xbf <CJK>
+ %IRREVERSIBLE%<U6E3A>     /x8e/xa1/xe0/xc0 <CJK>
+ %IRREVERSIBLE%<U6E2C>     /x8e/xa1/xe0/xc1 <CJK>
+ %IRREVERSIBLE%<U6E43>     /x8e/xa1/xe0/xc2 <CJK>
+ %IRREVERSIBLE%<U6E1D>     /x8e/xa1/xe0/xc3 <CJK>
+ %IRREVERSIBLE%<U6E3E>     /x8e/xa1/xe0/xc4 <CJK>
+ %IRREVERSIBLE%<U6ECB>     /x8e/xa1/xe0/xc5 <CJK>
+ %IRREVERSIBLE%<U6E89>     /x8e/xa1/xe0/xc6 <CJK>
+ %IRREVERSIBLE%<U6E19>     /x8e/xa1/xe0/xc7 <CJK>
+ %IRREVERSIBLE%<U6E4E>     /x8e/xa1/xe0/xc8 <CJK>
+ %IRREVERSIBLE%<U6E63>     /x8e/xa1/xe0/xc9 <CJK>
+ %IRREVERSIBLE%<U6E44>     /x8e/xa1/xe0/xca <CJK>
+ %IRREVERSIBLE%<U6E72>     /x8e/xa1/xe0/xcb <CJK>
+ %IRREVERSIBLE%<U6E69>     /x8e/xa1/xe0/xcc <CJK>
+ %IRREVERSIBLE%<U6E5F>     /x8e/xa1/xe0/xcd <CJK>
+ %IRREVERSIBLE%<U7119>     /x8e/xa1/xe0/xce <CJK>
+ %IRREVERSIBLE%<U711A>     /x8e/xa1/xe0/xcf <CJK>
+ %IRREVERSIBLE%<U7126>     /x8e/xa1/xe0/xd0 <CJK>
+ %IRREVERSIBLE%<U7130>     /x8e/xa1/xe0/xd1 <CJK>
+ %IRREVERSIBLE%<U7121>     /x8e/xa1/xe0/xd2 <CJK>
+ %IRREVERSIBLE%<U7136>     /x8e/xa1/xe0/xd3 <CJK>
+ %IRREVERSIBLE%<U716E>     /x8e/xa1/xe0/xd4 <CJK>
+ %IRREVERSIBLE%<U711C>     /x8e/xa1/xe0/xd5 <CJK>
+ %IRREVERSIBLE%<U724C>     /x8e/xa1/xe0/xd6 <CJK>
+ %IRREVERSIBLE%<U7284>     /x8e/xa1/xe0/xd7 <CJK>
+ %IRREVERSIBLE%<U7280>     /x8e/xa1/xe0/xd8 <CJK>
+ %IRREVERSIBLE%<U7336>     /x8e/xa1/xe0/xd9 <CJK>
+ %IRREVERSIBLE%<U7325>     /x8e/xa1/xe0/xda <CJK>
+ %IRREVERSIBLE%<U7334>     /x8e/xa1/xe0/xdb <CJK>
+ %IRREVERSIBLE%<U7329>     /x8e/xa1/xe0/xdc <CJK>
+ %IRREVERSIBLE%<U743A>     /x8e/xa1/xe0/xdd <CJK>
+ %IRREVERSIBLE%<U742A>     /x8e/xa1/xe0/xde <CJK>
+ %IRREVERSIBLE%<U7433>     /x8e/xa1/xe0/xdf <CJK>
+ %IRREVERSIBLE%<U7422>     /x8e/xa1/xe0/xe0 <CJK>
+ %IRREVERSIBLE%<U7425>     /x8e/xa1/xe0/xe1 <CJK>
+ %IRREVERSIBLE%<U7435>     /x8e/xa1/xe0/xe2 <CJK>
+ %IRREVERSIBLE%<U7436>     /x8e/xa1/xe0/xe3 <CJK>
+ %IRREVERSIBLE%<U7434>     /x8e/xa1/xe0/xe4 <CJK>
+ %IRREVERSIBLE%<U742F>     /x8e/xa1/xe0/xe5 <CJK>
+ %IRREVERSIBLE%<U741B>     /x8e/xa1/xe0/xe6 <CJK>
+ %IRREVERSIBLE%<U7426>     /x8e/xa1/xe0/xe7 <CJK>
+ %IRREVERSIBLE%<U7428>     /x8e/xa1/xe0/xe8 <CJK>
+ %IRREVERSIBLE%<U7525>     /x8e/xa1/xe0/xe9 <CJK>
+ %IRREVERSIBLE%<U7526>     /x8e/xa1/xe0/xea <CJK>
+ %IRREVERSIBLE%<U756B>     /x8e/xa1/xe0/xeb <CJK>
+ %IRREVERSIBLE%<U756A>     /x8e/xa1/xe0/xec <CJK>
+ %IRREVERSIBLE%<U75E2>     /x8e/xa1/xe0/xed <CJK>
+ %IRREVERSIBLE%<U75DB>     /x8e/xa1/xe0/xee <CJK>
+ %IRREVERSIBLE%<U75E3>     /x8e/xa1/xe0/xef <CJK>
+ %IRREVERSIBLE%<U75D9>     /x8e/xa1/xe0/xf0 <CJK>
+ %IRREVERSIBLE%<U75D8>     /x8e/xa1/xe0/xf1 <CJK>
+ %IRREVERSIBLE%<U75DE>     /x8e/xa1/xe0/xf2 <CJK>
+ %IRREVERSIBLE%<U75E0>     /x8e/xa1/xe0/xf3 <CJK>
+ %IRREVERSIBLE%<U767B>     /x8e/xa1/xe0/xf4 <CJK>
+ %IRREVERSIBLE%<U767C>     /x8e/xa1/xe0/xf5 <CJK>
+ %IRREVERSIBLE%<U7696>     /x8e/xa1/xe0/xf6 <CJK>
+ %IRREVERSIBLE%<U7693>     /x8e/xa1/xe0/xf7 <CJK>
+ %IRREVERSIBLE%<U76B4>     /x8e/xa1/xe0/xf8 <CJK>
+ %IRREVERSIBLE%<U76DC>     /x8e/xa1/xe0/xf9 <CJK>
+ %IRREVERSIBLE%<U774F>     /x8e/xa1/xe0/xfa <CJK>
+ %IRREVERSIBLE%<U77ED>     /x8e/xa1/xe0/xfb <CJK>
+ %IRREVERSIBLE%<U785D>     /x8e/xa1/xe0/xfc <CJK>
+ %IRREVERSIBLE%<U786C>     /x8e/xa1/xe0/xfd <CJK>
+ %IRREVERSIBLE%<U786F>     /x8e/xa1/xe0/xfe <CJK>
+ %IRREVERSIBLE%<U7A0D>     /x8e/xa1/xe1/xa1 <CJK>
+ %IRREVERSIBLE%<U7A08>     /x8e/xa1/xe1/xa2 <CJK>
+ %IRREVERSIBLE%<U7A0B>     /x8e/xa1/xe1/xa3 <CJK>
+ %IRREVERSIBLE%<U7A05>     /x8e/xa1/xe1/xa4 <CJK>
+ %IRREVERSIBLE%<U7A00>     /x8e/xa1/xe1/xa5 <CJK>
+ %IRREVERSIBLE%<U7A98>     /x8e/xa1/xe1/xa6 <CJK>
+ %IRREVERSIBLE%<U7A97>     /x8e/xa1/xe1/xa7 <CJK>
+ %IRREVERSIBLE%<U7A96>     /x8e/xa1/xe1/xa8 <CJK>
+ %IRREVERSIBLE%<U7AE5>     /x8e/xa1/xe1/xa9 <CJK>
+ %IRREVERSIBLE%<U7AE3>     /x8e/xa1/xe1/xaa <CJK>
+ %IRREVERSIBLE%<U7B49>     /x8e/xa1/xe1/xab <CJK>
+ %IRREVERSIBLE%<U7B56>     /x8e/xa1/xe1/xac <CJK>
+ %IRREVERSIBLE%<U7B46>     /x8e/xa1/xe1/xad <CJK>
+ %IRREVERSIBLE%<U7B50>     /x8e/xa1/xe1/xae <CJK>
+ %IRREVERSIBLE%<U7B52>     /x8e/xa1/xe1/xaf <CJK>
+ %IRREVERSIBLE%<U7B54>     /x8e/xa1/xe1/xb0 <CJK>
+ %IRREVERSIBLE%<U7B4D>     /x8e/xa1/xe1/xb1 <CJK>
+ %IRREVERSIBLE%<U7B4B>     /x8e/xa1/xe1/xb2 <CJK>
+ %IRREVERSIBLE%<U7B4F>     /x8e/xa1/xe1/xb3 <CJK>
+ %IRREVERSIBLE%<U7B51>     /x8e/xa1/xe1/xb4 <CJK>
+ %IRREVERSIBLE%<U7C9F>     /x8e/xa1/xe1/xb5 <CJK>
+ %IRREVERSIBLE%<U7CA5>     /x8e/xa1/xe1/xb6 <CJK>
+ %IRREVERSIBLE%<U7D5E>     /x8e/xa1/xe1/xb7 <CJK>
+ %IRREVERSIBLE%<U7D50>     /x8e/xa1/xe1/xb8 <CJK>
+ %IRREVERSIBLE%<U7D68>     /x8e/xa1/xe1/xb9 <CJK>
+ %IRREVERSIBLE%<U7D55>     /x8e/xa1/xe1/xba <CJK>
+ %IRREVERSIBLE%<U7D2B>     /x8e/xa1/xe1/xbb <CJK>
+ %IRREVERSIBLE%<U7D6E>     /x8e/xa1/xe1/xbc <CJK>
+ %IRREVERSIBLE%<U7D72>     /x8e/xa1/xe1/xbd <CJK>
+ %IRREVERSIBLE%<U7D61>     /x8e/xa1/xe1/xbe <CJK>
+ %IRREVERSIBLE%<U7D66>     /x8e/xa1/xe1/xbf <CJK>
+ %IRREVERSIBLE%<U7D62>     /x8e/xa1/xe1/xc0 <CJK>
+ %IRREVERSIBLE%<U7D70>     /x8e/xa1/xe1/xc1 <CJK>
+ %IRREVERSIBLE%<U7D73>     /x8e/xa1/xe1/xc2 <CJK>
+ %IRREVERSIBLE%<U5584>     /x8e/xa1/xe1/xc3 <CJK>
+ %IRREVERSIBLE%<U7FD4>     /x8e/xa1/xe1/xc4 <CJK>
+ %IRREVERSIBLE%<U7FD5>     /x8e/xa1/xe1/xc5 <CJK>
+ %IRREVERSIBLE%<U800B>     /x8e/xa1/xe1/xc6 <CJK>
+ %IRREVERSIBLE%<U8052>     /x8e/xa1/xe1/xc7 <CJK>
+ %IRREVERSIBLE%<U8085>     /x8e/xa1/xe1/xc8 <CJK>
+ %IRREVERSIBLE%<U8155>     /x8e/xa1/xe1/xc9 <CJK>
+ %IRREVERSIBLE%<U8154>     /x8e/xa1/xe1/xca <CJK>
+ %IRREVERSIBLE%<U814B>     /x8e/xa1/xe1/xcb <CJK>
+ %IRREVERSIBLE%<U8151>     /x8e/xa1/xe1/xcc <CJK>
+ %IRREVERSIBLE%<U814E>     /x8e/xa1/xe1/xcd <CJK>
+ %IRREVERSIBLE%<U8139>     /x8e/xa1/xe1/xce <CJK>
+ %IRREVERSIBLE%<U8146>     /x8e/xa1/xe1/xcf <CJK>
+ %IRREVERSIBLE%<U813E>     /x8e/xa1/xe1/xd0 <CJK>
+ %IRREVERSIBLE%<U814C>     /x8e/xa1/xe1/xd1 <CJK>
+ %IRREVERSIBLE%<U8153>     /x8e/xa1/xe1/xd2 <CJK>
+ %IRREVERSIBLE%<U8174>     /x8e/xa1/xe1/xd3 <CJK>
+ %IRREVERSIBLE%<U8212>     /x8e/xa1/xe1/xd4 <CJK>
+ %IRREVERSIBLE%<U821C>     /x8e/xa1/xe1/xd5 <CJK>
+ %IRREVERSIBLE%<U83E9>     /x8e/xa1/xe1/xd6 <CJK>
+ %IRREVERSIBLE%<U8403>     /x8e/xa1/xe1/xd7 <CJK>
+ %IRREVERSIBLE%<U83F8>     /x8e/xa1/xe1/xd8 <CJK>
+ %IRREVERSIBLE%<U840D>     /x8e/xa1/xe1/xd9 <CJK>
+ %IRREVERSIBLE%<U83E0>     /x8e/xa1/xe1/xda <CJK>
+ %IRREVERSIBLE%<U83C5>     /x8e/xa1/xe1/xdb <CJK>
+ %IRREVERSIBLE%<U840B>     /x8e/xa1/xe1/xdc <CJK>
+ %IRREVERSIBLE%<U83C1>     /x8e/xa1/xe1/xdd <CJK>
+ %IRREVERSIBLE%<U83EF>     /x8e/xa1/xe1/xde <CJK>
+ %IRREVERSIBLE%<U83F1>     /x8e/xa1/xe1/xdf <CJK>
+ %IRREVERSIBLE%<U83F4>     /x8e/xa1/xe1/xe0 <CJK>
+ %IRREVERSIBLE%<U8457>     /x8e/xa1/xe1/xe1 <CJK>
+ %IRREVERSIBLE%<U840A>     /x8e/xa1/xe1/xe2 <CJK>
+ %IRREVERSIBLE%<U83F0>     /x8e/xa1/xe1/xe3 <CJK>
+ %IRREVERSIBLE%<U840C>     /x8e/xa1/xe1/xe4 <CJK>
+ %IRREVERSIBLE%<U83CC>     /x8e/xa1/xe1/xe5 <CJK>
+ %IRREVERSIBLE%<U83FD>     /x8e/xa1/xe1/xe6 <CJK>
+ %IRREVERSIBLE%<U83F2>     /x8e/xa1/xe1/xe7 <CJK>
+ %IRREVERSIBLE%<U83CA>     /x8e/xa1/xe1/xe8 <CJK>
+ %IRREVERSIBLE%<U8438>     /x8e/xa1/xe1/xe9 <CJK>
+ %IRREVERSIBLE%<U840E>     /x8e/xa1/xe1/xea <CJK>
+ %IRREVERSIBLE%<U8404>     /x8e/xa1/xe1/xeb <CJK>
+ %IRREVERSIBLE%<U83DC>     /x8e/xa1/xe1/xec <CJK>
+ %IRREVERSIBLE%<U8407>     /x8e/xa1/xe1/xed <CJK>
+ %IRREVERSIBLE%<U83D4>     /x8e/xa1/xe1/xee <CJK>
+ %IRREVERSIBLE%<U83DF>     /x8e/xa1/xe1/xef <CJK>
+ %IRREVERSIBLE%<U865B>     /x8e/xa1/xe1/xf0 <CJK>
+ %IRREVERSIBLE%<U86DF>     /x8e/xa1/xe1/xf1 <CJK>
+ %IRREVERSIBLE%<U86D9>     /x8e/xa1/xe1/xf2 <CJK>
+ %IRREVERSIBLE%<U86ED>     /x8e/xa1/xe1/xf3 <CJK>
+ %IRREVERSIBLE%<U86D4>     /x8e/xa1/xe1/xf4 <CJK>
+ %IRREVERSIBLE%<U86DB>     /x8e/xa1/xe1/xf5 <CJK>
+ %IRREVERSIBLE%<U86E4>     /x8e/xa1/xe1/xf6 <CJK>
+ %IRREVERSIBLE%<U86D0>     /x8e/xa1/xe1/xf7 <CJK>
+ %IRREVERSIBLE%<U86DE>     /x8e/xa1/xe1/xf8 <CJK>
+ %IRREVERSIBLE%<U8857>     /x8e/xa1/xe1/xf9 <CJK>
+ %IRREVERSIBLE%<U88C1>     /x8e/xa1/xe1/xfa <CJK>
+ %IRREVERSIBLE%<U88C2>     /x8e/xa1/xe1/xfb <CJK>
+ %IRREVERSIBLE%<U88B1>     /x8e/xa1/xe1/xfc <CJK>
+ %IRREVERSIBLE%<U8983>     /x8e/xa1/xe1/xfd <CJK>
+ %IRREVERSIBLE%<U8996>     /x8e/xa1/xe1/xfe <CJK>
+ %IRREVERSIBLE%<U8A3B>     /x8e/xa1/xe2/xa1 <CJK>
+ %IRREVERSIBLE%<U8A60>     /x8e/xa1/xe2/xa2 <CJK>
+ %IRREVERSIBLE%<U8A55>     /x8e/xa1/xe2/xa3 <CJK>
+ %IRREVERSIBLE%<U8A5E>     /x8e/xa1/xe2/xa4 <CJK>
+ %IRREVERSIBLE%<U8A3C>     /x8e/xa1/xe2/xa5 <CJK>
+ %IRREVERSIBLE%<U8A41>     /x8e/xa1/xe2/xa6 <CJK>
+ %IRREVERSIBLE%<U8A54>     /x8e/xa1/xe2/xa7 <CJK>
+ %IRREVERSIBLE%<U8A5B>     /x8e/xa1/xe2/xa8 <CJK>
+ %IRREVERSIBLE%<U8A50>     /x8e/xa1/xe2/xa9 <CJK>
+ %IRREVERSIBLE%<U8A46>     /x8e/xa1/xe2/xaa <CJK>
+ %IRREVERSIBLE%<U8A34>     /x8e/xa1/xe2/xab <CJK>
+ %IRREVERSIBLE%<U8A3A>     /x8e/xa1/xe2/xac <CJK>
+ %IRREVERSIBLE%<U8A36>     /x8e/xa1/xe2/xad <CJK>
+ %IRREVERSIBLE%<U8A56>     /x8e/xa1/xe2/xae <CJK>
+ %IRREVERSIBLE%<U8C61>     /x8e/xa1/xe2/xaf <CJK>
+ %IRREVERSIBLE%<U8C82>     /x8e/xa1/xe2/xb0 <CJK>
+ %IRREVERSIBLE%<U8CAF>     /x8e/xa1/xe2/xb1 <CJK>
+ %IRREVERSIBLE%<U8CBC>     /x8e/xa1/xe2/xb2 <CJK>
+ %IRREVERSIBLE%<U8CB3>     /x8e/xa1/xe2/xb3 <CJK>
+ %IRREVERSIBLE%<U8CBD>     /x8e/xa1/xe2/xb4 <CJK>
+ %IRREVERSIBLE%<U8CC1>     /x8e/xa1/xe2/xb5 <CJK>
+ %IRREVERSIBLE%<U8CBB>     /x8e/xa1/xe2/xb6 <CJK>
+ %IRREVERSIBLE%<U8CC0>     /x8e/xa1/xe2/xb7 <CJK>
+ %IRREVERSIBLE%<U8CB4>     /x8e/xa1/xe2/xb8 <CJK>
+ %IRREVERSIBLE%<U8CB7>     /x8e/xa1/xe2/xb9 <CJK>
+ %IRREVERSIBLE%<U8CB6>     /x8e/xa1/xe2/xba <CJK>
+ %IRREVERSIBLE%<U8CBF>     /x8e/xa1/xe2/xbb <CJK>
+ %IRREVERSIBLE%<U8CB8>     /x8e/xa1/xe2/xbc <CJK>
+ %IRREVERSIBLE%<U8D8A>     /x8e/xa1/xe2/xbd <CJK>
+ %IRREVERSIBLE%<U8D85>     /x8e/xa1/xe2/xbe <CJK>
+ %IRREVERSIBLE%<U8D81>     /x8e/xa1/xe2/xbf <CJK>
+ %IRREVERSIBLE%<U8DCE>     /x8e/xa1/xe2/xc0 <CJK>
+ %IRREVERSIBLE%<U8DDD>     /x8e/xa1/xe2/xc1 <CJK>
+ %IRREVERSIBLE%<U8DCB>     /x8e/xa1/xe2/xc2 <CJK>
+ %IRREVERSIBLE%<U8DDA>     /x8e/xa1/xe2/xc3 <CJK>
+ %IRREVERSIBLE%<U8DD1>     /x8e/xa1/xe2/xc4 <CJK>
+ %IRREVERSIBLE%<U8DCC>     /x8e/xa1/xe2/xc5 <CJK>
+ %IRREVERSIBLE%<U8DDB>     /x8e/xa1/xe2/xc6 <CJK>
+ %IRREVERSIBLE%<U8DC6>     /x8e/xa1/xe2/xc7 <CJK>
+ %IRREVERSIBLE%<U8EFB>     /x8e/xa1/xe2/xc8 <CJK>
+ %IRREVERSIBLE%<U8EF8>     /x8e/xa1/xe2/xc9 <CJK>
+ %IRREVERSIBLE%<U8EFC>     /x8e/xa1/xe2/xca <CJK>
+ %IRREVERSIBLE%<U8F9C>     /x8e/xa1/xe2/xcb <CJK>
+ %IRREVERSIBLE%<U902E>     /x8e/xa1/xe2/xcc <CJK>
+ %IRREVERSIBLE%<U9035>     /x8e/xa1/xe2/xcd <CJK>
+ %IRREVERSIBLE%<U9031>     /x8e/xa1/xe2/xce <CJK>
+ %IRREVERSIBLE%<U9038>     /x8e/xa1/xe2/xcf <CJK>
+ %IRREVERSIBLE%<U9032>     /x8e/xa1/xe2/xd0 <CJK>
+ %IRREVERSIBLE%<U9036>     /x8e/xa1/xe2/xd1 <CJK>
+ %IRREVERSIBLE%<U9102>     /x8e/xa1/xe2/xd2 <CJK>
+ %IRREVERSIBLE%<U90F5>     /x8e/xa1/xe2/xd3 <CJK>
+ %IRREVERSIBLE%<U9109>     /x8e/xa1/xe2/xd4 <CJK>
+ %IRREVERSIBLE%<U90FE>     /x8e/xa1/xe2/xd5 <CJK>
+ %IRREVERSIBLE%<U9163>     /x8e/xa1/xe2/xd6 <CJK>
+ %IRREVERSIBLE%<U9165>     /x8e/xa1/xe2/xd7 <CJK>
+ %IRREVERSIBLE%<U91CF>     /x8e/xa1/xe2/xd8 <CJK>
+ %IRREVERSIBLE%<U9214>     /x8e/xa1/xe2/xd9 <CJK>
+ %IRREVERSIBLE%<U9215>     /x8e/xa1/xe2/xda <CJK>
+ %IRREVERSIBLE%<U9223>     /x8e/xa1/xe2/xdb <CJK>
+ %IRREVERSIBLE%<U9209>     /x8e/xa1/xe2/xdc <CJK>
+ %IRREVERSIBLE%<U921E>     /x8e/xa1/xe2/xdd <CJK>
+ %IRREVERSIBLE%<U920D>     /x8e/xa1/xe2/xde <CJK>
+ %IRREVERSIBLE%<U9210>     /x8e/xa1/xe2/xdf <CJK>
+ %IRREVERSIBLE%<U9207>     /x8e/xa1/xe2/xe0 <CJK>
+ %IRREVERSIBLE%<U9211>     /x8e/xa1/xe2/xe1 <CJK>
+ %IRREVERSIBLE%<U9594>     /x8e/xa1/xe2/xe2 <CJK>
+ %IRREVERSIBLE%<U958F>     /x8e/xa1/xe2/xe3 <CJK>
+ %IRREVERSIBLE%<U958B>     /x8e/xa1/xe2/xe4 <CJK>
+ %IRREVERSIBLE%<U9591>     /x8e/xa1/xe2/xe5 <CJK>
+ %IRREVERSIBLE%<U9593>     /x8e/xa1/xe2/xe6 <CJK>
+ %IRREVERSIBLE%<U9592>     /x8e/xa1/xe2/xe7 <CJK>
+ %IRREVERSIBLE%<U958E>     /x8e/xa1/xe2/xe8 <CJK>
+ %IRREVERSIBLE%<U968A>     /x8e/xa1/xe2/xe9 <CJK>
+ %IRREVERSIBLE%<U968E>     /x8e/xa1/xe2/xea <CJK>
+ %IRREVERSIBLE%<U968B>     /x8e/xa1/xe2/xeb <CJK>
+ %IRREVERSIBLE%<U967D>     /x8e/xa1/xe2/xec <CJK>
+ %IRREVERSIBLE%<U9685>     /x8e/xa1/xe2/xed <CJK>
+ %IRREVERSIBLE%<U9686>     /x8e/xa1/xe2/xee <CJK>
+ %IRREVERSIBLE%<U968D>     /x8e/xa1/xe2/xef <CJK>
+ %IRREVERSIBLE%<U9672>     /x8e/xa1/xe2/xf0 <CJK>
+ %IRREVERSIBLE%<U9684>     /x8e/xa1/xe2/xf1 <CJK>
+ %IRREVERSIBLE%<U96C1>     /x8e/xa1/xe2/xf2 <CJK>
+ %IRREVERSIBLE%<U96C5>     /x8e/xa1/xe2/xf3 <CJK>
+ %IRREVERSIBLE%<U96C4>     /x8e/xa1/xe2/xf4 <CJK>
+ %IRREVERSIBLE%<U96C6>     /x8e/xa1/xe2/xf5 <CJK>
+ %IRREVERSIBLE%<U96C7>     /x8e/xa1/xe2/xf6 <CJK>
+ %IRREVERSIBLE%<U96EF>     /x8e/xa1/xe2/xf7 <CJK>
+ %IRREVERSIBLE%<U96F2>     /x8e/xa1/xe2/xf8 <CJK>
+ %IRREVERSIBLE%<U97CC>     /x8e/xa1/xe2/xf9 <CJK>
+ %IRREVERSIBLE%<U9805>     /x8e/xa1/xe2/xfa <CJK>
+ %IRREVERSIBLE%<U9806>     /x8e/xa1/xe2/xfb <CJK>
+ %IRREVERSIBLE%<U9808>     /x8e/xa1/xe2/xfc <CJK>
+ %IRREVERSIBLE%<U98E7>     /x8e/xa1/xe2/xfd <CJK>
+ %IRREVERSIBLE%<U98EA>     /x8e/xa1/xe2/xfe <CJK>
+ %IRREVERSIBLE%<U98EF>     /x8e/xa1/xe3/xa1 <CJK>
+ %IRREVERSIBLE%<U98E9>     /x8e/xa1/xe3/xa2 <CJK>
+ %IRREVERSIBLE%<U98F2>     /x8e/xa1/xe3/xa3 <CJK>
+ %IRREVERSIBLE%<U98ED>     /x8e/xa1/xe3/xa4 <CJK>
+ %IRREVERSIBLE%<U99AE>     /x8e/xa1/xe3/xa5 <CJK>
+ %IRREVERSIBLE%<U99AD>     /x8e/xa1/xe3/xa6 <CJK>
+ %IRREVERSIBLE%<U9EC3>     /x8e/xa1/xe3/xa7 <CJK>
+ %IRREVERSIBLE%<U9ECD>     /x8e/xa1/xe3/xa8 <CJK>
+ %IRREVERSIBLE%<U9ED1>     /x8e/xa1/xe3/xa9 <CJK>
+ %IRREVERSIBLE%<U4E82>     /x8e/xa1/xe3/xaa <CJK>
+ %IRREVERSIBLE%<U50AD>     /x8e/xa1/xe3/xab <CJK>
+ %IRREVERSIBLE%<U50B5>     /x8e/xa1/xe3/xac <CJK>
+ %IRREVERSIBLE%<U50B2>     /x8e/xa1/xe3/xad <CJK>
+ %IRREVERSIBLE%<U50B3>     /x8e/xa1/xe3/xae <CJK>
+ %IRREVERSIBLE%<U50C5>     /x8e/xa1/xe3/xaf <CJK>
+ %IRREVERSIBLE%<U50BE>     /x8e/xa1/xe3/xb0 <CJK>
+ %IRREVERSIBLE%<U50AC>     /x8e/xa1/xe3/xb1 <CJK>
+ %IRREVERSIBLE%<U50B7>     /x8e/xa1/xe3/xb2 <CJK>
+ %IRREVERSIBLE%<U50BB>     /x8e/xa1/xe3/xb3 <CJK>
+ %IRREVERSIBLE%<U50AF>     /x8e/xa1/xe3/xb4 <CJK>
+ %IRREVERSIBLE%<U50C7>     /x8e/xa1/xe3/xb5 <CJK>
+ %IRREVERSIBLE%<U527F>     /x8e/xa1/xe3/xb6 <CJK>
+ %IRREVERSIBLE%<U5277>     /x8e/xa1/xe3/xb7 <CJK>
+ %IRREVERSIBLE%<U527D>     /x8e/xa1/xe3/xb8 <CJK>
+ %IRREVERSIBLE%<U52DF>     /x8e/xa1/xe3/xb9 <CJK>
+ %IRREVERSIBLE%<U52E6>     /x8e/xa1/xe3/xba <CJK>
+ %IRREVERSIBLE%<U52E4>     /x8e/xa1/xe3/xbb <CJK>
+ %IRREVERSIBLE%<U52E2>     /x8e/xa1/xe3/xbc <CJK>
+ %IRREVERSIBLE%<U52E3>     /x8e/xa1/xe3/xbd <CJK>
+ %IRREVERSIBLE%<U532F>     /x8e/xa1/xe3/xbe <CJK>
+ %IRREVERSIBLE%<U55DF>     /x8e/xa1/xe3/xbf <CJK>
+ %IRREVERSIBLE%<U55E8>     /x8e/xa1/xe3/xc0 <CJK>
+ %IRREVERSIBLE%<U55D3>     /x8e/xa1/xe3/xc1 <CJK>
+ %IRREVERSIBLE%<U55E6>     /x8e/xa1/xe3/xc2 <CJK>
+ %IRREVERSIBLE%<U55CE>     /x8e/xa1/xe3/xc3 <CJK>
+ %IRREVERSIBLE%<U55DC>     /x8e/xa1/xe3/xc4 <CJK>
+ %IRREVERSIBLE%<U55C7>     /x8e/xa1/xe3/xc5 <CJK>
+ %IRREVERSIBLE%<U55D1>     /x8e/xa1/xe3/xc6 <CJK>
+ %IRREVERSIBLE%<U55E3>     /x8e/xa1/xe3/xc7 <CJK>
+ %IRREVERSIBLE%<U55E4>     /x8e/xa1/xe3/xc8 <CJK>
+ %IRREVERSIBLE%<U55EF>     /x8e/xa1/xe3/xc9 <CJK>
+ %IRREVERSIBLE%<U55DA>     /x8e/xa1/xe3/xca <CJK>
+ %IRREVERSIBLE%<U55E1>     /x8e/xa1/xe3/xcb <CJK>
+ %IRREVERSIBLE%<U55C5>     /x8e/xa1/xe3/xcc <CJK>
+ %IRREVERSIBLE%<U55C6>     /x8e/xa1/xe3/xcd <CJK>
+ %IRREVERSIBLE%<U55E5>     /x8e/xa1/xe3/xce <CJK>
+ %IRREVERSIBLE%<U55C9>     /x8e/xa1/xe3/xcf <CJK>
+ %IRREVERSIBLE%<U5712>     /x8e/xa1/xe3/xd0 <CJK>
+ %IRREVERSIBLE%<U5713>     /x8e/xa1/xe3/xd1 <CJK>
+ %IRREVERSIBLE%<U585E>     /x8e/xa1/xe3/xd2 <CJK>
+ %IRREVERSIBLE%<U5851>     /x8e/xa1/xe3/xd3 <CJK>
+ %IRREVERSIBLE%<U5858>     /x8e/xa1/xe3/xd4 <CJK>
+ %IRREVERSIBLE%<U5857>     /x8e/xa1/xe3/xd5 <CJK>
+ %IRREVERSIBLE%<U585A>     /x8e/xa1/xe3/xd6 <CJK>
+ %IRREVERSIBLE%<U5854>     /x8e/xa1/xe3/xd7 <CJK>
+ %IRREVERSIBLE%<U586B>     /x8e/xa1/xe3/xd8 <CJK>
+ %IRREVERSIBLE%<U584C>     /x8e/xa1/xe3/xd9 <CJK>
+ %IRREVERSIBLE%<U586D>     /x8e/xa1/xe3/xda <CJK>
+ %IRREVERSIBLE%<U584A>     /x8e/xa1/xe3/xdb <CJK>
+ %IRREVERSIBLE%<U5862>     /x8e/xa1/xe3/xdc <CJK>
+ %IRREVERSIBLE%<U5852>     /x8e/xa1/xe3/xdd <CJK>
+ %IRREVERSIBLE%<U584B>     /x8e/xa1/xe3/xde <CJK>
+ %IRREVERSIBLE%<U5967>     /x8e/xa1/xe3/xdf <CJK>
+ %IRREVERSIBLE%<U5AC1>     /x8e/xa1/xe3/xe0 <CJK>
+ %IRREVERSIBLE%<U5AC9>     /x8e/xa1/xe3/xe1 <CJK>
+ %IRREVERSIBLE%<U5ACC>     /x8e/xa1/xe3/xe2 <CJK>
+ %IRREVERSIBLE%<U5ABE>     /x8e/xa1/xe3/xe3 <CJK>
+ %IRREVERSIBLE%<U5ABD>     /x8e/xa1/xe3/xe4 <CJK>
+ %IRREVERSIBLE%<U5ABC>     /x8e/xa1/xe3/xe5 <CJK>
+ %IRREVERSIBLE%<U5AB3>     /x8e/xa1/xe3/xe6 <CJK>
+ %IRREVERSIBLE%<U5AC2>     /x8e/xa1/xe3/xe7 <CJK>
+ %IRREVERSIBLE%<U5AB2>     /x8e/xa1/xe3/xe8 <CJK>
+ %IRREVERSIBLE%<U5D69>     /x8e/xa1/xe3/xe9 <CJK>
+ %IRREVERSIBLE%<U5D6F>     /x8e/xa1/xe3/xea <CJK>
+ %IRREVERSIBLE%<U5E4C>     /x8e/xa1/xe3/xeb <CJK>
+ %IRREVERSIBLE%<U5E79>     /x8e/xa1/xe3/xec <CJK>
+ %IRREVERSIBLE%<U5EC9>     /x8e/xa1/xe3/xed <CJK>
+ %IRREVERSIBLE%<U5EC8>     /x8e/xa1/xe3/xee <CJK>
+ %IRREVERSIBLE%<U5F12>     /x8e/xa1/xe3/xef <CJK>
+ %IRREVERSIBLE%<U5F59>     /x8e/xa1/xe3/xf0 <CJK>
+ %IRREVERSIBLE%<U5FAC>     /x8e/xa1/xe3/xf1 <CJK>
+ %IRREVERSIBLE%<U5FAE>     /x8e/xa1/xe3/xf2 <CJK>
+ %IRREVERSIBLE%<U611A>     /x8e/xa1/xe3/xf3 <CJK>
+ %IRREVERSIBLE%<U610F>     /x8e/xa1/xe3/xf4 <CJK>
+ %IRREVERSIBLE%<U6148>     /x8e/xa1/xe3/xf5 <CJK>
+ %IRREVERSIBLE%<U611F>     /x8e/xa1/xe3/xf6 <CJK>
+ %IRREVERSIBLE%<U60F3>     /x8e/xa1/xe3/xf7 <CJK>
+ %IRREVERSIBLE%<U611B>     /x8e/xa1/xe3/xf8 <CJK>
+ %IRREVERSIBLE%<U60F9>     /x8e/xa1/xe3/xf9 <CJK>
+ %IRREVERSIBLE%<U6101>     /x8e/xa1/xe3/xfa <CJK>
+ %IRREVERSIBLE%<U6108>     /x8e/xa1/xe3/xfb <CJK>
+ %IRREVERSIBLE%<U614E>     /x8e/xa1/xe3/xfc <CJK>
+ %IRREVERSIBLE%<U614C>     /x8e/xa1/xe3/xfd <CJK>
+ %IRREVERSIBLE%<U6144>     /x8e/xa1/xe3/xfe <CJK>
+ %IRREVERSIBLE%<U614D>     /x8e/xa1/xe4/xa1 <CJK>
+ %IRREVERSIBLE%<U613E>     /x8e/xa1/xe4/xa2 <CJK>
+ %IRREVERSIBLE%<U6134>     /x8e/xa1/xe4/xa3 <CJK>
+ %IRREVERSIBLE%<U6127>     /x8e/xa1/xe4/xa4 <CJK>
+ %IRREVERSIBLE%<U610D>     /x8e/xa1/xe4/xa5 <CJK>
+ %IRREVERSIBLE%<U6106>     /x8e/xa1/xe4/xa6 <CJK>
+ %IRREVERSIBLE%<U6137>     /x8e/xa1/xe4/xa7 <CJK>
+ %IRREVERSIBLE%<U6221>     /x8e/xa1/xe4/xa8 <CJK>
+ %IRREVERSIBLE%<U6222>     /x8e/xa1/xe4/xa9 <CJK>
+ %IRREVERSIBLE%<U6413>     /x8e/xa1/xe4/xaa <CJK>
+ %IRREVERSIBLE%<U643E>     /x8e/xa1/xe4/xab <CJK>
+ %IRREVERSIBLE%<U641E>     /x8e/xa1/xe4/xac <CJK>
+ %IRREVERSIBLE%<U642A>     /x8e/xa1/xe4/xad <CJK>
+ %IRREVERSIBLE%<U642D>     /x8e/xa1/xe4/xae <CJK>
+ %IRREVERSIBLE%<U643D>     /x8e/xa1/xe4/xaf <CJK>
+ %IRREVERSIBLE%<U642C>     /x8e/xa1/xe4/xb0 <CJK>
+ %IRREVERSIBLE%<U640F>     /x8e/xa1/xe4/xb1 <CJK>
+ %IRREVERSIBLE%<U641C>     /x8e/xa1/xe4/xb2 <CJK>
+ %IRREVERSIBLE%<U6414>     /x8e/xa1/xe4/xb3 <CJK>
+ %IRREVERSIBLE%<U640D>     /x8e/xa1/xe4/xb4 <CJK>
+ %IRREVERSIBLE%<U6436>     /x8e/xa1/xe4/xb5 <CJK>
+ %IRREVERSIBLE%<U6416>     /x8e/xa1/xe4/xb6 <CJK>
+ %IRREVERSIBLE%<U6417>     /x8e/xa1/xe4/xb7 <CJK>
+ %IRREVERSIBLE%<U6406>     /x8e/xa1/xe4/xb8 <CJK>
+ %IRREVERSIBLE%<U656C>     /x8e/xa1/xe4/xb9 <CJK>
+ %IRREVERSIBLE%<U659F>     /x8e/xa1/xe4/xba <CJK>
+ %IRREVERSIBLE%<U65B0>     /x8e/xa1/xe4/xbb <CJK>
+ %IRREVERSIBLE%<U6697>     /x8e/xa1/xe4/xbc <CJK>
+ %IRREVERSIBLE%<U6689>     /x8e/xa1/xe4/xbd <CJK>
+ %IRREVERSIBLE%<U6687>     /x8e/xa1/xe4/xbe <CJK>
+ %IRREVERSIBLE%<U6688>     /x8e/xa1/xe4/xbf <CJK>
+ %IRREVERSIBLE%<U6696>     /x8e/xa1/xe4/xc0 <CJK>
+ %IRREVERSIBLE%<U6684>     /x8e/xa1/xe4/xc1 <CJK>
+ %IRREVERSIBLE%<U6698>     /x8e/xa1/xe4/xc2 <CJK>
+ %IRREVERSIBLE%<U668D>     /x8e/xa1/xe4/xc3 <CJK>
+ %IRREVERSIBLE%<U6703>     /x8e/xa1/xe4/xc4 <CJK>
+ %IRREVERSIBLE%<U6994>     /x8e/xa1/xe4/xc5 <CJK>
+ %IRREVERSIBLE%<U696D>     /x8e/xa1/xe4/xc6 <CJK>
+ %IRREVERSIBLE%<U695A>     /x8e/xa1/xe4/xc7 <CJK>
+ %IRREVERSIBLE%<U6977>     /x8e/xa1/xe4/xc8 <CJK>
+ %IRREVERSIBLE%<U6960>     /x8e/xa1/xe4/xc9 <CJK>
+ %IRREVERSIBLE%<U6954>     /x8e/xa1/xe4/xca <CJK>
+ %IRREVERSIBLE%<U6975>     /x8e/xa1/xe4/xcb <CJK>
+ %IRREVERSIBLE%<U6930>     /x8e/xa1/xe4/xcc <CJK>
+ %IRREVERSIBLE%<U6982>     /x8e/xa1/xe4/xcd <CJK>
+ %IRREVERSIBLE%<U694A>     /x8e/xa1/xe4/xce <CJK>
+ %IRREVERSIBLE%<U6968>     /x8e/xa1/xe4/xcf <CJK>
+ %IRREVERSIBLE%<U696B>     /x8e/xa1/xe4/xd0 <CJK>
+ %IRREVERSIBLE%<U695E>     /x8e/xa1/xe4/xd1 <CJK>
+ %IRREVERSIBLE%<U6953>     /x8e/xa1/xe4/xd2 <CJK>
+ %IRREVERSIBLE%<U6979>     /x8e/xa1/xe4/xd3 <CJK>
+ %IRREVERSIBLE%<U6986>     /x8e/xa1/xe4/xd4 <CJK>
+ %IRREVERSIBLE%<U695D>     /x8e/xa1/xe4/xd5 <CJK>
+ %IRREVERSIBLE%<U6963>     /x8e/xa1/xe4/xd6 <CJK>
+ %IRREVERSIBLE%<U695B>     /x8e/xa1/xe4/xd7 <CJK>
+ %IRREVERSIBLE%<U6B47>     /x8e/xa1/xe4/xd8 <CJK>
+ %IRREVERSIBLE%<U6B72>     /x8e/xa1/xe4/xd9 <CJK>
+ %IRREVERSIBLE%<U6BC0>     /x8e/xa1/xe4/xda <CJK>
+ %IRREVERSIBLE%<U6BBF>     /x8e/xa1/xe4/xdb <CJK>
+ %IRREVERSIBLE%<U6BD3>     /x8e/xa1/xe4/xdc <CJK>
+ %IRREVERSIBLE%<U6BFD>     /x8e/xa1/xe4/xdd <CJK>
+ %IRREVERSIBLE%<U6EA2>     /x8e/xa1/xe4/xde <CJK>
+ %IRREVERSIBLE%<U6EAF>     /x8e/xa1/xe4/xdf <CJK>
+ %IRREVERSIBLE%<U6ED3>     /x8e/xa1/xe4/xe0 <CJK>
+ %IRREVERSIBLE%<U6EB6>     /x8e/xa1/xe4/xe1 <CJK>
+ %IRREVERSIBLE%<U6EC2>     /x8e/xa1/xe4/xe2 <CJK>
+ %IRREVERSIBLE%<U6E90>     /x8e/xa1/xe4/xe3 <CJK>
+ %IRREVERSIBLE%<U6E9D>     /x8e/xa1/xe4/xe4 <CJK>
+ %IRREVERSIBLE%<U6EC7>     /x8e/xa1/xe4/xe5 <CJK>
+ %IRREVERSIBLE%<U6EC5>     /x8e/xa1/xe4/xe6 <CJK>
+ %IRREVERSIBLE%<U6EA5>     /x8e/xa1/xe4/xe7 <CJK>
+ %IRREVERSIBLE%<U6E98>     /x8e/xa1/xe4/xe8 <CJK>
+ %IRREVERSIBLE%<U6EBC>     /x8e/xa1/xe4/xe9 <CJK>
+ %IRREVERSIBLE%<U6EBA>     /x8e/xa1/xe4/xea <CJK>
+ %IRREVERSIBLE%<U6EAB>     /x8e/xa1/xe4/xeb <CJK>
+ %IRREVERSIBLE%<U6ED1>     /x8e/xa1/xe4/xec <CJK>
+ %IRREVERSIBLE%<U6E96>     /x8e/xa1/xe4/xed <CJK>
+ %IRREVERSIBLE%<U6E9C>     /x8e/xa1/xe4/xee <CJK>
+ %IRREVERSIBLE%<U6EC4>     /x8e/xa1/xe4/xef <CJK>
+ %IRREVERSIBLE%<U6ED4>     /x8e/xa1/xe4/xf0 <CJK>
+ %IRREVERSIBLE%<U6EAA>     /x8e/xa1/xe4/xf1 <CJK>
+ %IRREVERSIBLE%<U6EA7>     /x8e/xa1/xe4/xf2 <CJK>
+ %IRREVERSIBLE%<U6EB4>     /x8e/xa1/xe4/xf3 <CJK>
+ %IRREVERSIBLE%<U714E>     /x8e/xa1/xe4/xf4 <CJK>
+ %IRREVERSIBLE%<U7159>     /x8e/xa1/xe4/xf5 <CJK>
+ %IRREVERSIBLE%<U7169>     /x8e/xa1/xe4/xf6 <CJK>
+ %IRREVERSIBLE%<U7164>     /x8e/xa1/xe4/xf7 <CJK>
+ %IRREVERSIBLE%<U7149>     /x8e/xa1/xe4/xf8 <CJK>
+ %IRREVERSIBLE%<U7167>     /x8e/xa1/xe4/xf9 <CJK>
+ %IRREVERSIBLE%<U715C>     /x8e/xa1/xe4/xfa <CJK>
+ %IRREVERSIBLE%<U716C>     /x8e/xa1/xe4/xfb <CJK>
+ %IRREVERSIBLE%<U7166>     /x8e/xa1/xe4/xfc <CJK>
+ %IRREVERSIBLE%<U714C>     /x8e/xa1/xe4/xfd <CJK>
+ %IRREVERSIBLE%<U7165>     /x8e/xa1/xe4/xfe <CJK>
+ %IRREVERSIBLE%<U715E>     /x8e/xa1/xe5/xa1 <CJK>
+ %IRREVERSIBLE%<U7146>     /x8e/xa1/xe5/xa2 <CJK>
+ %IRREVERSIBLE%<U7168>     /x8e/xa1/xe5/xa3 <CJK>
+ %IRREVERSIBLE%<U7156>     /x8e/xa1/xe5/xa4 <CJK>
+ %IRREVERSIBLE%<U723A>     /x8e/xa1/xe5/xa5 <CJK>
+ %IRREVERSIBLE%<U7252>     /x8e/xa1/xe5/xa6 <CJK>
+ %IRREVERSIBLE%<U7337>     /x8e/xa1/xe5/xa7 <CJK>
+ %IRREVERSIBLE%<U7345>     /x8e/xa1/xe5/xa8 <CJK>
+ %IRREVERSIBLE%<U733F>     /x8e/xa1/xe5/xa9 <CJK>
+ %IRREVERSIBLE%<U733E>     /x8e/xa1/xe5/xaa <CJK>
+ %IRREVERSIBLE%<U746F>     /x8e/xa1/xe5/xab <CJK>
+ %IRREVERSIBLE%<U745A>     /x8e/xa1/xe5/xac <CJK>
+ %IRREVERSIBLE%<U7455>     /x8e/xa1/xe5/xad <CJK>
+ %IRREVERSIBLE%<U745F>     /x8e/xa1/xe5/xae <CJK>
+ %IRREVERSIBLE%<U745E>     /x8e/xa1/xe5/xaf <CJK>
+ %IRREVERSIBLE%<U7441>     /x8e/xa1/xe5/xb0 <CJK>
+ %IRREVERSIBLE%<U743F>     /x8e/xa1/xe5/xb1 <CJK>
+ %IRREVERSIBLE%<U7459>     /x8e/xa1/xe5/xb2 <CJK>
+ %IRREVERSIBLE%<U745B>     /x8e/xa1/xe5/xb3 <CJK>
+ %IRREVERSIBLE%<U745C>     /x8e/xa1/xe5/xb4 <CJK>
+ %IRREVERSIBLE%<U7576>     /x8e/xa1/xe5/xb5 <CJK>
+ %IRREVERSIBLE%<U7578>     /x8e/xa1/xe5/xb6 <CJK>
+ %IRREVERSIBLE%<U7600>     /x8e/xa1/xe5/xb7 <CJK>
+ %IRREVERSIBLE%<U75F0>     /x8e/xa1/xe5/xb8 <CJK>
+ %IRREVERSIBLE%<U7601>     /x8e/xa1/xe5/xb9 <CJK>
+ %IRREVERSIBLE%<U75F2>     /x8e/xa1/xe5/xba <CJK>
+ %IRREVERSIBLE%<U75F1>     /x8e/xa1/xe5/xbb <CJK>
+ %IRREVERSIBLE%<U75FA>     /x8e/xa1/xe5/xbc <CJK>
+ %IRREVERSIBLE%<U75FF>     /x8e/xa1/xe5/xbd <CJK>
+ %IRREVERSIBLE%<U75F4>     /x8e/xa1/xe5/xbe <CJK>
+ %IRREVERSIBLE%<U75F3>     /x8e/xa1/xe5/xbf <CJK>
+ %IRREVERSIBLE%<U76DE>     /x8e/xa1/xe5/xc0 <CJK>
+ %IRREVERSIBLE%<U76DF>     /x8e/xa1/xe5/xc1 <CJK>
+ %IRREVERSIBLE%<U775B>     /x8e/xa1/xe5/xc2 <CJK>
+ %IRREVERSIBLE%<U776B>     /x8e/xa1/xe5/xc3 <CJK>
+ %IRREVERSIBLE%<U7766>     /x8e/xa1/xe5/xc4 <CJK>
+ %IRREVERSIBLE%<U775E>     /x8e/xa1/xe5/xc5 <CJK>
+ %IRREVERSIBLE%<U7763>     /x8e/xa1/xe5/xc6 <CJK>
+ %IRREVERSIBLE%<U7779>     /x8e/xa1/xe5/xc7 <CJK>
+ %IRREVERSIBLE%<U776A>     /x8e/xa1/xe5/xc8 <CJK>
+ %IRREVERSIBLE%<U776C>     /x8e/xa1/xe5/xc9 <CJK>
+ %IRREVERSIBLE%<U775C>     /x8e/xa1/xe5/xca <CJK>
+ %IRREVERSIBLE%<U7765>     /x8e/xa1/xe5/xcb <CJK>
+ %IRREVERSIBLE%<U7768>     /x8e/xa1/xe5/xcc <CJK>
+ %IRREVERSIBLE%<U7762>     /x8e/xa1/xe5/xcd <CJK>
+ %IRREVERSIBLE%<U77EE>     /x8e/xa1/xe5/xce <CJK>
+ %IRREVERSIBLE%<U788E>     /x8e/xa1/xe5/xcf <CJK>
+ %IRREVERSIBLE%<U78B0>     /x8e/xa1/xe5/xd0 <CJK>
+ %IRREVERSIBLE%<U7897>     /x8e/xa1/xe5/xd1 <CJK>
+ %IRREVERSIBLE%<U7898>     /x8e/xa1/xe5/xd2 <CJK>
+ %IRREVERSIBLE%<U788C>     /x8e/xa1/xe5/xd3 <CJK>
+ %IRREVERSIBLE%<U7889>     /x8e/xa1/xe5/xd4 <CJK>
+ %IRREVERSIBLE%<U787C>     /x8e/xa1/xe5/xd5 <CJK>
+ %IRREVERSIBLE%<U7891>     /x8e/xa1/xe5/xd6 <CJK>
+ %IRREVERSIBLE%<U7893>     /x8e/xa1/xe5/xd7 <CJK>
+ %IRREVERSIBLE%<U787F>     /x8e/xa1/xe5/xd8 <CJK>
+ %IRREVERSIBLE%<U797A>     /x8e/xa1/xe5/xd9 <CJK>
+ %IRREVERSIBLE%<U797F>     /x8e/xa1/xe5/xda <CJK>
+ %IRREVERSIBLE%<U7981>     /x8e/xa1/xe5/xdb <CJK>
+ %IRREVERSIBLE%<U842C>     /x8e/xa1/xe5/xdc <CJK>
+ %IRREVERSIBLE%<U79BD>     /x8e/xa1/xe5/xdd <CJK>
+ %IRREVERSIBLE%<U7A1C>     /x8e/xa1/xe5/xde <CJK>
+ %IRREVERSIBLE%<U7A1A>     /x8e/xa1/xe5/xdf <CJK>
+ %IRREVERSIBLE%<U7A20>     /x8e/xa1/xe5/xe0 <CJK>
+ %IRREVERSIBLE%<U7A14>     /x8e/xa1/xe5/xe1 <CJK>
+ %IRREVERSIBLE%<U7A1F>     /x8e/xa1/xe5/xe2 <CJK>
+ %IRREVERSIBLE%<U7A1E>     /x8e/xa1/xe5/xe3 <CJK>
+ %IRREVERSIBLE%<U7A9F>     /x8e/xa1/xe5/xe4 <CJK>
+ %IRREVERSIBLE%<U7AA0>     /x8e/xa1/xe5/xe5 <CJK>
+ %IRREVERSIBLE%<U7B77>     /x8e/xa1/xe5/xe6 <CJK>
+ %IRREVERSIBLE%<U7BC0>     /x8e/xa1/xe5/xe7 <CJK>
+ %IRREVERSIBLE%<U7B60>     /x8e/xa1/xe5/xe8 <CJK>
+ %IRREVERSIBLE%<U7B6E>     /x8e/xa1/xe5/xe9 <CJK>
+ %IRREVERSIBLE%<U7B67>     /x8e/xa1/xe5/xea <CJK>
+ %IRREVERSIBLE%<U7CB1>     /x8e/xa1/xe5/xeb <CJK>
+ %IRREVERSIBLE%<U7CB3>     /x8e/xa1/xe5/xec <CJK>
+ %IRREVERSIBLE%<U7CB5>     /x8e/xa1/xe5/xed <CJK>
+ %IRREVERSIBLE%<U7D93>     /x8e/xa1/xe5/xee <CJK>
+ %IRREVERSIBLE%<U7D79>     /x8e/xa1/xe5/xef <CJK>
+ %IRREVERSIBLE%<U7D91>     /x8e/xa1/xe5/xf0 <CJK>
+ %IRREVERSIBLE%<U7D81>     /x8e/xa1/xe5/xf1 <CJK>
+ %IRREVERSIBLE%<U7D8F>     /x8e/xa1/xe5/xf2 <CJK>
+ %IRREVERSIBLE%<U7D5B>     /x8e/xa1/xe5/xf3 <CJK>
+ %IRREVERSIBLE%<U7F6E>     /x8e/xa1/xe5/xf4 <CJK>
+ %IRREVERSIBLE%<U7F69>     /x8e/xa1/xe5/xf5 <CJK>
+ %IRREVERSIBLE%<U7F6A>     /x8e/xa1/xe5/xf6 <CJK>
+ %IRREVERSIBLE%<U7F72>     /x8e/xa1/xe5/xf7 <CJK>
+ %IRREVERSIBLE%<U7FA9>     /x8e/xa1/xe5/xf8 <CJK>
+ %IRREVERSIBLE%<U7FA8>     /x8e/xa1/xe5/xf9 <CJK>
+ %IRREVERSIBLE%<U7FA4>     /x8e/xa1/xe5/xfa <CJK>
+ %IRREVERSIBLE%<U8056>     /x8e/xa1/xe5/xfb <CJK>
+ %IRREVERSIBLE%<U8058>     /x8e/xa1/xe5/xfc <CJK>
+ %IRREVERSIBLE%<U8086>     /x8e/xa1/xe5/xfd <CJK>
+ %IRREVERSIBLE%<U8084>     /x8e/xa1/xe5/xfe <CJK>
+ %IRREVERSIBLE%<U8171>     /x8e/xa1/xe6/xa1 <CJK>
+ %IRREVERSIBLE%<U8170>     /x8e/xa1/xe6/xa2 <CJK>
+ %IRREVERSIBLE%<U8178>     /x8e/xa1/xe6/xa3 <CJK>
+ %IRREVERSIBLE%<U8165>     /x8e/xa1/xe6/xa4 <CJK>
+ %IRREVERSIBLE%<U816E>     /x8e/xa1/xe6/xa5 <CJK>
+ %IRREVERSIBLE%<U8173>     /x8e/xa1/xe6/xa6 <CJK>
+ %IRREVERSIBLE%<U816B>     /x8e/xa1/xe6/xa7 <CJK>
+ %IRREVERSIBLE%<U8179>     /x8e/xa1/xe6/xa8 <CJK>
+ %IRREVERSIBLE%<U817A>     /x8e/xa1/xe6/xa9 <CJK>
+ %IRREVERSIBLE%<U8166>     /x8e/xa1/xe6/xaa <CJK>
+ %IRREVERSIBLE%<U8205>     /x8e/xa1/xe6/xab <CJK>
+ %IRREVERSIBLE%<U8247>     /x8e/xa1/xe6/xac <CJK>
+ %IRREVERSIBLE%<U8482>     /x8e/xa1/xe6/xad <CJK>
+ %IRREVERSIBLE%<U8477>     /x8e/xa1/xe6/xae <CJK>
+ %IRREVERSIBLE%<U843D>     /x8e/xa1/xe6/xaf <CJK>
+ %IRREVERSIBLE%<U8431>     /x8e/xa1/xe6/xb0 <CJK>
+ %IRREVERSIBLE%<U8475>     /x8e/xa1/xe6/xb1 <CJK>
+ %IRREVERSIBLE%<U8466>     /x8e/xa1/xe6/xb2 <CJK>
+ %IRREVERSIBLE%<U846B>     /x8e/xa1/xe6/xb3 <CJK>
+ %IRREVERSIBLE%<U8449>     /x8e/xa1/xe6/xb4 <CJK>
+ %IRREVERSIBLE%<U846C>     /x8e/xa1/xe6/xb5 <CJK>
+ %IRREVERSIBLE%<U845B>     /x8e/xa1/xe6/xb6 <CJK>
+ %IRREVERSIBLE%<U843C>     /x8e/xa1/xe6/xb7 <CJK>
+ %IRREVERSIBLE%<U8435>     /x8e/xa1/xe6/xb8 <CJK>
+ %IRREVERSIBLE%<U8461>     /x8e/xa1/xe6/xb9 <CJK>
+ %IRREVERSIBLE%<U8463>     /x8e/xa1/xe6/xba <CJK>
+ %IRREVERSIBLE%<U8469>     /x8e/xa1/xe6/xbb <CJK>
+ %IRREVERSIBLE%<U846D>     /x8e/xa1/xe6/xbc <CJK>
+ %IRREVERSIBLE%<U8446>     /x8e/xa1/xe6/xbd <CJK>
+ %IRREVERSIBLE%<U865E>     /x8e/xa1/xe6/xbe <CJK>
+ %IRREVERSIBLE%<U865C>     /x8e/xa1/xe6/xbf <CJK>
+ %IRREVERSIBLE%<U865F>     /x8e/xa1/xe6/xc0 <CJK>
+ %IRREVERSIBLE%<U86F9>     /x8e/xa1/xe6/xc1 <CJK>
+ %IRREVERSIBLE%<U8713>     /x8e/xa1/xe6/xc2 <CJK>
+ %IRREVERSIBLE%<U8708>     /x8e/xa1/xe6/xc3 <CJK>
+ %IRREVERSIBLE%<U8707>     /x8e/xa1/xe6/xc4 <CJK>
+ %IRREVERSIBLE%<U8700>     /x8e/xa1/xe6/xc5 <CJK>
+ %IRREVERSIBLE%<U86FE>     /x8e/xa1/xe6/xc6 <CJK>
+ %IRREVERSIBLE%<U86FB>     /x8e/xa1/xe6/xc7 <CJK>
+ %IRREVERSIBLE%<U8702>     /x8e/xa1/xe6/xc8 <CJK>
+ %IRREVERSIBLE%<U8703>     /x8e/xa1/xe6/xc9 <CJK>
+ %IRREVERSIBLE%<U8706>     /x8e/xa1/xe6/xca <CJK>
+ %IRREVERSIBLE%<U870A>     /x8e/xa1/xe6/xcb <CJK>
+ %IRREVERSIBLE%<U8859>     /x8e/xa1/xe6/xcc <CJK>
+ %IRREVERSIBLE%<U88DF>     /x8e/xa1/xe6/xcd <CJK>
+ %IRREVERSIBLE%<U88D4>     /x8e/xa1/xe6/xce <CJK>
+ %IRREVERSIBLE%<U88D9>     /x8e/xa1/xe6/xcf <CJK>
+ %IRREVERSIBLE%<U88DC>     /x8e/xa1/xe6/xd0 <CJK>
+ %IRREVERSIBLE%<U88D8>     /x8e/xa1/xe6/xd1 <CJK>
+ %IRREVERSIBLE%<U88DD>     /x8e/xa1/xe6/xd2 <CJK>
+ %IRREVERSIBLE%<U88E1>     /x8e/xa1/xe6/xd3 <CJK>
+ %IRREVERSIBLE%<U88CA>     /x8e/xa1/xe6/xd4 <CJK>
+ %IRREVERSIBLE%<U88D5>     /x8e/xa1/xe6/xd5 <CJK>
+ %IRREVERSIBLE%<U88D2>     /x8e/xa1/xe6/xd6 <CJK>
+ %IRREVERSIBLE%<U899C>     /x8e/xa1/xe6/xd7 <CJK>
+ %IRREVERSIBLE%<U89E3>     /x8e/xa1/xe6/xd8 <CJK>
+ %IRREVERSIBLE%<U8A6B>     /x8e/xa1/xe6/xd9 <CJK>
+ %IRREVERSIBLE%<U8A72>     /x8e/xa1/xe6/xda <CJK>
+ %IRREVERSIBLE%<U8A73>     /x8e/xa1/xe6/xdb <CJK>
+ %IRREVERSIBLE%<U8A66>     /x8e/xa1/xe6/xdc <CJK>
+ %IRREVERSIBLE%<U8A69>     /x8e/xa1/xe6/xdd <CJK>
+ %IRREVERSIBLE%<U8A70>     /x8e/xa1/xe6/xde <CJK>
+ %IRREVERSIBLE%<U8A87>     /x8e/xa1/xe6/xdf <CJK>
+ %IRREVERSIBLE%<U8A7C>     /x8e/xa1/xe6/xe0 <CJK>
+ %IRREVERSIBLE%<U8A63>     /x8e/xa1/xe6/xe1 <CJK>
+ %IRREVERSIBLE%<U8AA0>     /x8e/xa1/xe6/xe2 <CJK>
+ %IRREVERSIBLE%<U8A71>     /x8e/xa1/xe6/xe3 <CJK>
+ %IRREVERSIBLE%<U8A85>     /x8e/xa1/xe6/xe4 <CJK>
+ %IRREVERSIBLE%<U8A6D>     /x8e/xa1/xe6/xe5 <CJK>
+ %IRREVERSIBLE%<U8A62>     /x8e/xa1/xe6/xe6 <CJK>
+ %IRREVERSIBLE%<U8A6E>     /x8e/xa1/xe6/xe7 <CJK>
+ %IRREVERSIBLE%<U8A6C>     /x8e/xa1/xe6/xe8 <CJK>
+ %IRREVERSIBLE%<U8A79>     /x8e/xa1/xe6/xe9 <CJK>
+ %IRREVERSIBLE%<U8A7B>     /x8e/xa1/xe6/xea <CJK>
+ %IRREVERSIBLE%<U8A3E>     /x8e/xa1/xe6/xeb <CJK>
+ %IRREVERSIBLE%<U8A68>     /x8e/xa1/xe6/xec <CJK>
+ %IRREVERSIBLE%<U8C62>     /x8e/xa1/xe6/xed <CJK>
+ %IRREVERSIBLE%<U8C8A>     /x8e/xa1/xe6/xee <CJK>
+ %IRREVERSIBLE%<U8C89>     /x8e/xa1/xe6/xef <CJK>
+ %IRREVERSIBLE%<U8CCA>     /x8e/xa1/xe6/xf0 <CJK>
+ %IRREVERSIBLE%<U8CC7>     /x8e/xa1/xe6/xf1 <CJK>
+ %IRREVERSIBLE%<U8CC8>     /x8e/xa1/xe6/xf2 <CJK>
+ %IRREVERSIBLE%<U8CC4>     /x8e/xa1/xe6/xf3 <CJK>
+ %IRREVERSIBLE%<U8CB2>     /x8e/xa1/xe6/xf4 <CJK>
+ %IRREVERSIBLE%<U8CC3>     /x8e/xa1/xe6/xf5 <CJK>
+ %IRREVERSIBLE%<U8CC2>     /x8e/xa1/xe6/xf6 <CJK>
+ %IRREVERSIBLE%<U8CC5>     /x8e/xa1/xe6/xf7 <CJK>
+ %IRREVERSIBLE%<U8DE1>     /x8e/xa1/xe6/xf8 <CJK>
+ %IRREVERSIBLE%<U8DDF>     /x8e/xa1/xe6/xf9 <CJK>
+ %IRREVERSIBLE%<U8DE8>     /x8e/xa1/xe6/xfa <CJK>
+ %IRREVERSIBLE%<U8DEF>     /x8e/xa1/xe6/xfb <CJK>
+ %IRREVERSIBLE%<U8DF3>     /x8e/xa1/xe6/xfc <CJK>
+ %IRREVERSIBLE%<U8DFA>     /x8e/xa1/xe6/xfd <CJK>
+ %IRREVERSIBLE%<U8DEA>     /x8e/xa1/xe6/xfe <CJK>
+ %IRREVERSIBLE%<U8DE4>     /x8e/xa1/xe7/xa1 <CJK>
+ %IRREVERSIBLE%<U8DE6>     /x8e/xa1/xe7/xa2 <CJK>
+ %IRREVERSIBLE%<U8EB2>     /x8e/xa1/xe7/xa3 <CJK>
+ %IRREVERSIBLE%<U8F03>     /x8e/xa1/xe7/xa4 <CJK>
+ %IRREVERSIBLE%<U8F09>     /x8e/xa1/xe7/xa5 <CJK>
+ %IRREVERSIBLE%<U8EFE>     /x8e/xa1/xe7/xa6 <CJK>
+ %IRREVERSIBLE%<U8F0A>     /x8e/xa1/xe7/xa7 <CJK>
+ %IRREVERSIBLE%<U8F9F>     /x8e/xa1/xe7/xa8 <CJK>
+ %IRREVERSIBLE%<U8FB2>     /x8e/xa1/xe7/xa9 <CJK>
+ %IRREVERSIBLE%<U904B>     /x8e/xa1/xe7/xaa <CJK>
+ %IRREVERSIBLE%<U904A>     /x8e/xa1/xe7/xab <CJK>
+ %IRREVERSIBLE%<U9053>     /x8e/xa1/xe7/xac <CJK>
+ %IRREVERSIBLE%<U9042>     /x8e/xa1/xe7/xad <CJK>
+ %IRREVERSIBLE%<U9054>     /x8e/xa1/xe7/xae <CJK>
+ %IRREVERSIBLE%<U903C>     /x8e/xa1/xe7/xaf <CJK>
+ %IRREVERSIBLE%<U9055>     /x8e/xa1/xe7/xb0 <CJK>
+ %IRREVERSIBLE%<U9050>     /x8e/xa1/xe7/xb1 <CJK>
+ %IRREVERSIBLE%<U9047>     /x8e/xa1/xe7/xb2 <CJK>
+ %IRREVERSIBLE%<U904F>     /x8e/xa1/xe7/xb3 <CJK>
+ %IRREVERSIBLE%<U904E>     /x8e/xa1/xe7/xb4 <CJK>
+ %IRREVERSIBLE%<U904D>     /x8e/xa1/xe7/xb5 <CJK>
+ %IRREVERSIBLE%<U9051>     /x8e/xa1/xe7/xb6 <CJK>
+ %IRREVERSIBLE%<U903E>     /x8e/xa1/xe7/xb7 <CJK>
+ %IRREVERSIBLE%<U9041>     /x8e/xa1/xe7/xb8 <CJK>
+ %IRREVERSIBLE%<U9112>     /x8e/xa1/xe7/xb9 <CJK>
+ %IRREVERSIBLE%<U9117>     /x8e/xa1/xe7/xba <CJK>
+ %IRREVERSIBLE%<U916C>     /x8e/xa1/xe7/xbb <CJK>
+ %IRREVERSIBLE%<U916A>     /x8e/xa1/xe7/xbc <CJK>
+ %IRREVERSIBLE%<U9169>     /x8e/xa1/xe7/xbd <CJK>
+ %IRREVERSIBLE%<U91C9>     /x8e/xa1/xe7/xbe <CJK>
+ %IRREVERSIBLE%<U9237>     /x8e/xa1/xe7/xbf <CJK>
+ %IRREVERSIBLE%<U9257>     /x8e/xa1/xe7/xc0 <CJK>
+ %IRREVERSIBLE%<U9238>     /x8e/xa1/xe7/xc1 <CJK>
+ %IRREVERSIBLE%<U923D>     /x8e/xa1/xe7/xc2 <CJK>
+ %IRREVERSIBLE%<U9240>     /x8e/xa1/xe7/xc3 <CJK>
+ %IRREVERSIBLE%<U923E>     /x8e/xa1/xe7/xc4 <CJK>
+ %IRREVERSIBLE%<U925B>     /x8e/xa1/xe7/xc5 <CJK>
+ %IRREVERSIBLE%<U924B>     /x8e/xa1/xe7/xc6 <CJK>
+ %IRREVERSIBLE%<U9264>     /x8e/xa1/xe7/xc7 <CJK>
+ %IRREVERSIBLE%<U9251>     /x8e/xa1/xe7/xc8 <CJK>
+ %IRREVERSIBLE%<U9234>     /x8e/xa1/xe7/xc9 <CJK>
+ %IRREVERSIBLE%<U9249>     /x8e/xa1/xe7/xca <CJK>
+ %IRREVERSIBLE%<U924D>     /x8e/xa1/xe7/xcb <CJK>
+ %IRREVERSIBLE%<U9245>     /x8e/xa1/xe7/xcc <CJK>
+ %IRREVERSIBLE%<U9239>     /x8e/xa1/xe7/xcd <CJK>
+ %IRREVERSIBLE%<U923F>     /x8e/xa1/xe7/xce <CJK>
+ %IRREVERSIBLE%<U925A>     /x8e/xa1/xe7/xcf <CJK>
+ %IRREVERSIBLE%<U9598>     /x8e/xa1/xe7/xd0 <CJK>
+ %IRREVERSIBLE%<U9698>     /x8e/xa1/xe7/xd1 <CJK>
+ %IRREVERSIBLE%<U9694>     /x8e/xa1/xe7/xd2 <CJK>
+ %IRREVERSIBLE%<U9695>     /x8e/xa1/xe7/xd3 <CJK>
+ %IRREVERSIBLE%<U96CD>     /x8e/xa1/xe7/xd4 <CJK>
+ %IRREVERSIBLE%<U96CB>     /x8e/xa1/xe7/xd5 <CJK>
+ %IRREVERSIBLE%<U96C9>     /x8e/xa1/xe7/xd6 <CJK>
+ %IRREVERSIBLE%<U96CA>     /x8e/xa1/xe7/xd7 <CJK>
+ %IRREVERSIBLE%<U96F7>     /x8e/xa1/xe7/xd8 <CJK>
+ %IRREVERSIBLE%<U96FB>     /x8e/xa1/xe7/xd9 <CJK>
+ %IRREVERSIBLE%<U96F9>     /x8e/xa1/xe7/xda <CJK>
+ %IRREVERSIBLE%<U96F6>     /x8e/xa1/xe7/xdb <CJK>
+ %IRREVERSIBLE%<U9756>     /x8e/xa1/xe7/xdc <CJK>
+ %IRREVERSIBLE%<U9774>     /x8e/xa1/xe7/xdd <CJK>
+ %IRREVERSIBLE%<U9776>     /x8e/xa1/xe7/xde <CJK>
+ %IRREVERSIBLE%<U9810>     /x8e/xa1/xe7/xdf <CJK>
+ %IRREVERSIBLE%<U9811>     /x8e/xa1/xe7/xe0 <CJK>
+ %IRREVERSIBLE%<U9813>     /x8e/xa1/xe7/xe1 <CJK>
+ %IRREVERSIBLE%<U980A>     /x8e/xa1/xe7/xe2 <CJK>
+ %IRREVERSIBLE%<U9812>     /x8e/xa1/xe7/xe3 <CJK>
+ %IRREVERSIBLE%<U980C>     /x8e/xa1/xe7/xe4 <CJK>
+ %IRREVERSIBLE%<U98FC>     /x8e/xa1/xe7/xe5 <CJK>
+ %IRREVERSIBLE%<U98F4>     /x8e/xa1/xe7/xe6 <CJK>
+ %IRREVERSIBLE%<U98FD>     /x8e/xa1/xe7/xe7 <CJK>
+ %IRREVERSIBLE%<U98FE>     /x8e/xa1/xe7/xe8 <CJK>
+ %IRREVERSIBLE%<U99B3>     /x8e/xa1/xe7/xe9 <CJK>
+ %IRREVERSIBLE%<U99B1>     /x8e/xa1/xe7/xea <CJK>
+ %IRREVERSIBLE%<U99B4>     /x8e/xa1/xe7/xeb <CJK>
+ %IRREVERSIBLE%<U9AE1>     /x8e/xa1/xe7/xec <CJK>
+ %IRREVERSIBLE%<U9CE9>     /x8e/xa1/xe7/xed <CJK>
+ %IRREVERSIBLE%<U9E82>     /x8e/xa1/xe7/xee <CJK>
+ %IRREVERSIBLE%<U9F0E>     /x8e/xa1/xe7/xef <CJK>
+ %IRREVERSIBLE%<U9F13>     /x8e/xa1/xe7/xf0 <CJK>
+ %IRREVERSIBLE%<U9F20>     /x8e/xa1/xe7/xf1 <CJK>
+ %IRREVERSIBLE%<U50E7>     /x8e/xa1/xe7/xf2 <CJK>
+ %IRREVERSIBLE%<U50EE>     /x8e/xa1/xe7/xf3 <CJK>
+ %IRREVERSIBLE%<U50E5>     /x8e/xa1/xe7/xf4 <CJK>
+ %IRREVERSIBLE%<U50D6>     /x8e/xa1/xe7/xf5 <CJK>
+ %IRREVERSIBLE%<U50ED>     /x8e/xa1/xe7/xf6 <CJK>
+ %IRREVERSIBLE%<U50DA>     /x8e/xa1/xe7/xf7 <CJK>
+ %IRREVERSIBLE%<U50D5>     /x8e/xa1/xe7/xf8 <CJK>
+ %IRREVERSIBLE%<U50CF>     /x8e/xa1/xe7/xf9 <CJK>
+ %IRREVERSIBLE%<U50D1>     /x8e/xa1/xe7/xfa <CJK>
+ %IRREVERSIBLE%<U50F1>     /x8e/xa1/xe7/xfb <CJK>
+ %IRREVERSIBLE%<U50CE>     /x8e/xa1/xe7/xfc <CJK>
+ %IRREVERSIBLE%<U50E9>     /x8e/xa1/xe7/xfd <CJK>
+ %IRREVERSIBLE%<U5162>     /x8e/xa1/xe7/xfe <CJK>
+ %IRREVERSIBLE%<U51F3>     /x8e/xa1/xe8/xa1 <CJK>
+ %IRREVERSIBLE%<U5283>     /x8e/xa1/xe8/xa2 <CJK>
+ %IRREVERSIBLE%<U5282>     /x8e/xa1/xe8/xa3 <CJK>
+ %IRREVERSIBLE%<U5331>     /x8e/xa1/xe8/xa4 <CJK>
+ %IRREVERSIBLE%<U53AD>     /x8e/xa1/xe8/xa5 <CJK>
+ %IRREVERSIBLE%<U55FE>     /x8e/xa1/xe8/xa6 <CJK>
+ %IRREVERSIBLE%<U5600>     /x8e/xa1/xe8/xa7 <CJK>
+ %IRREVERSIBLE%<U561B>     /x8e/xa1/xe8/xa8 <CJK>
+ %IRREVERSIBLE%<U5617>     /x8e/xa1/xe8/xa9 <CJK>
+ %IRREVERSIBLE%<U55FD>     /x8e/xa1/xe8/xaa <CJK>
+ %IRREVERSIBLE%<U5614>     /x8e/xa1/xe8/xab <CJK>
+ %IRREVERSIBLE%<U5606>     /x8e/xa1/xe8/xac <CJK>
+ %IRREVERSIBLE%<U5609>     /x8e/xa1/xe8/xad <CJK>
+ %IRREVERSIBLE%<U560D>     /x8e/xa1/xe8/xae <CJK>
+ %IRREVERSIBLE%<U560E>     /x8e/xa1/xe8/xaf <CJK>
+ %IRREVERSIBLE%<U55F7>     /x8e/xa1/xe8/xb0 <CJK>
+ %IRREVERSIBLE%<U5616>     /x8e/xa1/xe8/xb1 <CJK>
+ %IRREVERSIBLE%<U561F>     /x8e/xa1/xe8/xb2 <CJK>
+ %IRREVERSIBLE%<U5608>     /x8e/xa1/xe8/xb3 <CJK>
+ %IRREVERSIBLE%<U5610>     /x8e/xa1/xe8/xb4 <CJK>
+ %IRREVERSIBLE%<U55F6>     /x8e/xa1/xe8/xb5 <CJK>
+ %IRREVERSIBLE%<U5718>     /x8e/xa1/xe8/xb6 <CJK>
+ %IRREVERSIBLE%<U5716>     /x8e/xa1/xe8/xb7 <CJK>
+ %IRREVERSIBLE%<U5875>     /x8e/xa1/xe8/xb8 <CJK>
+ %IRREVERSIBLE%<U587E>     /x8e/xa1/xe8/xb9 <CJK>
+ %IRREVERSIBLE%<U5883>     /x8e/xa1/xe8/xba <CJK>
+ %IRREVERSIBLE%<U5893>     /x8e/xa1/xe8/xbb <CJK>
+ %IRREVERSIBLE%<U588A>     /x8e/xa1/xe8/xbc <CJK>
+ %IRREVERSIBLE%<U5879>     /x8e/xa1/xe8/xbd <CJK>
+ %IRREVERSIBLE%<U5885>     /x8e/xa1/xe8/xbe <CJK>
+ %IRREVERSIBLE%<U587D>     /x8e/xa1/xe8/xbf <CJK>
+ %IRREVERSIBLE%<U58FD>     /x8e/xa1/xe8/xc0 <CJK>
+ %IRREVERSIBLE%<U5925>     /x8e/xa1/xe8/xc1 <CJK>
+ %IRREVERSIBLE%<U5922>     /x8e/xa1/xe8/xc2 <CJK>
+ %IRREVERSIBLE%<U5924>     /x8e/xa1/xe8/xc3 <CJK>
+ %IRREVERSIBLE%<U596A>     /x8e/xa1/xe8/xc4 <CJK>
+ %IRREVERSIBLE%<U5969>     /x8e/xa1/xe8/xc5 <CJK>
+ %IRREVERSIBLE%<U5AE1>     /x8e/xa1/xe8/xc6 <CJK>
+ %IRREVERSIBLE%<U5AE6>     /x8e/xa1/xe8/xc7 <CJK>
+ %IRREVERSIBLE%<U5AE9>     /x8e/xa1/xe8/xc8 <CJK>
+ %IRREVERSIBLE%<U5AD7>     /x8e/xa1/xe8/xc9 <CJK>
+ %IRREVERSIBLE%<U5AD6>     /x8e/xa1/xe8/xca <CJK>
+ %IRREVERSIBLE%<U5AD8>     /x8e/xa1/xe8/xcb <CJK>
+ %IRREVERSIBLE%<U5AE3>     /x8e/xa1/xe8/xcc <CJK>
+ %IRREVERSIBLE%<U5B75>     /x8e/xa1/xe8/xcd <CJK>
+ %IRREVERSIBLE%<U5BDE>     /x8e/xa1/xe8/xce <CJK>
+ %IRREVERSIBLE%<U5BE7>     /x8e/xa1/xe8/xcf <CJK>
+ %IRREVERSIBLE%<U5BE1>     /x8e/xa1/xe8/xd0 <CJK>
+ %IRREVERSIBLE%<U5BE5>     /x8e/xa1/xe8/xd1 <CJK>
+ %IRREVERSIBLE%<U5BE6>     /x8e/xa1/xe8/xd2 <CJK>
+ %IRREVERSIBLE%<U5BE8>     /x8e/xa1/xe8/xd3 <CJK>
+ %IRREVERSIBLE%<U5BE2>     /x8e/xa1/xe8/xd4 <CJK>
+ %IRREVERSIBLE%<U5BE4>     /x8e/xa1/xe8/xd5 <CJK>
+ %IRREVERSIBLE%<U5BDF>     /x8e/xa1/xe8/xd6 <CJK>
+ %IRREVERSIBLE%<U5C0D>     /x8e/xa1/xe8/xd7 <CJK>
+ %IRREVERSIBLE%<U5C62>     /x8e/xa1/xe8/xd8 <CJK>
+ %IRREVERSIBLE%<U5D84>     /x8e/xa1/xe8/xd9 <CJK>
+ %IRREVERSIBLE%<U5D87>     /x8e/xa1/xe8/xda <CJK>
+ %IRREVERSIBLE%<U5E5B>     /x8e/xa1/xe8/xdb <CJK>
+ %IRREVERSIBLE%<U5E63>     /x8e/xa1/xe8/xdc <CJK>
+ %IRREVERSIBLE%<U5E55>     /x8e/xa1/xe8/xdd <CJK>
+ %IRREVERSIBLE%<U5E57>     /x8e/xa1/xe8/xde <CJK>
+ %IRREVERSIBLE%<U5E54>     /x8e/xa1/xe8/xdf <CJK>
+ %IRREVERSIBLE%<U5ED3>     /x8e/xa1/xe8/xe0 <CJK>
+ %IRREVERSIBLE%<U5ED6>     /x8e/xa1/xe8/xe1 <CJK>
+ %IRREVERSIBLE%<U5F0A>     /x8e/xa1/xe8/xe2 <CJK>
+ %IRREVERSIBLE%<U5F46>     /x8e/xa1/xe8/xe3 <CJK>
+ %IRREVERSIBLE%<U5F70>     /x8e/xa1/xe8/xe4 <CJK>
+ %IRREVERSIBLE%<U5FB9>     /x8e/xa1/xe8/xe5 <CJK>
+ %IRREVERSIBLE%<U6147>     /x8e/xa1/xe8/xe6 <CJK>
+ %IRREVERSIBLE%<U613F>     /x8e/xa1/xe8/xe7 <CJK>
+ %IRREVERSIBLE%<U614B>     /x8e/xa1/xe8/xe8 <CJK>
+ %IRREVERSIBLE%<U6177>     /x8e/xa1/xe8/xe9 <CJK>
+ %IRREVERSIBLE%<U6162>     /x8e/xa1/xe8/xea <CJK>
+ %IRREVERSIBLE%<U6163>     /x8e/xa1/xe8/xeb <CJK>
+ %IRREVERSIBLE%<U615F>     /x8e/xa1/xe8/xec <CJK>
+ %IRREVERSIBLE%<U615A>     /x8e/xa1/xe8/xed <CJK>
+ %IRREVERSIBLE%<U6158>     /x8e/xa1/xe8/xee <CJK>
+ %IRREVERSIBLE%<U6175>     /x8e/xa1/xe8/xef <CJK>
+ %IRREVERSIBLE%<U622A>     /x8e/xa1/xe8/xf0 <CJK>
+ %IRREVERSIBLE%<U6487>     /x8e/xa1/xe8/xf1 <CJK>
+ %IRREVERSIBLE%<U6458>     /x8e/xa1/xe8/xf2 <CJK>
+ %IRREVERSIBLE%<U6454>     /x8e/xa1/xe8/xf3 <CJK>
+ %IRREVERSIBLE%<U64A4>     /x8e/xa1/xe8/xf4 <CJK>
+ %IRREVERSIBLE%<U6478>     /x8e/xa1/xe8/xf5 <CJK>
+ %IRREVERSIBLE%<U645F>     /x8e/xa1/xe8/xf6 <CJK>
+ %IRREVERSIBLE%<U647A>     /x8e/xa1/xe8/xf7 <CJK>
+ %IRREVERSIBLE%<U6451>     /x8e/xa1/xe8/xf8 <CJK>
+ %IRREVERSIBLE%<U6467>     /x8e/xa1/xe8/xf9 <CJK>
+ %IRREVERSIBLE%<U6434>     /x8e/xa1/xe8/xfa <CJK>
+ %IRREVERSIBLE%<U646D>     /x8e/xa1/xe8/xfb <CJK>
+ %IRREVERSIBLE%<U647B>     /x8e/xa1/xe8/xfc <CJK>
+ %IRREVERSIBLE%<U6572>     /x8e/xa1/xe8/xfd <CJK>
+ %IRREVERSIBLE%<U65A1>     /x8e/xa1/xe8/xfe <CJK>
+ %IRREVERSIBLE%<U65D7>     /x8e/xa1/xe9/xa1 <CJK>
+ %IRREVERSIBLE%<U65D6>     /x8e/xa1/xe9/xa2 <CJK>
+ %IRREVERSIBLE%<U66A2>     /x8e/xa1/xe9/xa3 <CJK>
+ %IRREVERSIBLE%<U66A8>     /x8e/xa1/xe9/xa4 <CJK>
+ %IRREVERSIBLE%<U669D>     /x8e/xa1/xe9/xa5 <CJK>
+ %IRREVERSIBLE%<U699C>     /x8e/xa1/xe9/xa6 <CJK>
+ %IRREVERSIBLE%<U69A8>     /x8e/xa1/xe9/xa7 <CJK>
+ %IRREVERSIBLE%<U6995>     /x8e/xa1/xe9/xa8 <CJK>
+ %IRREVERSIBLE%<U69C1>     /x8e/xa1/xe9/xa9 <CJK>
+ %IRREVERSIBLE%<U69AE>     /x8e/xa1/xe9/xaa <CJK>
+ %IRREVERSIBLE%<U69D3>     /x8e/xa1/xe9/xab <CJK>
+ %IRREVERSIBLE%<U69CB>     /x8e/xa1/xe9/xac <CJK>
+ %IRREVERSIBLE%<U699B>     /x8e/xa1/xe9/xad <CJK>
+ %IRREVERSIBLE%<U69B7>     /x8e/xa1/xe9/xae <CJK>
+ %IRREVERSIBLE%<U69BB>     /x8e/xa1/xe9/xaf <CJK>
+ %IRREVERSIBLE%<U69AB>     /x8e/xa1/xe9/xb0 <CJK>
+ %IRREVERSIBLE%<U69B4>     /x8e/xa1/xe9/xb1 <CJK>
+ %IRREVERSIBLE%<U69D0>     /x8e/xa1/xe9/xb2 <CJK>
+ %IRREVERSIBLE%<U69CD>     /x8e/xa1/xe9/xb3 <CJK>
+ %IRREVERSIBLE%<U69AD>     /x8e/xa1/xe9/xb4 <CJK>
+ %IRREVERSIBLE%<U69CC>     /x8e/xa1/xe9/xb5 <CJK>
+ %IRREVERSIBLE%<U69A6>     /x8e/xa1/xe9/xb6 <CJK>
+ %IRREVERSIBLE%<U69C3>     /x8e/xa1/xe9/xb7 <CJK>
+ %IRREVERSIBLE%<U69A3>     /x8e/xa1/xe9/xb8 <CJK>
+ %IRREVERSIBLE%<U6B49>     /x8e/xa1/xe9/xb9 <CJK>
+ %IRREVERSIBLE%<U6B4C>     /x8e/xa1/xe9/xba <CJK>
+ %IRREVERSIBLE%<U6C33>     /x8e/xa1/xe9/xbb <CJK>
+ %IRREVERSIBLE%<U6F33>     /x8e/xa1/xe9/xbc <CJK>
+ %IRREVERSIBLE%<U6F14>     /x8e/xa1/xe9/xbd <CJK>
+ %IRREVERSIBLE%<U6EFE>     /x8e/xa1/xe9/xbe <CJK>
+ %IRREVERSIBLE%<U6F13>     /x8e/xa1/xe9/xbf <CJK>
+ %IRREVERSIBLE%<U6EF4>     /x8e/xa1/xe9/xc0 <CJK>
+ %IRREVERSIBLE%<U6F29>     /x8e/xa1/xe9/xc1 <CJK>
+ %IRREVERSIBLE%<U6F3E>     /x8e/xa1/xe9/xc2 <CJK>
+ %IRREVERSIBLE%<U6F20>     /x8e/xa1/xe9/xc3 <CJK>
+ %IRREVERSIBLE%<U6F2C>     /x8e/xa1/xe9/xc4 <CJK>
+ %IRREVERSIBLE%<U6F0F>     /x8e/xa1/xe9/xc5 <CJK>
+ %IRREVERSIBLE%<U6F02>     /x8e/xa1/xe9/xc6 <CJK>
+ %IRREVERSIBLE%<U6F22>     /x8e/xa1/xe9/xc7 <CJK>
+ %IRREVERSIBLE%<U6EFF>     /x8e/xa1/xe9/xc8 <CJK>
+ %IRREVERSIBLE%<U6EEF>     /x8e/xa1/xe9/xc9 <CJK>
+ %IRREVERSIBLE%<U6F06>     /x8e/xa1/xe9/xca <CJK>
+ %IRREVERSIBLE%<U6F31>     /x8e/xa1/xe9/xcb <CJK>
+ %IRREVERSIBLE%<U6F38>     /x8e/xa1/xe9/xcc <CJK>
+ %IRREVERSIBLE%<U6F32>     /x8e/xa1/xe9/xcd <CJK>
+ %IRREVERSIBLE%<U6F23>     /x8e/xa1/xe9/xce <CJK>
+ %IRREVERSIBLE%<U6F15>     /x8e/xa1/xe9/xcf <CJK>
+ %IRREVERSIBLE%<U6F2B>     /x8e/xa1/xe9/xd0 <CJK>
+ %IRREVERSIBLE%<U6F2F>     /x8e/xa1/xe9/xd1 <CJK>
+ %IRREVERSIBLE%<U6F88>     /x8e/xa1/xe9/xd2 <CJK>
+ %IRREVERSIBLE%<U6F2A>     /x8e/xa1/xe9/xd3 <CJK>
+ %IRREVERSIBLE%<U6EEC>     /x8e/xa1/xe9/xd4 <CJK>
+ %IRREVERSIBLE%<U6F01>     /x8e/xa1/xe9/xd5 <CJK>
+ %IRREVERSIBLE%<U6EF2>     /x8e/xa1/xe9/xd6 <CJK>
+ %IRREVERSIBLE%<U6ECC>     /x8e/xa1/xe9/xd7 <CJK>
+ %IRREVERSIBLE%<U6EF7>     /x8e/xa1/xe9/xd8 <CJK>
+ %IRREVERSIBLE%<U7194>     /x8e/xa1/xe9/xd9 <CJK>
+ %IRREVERSIBLE%<U7199>     /x8e/xa1/xe9/xda <CJK>
+ %IRREVERSIBLE%<U717D>     /x8e/xa1/xe9/xdb <CJK>
+ %IRREVERSIBLE%<U718A>     /x8e/xa1/xe9/xdc <CJK>
+ %IRREVERSIBLE%<U7184>     /x8e/xa1/xe9/xdd <CJK>
+ %IRREVERSIBLE%<U7192>     /x8e/xa1/xe9/xde <CJK>
+ %IRREVERSIBLE%<U723E>     /x8e/xa1/xe9/xdf <CJK>
+ %IRREVERSIBLE%<U7292>     /x8e/xa1/xe9/xe0 <CJK>
+ %IRREVERSIBLE%<U7296>     /x8e/xa1/xe9/xe1 <CJK>
+ %IRREVERSIBLE%<U7344>     /x8e/xa1/xe9/xe2 <CJK>
+ %IRREVERSIBLE%<U7350>     /x8e/xa1/xe9/xe3 <CJK>
+ %IRREVERSIBLE%<U7464>     /x8e/xa1/xe9/xe4 <CJK>
+ %IRREVERSIBLE%<U7463>     /x8e/xa1/xe9/xe5 <CJK>
+ %IRREVERSIBLE%<U746A>     /x8e/xa1/xe9/xe6 <CJK>
+ %IRREVERSIBLE%<U7470>     /x8e/xa1/xe9/xe7 <CJK>
+ %IRREVERSIBLE%<U746D>     /x8e/xa1/xe9/xe8 <CJK>
+ %IRREVERSIBLE%<U7504>     /x8e/xa1/xe9/xe9 <CJK>
+ %IRREVERSIBLE%<U7591>     /x8e/xa1/xe9/xea <CJK>
+ %IRREVERSIBLE%<U7627>     /x8e/xa1/xe9/xeb <CJK>
+ %IRREVERSIBLE%<U760D>     /x8e/xa1/xe9/xec <CJK>
+ %IRREVERSIBLE%<U760B>     /x8e/xa1/xe9/xed <CJK>
+ %IRREVERSIBLE%<U7609>     /x8e/xa1/xe9/xee <CJK>
+ %IRREVERSIBLE%<U7613>     /x8e/xa1/xe9/xef <CJK>
+ %IRREVERSIBLE%<U76E1>     /x8e/xa1/xe9/xf0 <CJK>
+ %IRREVERSIBLE%<U76E3>     /x8e/xa1/xe9/xf1 <CJK>
+ %IRREVERSIBLE%<U7784>     /x8e/xa1/xe9/xf2 <CJK>
+ %IRREVERSIBLE%<U777D>     /x8e/xa1/xe9/xf3 <CJK>
+ %IRREVERSIBLE%<U777F>     /x8e/xa1/xe9/xf4 <CJK>
+ %IRREVERSIBLE%<U7761>     /x8e/xa1/xe9/xf5 <CJK>
+ %IRREVERSIBLE%<U78C1>     /x8e/xa1/xe9/xf6 <CJK>
+ %IRREVERSIBLE%<U789F>     /x8e/xa1/xe9/xf7 <CJK>
+ %IRREVERSIBLE%<U78A7>     /x8e/xa1/xe9/xf8 <CJK>
+ %IRREVERSIBLE%<U78B3>     /x8e/xa1/xe9/xf9 <CJK>
+ %IRREVERSIBLE%<U78A9>     /x8e/xa1/xe9/xfa <CJK>
+ %IRREVERSIBLE%<U78A3>     /x8e/xa1/xe9/xfb <CJK>
+ %IRREVERSIBLE%<U798E>     /x8e/xa1/xe9/xfc <CJK>
+ %IRREVERSIBLE%<U798F>     /x8e/xa1/xe9/xfd <CJK>
+ %IRREVERSIBLE%<U798D>     /x8e/xa1/xe9/xfe <CJK>
+ %IRREVERSIBLE%<U7A2E>     /x8e/xa1/xea/xa1 <CJK>
+ %IRREVERSIBLE%<U7A31>     /x8e/xa1/xea/xa2 <CJK>
+ %IRREVERSIBLE%<U7AAA>     /x8e/xa1/xea/xa3 <CJK>
+ %IRREVERSIBLE%<U7AA9>     /x8e/xa1/xea/xa4 <CJK>
+ %IRREVERSIBLE%<U7AED>     /x8e/xa1/xea/xa5 <CJK>
+ %IRREVERSIBLE%<U7AEF>     /x8e/xa1/xea/xa6 <CJK>
+ %IRREVERSIBLE%<U7BA1>     /x8e/xa1/xea/xa7 <CJK>
+ %IRREVERSIBLE%<U7B95>     /x8e/xa1/xea/xa8 <CJK>
+ %IRREVERSIBLE%<U7B8B>     /x8e/xa1/xea/xa9 <CJK>
+ %IRREVERSIBLE%<U7B75>     /x8e/xa1/xea/xaa <CJK>
+ %IRREVERSIBLE%<U7B97>     /x8e/xa1/xea/xab <CJK>
+ %IRREVERSIBLE%<U7B9D>     /x8e/xa1/xea/xac <CJK>
+ %IRREVERSIBLE%<U7B94>     /x8e/xa1/xea/xad <CJK>
+ %IRREVERSIBLE%<U7B8F>     /x8e/xa1/xea/xae <CJK>
+ %IRREVERSIBLE%<U7BB8>     /x8e/xa1/xea/xaf <CJK>
+ %IRREVERSIBLE%<U7B87>     /x8e/xa1/xea/xb0 <CJK>
+ %IRREVERSIBLE%<U7B84>     /x8e/xa1/xea/xb1 <CJK>
+ %IRREVERSIBLE%<U7CB9>     /x8e/xa1/xea/xb2 <CJK>
+ %IRREVERSIBLE%<U7CBD>     /x8e/xa1/xea/xb3 <CJK>
+ %IRREVERSIBLE%<U7CBE>     /x8e/xa1/xea/xb4 <CJK>
+ %IRREVERSIBLE%<U7DBB>     /x8e/xa1/xea/xb5 <CJK>
+ %IRREVERSIBLE%<U7DB0>     /x8e/xa1/xea/xb6 <CJK>
+ %IRREVERSIBLE%<U7D9C>     /x8e/xa1/xea/xb7 <CJK>
+ %IRREVERSIBLE%<U7DBD>     /x8e/xa1/xea/xb8 <CJK>
+ %IRREVERSIBLE%<U7DBE>     /x8e/xa1/xea/xb9 <CJK>
+ %IRREVERSIBLE%<U7DA0>     /x8e/xa1/xea/xba <CJK>
+ %IRREVERSIBLE%<U7DCA>     /x8e/xa1/xea/xbb <CJK>
+ %IRREVERSIBLE%<U7DB4>     /x8e/xa1/xea/xbc <CJK>
+ %IRREVERSIBLE%<U7DB2>     /x8e/xa1/xea/xbd <CJK>
+ %IRREVERSIBLE%<U7DB1>     /x8e/xa1/xea/xbe <CJK>
+ %IRREVERSIBLE%<U7DBA>     /x8e/xa1/xea/xbf <CJK>
+ %IRREVERSIBLE%<U7DA2>     /x8e/xa1/xea/xc0 <CJK>
+ %IRREVERSIBLE%<U7DBF>     /x8e/xa1/xea/xc1 <CJK>
+ %IRREVERSIBLE%<U7DB5>     /x8e/xa1/xea/xc2 <CJK>
+ %IRREVERSIBLE%<U7DB8>     /x8e/xa1/xea/xc3 <CJK>
+ %IRREVERSIBLE%<U7DAD>     /x8e/xa1/xea/xc4 <CJK>
+ %IRREVERSIBLE%<U7DD2>     /x8e/xa1/xea/xc5 <CJK>
+ %IRREVERSIBLE%<U7DC7>     /x8e/xa1/xea/xc6 <CJK>
+ %IRREVERSIBLE%<U7DAC>     /x8e/xa1/xea/xc7 <CJK>
+ %IRREVERSIBLE%<U7F70>     /x8e/xa1/xea/xc8 <CJK>
+ %IRREVERSIBLE%<U7FE0>     /x8e/xa1/xea/xc9 <CJK>
+ %IRREVERSIBLE%<U7FE1>     /x8e/xa1/xea/xca <CJK>
+ %IRREVERSIBLE%<U7FDF>     /x8e/xa1/xea/xcb <CJK>
+ %IRREVERSIBLE%<U805E>     /x8e/xa1/xea/xcc <CJK>
+ %IRREVERSIBLE%<U805A>     /x8e/xa1/xea/xcd <CJK>
+ %IRREVERSIBLE%<U8087>     /x8e/xa1/xea/xce <CJK>
+ %IRREVERSIBLE%<U8150>     /x8e/xa1/xea/xcf <CJK>
+ %IRREVERSIBLE%<U8180>     /x8e/xa1/xea/xd0 <CJK>
+ %IRREVERSIBLE%<U818F>     /x8e/xa1/xea/xd1 <CJK>
+ %IRREVERSIBLE%<U8188>     /x8e/xa1/xea/xd2 <CJK>
+ %IRREVERSIBLE%<U818A>     /x8e/xa1/xea/xd3 <CJK>
+ %IRREVERSIBLE%<U817F>     /x8e/xa1/xea/xd4 <CJK>
+ %IRREVERSIBLE%<U8182>     /x8e/xa1/xea/xd5 <CJK>
+ %IRREVERSIBLE%<U81E7>     /x8e/xa1/xea/xd6 <CJK>
+ %IRREVERSIBLE%<U81FA>     /x8e/xa1/xea/xd7 <CJK>
+ %IRREVERSIBLE%<U8207>     /x8e/xa1/xea/xd8 <CJK>
+ %IRREVERSIBLE%<U8214>     /x8e/xa1/xea/xd9 <CJK>
+ %IRREVERSIBLE%<U821E>     /x8e/xa1/xea/xda <CJK>
+ %IRREVERSIBLE%<U824B>     /x8e/xa1/xea/xdb <CJK>
+ %IRREVERSIBLE%<U84C9>     /x8e/xa1/xea/xdc <CJK>
+ %IRREVERSIBLE%<U84BF>     /x8e/xa1/xea/xdd <CJK>
+ %IRREVERSIBLE%<U84C6>     /x8e/xa1/xea/xde <CJK>
+ %IRREVERSIBLE%<U84C4>     /x8e/xa1/xea/xdf <CJK>
+ %IRREVERSIBLE%<U8499>     /x8e/xa1/xea/xe0 <CJK>
+ %IRREVERSIBLE%<U849E>     /x8e/xa1/xea/xe1 <CJK>
+ %IRREVERSIBLE%<U84B2>     /x8e/xa1/xea/xe2 <CJK>
+ %IRREVERSIBLE%<U849C>     /x8e/xa1/xea/xe3 <CJK>
+ %IRREVERSIBLE%<U84CB>     /x8e/xa1/xea/xe4 <CJK>
+ %IRREVERSIBLE%<U84B8>     /x8e/xa1/xea/xe5 <CJK>
+ %IRREVERSIBLE%<U84C0>     /x8e/xa1/xea/xe6 <CJK>
+ %IRREVERSIBLE%<U84D3>     /x8e/xa1/xea/xe7 <CJK>
+ %IRREVERSIBLE%<U8490>     /x8e/xa1/xea/xe8 <CJK>
+ %IRREVERSIBLE%<U84BC>     /x8e/xa1/xea/xe9 <CJK>
+ %IRREVERSIBLE%<U84D1>     /x8e/xa1/xea/xea <CJK>
+ %IRREVERSIBLE%<U84CA>     /x8e/xa1/xea/xeb <CJK>
+ %IRREVERSIBLE%<U873F>     /x8e/xa1/xea/xec <CJK>
+ %IRREVERSIBLE%<U871C>     /x8e/xa1/xea/xed <CJK>
+ %IRREVERSIBLE%<U873B>     /x8e/xa1/xea/xee <CJK>
+ %IRREVERSIBLE%<U8722>     /x8e/xa1/xea/xef <CJK>
+ %IRREVERSIBLE%<U8725>     /x8e/xa1/xea/xf0 <CJK>
+ %IRREVERSIBLE%<U8734>     /x8e/xa1/xea/xf1 <CJK>
+ %IRREVERSIBLE%<U8718>     /x8e/xa1/xea/xf2 <CJK>
+ %IRREVERSIBLE%<U8755>     /x8e/xa1/xea/xf3 <CJK>
+ %IRREVERSIBLE%<U8737>     /x8e/xa1/xea/xf4 <CJK>
+ %IRREVERSIBLE%<U8729>     /x8e/xa1/xea/xf5 <CJK>
+ %IRREVERSIBLE%<U88F3>     /x8e/xa1/xea/xf6 <CJK>
+ %IRREVERSIBLE%<U8902>     /x8e/xa1/xea/xf7 <CJK>
+ %IRREVERSIBLE%<U88F4>     /x8e/xa1/xea/xf8 <CJK>
+ %IRREVERSIBLE%<U88F9>     /x8e/xa1/xea/xf9 <CJK>
+ %IRREVERSIBLE%<U88F8>     /x8e/xa1/xea/xfa <CJK>
+ %IRREVERSIBLE%<U88FD>     /x8e/xa1/xea/xfb <CJK>
+ %IRREVERSIBLE%<U88E8>     /x8e/xa1/xea/xfc <CJK>
+ %IRREVERSIBLE%<U891A>     /x8e/xa1/xea/xfd <CJK>
+ %IRREVERSIBLE%<U88EF>     /x8e/xa1/xea/xfe <CJK>
+ %IRREVERSIBLE%<U8AA6>     /x8e/xa1/xeb/xa1 <CJK>
+ %IRREVERSIBLE%<U8A8C>     /x8e/xa1/xeb/xa2 <CJK>
+ %IRREVERSIBLE%<U8A9E>     /x8e/xa1/xeb/xa3 <CJK>
+ %IRREVERSIBLE%<U8AA3>     /x8e/xa1/xeb/xa4 <CJK>
+ %IRREVERSIBLE%<U8A8D>     /x8e/xa1/xeb/xa5 <CJK>
+ %IRREVERSIBLE%<U8AA1>     /x8e/xa1/xeb/xa6 <CJK>
+ %IRREVERSIBLE%<U8A93>     /x8e/xa1/xeb/xa7 <CJK>
+ %IRREVERSIBLE%<U8AA4>     /x8e/xa1/xeb/xa8 <CJK>
+ %IRREVERSIBLE%<U8AAA>     /x8e/xa1/xeb/xa9 <CJK>
+ %IRREVERSIBLE%<U8AA5>     /x8e/xa1/xeb/xaa <CJK>
+ %IRREVERSIBLE%<U8AA8>     /x8e/xa1/xeb/xab <CJK>
+ %IRREVERSIBLE%<U8A98>     /x8e/xa1/xeb/xac <CJK>
+ %IRREVERSIBLE%<U8A91>     /x8e/xa1/xeb/xad <CJK>
+ %IRREVERSIBLE%<U8A9A>     /x8e/xa1/xeb/xae <CJK>
+ %IRREVERSIBLE%<U8AA7>     /x8e/xa1/xeb/xaf <CJK>
+ %IRREVERSIBLE%<U8C6A>     /x8e/xa1/xeb/xb0 <CJK>
+ %IRREVERSIBLE%<U8C8D>     /x8e/xa1/xeb/xb1 <CJK>
+ %IRREVERSIBLE%<U8C8C>     /x8e/xa1/xeb/xb2 <CJK>
+ %IRREVERSIBLE%<U8CD3>     /x8e/xa1/xeb/xb3 <CJK>
+ %IRREVERSIBLE%<U8CD1>     /x8e/xa1/xeb/xb4 <CJK>
+ %IRREVERSIBLE%<U8CD2>     /x8e/xa1/xeb/xb5 <CJK>
+ %IRREVERSIBLE%<U8D6B>     /x8e/xa1/xeb/xb6 <CJK>
+ %IRREVERSIBLE%<U8D99>     /x8e/xa1/xeb/xb7 <CJK>
+ %IRREVERSIBLE%<U8D95>     /x8e/xa1/xeb/xb8 <CJK>
+ %IRREVERSIBLE%<U8DFC>     /x8e/xa1/xeb/xb9 <CJK>
+ %IRREVERSIBLE%<U8F14>     /x8e/xa1/xeb/xba <CJK>
+ %IRREVERSIBLE%<U8F12>     /x8e/xa1/xeb/xbb <CJK>
+ %IRREVERSIBLE%<U8F15>     /x8e/xa1/xeb/xbc <CJK>
+ %IRREVERSIBLE%<U8F13>     /x8e/xa1/xeb/xbd <CJK>
+ %IRREVERSIBLE%<U8FA3>     /x8e/xa1/xeb/xbe <CJK>
+ %IRREVERSIBLE%<U9060>     /x8e/xa1/xeb/xbf <CJK>
+ %IRREVERSIBLE%<U9058>     /x8e/xa1/xeb/xc0 <CJK>
+ %IRREVERSIBLE%<U905C>     /x8e/xa1/xeb/xc1 <CJK>
+ %IRREVERSIBLE%<U9063>     /x8e/xa1/xeb/xc2 <CJK>
+ %IRREVERSIBLE%<U9059>     /x8e/xa1/xeb/xc3 <CJK>
+ %IRREVERSIBLE%<U905E>     /x8e/xa1/xeb/xc4 <CJK>
+ %IRREVERSIBLE%<U9062>     /x8e/xa1/xeb/xc5 <CJK>
+ %IRREVERSIBLE%<U905D>     /x8e/xa1/xeb/xc6 <CJK>
+ %IRREVERSIBLE%<U905B>     /x8e/xa1/xeb/xc7 <CJK>
+ %IRREVERSIBLE%<U9119>     /x8e/xa1/xeb/xc8 <CJK>
+ %IRREVERSIBLE%<U9118>     /x8e/xa1/xeb/xc9 <CJK>
+ %IRREVERSIBLE%<U911E>     /x8e/xa1/xeb/xca <CJK>
+ %IRREVERSIBLE%<U9175>     /x8e/xa1/xeb/xcb <CJK>
+ %IRREVERSIBLE%<U9178>     /x8e/xa1/xeb/xcc <CJK>
+ %IRREVERSIBLE%<U9177>     /x8e/xa1/xeb/xcd <CJK>
+ %IRREVERSIBLE%<U9174>     /x8e/xa1/xeb/xce <CJK>
+ %IRREVERSIBLE%<U9278>     /x8e/xa1/xeb/xcf <CJK>
+ %IRREVERSIBLE%<U92AC>     /x8e/xa1/xeb/xd0 <CJK>
+ %IRREVERSIBLE%<U9280>     /x8e/xa1/xeb/xd1 <CJK>
+ %IRREVERSIBLE%<U9285>     /x8e/xa1/xeb/xd2 <CJK>
+ %IRREVERSIBLE%<U9298>     /x8e/xa1/xeb/xd3 <CJK>
+ %IRREVERSIBLE%<U9296>     /x8e/xa1/xeb/xd4 <CJK>
+ %IRREVERSIBLE%<U927B>     /x8e/xa1/xeb/xd5 <CJK>
+ %IRREVERSIBLE%<U9293>     /x8e/xa1/xeb/xd6 <CJK>
+ %IRREVERSIBLE%<U929C>     /x8e/xa1/xeb/xd7 <CJK>
+ %IRREVERSIBLE%<U92A8>     /x8e/xa1/xeb/xd8 <CJK>
+ %IRREVERSIBLE%<U927C>     /x8e/xa1/xeb/xd9 <CJK>
+ %IRREVERSIBLE%<U9291>     /x8e/xa1/xeb/xda <CJK>
+ %IRREVERSIBLE%<U95A1>     /x8e/xa1/xeb/xdb <CJK>
+ %IRREVERSIBLE%<U95A8>     /x8e/xa1/xeb/xdc <CJK>
+ %IRREVERSIBLE%<U95A9>     /x8e/xa1/xeb/xdd <CJK>
+ %IRREVERSIBLE%<U95A3>     /x8e/xa1/xeb/xde <CJK>
+ %IRREVERSIBLE%<U95A5>     /x8e/xa1/xeb/xdf <CJK>
+ %IRREVERSIBLE%<U95A4>     /x8e/xa1/xeb/xe0 <CJK>
+ %IRREVERSIBLE%<U9699>     /x8e/xa1/xeb/xe1 <CJK>
+ %IRREVERSIBLE%<U969C>     /x8e/xa1/xeb/xe2 <CJK>
+ %IRREVERSIBLE%<U969B>     /x8e/xa1/xeb/xe3 <CJK>
+ %IRREVERSIBLE%<U96CC>     /x8e/xa1/xeb/xe4 <CJK>
+ %IRREVERSIBLE%<U96D2>     /x8e/xa1/xeb/xe5 <CJK>
+ %IRREVERSIBLE%<U9700>     /x8e/xa1/xeb/xe6 <CJK>
+ %IRREVERSIBLE%<U977C>     /x8e/xa1/xeb/xe7 <CJK>
+ %IRREVERSIBLE%<U9785>     /x8e/xa1/xeb/xe8 <CJK>
+ %IRREVERSIBLE%<U97F6>     /x8e/xa1/xeb/xe9 <CJK>
+ %IRREVERSIBLE%<U9817>     /x8e/xa1/xeb/xea <CJK>
+ %IRREVERSIBLE%<U9818>     /x8e/xa1/xeb/xeb <CJK>
+ %IRREVERSIBLE%<U98AF>     /x8e/xa1/xeb/xec <CJK>
+ %IRREVERSIBLE%<U98B1>     /x8e/xa1/xeb/xed <CJK>
+ %IRREVERSIBLE%<U9903>     /x8e/xa1/xeb/xee <CJK>
+ %IRREVERSIBLE%<U9905>     /x8e/xa1/xeb/xef <CJK>
+ %IRREVERSIBLE%<U990C>     /x8e/xa1/xeb/xf0 <CJK>
+ %IRREVERSIBLE%<U9909>     /x8e/xa1/xeb/xf1 <CJK>
+ %IRREVERSIBLE%<U99C1>     /x8e/xa1/xeb/xf2 <CJK>
+ %IRREVERSIBLE%<U9AAF>     /x8e/xa1/xeb/xf3 <CJK>
+ %IRREVERSIBLE%<U9AB0>     /x8e/xa1/xeb/xf4 <CJK>
+ %IRREVERSIBLE%<U9AE6>     /x8e/xa1/xeb/xf5 <CJK>
+ %IRREVERSIBLE%<U9B41>     /x8e/xa1/xeb/xf6 <CJK>
+ %IRREVERSIBLE%<U9B42>     /x8e/xa1/xeb/xf7 <CJK>
+ %IRREVERSIBLE%<U9CF4>     /x8e/xa1/xeb/xf8 <CJK>
+ %IRREVERSIBLE%<U9CF6>     /x8e/xa1/xeb/xf9 <CJK>
+ %IRREVERSIBLE%<U9CF3>     /x8e/xa1/xeb/xfa <CJK>
+ %IRREVERSIBLE%<U9EBC>     /x8e/xa1/xeb/xfb <CJK>
+ %IRREVERSIBLE%<U9F3B>     /x8e/xa1/xeb/xfc <CJK>
+ %IRREVERSIBLE%<U9F4A>     /x8e/xa1/xeb/xfd <CJK>
+ %IRREVERSIBLE%<U5104>     /x8e/xa1/xeb/xfe <CJK>
+ %IRREVERSIBLE%<U5100>     /x8e/xa1/xec/xa1 <CJK>
+ %IRREVERSIBLE%<U50FB>     /x8e/xa1/xec/xa2 <CJK>
+ %IRREVERSIBLE%<U50F5>     /x8e/xa1/xec/xa3 <CJK>
+ %IRREVERSIBLE%<U50F9>     /x8e/xa1/xec/xa4 <CJK>
+ %IRREVERSIBLE%<U5102>     /x8e/xa1/xec/xa5 <CJK>
+ %IRREVERSIBLE%<U5108>     /x8e/xa1/xec/xa6 <CJK>
+ %IRREVERSIBLE%<U5109>     /x8e/xa1/xec/xa7 <CJK>
+ %IRREVERSIBLE%<U5105>     /x8e/xa1/xec/xa8 <CJK>
+ %IRREVERSIBLE%<U51DC>     /x8e/xa1/xec/xa9 <CJK>
+ %IRREVERSIBLE%<U5287>     /x8e/xa1/xec/xaa <CJK>
+ %IRREVERSIBLE%<U5288>     /x8e/xa1/xec/xab <CJK>
+ %IRREVERSIBLE%<U5289>     /x8e/xa1/xec/xac <CJK>
+ %IRREVERSIBLE%<U528D>     /x8e/xa1/xec/xad <CJK>
+ %IRREVERSIBLE%<U528A>     /x8e/xa1/xec/xae <CJK>
+ %IRREVERSIBLE%<U52F0>     /x8e/xa1/xec/xaf <CJK>
+ %IRREVERSIBLE%<U53B2>     /x8e/xa1/xec/xb0 <CJK>
+ %IRREVERSIBLE%<U562E>     /x8e/xa1/xec/xb1 <CJK>
+ %IRREVERSIBLE%<U563B>     /x8e/xa1/xec/xb2 <CJK>
+ %IRREVERSIBLE%<U5639>     /x8e/xa1/xec/xb3 <CJK>
+ %IRREVERSIBLE%<U5632>     /x8e/xa1/xec/xb4 <CJK>
+ %IRREVERSIBLE%<U563F>     /x8e/xa1/xec/xb5 <CJK>
+ %IRREVERSIBLE%<U5634>     /x8e/xa1/xec/xb6 <CJK>
+ %IRREVERSIBLE%<U5629>     /x8e/xa1/xec/xb7 <CJK>
+ %IRREVERSIBLE%<U5653>     /x8e/xa1/xec/xb8 <CJK>
+ %IRREVERSIBLE%<U564E>     /x8e/xa1/xec/xb9 <CJK>
+ %IRREVERSIBLE%<U5657>     /x8e/xa1/xec/xba <CJK>
+ %IRREVERSIBLE%<U5674>     /x8e/xa1/xec/xbb <CJK>
+ %IRREVERSIBLE%<U5636>     /x8e/xa1/xec/xbc <CJK>
+ %IRREVERSIBLE%<U562F>     /x8e/xa1/xec/xbd <CJK>
+ %IRREVERSIBLE%<U5630>     /x8e/xa1/xec/xbe <CJK>
+ %IRREVERSIBLE%<U5880>     /x8e/xa1/xec/xbf <CJK>
+ %IRREVERSIBLE%<U589F>     /x8e/xa1/xec/xc0 <CJK>
+ %IRREVERSIBLE%<U589E>     /x8e/xa1/xec/xc1 <CJK>
+ %IRREVERSIBLE%<U58B3>     /x8e/xa1/xec/xc2 <CJK>
+ %IRREVERSIBLE%<U589C>     /x8e/xa1/xec/xc3 <CJK>
+ %IRREVERSIBLE%<U58AE>     /x8e/xa1/xec/xc4 <CJK>
+ %IRREVERSIBLE%<U58A9>     /x8e/xa1/xec/xc5 <CJK>
+ %IRREVERSIBLE%<U58A6>     /x8e/xa1/xec/xc6 <CJK>
+ %IRREVERSIBLE%<U596D>     /x8e/xa1/xec/xc7 <CJK>
+ %IRREVERSIBLE%<U5B09>     /x8e/xa1/xec/xc8 <CJK>
+ %IRREVERSIBLE%<U5AFB>     /x8e/xa1/xec/xc9 <CJK>
+ %IRREVERSIBLE%<U5B0B>     /x8e/xa1/xec/xca <CJK>
+ %IRREVERSIBLE%<U5AF5>     /x8e/xa1/xec/xcb <CJK>
+ %IRREVERSIBLE%<U5B0C>     /x8e/xa1/xec/xcc <CJK>
+ %IRREVERSIBLE%<U5B08>     /x8e/xa1/xec/xcd <CJK>
+ %IRREVERSIBLE%<U5BEE>     /x8e/xa1/xec/xce <CJK>
+ %IRREVERSIBLE%<U5BEC>     /x8e/xa1/xec/xcf <CJK>
+ %IRREVERSIBLE%<U5BE9>     /x8e/xa1/xec/xd0 <CJK>
+ %IRREVERSIBLE%<U5BEB>     /x8e/xa1/xec/xd1 <CJK>
+ %IRREVERSIBLE%<U5C64>     /x8e/xa1/xec/xd2 <CJK>
+ %IRREVERSIBLE%<U5C65>     /x8e/xa1/xec/xd3 <CJK>
+ %IRREVERSIBLE%<U5D9D>     /x8e/xa1/xec/xd4 <CJK>
+ %IRREVERSIBLE%<U5D94>     /x8e/xa1/xec/xd5 <CJK>
+ %IRREVERSIBLE%<U5E62>     /x8e/xa1/xec/xd6 <CJK>
+ %IRREVERSIBLE%<U5E5F>     /x8e/xa1/xec/xd7 <CJK>
+ %IRREVERSIBLE%<U5E61>     /x8e/xa1/xec/xd8 <CJK>
+ %IRREVERSIBLE%<U5EE2>     /x8e/xa1/xec/xd9 <CJK>
+ %IRREVERSIBLE%<U5EDA>     /x8e/xa1/xec/xda <CJK>
+ %IRREVERSIBLE%<U5EDF>     /x8e/xa1/xec/xdb <CJK>
+ %IRREVERSIBLE%<U5EDD>     /x8e/xa1/xec/xdc <CJK>
+ %IRREVERSIBLE%<U5EE3>     /x8e/xa1/xec/xdd <CJK>
+ %IRREVERSIBLE%<U5EE0>     /x8e/xa1/xec/xde <CJK>
+ %IRREVERSIBLE%<U5F48>     /x8e/xa1/xec/xdf <CJK>
+ %IRREVERSIBLE%<U5F71>     /x8e/xa1/xec/xe0 <CJK>
+ %IRREVERSIBLE%<U5FB7>     /x8e/xa1/xec/xe1 <CJK>
+ %IRREVERSIBLE%<U5FB5>     /x8e/xa1/xec/xe2 <CJK>
+ %IRREVERSIBLE%<U6176>     /x8e/xa1/xec/xe3 <CJK>
+ %IRREVERSIBLE%<U6167>     /x8e/xa1/xec/xe4 <CJK>
+ %IRREVERSIBLE%<U616E>     /x8e/xa1/xec/xe5 <CJK>
+ %IRREVERSIBLE%<U615D>     /x8e/xa1/xec/xe6 <CJK>
+ %IRREVERSIBLE%<U6155>     /x8e/xa1/xec/xe7 <CJK>
+ %IRREVERSIBLE%<U6182>     /x8e/xa1/xec/xe8 <CJK>
+ %IRREVERSIBLE%<U617C>     /x8e/xa1/xec/xe9 <CJK>
+ %IRREVERSIBLE%<U6170>     /x8e/xa1/xec/xea <CJK>
+ %IRREVERSIBLE%<U616B>     /x8e/xa1/xec/xeb <CJK>
+ %IRREVERSIBLE%<U617E>     /x8e/xa1/xec/xec <CJK>
+ %IRREVERSIBLE%<U61A7>     /x8e/xa1/xec/xed <CJK>
+ %IRREVERSIBLE%<U6190>     /x8e/xa1/xec/xee <CJK>
+ %IRREVERSIBLE%<U61AB>     /x8e/xa1/xec/xef <CJK>
+ %IRREVERSIBLE%<U618E>     /x8e/xa1/xec/xf0 <CJK>
+ %IRREVERSIBLE%<U61AC>     /x8e/xa1/xec/xf1 <CJK>
+ %IRREVERSIBLE%<U619A>     /x8e/xa1/xec/xf2 <CJK>
+ %IRREVERSIBLE%<U61A4>     /x8e/xa1/xec/xf3 <CJK>
+ %IRREVERSIBLE%<U6194>     /x8e/xa1/xec/xf4 <CJK>
+ %IRREVERSIBLE%<U61AE>     /x8e/xa1/xec/xf5 <CJK>
+ %IRREVERSIBLE%<U622E>     /x8e/xa1/xec/xf6 <CJK>
+ %IRREVERSIBLE%<U6469>     /x8e/xa1/xec/xf7 <CJK>
+ %IRREVERSIBLE%<U646F>     /x8e/xa1/xec/xf8 <CJK>
+ %IRREVERSIBLE%<U6479>     /x8e/xa1/xec/xf9 <CJK>
+ %IRREVERSIBLE%<U649E>     /x8e/xa1/xec/xfa <CJK>
+ %IRREVERSIBLE%<U64B2>     /x8e/xa1/xec/xfb <CJK>
+ %IRREVERSIBLE%<U6488>     /x8e/xa1/xec/xfc <CJK>
+ %IRREVERSIBLE%<U6490>     /x8e/xa1/xec/xfd <CJK>
+ %IRREVERSIBLE%<U64B0>     /x8e/xa1/xec/xfe <CJK>
+ %IRREVERSIBLE%<U64A5>     /x8e/xa1/xed/xa1 <CJK>
+ %IRREVERSIBLE%<U6493>     /x8e/xa1/xed/xa2 <CJK>
+ %IRREVERSIBLE%<U6495>     /x8e/xa1/xed/xa3 <CJK>
+ %IRREVERSIBLE%<U64A9>     /x8e/xa1/xed/xa4 <CJK>
+ %IRREVERSIBLE%<U6492>     /x8e/xa1/xed/xa5 <CJK>
+ %IRREVERSIBLE%<U64AE>     /x8e/xa1/xed/xa6 <CJK>
+ %IRREVERSIBLE%<U64AD>     /x8e/xa1/xed/xa7 <CJK>
+ %IRREVERSIBLE%<U64AB>     /x8e/xa1/xed/xa8 <CJK>
+ %IRREVERSIBLE%<U649A>     /x8e/xa1/xed/xa9 <CJK>
+ %IRREVERSIBLE%<U64AC>     /x8e/xa1/xed/xaa <CJK>
+ %IRREVERSIBLE%<U6499>     /x8e/xa1/xed/xab <CJK>
+ %IRREVERSIBLE%<U64A2>     /x8e/xa1/xed/xac <CJK>
+ %IRREVERSIBLE%<U64B3>     /x8e/xa1/xed/xad <CJK>
+ %IRREVERSIBLE%<U6575>     /x8e/xa1/xed/xae <CJK>
+ %IRREVERSIBLE%<U6577>     /x8e/xa1/xed/xaf <CJK>
+ %IRREVERSIBLE%<U6578>     /x8e/xa1/xed/xb0 <CJK>
+ %IRREVERSIBLE%<U66AE>     /x8e/xa1/xed/xb1 <CJK>
+ %IRREVERSIBLE%<U66AB>     /x8e/xa1/xed/xb2 <CJK>
+ %IRREVERSIBLE%<U66B4>     /x8e/xa1/xed/xb3 <CJK>
+ %IRREVERSIBLE%<U66B1>     /x8e/xa1/xed/xb4 <CJK>
+ %IRREVERSIBLE%<U6A23>     /x8e/xa1/xed/xb5 <CJK>
+ %IRREVERSIBLE%<U6A1F>     /x8e/xa1/xed/xb6 <CJK>
+ %IRREVERSIBLE%<U69E8>     /x8e/xa1/xed/xb7 <CJK>
+ %IRREVERSIBLE%<U6A01>     /x8e/xa1/xed/xb8 <CJK>
+ %IRREVERSIBLE%<U6A1E>     /x8e/xa1/xed/xb9 <CJK>
+ %IRREVERSIBLE%<U6A19>     /x8e/xa1/xed/xba <CJK>
+ %IRREVERSIBLE%<U69FD>     /x8e/xa1/xed/xbb <CJK>
+ %IRREVERSIBLE%<U6A21>     /x8e/xa1/xed/xbc <CJK>
+ %IRREVERSIBLE%<U6A13>     /x8e/xa1/xed/xbd <CJK>
+ %IRREVERSIBLE%<U6A0A>     /x8e/xa1/xed/xbe <CJK>
+ %IRREVERSIBLE%<U69F3>     /x8e/xa1/xed/xbf <CJK>
+ %IRREVERSIBLE%<U6A02>     /x8e/xa1/xed/xc0 <CJK>
+ %IRREVERSIBLE%<U6A05>     /x8e/xa1/xed/xc1 <CJK>
+ %IRREVERSIBLE%<U69ED>     /x8e/xa1/xed/xc2 <CJK>
+ %IRREVERSIBLE%<U6A11>     /x8e/xa1/xed/xc3 <CJK>
+ %IRREVERSIBLE%<U6B50>     /x8e/xa1/xed/xc4 <CJK>
+ %IRREVERSIBLE%<U6B4E>     /x8e/xa1/xed/xc5 <CJK>
+ %IRREVERSIBLE%<U6BA4>     /x8e/xa1/xed/xc6 <CJK>
+ %IRREVERSIBLE%<U6BC5>     /x8e/xa1/xed/xc7 <CJK>
+ %IRREVERSIBLE%<U6BC6>     /x8e/xa1/xed/xc8 <CJK>
+ %IRREVERSIBLE%<U6F3F>     /x8e/xa1/xed/xc9 <CJK>
+ %IRREVERSIBLE%<U6F7C>     /x8e/xa1/xed/xca <CJK>
+ %IRREVERSIBLE%<U6F84>     /x8e/xa1/xed/xcb <CJK>
+ %IRREVERSIBLE%<U6F51>     /x8e/xa1/xed/xcc <CJK>
+ %IRREVERSIBLE%<U6F66>     /x8e/xa1/xed/xcd <CJK>
+ %IRREVERSIBLE%<U6F54>     /x8e/xa1/xed/xce <CJK>
+ %IRREVERSIBLE%<U6F86>     /x8e/xa1/xed/xcf <CJK>
+ %IRREVERSIBLE%<U6F6D>     /x8e/xa1/xed/xd0 <CJK>
+ %IRREVERSIBLE%<U6F5B>     /x8e/xa1/xed/xd1 <CJK>
+ %IRREVERSIBLE%<U6F78>     /x8e/xa1/xed/xd2 <CJK>
+ %IRREVERSIBLE%<U6F6E>     /x8e/xa1/xed/xd3 <CJK>
+ %IRREVERSIBLE%<U6F8E>     /x8e/xa1/xed/xd4 <CJK>
+ %IRREVERSIBLE%<U6F7A>     /x8e/xa1/xed/xd5 <CJK>
+ %IRREVERSIBLE%<U6F70>     /x8e/xa1/xed/xd6 <CJK>
+ %IRREVERSIBLE%<U6F64>     /x8e/xa1/xed/xd7 <CJK>
+ %IRREVERSIBLE%<U6F97>     /x8e/xa1/xed/xd8 <CJK>
+ %IRREVERSIBLE%<U6F58>     /x8e/xa1/xed/xd9 <CJK>
+ %IRREVERSIBLE%<U6ED5>     /x8e/xa1/xed/xda <CJK>
+ %IRREVERSIBLE%<U6F6F>     /x8e/xa1/xed/xdb <CJK>
+ %IRREVERSIBLE%<U6F60>     /x8e/xa1/xed/xdc <CJK>
+ %IRREVERSIBLE%<U6F5F>     /x8e/xa1/xed/xdd <CJK>
+ %IRREVERSIBLE%<U719F>     /x8e/xa1/xed/xde <CJK>
+ %IRREVERSIBLE%<U71AC>     /x8e/xa1/xed/xdf <CJK>
+ %IRREVERSIBLE%<U71B1>     /x8e/xa1/xed/xe0 <CJK>
+ %IRREVERSIBLE%<U71A8>     /x8e/xa1/xed/xe1 <CJK>
+ %IRREVERSIBLE%<U7256>     /x8e/xa1/xed/xe2 <CJK>
+ %IRREVERSIBLE%<U729B>     /x8e/xa1/xed/xe3 <CJK>
+ %IRREVERSIBLE%<U734E>     /x8e/xa1/xed/xe4 <CJK>
+ %IRREVERSIBLE%<U7357>     /x8e/xa1/xed/xe5 <CJK>
+ %IRREVERSIBLE%<U7469>     /x8e/xa1/xed/xe6 <CJK>
+ %IRREVERSIBLE%<U748B>     /x8e/xa1/xed/xe7 <CJK>
+ %IRREVERSIBLE%<U7483>     /x8e/xa1/xed/xe8 <CJK>
+ %IRREVERSIBLE%<U747E>     /x8e/xa1/xed/xe9 <CJK>
+ %IRREVERSIBLE%<U7480>     /x8e/xa1/xed/xea <CJK>
+ %IRREVERSIBLE%<U757F>     /x8e/xa1/xed/xeb <CJK>
+ %IRREVERSIBLE%<U7620>     /x8e/xa1/xed/xec <CJK>
+ %IRREVERSIBLE%<U7629>     /x8e/xa1/xed/xed <CJK>
+ %IRREVERSIBLE%<U761F>     /x8e/xa1/xed/xee <CJK>
+ %IRREVERSIBLE%<U7624>     /x8e/xa1/xed/xef <CJK>
+ %IRREVERSIBLE%<U7626>     /x8e/xa1/xed/xf0 <CJK>
+ %IRREVERSIBLE%<U7621>     /x8e/xa1/xed/xf1 <CJK>
+ %IRREVERSIBLE%<U7622>     /x8e/xa1/xed/xf2 <CJK>
+ %IRREVERSIBLE%<U769A>     /x8e/xa1/xed/xf3 <CJK>
+ %IRREVERSIBLE%<U76BA>     /x8e/xa1/xed/xf4 <CJK>
+ %IRREVERSIBLE%<U76E4>     /x8e/xa1/xed/xf5 <CJK>
+ %IRREVERSIBLE%<U778E>     /x8e/xa1/xed/xf6 <CJK>
+ %IRREVERSIBLE%<U7787>     /x8e/xa1/xed/xf7 <CJK>
+ %IRREVERSIBLE%<U778C>     /x8e/xa1/xed/xf8 <CJK>
+ %IRREVERSIBLE%<U7791>     /x8e/xa1/xed/xf9 <CJK>
+ %IRREVERSIBLE%<U778B>     /x8e/xa1/xed/xfa <CJK>
+ %IRREVERSIBLE%<U78CB>     /x8e/xa1/xed/xfb <CJK>
+ %IRREVERSIBLE%<U78C5>     /x8e/xa1/xed/xfc <CJK>
+ %IRREVERSIBLE%<U78BA>     /x8e/xa1/xed/xfd <CJK>
+ %IRREVERSIBLE%<U78CA>     /x8e/xa1/xed/xfe <CJK>
+ %IRREVERSIBLE%<U78BE>     /x8e/xa1/xee/xa1 <CJK>
+ %IRREVERSIBLE%<U78D5>     /x8e/xa1/xee/xa2 <CJK>
+ %IRREVERSIBLE%<U78BC>     /x8e/xa1/xee/xa3 <CJK>
+ %IRREVERSIBLE%<U78D0>     /x8e/xa1/xee/xa4 <CJK>
+ %IRREVERSIBLE%<U7A3F>     /x8e/xa1/xee/xa5 <CJK>
+ %IRREVERSIBLE%<U7A3C>     /x8e/xa1/xee/xa6 <CJK>
+ %IRREVERSIBLE%<U7A40>     /x8e/xa1/xee/xa7 <CJK>
+ %IRREVERSIBLE%<U7A3D>     /x8e/xa1/xee/xa8 <CJK>
+ %IRREVERSIBLE%<U7A37>     /x8e/xa1/xee/xa9 <CJK>
+ %IRREVERSIBLE%<U7A3B>     /x8e/xa1/xee/xaa <CJK>
+ %IRREVERSIBLE%<U7AAF>     /x8e/xa1/xee/xab <CJK>
+ %IRREVERSIBLE%<U7AAE>     /x8e/xa1/xee/xac <CJK>
+ %IRREVERSIBLE%<U7BAD>     /x8e/xa1/xee/xad <CJK>
+ %IRREVERSIBLE%<U7BB1>     /x8e/xa1/xee/xae <CJK>
+ %IRREVERSIBLE%<U7BC4>     /x8e/xa1/xee/xaf <CJK>
+ %IRREVERSIBLE%<U7BB4>     /x8e/xa1/xee/xb0 <CJK>
+ %IRREVERSIBLE%<U7BC6>     /x8e/xa1/xee/xb1 <CJK>
+ %IRREVERSIBLE%<U7BC7>     /x8e/xa1/xee/xb2 <CJK>
+ %IRREVERSIBLE%<U7BC1>     /x8e/xa1/xee/xb3 <CJK>
+ %IRREVERSIBLE%<U7BA0>     /x8e/xa1/xee/xb4 <CJK>
+ %IRREVERSIBLE%<U7BCC>     /x8e/xa1/xee/xb5 <CJK>
+ %IRREVERSIBLE%<U7CCA>     /x8e/xa1/xee/xb6 <CJK>
+ %IRREVERSIBLE%<U7DE0>     /x8e/xa1/xee/xb7 <CJK>
+ %IRREVERSIBLE%<U7DF4>     /x8e/xa1/xee/xb8 <CJK>
+ %IRREVERSIBLE%<U7DEF>     /x8e/xa1/xee/xb9 <CJK>
+ %IRREVERSIBLE%<U7DFB>     /x8e/xa1/xee/xba <CJK>
+ %IRREVERSIBLE%<U7DD8>     /x8e/xa1/xee/xbb <CJK>
+ %IRREVERSIBLE%<U7DEC>     /x8e/xa1/xee/xbc <CJK>
+ %IRREVERSIBLE%<U7DDD>     /x8e/xa1/xee/xbd <CJK>
+ %IRREVERSIBLE%<U7DE8>     /x8e/xa1/xee/xbe <CJK>
+ %IRREVERSIBLE%<U7DE3>     /x8e/xa1/xee/xbf <CJK>
+ %IRREVERSIBLE%<U7DDA>     /x8e/xa1/xee/xc0 <CJK>
+ %IRREVERSIBLE%<U7DDE>     /x8e/xa1/xee/xc1 <CJK>
+ %IRREVERSIBLE%<U7DE9>     /x8e/xa1/xee/xc2 <CJK>
+ %IRREVERSIBLE%<U7D9E>     /x8e/xa1/xee/xc3 <CJK>
+ %IRREVERSIBLE%<U7DD9>     /x8e/xa1/xee/xc4 <CJK>
+ %IRREVERSIBLE%<U7DF2>     /x8e/xa1/xee/xc5 <CJK>
+ %IRREVERSIBLE%<U7DF9>     /x8e/xa1/xee/xc6 <CJK>
+ %IRREVERSIBLE%<U7F75>     /x8e/xa1/xee/xc7 <CJK>
+ %IRREVERSIBLE%<U7F77>     /x8e/xa1/xee/xc8 <CJK>
+ %IRREVERSIBLE%<U7FAF>     /x8e/xa1/xee/xc9 <CJK>
+ %IRREVERSIBLE%<U7FE9>     /x8e/xa1/xee/xca <CJK>
+ %IRREVERSIBLE%<U8026>     /x8e/xa1/xee/xcb <CJK>
+ %IRREVERSIBLE%<U819B>     /x8e/xa1/xee/xcc <CJK>
+ %IRREVERSIBLE%<U819C>     /x8e/xa1/xee/xcd <CJK>
+ %IRREVERSIBLE%<U819D>     /x8e/xa1/xee/xce <CJK>
+ %IRREVERSIBLE%<U81A0>     /x8e/xa1/xee/xcf <CJK>
+ %IRREVERSIBLE%<U819A>     /x8e/xa1/xee/xd0 <CJK>
+ %IRREVERSIBLE%<U8198>     /x8e/xa1/xee/xd1 <CJK>
+ %IRREVERSIBLE%<U8517>     /x8e/xa1/xee/xd2 <CJK>
+ %IRREVERSIBLE%<U853D>     /x8e/xa1/xee/xd3 <CJK>
+ %IRREVERSIBLE%<U851A>     /x8e/xa1/xee/xd4 <CJK>
+ %IRREVERSIBLE%<U84EE>     /x8e/xa1/xee/xd5 <CJK>
+ %IRREVERSIBLE%<U852C>     /x8e/xa1/xee/xd6 <CJK>
+ %IRREVERSIBLE%<U852D>     /x8e/xa1/xee/xd7 <CJK>
+ %IRREVERSIBLE%<U8513>     /x8e/xa1/xee/xd8 <CJK>
+ %IRREVERSIBLE%<U8511>     /x8e/xa1/xee/xd9 <CJK>
+ %IRREVERSIBLE%<U8523>     /x8e/xa1/xee/xda <CJK>
+ %IRREVERSIBLE%<U8521>     /x8e/xa1/xee/xdb <CJK>
+ %IRREVERSIBLE%<U8514>     /x8e/xa1/xee/xdc <CJK>
+ %IRREVERSIBLE%<U84EC>     /x8e/xa1/xee/xdd <CJK>
+ %IRREVERSIBLE%<U8525>     /x8e/xa1/xee/xde <CJK>
+ %IRREVERSIBLE%<U84FF>     /x8e/xa1/xee/xdf <CJK>
+ %IRREVERSIBLE%<U8506>     /x8e/xa1/xee/xe0 <CJK>
+ %IRREVERSIBLE%<U8782>     /x8e/xa1/xee/xe1 <CJK>
+ %IRREVERSIBLE%<U8774>     /x8e/xa1/xee/xe2 <CJK>
+ %IRREVERSIBLE%<U8776>     /x8e/xa1/xee/xe3 <CJK>
+ %IRREVERSIBLE%<U8760>     /x8e/xa1/xee/xe4 <CJK>
+ %IRREVERSIBLE%<U8766>     /x8e/xa1/xee/xe5 <CJK>
+ %IRREVERSIBLE%<U8778>     /x8e/xa1/xee/xe6 <CJK>
+ %IRREVERSIBLE%<U8768>     /x8e/xa1/xee/xe7 <CJK>
+ %IRREVERSIBLE%<U8759>     /x8e/xa1/xee/xe8 <CJK>
+ %IRREVERSIBLE%<U8757>     /x8e/xa1/xee/xe9 <CJK>
+ %IRREVERSIBLE%<U874C>     /x8e/xa1/xee/xea <CJK>
+ %IRREVERSIBLE%<U8753>     /x8e/xa1/xee/xeb <CJK>
+ %IRREVERSIBLE%<U885B>     /x8e/xa1/xee/xec <CJK>
+ %IRREVERSIBLE%<U885D>     /x8e/xa1/xee/xed <CJK>
+ %IRREVERSIBLE%<U8910>     /x8e/xa1/xee/xee <CJK>
+ %IRREVERSIBLE%<U8907>     /x8e/xa1/xee/xef <CJK>
+ %IRREVERSIBLE%<U8912>     /x8e/xa1/xee/xf0 <CJK>
+ %IRREVERSIBLE%<U8913>     /x8e/xa1/xee/xf1 <CJK>
+ %IRREVERSIBLE%<U8915>     /x8e/xa1/xee/xf2 <CJK>
+ %IRREVERSIBLE%<U890A>     /x8e/xa1/xee/xf3 <CJK>
+ %IRREVERSIBLE%<U8ABC>     /x8e/xa1/xee/xf4 <CJK>
+ %IRREVERSIBLE%<U8AD2>     /x8e/xa1/xee/xf5 <CJK>
+ %IRREVERSIBLE%<U8AC7>     /x8e/xa1/xee/xf6 <CJK>
+ %IRREVERSIBLE%<U8AC4>     /x8e/xa1/xee/xf7 <CJK>
+ %IRREVERSIBLE%<U8A95>     /x8e/xa1/xee/xf8 <CJK>
+ %IRREVERSIBLE%<U8ACB>     /x8e/xa1/xee/xf9 <CJK>
+ %IRREVERSIBLE%<U8AF8>     /x8e/xa1/xee/xfa <CJK>
+ %IRREVERSIBLE%<U8AB2>     /x8e/xa1/xee/xfb <CJK>
+ %IRREVERSIBLE%<U8AC9>     /x8e/xa1/xee/xfc <CJK>
+ %IRREVERSIBLE%<U8AC2>     /x8e/xa1/xee/xfd <CJK>
+ %IRREVERSIBLE%<U8ABF>     /x8e/xa1/xee/xfe <CJK>
+ %IRREVERSIBLE%<U8AB0>     /x8e/xa1/xef/xa1 <CJK>
+ %IRREVERSIBLE%<U8AD6>     /x8e/xa1/xef/xa2 <CJK>
+ %IRREVERSIBLE%<U8ACD>     /x8e/xa1/xef/xa3 <CJK>
+ %IRREVERSIBLE%<U8AB6>     /x8e/xa1/xef/xa4 <CJK>
+ %IRREVERSIBLE%<U8AB9>     /x8e/xa1/xef/xa5 <CJK>
+ %IRREVERSIBLE%<U8ADB>     /x8e/xa1/xef/xa6 <CJK>
+ %IRREVERSIBLE%<U8C4C>     /x8e/xa1/xef/xa7 <CJK>
+ %IRREVERSIBLE%<U8C4E>     /x8e/xa1/xef/xa8 <CJK>
+ %IRREVERSIBLE%<U8C6C>     /x8e/xa1/xef/xa9 <CJK>
+ %IRREVERSIBLE%<U8CE0>     /x8e/xa1/xef/xaa <CJK>
+ %IRREVERSIBLE%<U8CDE>     /x8e/xa1/xef/xab <CJK>
+ %IRREVERSIBLE%<U8CE6>     /x8e/xa1/xef/xac <CJK>
+ %IRREVERSIBLE%<U8CE4>     /x8e/xa1/xef/xad <CJK>
+ %IRREVERSIBLE%<U8CEC>     /x8e/xa1/xef/xae <CJK>
+ %IRREVERSIBLE%<U8CED>     /x8e/xa1/xef/xaf <CJK>
+ %IRREVERSIBLE%<U8CE2>     /x8e/xa1/xef/xb0 <CJK>
+ %IRREVERSIBLE%<U8CE3>     /x8e/xa1/xef/xb1 <CJK>
+ %IRREVERSIBLE%<U8CDC>     /x8e/xa1/xef/xb2 <CJK>
+ %IRREVERSIBLE%<U8CEA>     /x8e/xa1/xef/xb3 <CJK>
+ %IRREVERSIBLE%<U8CE1>     /x8e/xa1/xef/xb4 <CJK>
+ %IRREVERSIBLE%<U8D6D>     /x8e/xa1/xef/xb5 <CJK>
+ %IRREVERSIBLE%<U8D9F>     /x8e/xa1/xef/xb6 <CJK>
+ %IRREVERSIBLE%<U8DA3>     /x8e/xa1/xef/xb7 <CJK>
+ %IRREVERSIBLE%<U8E2B>     /x8e/xa1/xef/xb8 <CJK>
+ %IRREVERSIBLE%<U8E10>     /x8e/xa1/xef/xb9 <CJK>
+ %IRREVERSIBLE%<U8E1D>     /x8e/xa1/xef/xba <CJK>
+ %IRREVERSIBLE%<U8E22>     /x8e/xa1/xef/xbb <CJK>
+ %IRREVERSIBLE%<U8E0F>     /x8e/xa1/xef/xbc <CJK>
+ %IRREVERSIBLE%<U8E29>     /x8e/xa1/xef/xbd <CJK>
+ %IRREVERSIBLE%<U8E1F>     /x8e/xa1/xef/xbe <CJK>
+ %IRREVERSIBLE%<U8E21>     /x8e/xa1/xef/xbf <CJK>
+ %IRREVERSIBLE%<U8E1E>     /x8e/xa1/xef/xc0 <CJK>
+ %IRREVERSIBLE%<U8EBA>     /x8e/xa1/xef/xc1 <CJK>
+ %IRREVERSIBLE%<U8F1D>     /x8e/xa1/xef/xc2 <CJK>
+ %IRREVERSIBLE%<U8F1B>     /x8e/xa1/xef/xc3 <CJK>
+ %IRREVERSIBLE%<U8F1F>     /x8e/xa1/xef/xc4 <CJK>
+ %IRREVERSIBLE%<U8F29>     /x8e/xa1/xef/xc5 <CJK>
+ %IRREVERSIBLE%<U8F26>     /x8e/xa1/xef/xc6 <CJK>
+ %IRREVERSIBLE%<U8F2A>     /x8e/xa1/xef/xc7 <CJK>
+ %IRREVERSIBLE%<U8F1C>     /x8e/xa1/xef/xc8 <CJK>
+ %IRREVERSIBLE%<U8F1E>     /x8e/xa1/xef/xc9 <CJK>
+ %IRREVERSIBLE%<U8F25>     /x8e/xa1/xef/xca <CJK>
+ %IRREVERSIBLE%<U9069>     /x8e/xa1/xef/xcb <CJK>
+ %IRREVERSIBLE%<U906E>     /x8e/xa1/xef/xcc <CJK>
+ %IRREVERSIBLE%<U9068>     /x8e/xa1/xef/xcd <CJK>
+ %IRREVERSIBLE%<U906D>     /x8e/xa1/xef/xce <CJK>
+ %IRREVERSIBLE%<U9077>     /x8e/xa1/xef/xcf <CJK>
+ %IRREVERSIBLE%<U9130>     /x8e/xa1/xef/xd0 <CJK>
+ %IRREVERSIBLE%<U912D>     /x8e/xa1/xef/xd1 <CJK>
+ %IRREVERSIBLE%<U9127>     /x8e/xa1/xef/xd2 <CJK>
+ %IRREVERSIBLE%<U9131>     /x8e/xa1/xef/xd3 <CJK>
+ %IRREVERSIBLE%<U9187>     /x8e/xa1/xef/xd4 <CJK>
+ %IRREVERSIBLE%<U9189>     /x8e/xa1/xef/xd5 <CJK>
+ %IRREVERSIBLE%<U918B>     /x8e/xa1/xef/xd6 <CJK>
+ %IRREVERSIBLE%<U9183>     /x8e/xa1/xef/xd7 <CJK>
+ %IRREVERSIBLE%<U92C5>     /x8e/xa1/xef/xd8 <CJK>
+ %IRREVERSIBLE%<U92BB>     /x8e/xa1/xef/xd9 <CJK>
+ %IRREVERSIBLE%<U92B7>     /x8e/xa1/xef/xda <CJK>
+ %IRREVERSIBLE%<U92EA>     /x8e/xa1/xef/xdb <CJK>
+ %IRREVERSIBLE%<U92E4>     /x8e/xa1/xef/xdc <CJK>
+ %IRREVERSIBLE%<U92C1>     /x8e/xa1/xef/xdd <CJK>
+ %IRREVERSIBLE%<U92B3>     /x8e/xa1/xef/xde <CJK>
+ %IRREVERSIBLE%<U92BC>     /x8e/xa1/xef/xdf <CJK>
+ %IRREVERSIBLE%<U92D2>     /x8e/xa1/xef/xe0 <CJK>
+ %IRREVERSIBLE%<U92C7>     /x8e/xa1/xef/xe1 <CJK>
+ %IRREVERSIBLE%<U92F0>     /x8e/xa1/xef/xe2 <CJK>
+ %IRREVERSIBLE%<U92B2>     /x8e/xa1/xef/xe3 <CJK>
+ %IRREVERSIBLE%<U95AD>     /x8e/xa1/xef/xe4 <CJK>
+ %IRREVERSIBLE%<U95B1>     /x8e/xa1/xef/xe5 <CJK>
+ %IRREVERSIBLE%<U9704>     /x8e/xa1/xef/xe6 <CJK>
+ %IRREVERSIBLE%<U9706>     /x8e/xa1/xef/xe7 <CJK>
+ %IRREVERSIBLE%<U9707>     /x8e/xa1/xef/xe8 <CJK>
+ %IRREVERSIBLE%<U9709>     /x8e/xa1/xef/xe9 <CJK>
+ %IRREVERSIBLE%<U9760>     /x8e/xa1/xef/xea <CJK>
+ %IRREVERSIBLE%<U978D>     /x8e/xa1/xef/xeb <CJK>
+ %IRREVERSIBLE%<U978B>     /x8e/xa1/xef/xec <CJK>
+ %IRREVERSIBLE%<U978F>     /x8e/xa1/xef/xed <CJK>
+ %IRREVERSIBLE%<U9821>     /x8e/xa1/xef/xee <CJK>
+ %IRREVERSIBLE%<U982B>     /x8e/xa1/xef/xef <CJK>
+ %IRREVERSIBLE%<U981C>     /x8e/xa1/xef/xf0 <CJK>
+ %IRREVERSIBLE%<U98B3>     /x8e/xa1/xef/xf1 <CJK>
+ %IRREVERSIBLE%<U990A>     /x8e/xa1/xef/xf2 <CJK>
+ %IRREVERSIBLE%<U9913>     /x8e/xa1/xef/xf3 <CJK>
+ %IRREVERSIBLE%<U9912>     /x8e/xa1/xef/xf4 <CJK>
+ %IRREVERSIBLE%<U9918>     /x8e/xa1/xef/xf5 <CJK>
+ %IRREVERSIBLE%<U99DD>     /x8e/xa1/xef/xf6 <CJK>
+ %IRREVERSIBLE%<U99D0>     /x8e/xa1/xef/xf7 <CJK>
+ %IRREVERSIBLE%<U99DF>     /x8e/xa1/xef/xf8 <CJK>
+ %IRREVERSIBLE%<U99DB>     /x8e/xa1/xef/xf9 <CJK>
+ %IRREVERSIBLE%<U99D1>     /x8e/xa1/xef/xfa <CJK>
+ %IRREVERSIBLE%<U99D5>     /x8e/xa1/xef/xfb <CJK>
+ %IRREVERSIBLE%<U99D2>     /x8e/xa1/xef/xfc <CJK>
+ %IRREVERSIBLE%<U99D9>     /x8e/xa1/xef/xfd <CJK>
+ %IRREVERSIBLE%<U9AB7>     /x8e/xa1/xef/xfe <CJK>
+ %IRREVERSIBLE%<U9AEE>     /x8e/xa1/xf0/xa1 <CJK>
+ %IRREVERSIBLE%<U9AEF>     /x8e/xa1/xf0/xa2 <CJK>
+ %IRREVERSIBLE%<U9B27>     /x8e/xa1/xf0/xa3 <CJK>
+ %IRREVERSIBLE%<U9B45>     /x8e/xa1/xf0/xa4 <CJK>
+ %IRREVERSIBLE%<U9B44>     /x8e/xa1/xf0/xa5 <CJK>
+ %IRREVERSIBLE%<U9B77>     /x8e/xa1/xf0/xa6 <CJK>
+ %IRREVERSIBLE%<U9B6F>     /x8e/xa1/xf0/xa7 <CJK>
+ %IRREVERSIBLE%<U9D06>     /x8e/xa1/xf0/xa8 <CJK>
+ %IRREVERSIBLE%<U9D09>     /x8e/xa1/xf0/xa9 <CJK>
+ %IRREVERSIBLE%<U9D03>     /x8e/xa1/xf0/xaa <CJK>
+ %IRREVERSIBLE%<U9EA9>     /x8e/xa1/xf0/xab <CJK>
+ %IRREVERSIBLE%<U9EBE>     /x8e/xa1/xf0/xac <CJK>
+ %IRREVERSIBLE%<U9ECE>     /x8e/xa1/xf0/xad <CJK>
+ %IRREVERSIBLE%<U58A8>     /x8e/xa1/xf0/xae <CJK>
+ %IRREVERSIBLE%<U9F52>     /x8e/xa1/xf0/xaf <CJK>
+ %IRREVERSIBLE%<U5112>     /x8e/xa1/xf0/xb0 <CJK>
+ %IRREVERSIBLE%<U5118>     /x8e/xa1/xf0/xb1 <CJK>
+ %IRREVERSIBLE%<U5114>     /x8e/xa1/xf0/xb2 <CJK>
+ %IRREVERSIBLE%<U5110>     /x8e/xa1/xf0/xb3 <CJK>
+ %IRREVERSIBLE%<U5115>     /x8e/xa1/xf0/xb4 <CJK>
+ %IRREVERSIBLE%<U5180>     /x8e/xa1/xf0/xb5 <CJK>
+ %IRREVERSIBLE%<U51AA>     /x8e/xa1/xf0/xb6 <CJK>
+ %IRREVERSIBLE%<U51DD>     /x8e/xa1/xf0/xb7 <CJK>
+ %IRREVERSIBLE%<U5291>     /x8e/xa1/xf0/xb8 <CJK>
+ %IRREVERSIBLE%<U5293>     /x8e/xa1/xf0/xb9 <CJK>
+ %IRREVERSIBLE%<U52F3>     /x8e/xa1/xf0/xba <CJK>
+ %IRREVERSIBLE%<U5659>     /x8e/xa1/xf0/xbb <CJK>
+ %IRREVERSIBLE%<U566B>     /x8e/xa1/xf0/xbc <CJK>
+ %IRREVERSIBLE%<U5679>     /x8e/xa1/xf0/xbd <CJK>
+ %IRREVERSIBLE%<U5669>     /x8e/xa1/xf0/xbe <CJK>
+ %IRREVERSIBLE%<U5664>     /x8e/xa1/xf0/xbf <CJK>
+ %IRREVERSIBLE%<U5678>     /x8e/xa1/xf0/xc0 <CJK>
+ %IRREVERSIBLE%<U566A>     /x8e/xa1/xf0/xc1 <CJK>
+ %IRREVERSIBLE%<U5668>     /x8e/xa1/xf0/xc2 <CJK>
+ %IRREVERSIBLE%<U5665>     /x8e/xa1/xf0/xc3 <CJK>
+ %IRREVERSIBLE%<U5671>     /x8e/xa1/xf0/xc4 <CJK>
+ %IRREVERSIBLE%<U566F>     /x8e/xa1/xf0/xc5 <CJK>
+ %IRREVERSIBLE%<U566C>     /x8e/xa1/xf0/xc6 <CJK>
+ %IRREVERSIBLE%<U5662>     /x8e/xa1/xf0/xc7 <CJK>
+ %IRREVERSIBLE%<U5676>     /x8e/xa1/xf0/xc8 <CJK>
+ %IRREVERSIBLE%<U58C1>     /x8e/xa1/xf0/xc9 <CJK>
+ %IRREVERSIBLE%<U58BE>     /x8e/xa1/xf0/xca <CJK>
+ %IRREVERSIBLE%<U58C7>     /x8e/xa1/xf0/xcb <CJK>
+ %IRREVERSIBLE%<U58C5>     /x8e/xa1/xf0/xcc <CJK>
+ %IRREVERSIBLE%<U596E>     /x8e/xa1/xf0/xcd <CJK>
+ %IRREVERSIBLE%<U5B1D>     /x8e/xa1/xf0/xce <CJK>
+ %IRREVERSIBLE%<U5B34>     /x8e/xa1/xf0/xcf <CJK>
+ %IRREVERSIBLE%<U5B78>     /x8e/xa1/xf0/xd0 <CJK>
+ %IRREVERSIBLE%<U5BF0>     /x8e/xa1/xf0/xd1 <CJK>
+ %IRREVERSIBLE%<U5C0E>     /x8e/xa1/xf0/xd2 <CJK>
+ %IRREVERSIBLE%<U5F4A>     /x8e/xa1/xf0/xd3 <CJK>
+ %IRREVERSIBLE%<U61B2>     /x8e/xa1/xf0/xd4 <CJK>
+ %IRREVERSIBLE%<U6191>     /x8e/xa1/xf0/xd5 <CJK>
+ %IRREVERSIBLE%<U61A9>     /x8e/xa1/xf0/xd6 <CJK>
+ %IRREVERSIBLE%<U618A>     /x8e/xa1/xf0/xd7 <CJK>
+ %IRREVERSIBLE%<U61CD>     /x8e/xa1/xf0/xd8 <CJK>
+ %IRREVERSIBLE%<U61B6>     /x8e/xa1/xf0/xd9 <CJK>
+ %IRREVERSIBLE%<U61BE>     /x8e/xa1/xf0/xda <CJK>
+ %IRREVERSIBLE%<U61CA>     /x8e/xa1/xf0/xdb <CJK>
+ %IRREVERSIBLE%<U61C8>     /x8e/xa1/xf0/xdc <CJK>
+ %IRREVERSIBLE%<U6230>     /x8e/xa1/xf0/xdd <CJK>
+ %IRREVERSIBLE%<U64C5>     /x8e/xa1/xf0/xde <CJK>
+ %IRREVERSIBLE%<U64C1>     /x8e/xa1/xf0/xdf <CJK>
+ %IRREVERSIBLE%<U64CB>     /x8e/xa1/xf0/xe0 <CJK>
+ %IRREVERSIBLE%<U64BB>     /x8e/xa1/xf0/xe1 <CJK>
+ %IRREVERSIBLE%<U64BC>     /x8e/xa1/xf0/xe2 <CJK>
+ %IRREVERSIBLE%<U64DA>     /x8e/xa1/xf0/xe3 <CJK>
+ %IRREVERSIBLE%<U64C4>     /x8e/xa1/xf0/xe4 <CJK>
+ %IRREVERSIBLE%<U64C7>     /x8e/xa1/xf0/xe5 <CJK>
+ %IRREVERSIBLE%<U64C2>     /x8e/xa1/xf0/xe6 <CJK>
+ %IRREVERSIBLE%<U64CD>     /x8e/xa1/xf0/xe7 <CJK>
+ %IRREVERSIBLE%<U64BF>     /x8e/xa1/xf0/xe8 <CJK>
+ %IRREVERSIBLE%<U64D2>     /x8e/xa1/xf0/xe9 <CJK>
+ %IRREVERSIBLE%<U64D4>     /x8e/xa1/xf0/xea <CJK>
+ %IRREVERSIBLE%<U64BE>     /x8e/xa1/xf0/xeb <CJK>
+ %IRREVERSIBLE%<U6574>     /x8e/xa1/xf0/xec <CJK>
+ %IRREVERSIBLE%<U66C6>     /x8e/xa1/xf0/xed <CJK>
+ %IRREVERSIBLE%<U66C9>     /x8e/xa1/xf0/xee <CJK>
+ %IRREVERSIBLE%<U66B9>     /x8e/xa1/xf0/xef <CJK>
+ %IRREVERSIBLE%<U66C4>     /x8e/xa1/xf0/xf0 <CJK>
+ %IRREVERSIBLE%<U66C7>     /x8e/xa1/xf0/xf1 <CJK>
+ %IRREVERSIBLE%<U66B8>     /x8e/xa1/xf0/xf2 <CJK>
+ %IRREVERSIBLE%<U6A3D>     /x8e/xa1/xf0/xf3 <CJK>
+ %IRREVERSIBLE%<U6A38>     /x8e/xa1/xf0/xf4 <CJK>
+ %IRREVERSIBLE%<U6A3A>     /x8e/xa1/xf0/xf5 <CJK>
+ %IRREVERSIBLE%<U6A59>     /x8e/xa1/xf0/xf6 <CJK>
+ %IRREVERSIBLE%<U6A6B>     /x8e/xa1/xf0/xf7 <CJK>
+ %IRREVERSIBLE%<U6A58>     /x8e/xa1/xf0/xf8 <CJK>
+ %IRREVERSIBLE%<U6A39>     /x8e/xa1/xf0/xf9 <CJK>
+ %IRREVERSIBLE%<U6A44>     /x8e/xa1/xf0/xfa <CJK>
+ %IRREVERSIBLE%<U6A62>     /x8e/xa1/xf0/xfb <CJK>
+ %IRREVERSIBLE%<U6A61>     /x8e/xa1/xf0/xfc <CJK>
+ %IRREVERSIBLE%<U6A4B>     /x8e/xa1/xf0/xfd <CJK>
+ %IRREVERSIBLE%<U6A47>     /x8e/xa1/xf0/xfe <CJK>
+ %IRREVERSIBLE%<U6A35>     /x8e/xa1/xf1/xa1 <CJK>
+ %IRREVERSIBLE%<U6A5F>     /x8e/xa1/xf1/xa2 <CJK>
+ %IRREVERSIBLE%<U6A48>     /x8e/xa1/xf1/xa3 <CJK>
+ %IRREVERSIBLE%<U6B59>     /x8e/xa1/xf1/xa4 <CJK>
+ %IRREVERSIBLE%<U6B77>     /x8e/xa1/xf1/xa5 <CJK>
+ %IRREVERSIBLE%<U6C05>     /x8e/xa1/xf1/xa6 <CJK>
+ %IRREVERSIBLE%<U6FC2>     /x8e/xa1/xf1/xa7 <CJK>
+ %IRREVERSIBLE%<U6FB1>     /x8e/xa1/xf1/xa8 <CJK>
+ %IRREVERSIBLE%<U6FA1>     /x8e/xa1/xf1/xa9 <CJK>
+ %IRREVERSIBLE%<U6FC3>     /x8e/xa1/xf1/xaa <CJK>
+ %IRREVERSIBLE%<U6FA4>     /x8e/xa1/xf1/xab <CJK>
+ %IRREVERSIBLE%<U6FC1>     /x8e/xa1/xf1/xac <CJK>
+ %IRREVERSIBLE%<U6FA7>     /x8e/xa1/xf1/xad <CJK>
+ %IRREVERSIBLE%<U6FB3>     /x8e/xa1/xf1/xae <CJK>
+ %IRREVERSIBLE%<U6FC0>     /x8e/xa1/xf1/xaf <CJK>
+ %IRREVERSIBLE%<U6FB9>     /x8e/xa1/xf1/xb0 <CJK>
+ %IRREVERSIBLE%<U6FB6>     /x8e/xa1/xf1/xb1 <CJK>
+ %IRREVERSIBLE%<U6FA6>     /x8e/xa1/xf1/xb2 <CJK>
+ %IRREVERSIBLE%<U6FA0>     /x8e/xa1/xf1/xb3 <CJK>
+ %IRREVERSIBLE%<U6FB4>     /x8e/xa1/xf1/xb4 <CJK>
+ %IRREVERSIBLE%<U71BE>     /x8e/xa1/xf1/xb5 <CJK>
+ %IRREVERSIBLE%<U71C9>     /x8e/xa1/xf1/xb6 <CJK>
+ %IRREVERSIBLE%<U71D0>     /x8e/xa1/xf1/xb7 <CJK>
+ %IRREVERSIBLE%<U71D2>     /x8e/xa1/xf1/xb8 <CJK>
+ %IRREVERSIBLE%<U71C8>     /x8e/xa1/xf1/xb9 <CJK>
+ %IRREVERSIBLE%<U71D5>     /x8e/xa1/xf1/xba <CJK>
+ %IRREVERSIBLE%<U71B9>     /x8e/xa1/xf1/xbb <CJK>
+ %IRREVERSIBLE%<U71CE>     /x8e/xa1/xf1/xbc <CJK>
+ %IRREVERSIBLE%<U71D9>     /x8e/xa1/xf1/xbd <CJK>
+ %IRREVERSIBLE%<U71DC>     /x8e/xa1/xf1/xbe <CJK>
+ %IRREVERSIBLE%<U71C3>     /x8e/xa1/xf1/xbf <CJK>
+ %IRREVERSIBLE%<U71C4>     /x8e/xa1/xf1/xc0 <CJK>
+ %IRREVERSIBLE%<U7368>     /x8e/xa1/xf1/xc1 <CJK>
+ %IRREVERSIBLE%<U749C>     /x8e/xa1/xf1/xc2 <CJK>
+ %IRREVERSIBLE%<U74A3>     /x8e/xa1/xf1/xc3 <CJK>
+ %IRREVERSIBLE%<U7498>     /x8e/xa1/xf1/xc4 <CJK>
+ %IRREVERSIBLE%<U749F>     /x8e/xa1/xf1/xc5 <CJK>
+ %IRREVERSIBLE%<U749E>     /x8e/xa1/xf1/xc6 <CJK>
+ %IRREVERSIBLE%<U74E2>     /x8e/xa1/xf1/xc7 <CJK>
+ %IRREVERSIBLE%<U750C>     /x8e/xa1/xf1/xc8 <CJK>
+ %IRREVERSIBLE%<U750D>     /x8e/xa1/xf1/xc9 <CJK>
+ %IRREVERSIBLE%<U7634>     /x8e/xa1/xf1/xca <CJK>
+ %IRREVERSIBLE%<U7638>     /x8e/xa1/xf1/xcb <CJK>
+ %IRREVERSIBLE%<U763A>     /x8e/xa1/xf1/xcc <CJK>
+ %IRREVERSIBLE%<U76E7>     /x8e/xa1/xf1/xcd <CJK>
+ %IRREVERSIBLE%<U76E5>     /x8e/xa1/xf1/xce <CJK>
+ %IRREVERSIBLE%<U77A0>     /x8e/xa1/xf1/xcf <CJK>
+ %IRREVERSIBLE%<U779E>     /x8e/xa1/xf1/xd0 <CJK>
+ %IRREVERSIBLE%<U779F>     /x8e/xa1/xf1/xd1 <CJK>
+ %IRREVERSIBLE%<U77A5>     /x8e/xa1/xf1/xd2 <CJK>
+ %IRREVERSIBLE%<U78E8>     /x8e/xa1/xf1/xd3 <CJK>
+ %IRREVERSIBLE%<U78DA>     /x8e/xa1/xf1/xd4 <CJK>
+ %IRREVERSIBLE%<U78EC>     /x8e/xa1/xf1/xd5 <CJK>
+ %IRREVERSIBLE%<U78E7>     /x8e/xa1/xf1/xd6 <CJK>
+ %IRREVERSIBLE%<U79A6>     /x8e/xa1/xf1/xd7 <CJK>
+ %IRREVERSIBLE%<U7A4D>     /x8e/xa1/xf1/xd8 <CJK>
+ %IRREVERSIBLE%<U7A4E>     /x8e/xa1/xf1/xd9 <CJK>
+ %IRREVERSIBLE%<U7A46>     /x8e/xa1/xf1/xda <CJK>
+ %IRREVERSIBLE%<U7A4C>     /x8e/xa1/xf1/xdb <CJK>
+ %IRREVERSIBLE%<U7A4B>     /x8e/xa1/xf1/xdc <CJK>
+ %IRREVERSIBLE%<U7ABA>     /x8e/xa1/xf1/xdd <CJK>
+ %IRREVERSIBLE%<U7BD9>     /x8e/xa1/xf1/xde <CJK>
+ %IRREVERSIBLE%<U7C11>     /x8e/xa1/xf1/xdf <CJK>
+ %IRREVERSIBLE%<U7BC9>     /x8e/xa1/xf1/xe0 <CJK>
+ %IRREVERSIBLE%<U7BE4>     /x8e/xa1/xf1/xe1 <CJK>
+ %IRREVERSIBLE%<U7BDB>     /x8e/xa1/xf1/xe2 <CJK>
+ %IRREVERSIBLE%<U7BE1>     /x8e/xa1/xf1/xe3 <CJK>
+ %IRREVERSIBLE%<U7BE9>     /x8e/xa1/xf1/xe4 <CJK>
+ %IRREVERSIBLE%<U7BE6>     /x8e/xa1/xf1/xe5 <CJK>
+ %IRREVERSIBLE%<U7CD5>     /x8e/xa1/xf1/xe6 <CJK>
+ %IRREVERSIBLE%<U7CD6>     /x8e/xa1/xf1/xe7 <CJK>
+ %IRREVERSIBLE%<U7E0A>     /x8e/xa1/xf1/xe8 <CJK>
+ %IRREVERSIBLE%<U7E11>     /x8e/xa1/xf1/xe9 <CJK>
+ %IRREVERSIBLE%<U7E08>     /x8e/xa1/xf1/xea <CJK>
+ %IRREVERSIBLE%<U7E1B>     /x8e/xa1/xf1/xeb <CJK>
+ %IRREVERSIBLE%<U7E23>     /x8e/xa1/xf1/xec <CJK>
+ %IRREVERSIBLE%<U7E1E>     /x8e/xa1/xf1/xed <CJK>
+ %IRREVERSIBLE%<U7E1D>     /x8e/xa1/xf1/xee <CJK>
+ %IRREVERSIBLE%<U7E09>     /x8e/xa1/xf1/xef <CJK>
+ %IRREVERSIBLE%<U7E10>     /x8e/xa1/xf1/xf0 <CJK>
+ %IRREVERSIBLE%<U7F79>     /x8e/xa1/xf1/xf1 <CJK>
+ %IRREVERSIBLE%<U7FB2>     /x8e/xa1/xf1/xf2 <CJK>
+ %IRREVERSIBLE%<U7FF0>     /x8e/xa1/xf1/xf3 <CJK>
+ %IRREVERSIBLE%<U7FF1>     /x8e/xa1/xf1/xf4 <CJK>
+ %IRREVERSIBLE%<U7FEE>     /x8e/xa1/xf1/xf5 <CJK>
+ %IRREVERSIBLE%<U8028>     /x8e/xa1/xf1/xf6 <CJK>
+ %IRREVERSIBLE%<U81B3>     /x8e/xa1/xf1/xf7 <CJK>
+ %IRREVERSIBLE%<U81A9>     /x8e/xa1/xf1/xf8 <CJK>
+ %IRREVERSIBLE%<U81A8>     /x8e/xa1/xf1/xf9 <CJK>
+ %IRREVERSIBLE%<U81FB>     /x8e/xa1/xf1/xfa <CJK>
+ %IRREVERSIBLE%<U8208>     /x8e/xa1/xf1/xfb <CJK>
+ %IRREVERSIBLE%<U8258>     /x8e/xa1/xf1/xfc <CJK>
+ %IRREVERSIBLE%<U8259>     /x8e/xa1/xf1/xfd <CJK>
+ %IRREVERSIBLE%<U854A>     /x8e/xa1/xf1/xfe <CJK>
+ %IRREVERSIBLE%<U8559>     /x8e/xa1/xf2/xa1 <CJK>
+ %IRREVERSIBLE%<U8548>     /x8e/xa1/xf2/xa2 <CJK>
+ %IRREVERSIBLE%<U8568>     /x8e/xa1/xf2/xa3 <CJK>
+ %IRREVERSIBLE%<U8569>     /x8e/xa1/xf2/xa4 <CJK>
+ %IRREVERSIBLE%<U8543>     /x8e/xa1/xf2/xa5 <CJK>
+ %IRREVERSIBLE%<U8549>     /x8e/xa1/xf2/xa6 <CJK>
+ %IRREVERSIBLE%<U856D>     /x8e/xa1/xf2/xa7 <CJK>
+ %IRREVERSIBLE%<U856A>     /x8e/xa1/xf2/xa8 <CJK>
+ %IRREVERSIBLE%<U855E>     /x8e/xa1/xf2/xa9 <CJK>
+ %IRREVERSIBLE%<U8783>     /x8e/xa1/xf2/xaa <CJK>
+ %IRREVERSIBLE%<U879F>     /x8e/xa1/xf2/xab <CJK>
+ %IRREVERSIBLE%<U879E>     /x8e/xa1/xf2/xac <CJK>
+ %IRREVERSIBLE%<U87A2>     /x8e/xa1/xf2/xad <CJK>
+ %IRREVERSIBLE%<U878D>     /x8e/xa1/xf2/xae <CJK>
+ %IRREVERSIBLE%<U8861>     /x8e/xa1/xf2/xaf <CJK>
+ %IRREVERSIBLE%<U892A>     /x8e/xa1/xf2/xb0 <CJK>
+ %IRREVERSIBLE%<U8932>     /x8e/xa1/xf2/xb1 <CJK>
+ %IRREVERSIBLE%<U8925>     /x8e/xa1/xf2/xb2 <CJK>
+ %IRREVERSIBLE%<U892B>     /x8e/xa1/xf2/xb3 <CJK>
+ %IRREVERSIBLE%<U8921>     /x8e/xa1/xf2/xb4 <CJK>
+ %IRREVERSIBLE%<U89AA>     /x8e/xa1/xf2/xb5 <CJK>
+ %IRREVERSIBLE%<U89A6>     /x8e/xa1/xf2/xb6 <CJK>
+ %IRREVERSIBLE%<U8AE6>     /x8e/xa1/xf2/xb7 <CJK>
+ %IRREVERSIBLE%<U8AFA>     /x8e/xa1/xf2/xb8 <CJK>
+ %IRREVERSIBLE%<U8AEB>     /x8e/xa1/xf2/xb9 <CJK>
+ %IRREVERSIBLE%<U8AF1>     /x8e/xa1/xf2/xba <CJK>
+ %IRREVERSIBLE%<U8B00>     /x8e/xa1/xf2/xbb <CJK>
+ %IRREVERSIBLE%<U8ADC>     /x8e/xa1/xf2/xbc <CJK>
+ %IRREVERSIBLE%<U8AE7>     /x8e/xa1/xf2/xbd <CJK>
+ %IRREVERSIBLE%<U8AEE>     /x8e/xa1/xf2/xbe <CJK>
+ %IRREVERSIBLE%<U8AFE>     /x8e/xa1/xf2/xbf <CJK>
+ %IRREVERSIBLE%<U8B01>     /x8e/xa1/xf2/xc0 <CJK>
+ %IRREVERSIBLE%<U8B02>     /x8e/xa1/xf2/xc1 <CJK>
+ %IRREVERSIBLE%<U8AF7>     /x8e/xa1/xf2/xc2 <CJK>
+ %IRREVERSIBLE%<U8AED>     /x8e/xa1/xf2/xc3 <CJK>
+ %IRREVERSIBLE%<U8AF3>     /x8e/xa1/xf2/xc4 <CJK>
+ %IRREVERSIBLE%<U8AF6>     /x8e/xa1/xf2/xc5 <CJK>
+ %IRREVERSIBLE%<U8AFC>     /x8e/xa1/xf2/xc6 <CJK>
+ %IRREVERSIBLE%<U8C6B>     /x8e/xa1/xf2/xc7 <CJK>
+ %IRREVERSIBLE%<U8C6D>     /x8e/xa1/xf2/xc8 <CJK>
+ %IRREVERSIBLE%<U8C93>     /x8e/xa1/xf2/xc9 <CJK>
+ %IRREVERSIBLE%<U8CF4>     /x8e/xa1/xf2/xca <CJK>
+ %IRREVERSIBLE%<U8E44>     /x8e/xa1/xf2/xcb <CJK>
+ %IRREVERSIBLE%<U8E31>     /x8e/xa1/xf2/xcc <CJK>
+ %IRREVERSIBLE%<U8E34>     /x8e/xa1/xf2/xcd <CJK>
+ %IRREVERSIBLE%<U8E42>     /x8e/xa1/xf2/xce <CJK>
+ %IRREVERSIBLE%<U8E39>     /x8e/xa1/xf2/xcf <CJK>
+ %IRREVERSIBLE%<U8E35>     /x8e/xa1/xf2/xd0 <CJK>
+ %IRREVERSIBLE%<U8F3B>     /x8e/xa1/xf2/xd1 <CJK>
+ %IRREVERSIBLE%<U8F2F>     /x8e/xa1/xf2/xd2 <CJK>
+ %IRREVERSIBLE%<U8F38>     /x8e/xa1/xf2/xd3 <CJK>
+ %IRREVERSIBLE%<U8F33>     /x8e/xa1/xf2/xd4 <CJK>
+ %IRREVERSIBLE%<U8FA8>     /x8e/xa1/xf2/xd5 <CJK>
+ %IRREVERSIBLE%<U8FA6>     /x8e/xa1/xf2/xd6 <CJK>
+ %IRREVERSIBLE%<U9075>     /x8e/xa1/xf2/xd7 <CJK>
+ %IRREVERSIBLE%<U9074>     /x8e/xa1/xf2/xd8 <CJK>
+ %IRREVERSIBLE%<U9078>     /x8e/xa1/xf2/xd9 <CJK>
+ %IRREVERSIBLE%<U9072>     /x8e/xa1/xf2/xda <CJK>
+ %IRREVERSIBLE%<U907C>     /x8e/xa1/xf2/xdb <CJK>
+ %IRREVERSIBLE%<U907A>     /x8e/xa1/xf2/xdc <CJK>
+ %IRREVERSIBLE%<U9134>     /x8e/xa1/xf2/xdd <CJK>
+ %IRREVERSIBLE%<U9192>     /x8e/xa1/xf2/xde <CJK>
+ %IRREVERSIBLE%<U9320>     /x8e/xa1/xf2/xdf <CJK>
+ %IRREVERSIBLE%<U9336>     /x8e/xa1/xf2/xe0 <CJK>
+ %IRREVERSIBLE%<U92F8>     /x8e/xa1/xf2/xe1 <CJK>
+ %IRREVERSIBLE%<U9333>     /x8e/xa1/xf2/xe2 <CJK>
+ %IRREVERSIBLE%<U932F>     /x8e/xa1/xf2/xe3 <CJK>
+ %IRREVERSIBLE%<U9322>     /x8e/xa1/xf2/xe4 <CJK>
+ %IRREVERSIBLE%<U92FC>     /x8e/xa1/xf2/xe5 <CJK>
+ %IRREVERSIBLE%<U932B>     /x8e/xa1/xf2/xe6 <CJK>
+ %IRREVERSIBLE%<U9304>     /x8e/xa1/xf2/xe7 <CJK>
+ %IRREVERSIBLE%<U931A>     /x8e/xa1/xf2/xe8 <CJK>
+ %IRREVERSIBLE%<U9310>     /x8e/xa1/xf2/xe9 <CJK>
+ %IRREVERSIBLE%<U9326>     /x8e/xa1/xf2/xea <CJK>
+ %IRREVERSIBLE%<U9321>     /x8e/xa1/xf2/xeb <CJK>
+ %IRREVERSIBLE%<U9315>     /x8e/xa1/xf2/xec <CJK>
+ %IRREVERSIBLE%<U932E>     /x8e/xa1/xf2/xed <CJK>
+ %IRREVERSIBLE%<U9319>     /x8e/xa1/xf2/xee <CJK>
+ %IRREVERSIBLE%<U95BB>     /x8e/xa1/xf2/xef <CJK>
+ %IRREVERSIBLE%<U96A7>     /x8e/xa1/xf2/xf0 <CJK>
+ %IRREVERSIBLE%<U96A8>     /x8e/xa1/xf2/xf1 <CJK>
+ %IRREVERSIBLE%<U96AA>     /x8e/xa1/xf2/xf2 <CJK>
+ %IRREVERSIBLE%<U96D5>     /x8e/xa1/xf2/xf3 <CJK>
+ %IRREVERSIBLE%<U970E>     /x8e/xa1/xf2/xf4 <CJK>
+ %IRREVERSIBLE%<U9711>     /x8e/xa1/xf2/xf5 <CJK>
+ %IRREVERSIBLE%<U9716>     /x8e/xa1/xf2/xf6 <CJK>
+ %IRREVERSIBLE%<U970D>     /x8e/xa1/xf2/xf7 <CJK>
+ %IRREVERSIBLE%<U9713>     /x8e/xa1/xf2/xf8 <CJK>
+ %IRREVERSIBLE%<U970F>     /x8e/xa1/xf2/xf9 <CJK>
+ %IRREVERSIBLE%<U975B>     /x8e/xa1/xf2/xfa <CJK>
+ %IRREVERSIBLE%<U975C>     /x8e/xa1/xf2/xfb <CJK>
+ %IRREVERSIBLE%<U9766>     /x8e/xa1/xf2/xfc <CJK>
+ %IRREVERSIBLE%<U9798>     /x8e/xa1/xf2/xfd <CJK>
+ %IRREVERSIBLE%<U9830>     /x8e/xa1/xf2/xfe <CJK>
+ %IRREVERSIBLE%<U9838>     /x8e/xa1/xf3/xa1 <CJK>
+ %IRREVERSIBLE%<U983B>     /x8e/xa1/xf3/xa2 <CJK>
+ %IRREVERSIBLE%<U9837>     /x8e/xa1/xf3/xa3 <CJK>
+ %IRREVERSIBLE%<U982D>     /x8e/xa1/xf3/xa4 <CJK>
+ %IRREVERSIBLE%<U9839>     /x8e/xa1/xf3/xa5 <CJK>
+ %IRREVERSIBLE%<U9824>     /x8e/xa1/xf3/xa6 <CJK>
+ %IRREVERSIBLE%<U9910>     /x8e/xa1/xf3/xa7 <CJK>
+ %IRREVERSIBLE%<U9928>     /x8e/xa1/xf3/xa8 <CJK>
+ %IRREVERSIBLE%<U991E>     /x8e/xa1/xf3/xa9 <CJK>
+ %IRREVERSIBLE%<U991B>     /x8e/xa1/xf3/xaa <CJK>
+ %IRREVERSIBLE%<U9921>     /x8e/xa1/xf3/xab <CJK>
+ %IRREVERSIBLE%<U991A>     /x8e/xa1/xf3/xac <CJK>
+ %IRREVERSIBLE%<U99ED>     /x8e/xa1/xf3/xad <CJK>
+ %IRREVERSIBLE%<U99E2>     /x8e/xa1/xf3/xae <CJK>
+ %IRREVERSIBLE%<U99F1>     /x8e/xa1/xf3/xaf <CJK>
+ %IRREVERSIBLE%<U9AB8>     /x8e/xa1/xf3/xb0 <CJK>
+ %IRREVERSIBLE%<U9ABC>     /x8e/xa1/xf3/xb1 <CJK>
+ %IRREVERSIBLE%<U9AFB>     /x8e/xa1/xf3/xb2 <CJK>
+ %IRREVERSIBLE%<U9AED>     /x8e/xa1/xf3/xb3 <CJK>
+ %IRREVERSIBLE%<U9B28>     /x8e/xa1/xf3/xb4 <CJK>
+ %IRREVERSIBLE%<U9B91>     /x8e/xa1/xf3/xb5 <CJK>
+ %IRREVERSIBLE%<U9D15>     /x8e/xa1/xf3/xb6 <CJK>
+ %IRREVERSIBLE%<U9D23>     /x8e/xa1/xf3/xb7 <CJK>
+ %IRREVERSIBLE%<U9D26>     /x8e/xa1/xf3/xb8 <CJK>
+ %IRREVERSIBLE%<U9D28>     /x8e/xa1/xf3/xb9 <CJK>
+ %IRREVERSIBLE%<U9D12>     /x8e/xa1/xf3/xba <CJK>
+ %IRREVERSIBLE%<U9D1B>     /x8e/xa1/xf3/xbb <CJK>
+ %IRREVERSIBLE%<U9ED8>     /x8e/xa1/xf3/xbc <CJK>
+ %IRREVERSIBLE%<U9ED4>     /x8e/xa1/xf3/xbd <CJK>
+ %IRREVERSIBLE%<U9F8D>     /x8e/xa1/xf3/xbe <CJK>
+ %IRREVERSIBLE%<U9F9C>     /x8e/xa1/xf3/xbf <CJK>
+ %IRREVERSIBLE%<U512A>     /x8e/xa1/xf3/xc0 <CJK>
+ %IRREVERSIBLE%<U511F>     /x8e/xa1/xf3/xc1 <CJK>
+ %IRREVERSIBLE%<U5121>     /x8e/xa1/xf3/xc2 <CJK>
+ %IRREVERSIBLE%<U5132>     /x8e/xa1/xf3/xc3 <CJK>
+ %IRREVERSIBLE%<U52F5>     /x8e/xa1/xf3/xc4 <CJK>
+ %IRREVERSIBLE%<U568E>     /x8e/xa1/xf3/xc5 <CJK>
+ %IRREVERSIBLE%<U5680>     /x8e/xa1/xf3/xc6 <CJK>
+ %IRREVERSIBLE%<U5690>     /x8e/xa1/xf3/xc7 <CJK>
+ %IRREVERSIBLE%<U5685>     /x8e/xa1/xf3/xc8 <CJK>
+ %IRREVERSIBLE%<U5687>     /x8e/xa1/xf3/xc9 <CJK>
+ %IRREVERSIBLE%<U568F>     /x8e/xa1/xf3/xca <CJK>
+ %IRREVERSIBLE%<U58D5>     /x8e/xa1/xf3/xcb <CJK>
+ %IRREVERSIBLE%<U58D3>     /x8e/xa1/xf3/xcc <CJK>
+ %IRREVERSIBLE%<U58D1>     /x8e/xa1/xf3/xcd <CJK>
+ %IRREVERSIBLE%<U58CE>     /x8e/xa1/xf3/xce <CJK>
+ %IRREVERSIBLE%<U5B30>     /x8e/xa1/xf3/xcf <CJK>
+ %IRREVERSIBLE%<U5B2A>     /x8e/xa1/xf3/xd0 <CJK>
+ %IRREVERSIBLE%<U5B24>     /x8e/xa1/xf3/xd1 <CJK>
+ %IRREVERSIBLE%<U5B7A>     /x8e/xa1/xf3/xd2 <CJK>
+ %IRREVERSIBLE%<U5C37>     /x8e/xa1/xf3/xd3 <CJK>
+ %IRREVERSIBLE%<U5C68>     /x8e/xa1/xf3/xd4 <CJK>
+ %IRREVERSIBLE%<U5DBC>     /x8e/xa1/xf3/xd5 <CJK>
+ %IRREVERSIBLE%<U5DBA>     /x8e/xa1/xf3/xd6 <CJK>
+ %IRREVERSIBLE%<U5DBD>     /x8e/xa1/xf3/xd7 <CJK>
+ %IRREVERSIBLE%<U5DB8>     /x8e/xa1/xf3/xd8 <CJK>
+ %IRREVERSIBLE%<U5E6B>     /x8e/xa1/xf3/xd9 <CJK>
+ %IRREVERSIBLE%<U5F4C>     /x8e/xa1/xf3/xda <CJK>
+ %IRREVERSIBLE%<U5FBD>     /x8e/xa1/xf3/xdb <CJK>
+ %IRREVERSIBLE%<U61C9>     /x8e/xa1/xf3/xdc <CJK>
+ %IRREVERSIBLE%<U61C2>     /x8e/xa1/xf3/xdd <CJK>
+ %IRREVERSIBLE%<U61C7>     /x8e/xa1/xf3/xde <CJK>
+ %IRREVERSIBLE%<U61E6>     /x8e/xa1/xf3/xdf <CJK>
+ %IRREVERSIBLE%<U61CB>     /x8e/xa1/xf3/xe0 <CJK>
+ %IRREVERSIBLE%<U6232>     /x8e/xa1/xf3/xe1 <CJK>
+ %IRREVERSIBLE%<U6234>     /x8e/xa1/xf3/xe2 <CJK>
+ %IRREVERSIBLE%<U64CE>     /x8e/xa1/xf3/xe3 <CJK>
+ %IRREVERSIBLE%<U64CA>     /x8e/xa1/xf3/xe4 <CJK>
+ %IRREVERSIBLE%<U64D8>     /x8e/xa1/xf3/xe5 <CJK>
+ %IRREVERSIBLE%<U64E0>     /x8e/xa1/xf3/xe6 <CJK>
+ %IRREVERSIBLE%<U64F0>     /x8e/xa1/xf3/xe7 <CJK>
+ %IRREVERSIBLE%<U64E6>     /x8e/xa1/xf3/xe8 <CJK>
+ %IRREVERSIBLE%<U64EC>     /x8e/xa1/xf3/xe9 <CJK>
+ %IRREVERSIBLE%<U64F1>     /x8e/xa1/xf3/xea <CJK>
+ %IRREVERSIBLE%<U64E2>     /x8e/xa1/xf3/xeb <CJK>
+ %IRREVERSIBLE%<U64ED>     /x8e/xa1/xf3/xec <CJK>
+ %IRREVERSIBLE%<U6582>     /x8e/xa1/xf3/xed <CJK>
+ %IRREVERSIBLE%<U6583>     /x8e/xa1/xf3/xee <CJK>
+ %IRREVERSIBLE%<U66D9>     /x8e/xa1/xf3/xef <CJK>
+ %IRREVERSIBLE%<U66D6>     /x8e/xa1/xf3/xf0 <CJK>
+ %IRREVERSIBLE%<U6A80>     /x8e/xa1/xf3/xf1 <CJK>
+ %IRREVERSIBLE%<U6A94>     /x8e/xa1/xf3/xf2 <CJK>
+ %IRREVERSIBLE%<U6A84>     /x8e/xa1/xf3/xf3 <CJK>
+ %IRREVERSIBLE%<U6AA2>     /x8e/xa1/xf3/xf4 <CJK>
+ %IRREVERSIBLE%<U6A9C>     /x8e/xa1/xf3/xf5 <CJK>
+ %IRREVERSIBLE%<U6ADB>     /x8e/xa1/xf3/xf6 <CJK>
+ %IRREVERSIBLE%<U6AA3>     /x8e/xa1/xf3/xf7 <CJK>
+ %IRREVERSIBLE%<U6A7E>     /x8e/xa1/xf3/xf8 <CJK>
+ %IRREVERSIBLE%<U6A97>     /x8e/xa1/xf3/xf9 <CJK>
+ %IRREVERSIBLE%<U6A90>     /x8e/xa1/xf3/xfa <CJK>
+ %IRREVERSIBLE%<U6AA0>     /x8e/xa1/xf3/xfb <CJK>
+ %IRREVERSIBLE%<U6B5C>     /x8e/xa1/xf3/xfc <CJK>
+ %IRREVERSIBLE%<U6BAE>     /x8e/xa1/xf3/xfd <CJK>
+ %IRREVERSIBLE%<U6BDA>     /x8e/xa1/xf3/xfe <CJK>
+ %IRREVERSIBLE%<U6C08>     /x8e/xa1/xf4/xa1 <CJK>
+ %IRREVERSIBLE%<U6FD8>     /x8e/xa1/xf4/xa2 <CJK>
+ %IRREVERSIBLE%<U6FF1>     /x8e/xa1/xf4/xa3 <CJK>
+ %IRREVERSIBLE%<U6FDF>     /x8e/xa1/xf4/xa4 <CJK>
+ %IRREVERSIBLE%<U6FE0>     /x8e/xa1/xf4/xa5 <CJK>
+ %IRREVERSIBLE%<U6FDB>     /x8e/xa1/xf4/xa6 <CJK>
+ %IRREVERSIBLE%<U6FE4>     /x8e/xa1/xf4/xa7 <CJK>
+ %IRREVERSIBLE%<U6FEB>     /x8e/xa1/xf4/xa8 <CJK>
+ %IRREVERSIBLE%<U6FEF>     /x8e/xa1/xf4/xa9 <CJK>
+ %IRREVERSIBLE%<U6F80>     /x8e/xa1/xf4/xaa <CJK>
+ %IRREVERSIBLE%<U6FEC>     /x8e/xa1/xf4/xab <CJK>
+ %IRREVERSIBLE%<U6FE1>     /x8e/xa1/xf4/xac <CJK>
+ %IRREVERSIBLE%<U6FE9>     /x8e/xa1/xf4/xad <CJK>
+ %IRREVERSIBLE%<U6FD5>     /x8e/xa1/xf4/xae <CJK>
+ %IRREVERSIBLE%<U6FEE>     /x8e/xa1/xf4/xaf <CJK>
+ %IRREVERSIBLE%<U6FF0>     /x8e/xa1/xf4/xb0 <CJK>
+ %IRREVERSIBLE%<U71E7>     /x8e/xa1/xf4/xb1 <CJK>
+ %IRREVERSIBLE%<U71DF>     /x8e/xa1/xf4/xb2 <CJK>
+ %IRREVERSIBLE%<U71EE>     /x8e/xa1/xf4/xb3 <CJK>
+ %IRREVERSIBLE%<U71E6>     /x8e/xa1/xf4/xb4 <CJK>
+ %IRREVERSIBLE%<U71E5>     /x8e/xa1/xf4/xb5 <CJK>
+ %IRREVERSIBLE%<U71ED>     /x8e/xa1/xf4/xb6 <CJK>
+ %IRREVERSIBLE%<U71EC>     /x8e/xa1/xf4/xb7 <CJK>
+ %IRREVERSIBLE%<U71F4>     /x8e/xa1/xf4/xb8 <CJK>
+ %IRREVERSIBLE%<U71E0>     /x8e/xa1/xf4/xb9 <CJK>
+ %IRREVERSIBLE%<U7235>     /x8e/xa1/xf4/xba <CJK>
+ %IRREVERSIBLE%<U7246>     /x8e/xa1/xf4/xbb <CJK>
+ %IRREVERSIBLE%<U7370>     /x8e/xa1/xf4/xbc <CJK>
+ %IRREVERSIBLE%<U7372>     /x8e/xa1/xf4/xbd <CJK>
+ %IRREVERSIBLE%<U74A9>     /x8e/xa1/xf4/xbe <CJK>
+ %IRREVERSIBLE%<U74B0>     /x8e/xa1/xf4/xbf <CJK>
+ %IRREVERSIBLE%<U74A6>     /x8e/xa1/xf4/xc0 <CJK>
+ %IRREVERSIBLE%<U74A8>     /x8e/xa1/xf4/xc1 <CJK>
+ %IRREVERSIBLE%<U7646>     /x8e/xa1/xf4/xc2 <CJK>
+ %IRREVERSIBLE%<U7642>     /x8e/xa1/xf4/xc3 <CJK>
+ %IRREVERSIBLE%<U764C>     /x8e/xa1/xf4/xc4 <CJK>
+ %IRREVERSIBLE%<U76EA>     /x8e/xa1/xf4/xc5 <CJK>
+ %IRREVERSIBLE%<U77B3>     /x8e/xa1/xf4/xc6 <CJK>
+ %IRREVERSIBLE%<U77AA>     /x8e/xa1/xf4/xc7 <CJK>
+ %IRREVERSIBLE%<U77B0>     /x8e/xa1/xf4/xc8 <CJK>
+ %IRREVERSIBLE%<U77AC>     /x8e/xa1/xf4/xc9 <CJK>
+ %IRREVERSIBLE%<U77A7>     /x8e/xa1/xf4/xca <CJK>
+ %IRREVERSIBLE%<U77AD>     /x8e/xa1/xf4/xcb <CJK>
+ %IRREVERSIBLE%<U77EF>     /x8e/xa1/xf4/xcc <CJK>
+ %IRREVERSIBLE%<U78F7>     /x8e/xa1/xf4/xcd <CJK>
+ %IRREVERSIBLE%<U78FA>     /x8e/xa1/xf4/xce <CJK>
+ %IRREVERSIBLE%<U78F4>     /x8e/xa1/xf4/xcf <CJK>
+ %IRREVERSIBLE%<U78EF>     /x8e/xa1/xf4/xd0 <CJK>
+ %IRREVERSIBLE%<U7901>     /x8e/xa1/xf4/xd1 <CJK>
+ %IRREVERSIBLE%<U79A7>     /x8e/xa1/xf4/xd2 <CJK>
+ %IRREVERSIBLE%<U79AA>     /x8e/xa1/xf4/xd3 <CJK>
+ %IRREVERSIBLE%<U7A57>     /x8e/xa1/xf4/xd4 <CJK>
+ %IRREVERSIBLE%<U7ABF>     /x8e/xa1/xf4/xd5 <CJK>
+ %IRREVERSIBLE%<U7C07>     /x8e/xa1/xf4/xd6 <CJK>
+ %IRREVERSIBLE%<U7C0D>     /x8e/xa1/xf4/xd7 <CJK>
+ %IRREVERSIBLE%<U7BFE>     /x8e/xa1/xf4/xd8 <CJK>
+ %IRREVERSIBLE%<U7BF7>     /x8e/xa1/xf4/xd9 <CJK>
+ %IRREVERSIBLE%<U7C0C>     /x8e/xa1/xf4/xda <CJK>
+ %IRREVERSIBLE%<U7BE0>     /x8e/xa1/xf4/xdb <CJK>
+ %IRREVERSIBLE%<U7CE0>     /x8e/xa1/xf4/xdc <CJK>
+ %IRREVERSIBLE%<U7CDC>     /x8e/xa1/xf4/xdd <CJK>
+ %IRREVERSIBLE%<U7CDE>     /x8e/xa1/xf4/xde <CJK>
+ %IRREVERSIBLE%<U7CE2>     /x8e/xa1/xf4/xdf <CJK>
+ %IRREVERSIBLE%<U7CDF>     /x8e/xa1/xf4/xe0 <CJK>
+ %IRREVERSIBLE%<U7CD9>     /x8e/xa1/xf4/xe1 <CJK>
+ %IRREVERSIBLE%<U7CDD>     /x8e/xa1/xf4/xe2 <CJK>
+ %IRREVERSIBLE%<U7E2E>     /x8e/xa1/xf4/xe3 <CJK>
+ %IRREVERSIBLE%<U7E3E>     /x8e/xa1/xf4/xe4 <CJK>
+ %IRREVERSIBLE%<U7E46>     /x8e/xa1/xf4/xe5 <CJK>
+ %IRREVERSIBLE%<U7E37>     /x8e/xa1/xf4/xe6 <CJK>
+ %IRREVERSIBLE%<U7E32>     /x8e/xa1/xf4/xe7 <CJK>
+ %IRREVERSIBLE%<U7E43>     /x8e/xa1/xf4/xe8 <CJK>
+ %IRREVERSIBLE%<U7E2B>     /x8e/xa1/xf4/xe9 <CJK>
+ %IRREVERSIBLE%<U7E3D>     /x8e/xa1/xf4/xea <CJK>
+ %IRREVERSIBLE%<U7E31>     /x8e/xa1/xf4/xeb <CJK>
+ %IRREVERSIBLE%<U7E45>     /x8e/xa1/xf4/xec <CJK>
+ %IRREVERSIBLE%<U7E41>     /x8e/xa1/xf4/xed <CJK>
+ %IRREVERSIBLE%<U7E34>     /x8e/xa1/xf4/xee <CJK>
+ %IRREVERSIBLE%<U7E39>     /x8e/xa1/xf4/xef <CJK>
+ %IRREVERSIBLE%<U7E48>     /x8e/xa1/xf4/xf0 <CJK>
+ %IRREVERSIBLE%<U7E35>     /x8e/xa1/xf4/xf1 <CJK>
+ %IRREVERSIBLE%<U7E3F>     /x8e/xa1/xf4/xf2 <CJK>
+ %IRREVERSIBLE%<U7E2F>     /x8e/xa1/xf4/xf3 <CJK>
+ %IRREVERSIBLE%<U7F44>     /x8e/xa1/xf4/xf4 <CJK>
+ %IRREVERSIBLE%<U7FF3>     /x8e/xa1/xf4/xf5 <CJK>
+ %IRREVERSIBLE%<U7FFC>     /x8e/xa1/xf4/xf6 <CJK>
+ %IRREVERSIBLE%<U8071>     /x8e/xa1/xf4/xf7 <CJK>
+ %IRREVERSIBLE%<U8072>     /x8e/xa1/xf4/xf8 <CJK>
+ %IRREVERSIBLE%<U8070>     /x8e/xa1/xf4/xf9 <CJK>
+ %IRREVERSIBLE%<U806F>     /x8e/xa1/xf4/xfa <CJK>
+ %IRREVERSIBLE%<U8073>     /x8e/xa1/xf4/xfb <CJK>
+ %IRREVERSIBLE%<U81C6>     /x8e/xa1/xf4/xfc <CJK>
+ %IRREVERSIBLE%<U81C3>     /x8e/xa1/xf4/xfd <CJK>
+ %IRREVERSIBLE%<U81BA>     /x8e/xa1/xf4/xfe <CJK>
+ %IRREVERSIBLE%<U81C2>     /x8e/xa1/xf5/xa1 <CJK>
+ %IRREVERSIBLE%<U81C0>     /x8e/xa1/xf5/xa2 <CJK>
+ %IRREVERSIBLE%<U81BF>     /x8e/xa1/xf5/xa3 <CJK>
+ %IRREVERSIBLE%<U81BD>     /x8e/xa1/xf5/xa4 <CJK>
+ %IRREVERSIBLE%<U81C9>     /x8e/xa1/xf5/xa5 <CJK>
+ %IRREVERSIBLE%<U81BE>     /x8e/xa1/xf5/xa6 <CJK>
+ %IRREVERSIBLE%<U81E8>     /x8e/xa1/xf5/xa7 <CJK>
+ %IRREVERSIBLE%<U8209>     /x8e/xa1/xf5/xa8 <CJK>
+ %IRREVERSIBLE%<U8271>     /x8e/xa1/xf5/xa9 <CJK>
+ %IRREVERSIBLE%<U85AA>     /x8e/xa1/xf5/xaa <CJK>
+ %IRREVERSIBLE%<U8584>     /x8e/xa1/xf5/xab <CJK>
+ %IRREVERSIBLE%<U857E>     /x8e/xa1/xf5/xac <CJK>
+ %IRREVERSIBLE%<U859C>     /x8e/xa1/xf5/xad <CJK>
+ %IRREVERSIBLE%<U8591>     /x8e/xa1/xf5/xae <CJK>
+ %IRREVERSIBLE%<U8594>     /x8e/xa1/xf5/xaf <CJK>
+ %IRREVERSIBLE%<U85AF>     /x8e/xa1/xf5/xb0 <CJK>
+ %IRREVERSIBLE%<U859B>     /x8e/xa1/xf5/xb1 <CJK>
+ %IRREVERSIBLE%<U8587>     /x8e/xa1/xf5/xb2 <CJK>
+ %IRREVERSIBLE%<U85A8>     /x8e/xa1/xf5/xb3 <CJK>
+ %IRREVERSIBLE%<U858A>     /x8e/xa1/xf5/xb4 <CJK>
+ %IRREVERSIBLE%<U85A6>     /x8e/xa1/xf5/xb5 <CJK>
+ %IRREVERSIBLE%<U8667>     /x8e/xa1/xf5/xb6 <CJK>
+ %IRREVERSIBLE%<U87C0>     /x8e/xa1/xf5/xb7 <CJK>
+ %IRREVERSIBLE%<U87D1>     /x8e/xa1/xf5/xb8 <CJK>
+ %IRREVERSIBLE%<U87B3>     /x8e/xa1/xf5/xb9 <CJK>
+ %IRREVERSIBLE%<U87D2>     /x8e/xa1/xf5/xba <CJK>
+ %IRREVERSIBLE%<U87C6>     /x8e/xa1/xf5/xbb <CJK>
+ %IRREVERSIBLE%<U87AB>     /x8e/xa1/xf5/xbc <CJK>
+ %IRREVERSIBLE%<U87BB>     /x8e/xa1/xf5/xbd <CJK>
+ %IRREVERSIBLE%<U87BA>     /x8e/xa1/xf5/xbe <CJK>
+ %IRREVERSIBLE%<U87C8>     /x8e/xa1/xf5/xbf <CJK>
+ %IRREVERSIBLE%<U87CB>     /x8e/xa1/xf5/xc0 <CJK>
+ %IRREVERSIBLE%<U893B>     /x8e/xa1/xf5/xc1 <CJK>
+ %IRREVERSIBLE%<U8936>     /x8e/xa1/xf5/xc2 <CJK>
+ %IRREVERSIBLE%<U8944>     /x8e/xa1/xf5/xc3 <CJK>
+ %IRREVERSIBLE%<U8938>     /x8e/xa1/xf5/xc4 <CJK>
+ %IRREVERSIBLE%<U893D>     /x8e/xa1/xf5/xc5 <CJK>
+ %IRREVERSIBLE%<U89AC>     /x8e/xa1/xf5/xc6 <CJK>
+ %IRREVERSIBLE%<U8B0E>     /x8e/xa1/xf5/xc7 <CJK>
+ %IRREVERSIBLE%<U8B17>     /x8e/xa1/xf5/xc8 <CJK>
+ %IRREVERSIBLE%<U8B19>     /x8e/xa1/xf5/xc9 <CJK>
+ %IRREVERSIBLE%<U8B1B>     /x8e/xa1/xf5/xca <CJK>
+ %IRREVERSIBLE%<U8B0A>     /x8e/xa1/xf5/xcb <CJK>
+ %IRREVERSIBLE%<U8B20>     /x8e/xa1/xf5/xcc <CJK>
+ %IRREVERSIBLE%<U8B1D>     /x8e/xa1/xf5/xcd <CJK>
+ %IRREVERSIBLE%<U8B04>     /x8e/xa1/xf5/xce <CJK>
+ %IRREVERSIBLE%<U8B10>     /x8e/xa1/xf5/xcf <CJK>
+ %IRREVERSIBLE%<U8C41>     /x8e/xa1/xf5/xd0 <CJK>
+ %IRREVERSIBLE%<U8C3F>     /x8e/xa1/xf5/xd1 <CJK>
+ %IRREVERSIBLE%<U8C73>     /x8e/xa1/xf5/xd2 <CJK>
+ %IRREVERSIBLE%<U8CFA>     /x8e/xa1/xf5/xd3 <CJK>
+ %IRREVERSIBLE%<U8CFD>     /x8e/xa1/xf5/xd4 <CJK>
+ %IRREVERSIBLE%<U8CFC>     /x8e/xa1/xf5/xd5 <CJK>
+ %IRREVERSIBLE%<U8CF8>     /x8e/xa1/xf5/xd6 <CJK>
+ %IRREVERSIBLE%<U8CFB>     /x8e/xa1/xf5/xd7 <CJK>
+ %IRREVERSIBLE%<U8DA8>     /x8e/xa1/xf5/xd8 <CJK>
+ %IRREVERSIBLE%<U8E49>     /x8e/xa1/xf5/xd9 <CJK>
+ %IRREVERSIBLE%<U8E4B>     /x8e/xa1/xf5/xda <CJK>
+ %IRREVERSIBLE%<U8E48>     /x8e/xa1/xf5/xdb <CJK>
+ %IRREVERSIBLE%<U8E4A>     /x8e/xa1/xf5/xdc <CJK>
+ %IRREVERSIBLE%<U8F44>     /x8e/xa1/xf5/xdd <CJK>
+ %IRREVERSIBLE%<U8F3E>     /x8e/xa1/xf5/xde <CJK>
+ %IRREVERSIBLE%<U8F42>     /x8e/xa1/xf5/xdf <CJK>
+ %IRREVERSIBLE%<U8F45>     /x8e/xa1/xf5/xe0 <CJK>
+ %IRREVERSIBLE%<U8F3F>     /x8e/xa1/xf5/xe1 <CJK>
+ %IRREVERSIBLE%<U907F>     /x8e/xa1/xf5/xe2 <CJK>
+ %IRREVERSIBLE%<U907D>     /x8e/xa1/xf5/xe3 <CJK>
+ %IRREVERSIBLE%<U9084>     /x8e/xa1/xf5/xe4 <CJK>
+ %IRREVERSIBLE%<U9081>     /x8e/xa1/xf5/xe5 <CJK>
+ %IRREVERSIBLE%<U9082>     /x8e/xa1/xf5/xe6 <CJK>
+ %IRREVERSIBLE%<U9080>     /x8e/xa1/xf5/xe7 <CJK>
+ %IRREVERSIBLE%<U9139>     /x8e/xa1/xf5/xe8 <CJK>
+ %IRREVERSIBLE%<U91A3>     /x8e/xa1/xf5/xe9 <CJK>
+ %IRREVERSIBLE%<U919E>     /x8e/xa1/xf5/xea <CJK>
+ %IRREVERSIBLE%<U919C>     /x8e/xa1/xf5/xeb <CJK>
+ %IRREVERSIBLE%<U934D>     /x8e/xa1/xf5/xec <CJK>
+ %IRREVERSIBLE%<U9382>     /x8e/xa1/xf5/xed <CJK>
+ %IRREVERSIBLE%<U9328>     /x8e/xa1/xf5/xee <CJK>
+ %IRREVERSIBLE%<U9375>     /x8e/xa1/xf5/xef <CJK>
+ %IRREVERSIBLE%<U934A>     /x8e/xa1/xf5/xf0 <CJK>
+ %IRREVERSIBLE%<U9365>     /x8e/xa1/xf5/xf1 <CJK>
+ %IRREVERSIBLE%<U934B>     /x8e/xa1/xf5/xf2 <CJK>
+ %IRREVERSIBLE%<U9318>     /x8e/xa1/xf5/xf3 <CJK>
+ %IRREVERSIBLE%<U937E>     /x8e/xa1/xf5/xf4 <CJK>
+ %IRREVERSIBLE%<U936C>     /x8e/xa1/xf5/xf5 <CJK>
+ %IRREVERSIBLE%<U935B>     /x8e/xa1/xf5/xf6 <CJK>
+ %IRREVERSIBLE%<U9370>     /x8e/xa1/xf5/xf7 <CJK>
+ %IRREVERSIBLE%<U935A>     /x8e/xa1/xf5/xf8 <CJK>
+ %IRREVERSIBLE%<U9354>     /x8e/xa1/xf5/xf9 <CJK>
+ %IRREVERSIBLE%<U95CA>     /x8e/xa1/xf5/xfa <CJK>
+ %IRREVERSIBLE%<U95CB>     /x8e/xa1/xf5/xfb <CJK>
+ %IRREVERSIBLE%<U95CC>     /x8e/xa1/xf5/xfc <CJK>
+ %IRREVERSIBLE%<U95C8>     /x8e/xa1/xf5/xfd <CJK>
+ %IRREVERSIBLE%<U95C6>     /x8e/xa1/xf5/xfe <CJK>
+ %IRREVERSIBLE%<U96B1>     /x8e/xa1/xf6/xa1 <CJK>
+ %IRREVERSIBLE%<U96B8>     /x8e/xa1/xf6/xa2 <CJK>
+ %IRREVERSIBLE%<U96D6>     /x8e/xa1/xf6/xa3 <CJK>
+ %IRREVERSIBLE%<U971C>     /x8e/xa1/xf6/xa4 <CJK>
+ %IRREVERSIBLE%<U971E>     /x8e/xa1/xf6/xa5 <CJK>
+ %IRREVERSIBLE%<U97A0>     /x8e/xa1/xf6/xa6 <CJK>
+ %IRREVERSIBLE%<U97D3>     /x8e/xa1/xf6/xa7 <CJK>
+ %IRREVERSIBLE%<U9846>     /x8e/xa1/xf6/xa8 <CJK>
+ %IRREVERSIBLE%<U98B6>     /x8e/xa1/xf6/xa9 <CJK>
+ %IRREVERSIBLE%<U9935>     /x8e/xa1/xf6/xaa <CJK>
+ %IRREVERSIBLE%<U9A01>     /x8e/xa1/xf6/xab <CJK>
+ %IRREVERSIBLE%<U99FF>     /x8e/xa1/xf6/xac <CJK>
+ %IRREVERSIBLE%<U9BAE>     /x8e/xa1/xf6/xad <CJK>
+ %IRREVERSIBLE%<U9BAB>     /x8e/xa1/xf6/xae <CJK>
+ %IRREVERSIBLE%<U9BAA>     /x8e/xa1/xf6/xaf <CJK>
+ %IRREVERSIBLE%<U9BAD>     /x8e/xa1/xf6/xb0 <CJK>
+ %IRREVERSIBLE%<U9D3B>     /x8e/xa1/xf6/xb1 <CJK>
+ %IRREVERSIBLE%<U9D3F>     /x8e/xa1/xf6/xb2 <CJK>
+ %IRREVERSIBLE%<U9E8B>     /x8e/xa1/xf6/xb3 <CJK>
+ %IRREVERSIBLE%<U9ECF>     /x8e/xa1/xf6/xb4 <CJK>
+ %IRREVERSIBLE%<U9EDE>     /x8e/xa1/xf6/xb5 <CJK>
+ %IRREVERSIBLE%<U9EDC>     /x8e/xa1/xf6/xb6 <CJK>
+ %IRREVERSIBLE%<U9EDD>     /x8e/xa1/xf6/xb7 <CJK>
+ %IRREVERSIBLE%<U9EDB>     /x8e/xa1/xf6/xb8 <CJK>
+ %IRREVERSIBLE%<U9F3E>     /x8e/xa1/xf6/xb9 <CJK>
+ %IRREVERSIBLE%<U9F4B>     /x8e/xa1/xf6/xba <CJK>
+ %IRREVERSIBLE%<U53E2>     /x8e/xa1/xf6/xbb <CJK>
+ %IRREVERSIBLE%<U5695>     /x8e/xa1/xf6/xbc <CJK>
+ %IRREVERSIBLE%<U56AE>     /x8e/xa1/xf6/xbd <CJK>
+ %IRREVERSIBLE%<U58D9>     /x8e/xa1/xf6/xbe <CJK>
+ %IRREVERSIBLE%<U58D8>     /x8e/xa1/xf6/xbf <CJK>
+ %IRREVERSIBLE%<U5B38>     /x8e/xa1/xf6/xc0 <CJK>
+ %IRREVERSIBLE%<U5F5E>     /x8e/xa1/xf6/xc1 <CJK>
+ %IRREVERSIBLE%<U61E3>     /x8e/xa1/xf6/xc2 <CJK>
+ %IRREVERSIBLE%<U6233>     /x8e/xa1/xf6/xc3 <CJK>
+ %IRREVERSIBLE%<U64F4>     /x8e/xa1/xf6/xc4 <CJK>
+ %IRREVERSIBLE%<U64F2>     /x8e/xa1/xf6/xc5 <CJK>
+ %IRREVERSIBLE%<U64FE>     /x8e/xa1/xf6/xc6 <CJK>
+ %IRREVERSIBLE%<U6506>     /x8e/xa1/xf6/xc7 <CJK>
+ %IRREVERSIBLE%<U64FA>     /x8e/xa1/xf6/xc8 <CJK>
+ %IRREVERSIBLE%<U64FB>     /x8e/xa1/xf6/xc9 <CJK>
+ %IRREVERSIBLE%<U64F7>     /x8e/xa1/xf6/xca <CJK>
+ %IRREVERSIBLE%<U65B7>     /x8e/xa1/xf6/xcb <CJK>
+ %IRREVERSIBLE%<U66DC>     /x8e/xa1/xf6/xcc <CJK>
+ %IRREVERSIBLE%<U6726>     /x8e/xa1/xf6/xcd <CJK>
+ %IRREVERSIBLE%<U6AB3>     /x8e/xa1/xf6/xce <CJK>
+ %IRREVERSIBLE%<U6AAC>     /x8e/xa1/xf6/xcf <CJK>
+ %IRREVERSIBLE%<U6AC3>     /x8e/xa1/xf6/xd0 <CJK>
+ %IRREVERSIBLE%<U6ABB>     /x8e/xa1/xf6/xd1 <CJK>
+ %IRREVERSIBLE%<U6AB8>     /x8e/xa1/xf6/xd2 <CJK>
+ %IRREVERSIBLE%<U6AC2>     /x8e/xa1/xf6/xd3 <CJK>
+ %IRREVERSIBLE%<U6AAE>     /x8e/xa1/xf6/xd4 <CJK>
+ %IRREVERSIBLE%<U6AAF>     /x8e/xa1/xf6/xd5 <CJK>
+ %IRREVERSIBLE%<U6B5F>     /x8e/xa1/xf6/xd6 <CJK>
+ %IRREVERSIBLE%<U6B78>     /x8e/xa1/xf6/xd7 <CJK>
+ %IRREVERSIBLE%<U6BAF>     /x8e/xa1/xf6/xd8 <CJK>
+ %IRREVERSIBLE%<U7009>     /x8e/xa1/xf6/xd9 <CJK>
+ %IRREVERSIBLE%<U700B>     /x8e/xa1/xf6/xda <CJK>
+ %IRREVERSIBLE%<U6FFE>     /x8e/xa1/xf6/xdb <CJK>
+ %IRREVERSIBLE%<U7006>     /x8e/xa1/xf6/xdc <CJK>
+ %IRREVERSIBLE%<U6FFA>     /x8e/xa1/xf6/xdd <CJK>
+ %IRREVERSIBLE%<U7011>     /x8e/xa1/xf6/xde <CJK>
+ %IRREVERSIBLE%<U700F>     /x8e/xa1/xf6/xdf <CJK>
+ %IRREVERSIBLE%<U71FB>     /x8e/xa1/xf6/xe0 <CJK>
+ %IRREVERSIBLE%<U71FC>     /x8e/xa1/xf6/xe1 <CJK>
+ %IRREVERSIBLE%<U71FE>     /x8e/xa1/xf6/xe2 <CJK>
+ %IRREVERSIBLE%<U71F8>     /x8e/xa1/xf6/xe3 <CJK>
+ %IRREVERSIBLE%<U7377>     /x8e/xa1/xf6/xe4 <CJK>
+ %IRREVERSIBLE%<U7375>     /x8e/xa1/xf6/xe5 <CJK>
+ %IRREVERSIBLE%<U74A7>     /x8e/xa1/xf6/xe6 <CJK>
+ %IRREVERSIBLE%<U74BF>     /x8e/xa1/xf6/xe7 <CJK>
+ %IRREVERSIBLE%<U7515>     /x8e/xa1/xf6/xe8 <CJK>
+ %IRREVERSIBLE%<U7656>     /x8e/xa1/xf6/xe9 <CJK>
+ %IRREVERSIBLE%<U7658>     /x8e/xa1/xf6/xea <CJK>
+ %IRREVERSIBLE%<U7652>     /x8e/xa1/xf6/xeb <CJK>
+ %IRREVERSIBLE%<U77BD>     /x8e/xa1/xf6/xec <CJK>
+ %IRREVERSIBLE%<U77BF>     /x8e/xa1/xf6/xed <CJK>
+ %IRREVERSIBLE%<U77BB>     /x8e/xa1/xf6/xee <CJK>
+ %IRREVERSIBLE%<U77BC>     /x8e/xa1/xf6/xef <CJK>
+ %IRREVERSIBLE%<U790E>     /x8e/xa1/xf6/xf0 <CJK>
+ %IRREVERSIBLE%<U79AE>     /x8e/xa1/xf6/xf1 <CJK>
+ %IRREVERSIBLE%<U7A61>     /x8e/xa1/xf6/xf2 <CJK>
+ %IRREVERSIBLE%<U7A62>     /x8e/xa1/xf6/xf3 <CJK>
+ %IRREVERSIBLE%<U7A60>     /x8e/xa1/xf6/xf4 <CJK>
+ %IRREVERSIBLE%<U7AC4>     /x8e/xa1/xf6/xf5 <CJK>
+ %IRREVERSIBLE%<U7AC5>     /x8e/xa1/xf6/xf6 <CJK>
+ %IRREVERSIBLE%<U7C2B>     /x8e/xa1/xf6/xf7 <CJK>
+ %IRREVERSIBLE%<U7C27>     /x8e/xa1/xf6/xf8 <CJK>
+ %IRREVERSIBLE%<U7C2A>     /x8e/xa1/xf6/xf9 <CJK>
+ %IRREVERSIBLE%<U7C1E>     /x8e/xa1/xf6/xfa <CJK>
+ %IRREVERSIBLE%<U7C23>     /x8e/xa1/xf6/xfb <CJK>
+ %IRREVERSIBLE%<U7C21>     /x8e/xa1/xf6/xfc <CJK>
+ %IRREVERSIBLE%<U7CE7>     /x8e/xa1/xf6/xfd <CJK>
+ %IRREVERSIBLE%<U7E54>     /x8e/xa1/xf6/xfe <CJK>
+ %IRREVERSIBLE%<U7E55>     /x8e/xa1/xf7/xa1 <CJK>
+ %IRREVERSIBLE%<U7E5E>     /x8e/xa1/xf7/xa2 <CJK>
+ %IRREVERSIBLE%<U7E5A>     /x8e/xa1/xf7/xa3 <CJK>
+ %IRREVERSIBLE%<U7E61>     /x8e/xa1/xf7/xa4 <CJK>
+ %IRREVERSIBLE%<U7E52>     /x8e/xa1/xf7/xa5 <CJK>
+ %IRREVERSIBLE%<U7E59>     /x8e/xa1/xf7/xa6 <CJK>
+ %IRREVERSIBLE%<U7F48>     /x8e/xa1/xf7/xa7 <CJK>
+ %IRREVERSIBLE%<U7FF9>     /x8e/xa1/xf7/xa8 <CJK>
+ %IRREVERSIBLE%<U7FFB>     /x8e/xa1/xf7/xa9 <CJK>
+ %IRREVERSIBLE%<U8077>     /x8e/xa1/xf7/xaa <CJK>
+ %IRREVERSIBLE%<U8076>     /x8e/xa1/xf7/xab <CJK>
+ %IRREVERSIBLE%<U81CD>     /x8e/xa1/xf7/xac <CJK>
+ %IRREVERSIBLE%<U81CF>     /x8e/xa1/xf7/xad <CJK>
+ %IRREVERSIBLE%<U820A>     /x8e/xa1/xf7/xae <CJK>
+ %IRREVERSIBLE%<U85CF>     /x8e/xa1/xf7/xaf <CJK>
+ %IRREVERSIBLE%<U85A9>     /x8e/xa1/xf7/xb0 <CJK>
+ %IRREVERSIBLE%<U85CD>     /x8e/xa1/xf7/xb1 <CJK>
+ %IRREVERSIBLE%<U85D0>     /x8e/xa1/xf7/xb2 <CJK>
+ %IRREVERSIBLE%<U85C9>     /x8e/xa1/xf7/xb3 <CJK>
+ %IRREVERSIBLE%<U85B0>     /x8e/xa1/xf7/xb4 <CJK>
+ %IRREVERSIBLE%<U85BA>     /x8e/xa1/xf7/xb5 <CJK>
+ %IRREVERSIBLE%<U85B9>     /x8e/xa1/xf7/xb6 <CJK>
+ %IRREVERSIBLE%<U87EF>     /x8e/xa1/xf7/xb7 <CJK>
+ %IRREVERSIBLE%<U87EC>     /x8e/xa1/xf7/xb8 <CJK>
+ %IRREVERSIBLE%<U87F2>     /x8e/xa1/xf7/xb9 <CJK>
+ %IRREVERSIBLE%<U87E0>     /x8e/xa1/xf7/xba <CJK>
+ %IRREVERSIBLE%<U8986>     /x8e/xa1/xf7/xbb <CJK>
+ %IRREVERSIBLE%<U89B2>     /x8e/xa1/xf7/xbc <CJK>
+ %IRREVERSIBLE%<U89F4>     /x8e/xa1/xf7/xbd <CJK>
+ %IRREVERSIBLE%<U8B28>     /x8e/xa1/xf7/xbe <CJK>
+ %IRREVERSIBLE%<U8B39>     /x8e/xa1/xf7/xbf <CJK>
+ %IRREVERSIBLE%<U8B2C>     /x8e/xa1/xf7/xc0 <CJK>
+ %IRREVERSIBLE%<U8B2B>     /x8e/xa1/xf7/xc1 <CJK>
+ %IRREVERSIBLE%<U8C50>     /x8e/xa1/xf7/xc2 <CJK>
+ %IRREVERSIBLE%<U8D05>     /x8e/xa1/xf7/xc3 <CJK>
+ %IRREVERSIBLE%<U8E59>     /x8e/xa1/xf7/xc4 <CJK>
+ %IRREVERSIBLE%<U8E63>     /x8e/xa1/xf7/xc5 <CJK>
+ %IRREVERSIBLE%<U8E66>     /x8e/xa1/xf7/xc6 <CJK>
+ %IRREVERSIBLE%<U8E64>     /x8e/xa1/xf7/xc7 <CJK>
+ %IRREVERSIBLE%<U8E5F>     /x8e/xa1/xf7/xc8 <CJK>
+ %IRREVERSIBLE%<U8E55>     /x8e/xa1/xf7/xc9 <CJK>
+ %IRREVERSIBLE%<U8EC0>     /x8e/xa1/xf7/xca <CJK>
+ %IRREVERSIBLE%<U8F49>     /x8e/xa1/xf7/xcb <CJK>
+ %IRREVERSIBLE%<U8F4D>     /x8e/xa1/xf7/xcc <CJK>
+ %IRREVERSIBLE%<U9087>     /x8e/xa1/xf7/xcd <CJK>
+ %IRREVERSIBLE%<U9083>     /x8e/xa1/xf7/xce <CJK>
+ %IRREVERSIBLE%<U9088>     /x8e/xa1/xf7/xcf <CJK>
+ %IRREVERSIBLE%<U91AB>     /x8e/xa1/xf7/xd0 <CJK>
+ %IRREVERSIBLE%<U91AC>     /x8e/xa1/xf7/xd1 <CJK>
+ %IRREVERSIBLE%<U91D0>     /x8e/xa1/xf7/xd2 <CJK>
+ %IRREVERSIBLE%<U9394>     /x8e/xa1/xf7/xd3 <CJK>
+ %IRREVERSIBLE%<U938A>     /x8e/xa1/xf7/xd4 <CJK>
+ %IRREVERSIBLE%<U9396>     /x8e/xa1/xf7/xd5 <CJK>
+ %IRREVERSIBLE%<U93A2>     /x8e/xa1/xf7/xd6 <CJK>
+ %IRREVERSIBLE%<U93B3>     /x8e/xa1/xf7/xd7 <CJK>
+ %IRREVERSIBLE%<U93AE>     /x8e/xa1/xf7/xd8 <CJK>
+ %IRREVERSIBLE%<U93AC>     /x8e/xa1/xf7/xd9 <CJK>
+ %IRREVERSIBLE%<U93B0>     /x8e/xa1/xf7/xda <CJK>
+ %IRREVERSIBLE%<U9398>     /x8e/xa1/xf7/xdb <CJK>
+ %IRREVERSIBLE%<U939A>     /x8e/xa1/xf7/xdc <CJK>
+ %IRREVERSIBLE%<U9397>     /x8e/xa1/xf7/xdd <CJK>
+ %IRREVERSIBLE%<U95D4>     /x8e/xa1/xf7/xde <CJK>
+ %IRREVERSIBLE%<U95D6>     /x8e/xa1/xf7/xdf <CJK>
+ %IRREVERSIBLE%<U95D0>     /x8e/xa1/xf7/xe0 <CJK>
+ %IRREVERSIBLE%<U95D5>     /x8e/xa1/xf7/xe1 <CJK>
+ %IRREVERSIBLE%<U96E2>     /x8e/xa1/xf7/xe2 <CJK>
+ %IRREVERSIBLE%<U96DC>     /x8e/xa1/xf7/xe3 <CJK>
+ %IRREVERSIBLE%<U96D9>     /x8e/xa1/xf7/xe4 <CJK>
+ %IRREVERSIBLE%<U96DB>     /x8e/xa1/xf7/xe5 <CJK>
+ %IRREVERSIBLE%<U96DE>     /x8e/xa1/xf7/xe6 <CJK>
+ %IRREVERSIBLE%<U9724>     /x8e/xa1/xf7/xe7 <CJK>
+ %IRREVERSIBLE%<U97A3>     /x8e/xa1/xf7/xe8 <CJK>
+ %IRREVERSIBLE%<U97A6>     /x8e/xa1/xf7/xe9 <CJK>
+ %IRREVERSIBLE%<U97AD>     /x8e/xa1/xf7/xea <CJK>
+ %IRREVERSIBLE%<U97F9>     /x8e/xa1/xf7/xeb <CJK>
+ %IRREVERSIBLE%<U984D>     /x8e/xa1/xf7/xec <CJK>
+ %IRREVERSIBLE%<U984F>     /x8e/xa1/xf7/xed <CJK>
+ %IRREVERSIBLE%<U984C>     /x8e/xa1/xf7/xee <CJK>
+ %IRREVERSIBLE%<U984E>     /x8e/xa1/xf7/xef <CJK>
+ %IRREVERSIBLE%<U9853>     /x8e/xa1/xf7/xf0 <CJK>
+ %IRREVERSIBLE%<U98BA>     /x8e/xa1/xf7/xf1 <CJK>
+ %IRREVERSIBLE%<U993E>     /x8e/xa1/xf7/xf2 <CJK>
+ %IRREVERSIBLE%<U993F>     /x8e/xa1/xf7/xf3 <CJK>
+ %IRREVERSIBLE%<U993D>     /x8e/xa1/xf7/xf4 <CJK>
+ %IRREVERSIBLE%<U992E>     /x8e/xa1/xf7/xf5 <CJK>
+ %IRREVERSIBLE%<U99A5>     /x8e/xa1/xf7/xf6 <CJK>
+ %IRREVERSIBLE%<U9A0E>     /x8e/xa1/xf7/xf7 <CJK>
+ %IRREVERSIBLE%<U9AC1>     /x8e/xa1/xf7/xf8 <CJK>
+ %IRREVERSIBLE%<U9B03>     /x8e/xa1/xf7/xf9 <CJK>
+ %IRREVERSIBLE%<U9B06>     /x8e/xa1/xf7/xfa <CJK>
+ %IRREVERSIBLE%<U9B4F>     /x8e/xa1/xf7/xfb <CJK>
+ %IRREVERSIBLE%<U9B4E>     /x8e/xa1/xf7/xfc <CJK>
+ %IRREVERSIBLE%<U9B4D>     /x8e/xa1/xf7/xfd <CJK>
+ %IRREVERSIBLE%<U9BCA>     /x8e/xa1/xf7/xfe <CJK>
+ %IRREVERSIBLE%<U9BC9>     /x8e/xa1/xf8/xa1 <CJK>
+ %IRREVERSIBLE%<U9BFD>     /x8e/xa1/xf8/xa2 <CJK>
+ %IRREVERSIBLE%<U9BC8>     /x8e/xa1/xf8/xa3 <CJK>
+ %IRREVERSIBLE%<U9BC0>     /x8e/xa1/xf8/xa4 <CJK>
+ %IRREVERSIBLE%<U9D51>     /x8e/xa1/xf8/xa5 <CJK>
+ %IRREVERSIBLE%<U9D5D>     /x8e/xa1/xf8/xa6 <CJK>
+ %IRREVERSIBLE%<U9D60>     /x8e/xa1/xf8/xa7 <CJK>
+ %IRREVERSIBLE%<U9EE0>     /x8e/xa1/xf8/xa8 <CJK>
+ %IRREVERSIBLE%<U9F15>     /x8e/xa1/xf8/xa9 <CJK>
+ %IRREVERSIBLE%<U9F2C>     /x8e/xa1/xf8/xaa <CJK>
+ %IRREVERSIBLE%<U5133>     /x8e/xa1/xf8/xab <CJK>
+ %IRREVERSIBLE%<U56A5>     /x8e/xa1/xf8/xac <CJK>
+ %IRREVERSIBLE%<U56A8>     /x8e/xa1/xf8/xad <CJK>
+ %IRREVERSIBLE%<U58DE>     /x8e/xa1/xf8/xae <CJK>
+ %IRREVERSIBLE%<U58DF>     /x8e/xa1/xf8/xaf <CJK>
+ %IRREVERSIBLE%<U58E2>     /x8e/xa1/xf8/xb0 <CJK>
+ %IRREVERSIBLE%<U5BF5>     /x8e/xa1/xf8/xb1 <CJK>
+ %IRREVERSIBLE%<U9F90>     /x8e/xa1/xf8/xb2 <CJK>
+ %IRREVERSIBLE%<U5EEC>     /x8e/xa1/xf8/xb3 <CJK>
+ %IRREVERSIBLE%<U61F2>     /x8e/xa1/xf8/xb4 <CJK>
+ %IRREVERSIBLE%<U61F7>     /x8e/xa1/xf8/xb5 <CJK>
+ %IRREVERSIBLE%<U61F6>     /x8e/xa1/xf8/xb6 <CJK>
+ %IRREVERSIBLE%<U61F5>     /x8e/xa1/xf8/xb7 <CJK>
+ %IRREVERSIBLE%<U6500>     /x8e/xa1/xf8/xb8 <CJK>
+ %IRREVERSIBLE%<U650F>     /x8e/xa1/xf8/xb9 <CJK>
+ %IRREVERSIBLE%<U66E0>     /x8e/xa1/xf8/xba <CJK>
+ %IRREVERSIBLE%<U66DD>     /x8e/xa1/xf8/xbb <CJK>
+ %IRREVERSIBLE%<U6AE5>     /x8e/xa1/xf8/xbc <CJK>
+ %IRREVERSIBLE%<U6ADD>     /x8e/xa1/xf8/xbd <CJK>
+ %IRREVERSIBLE%<U6ADA>     /x8e/xa1/xf8/xbe <CJK>
+ %IRREVERSIBLE%<U6AD3>     /x8e/xa1/xf8/xbf <CJK>
+ %IRREVERSIBLE%<U701B>     /x8e/xa1/xf8/xc0 <CJK>
+ %IRREVERSIBLE%<U701F>     /x8e/xa1/xf8/xc1 <CJK>
+ %IRREVERSIBLE%<U7028>     /x8e/xa1/xf8/xc2 <CJK>
+ %IRREVERSIBLE%<U701A>     /x8e/xa1/xf8/xc3 <CJK>
+ %IRREVERSIBLE%<U701D>     /x8e/xa1/xf8/xc4 <CJK>
+ %IRREVERSIBLE%<U7015>     /x8e/xa1/xf8/xc5 <CJK>
+ %IRREVERSIBLE%<U7018>     /x8e/xa1/xf8/xc6 <CJK>
+ %IRREVERSIBLE%<U7206>     /x8e/xa1/xf8/xc7 <CJK>
+ %IRREVERSIBLE%<U720D>     /x8e/xa1/xf8/xc8 <CJK>
+ %IRREVERSIBLE%<U7258>     /x8e/xa1/xf8/xc9 <CJK>
+ %IRREVERSIBLE%<U72A2>     /x8e/xa1/xf8/xca <CJK>
+ %IRREVERSIBLE%<U7378>     /x8e/xa1/xf8/xcb <CJK>
+ %IRREVERSIBLE%<U737A>     /x8e/xa1/xf8/xcc <CJK>
+ %IRREVERSIBLE%<U74BD>     /x8e/xa1/xf8/xcd <CJK>
+ %IRREVERSIBLE%<U74CA>     /x8e/xa1/xf8/xce <CJK>
+ %IRREVERSIBLE%<U74E3>     /x8e/xa1/xf8/xcf <CJK>
+ %IRREVERSIBLE%<U7587>     /x8e/xa1/xf8/xd0 <CJK>
+ %IRREVERSIBLE%<U7586>     /x8e/xa1/xf8/xd1 <CJK>
+ %IRREVERSIBLE%<U765F>     /x8e/xa1/xf8/xd2 <CJK>
+ %IRREVERSIBLE%<U7661>     /x8e/xa1/xf8/xd3 <CJK>
+ %IRREVERSIBLE%<U77C7>     /x8e/xa1/xf8/xd4 <CJK>
+ %IRREVERSIBLE%<U7919>     /x8e/xa1/xf8/xd5 <CJK>
+ %IRREVERSIBLE%<U79B1>     /x8e/xa1/xf8/xd6 <CJK>
+ %IRREVERSIBLE%<U7A6B>     /x8e/xa1/xf8/xd7 <CJK>
+ %IRREVERSIBLE%<U7A69>     /x8e/xa1/xf8/xd8 <CJK>
+ %IRREVERSIBLE%<U7C3E>     /x8e/xa1/xf8/xd9 <CJK>
+ %IRREVERSIBLE%<U7C3F>     /x8e/xa1/xf8/xda <CJK>
+ %IRREVERSIBLE%<U7C38>     /x8e/xa1/xf8/xdb <CJK>
+ %IRREVERSIBLE%<U7C3D>     /x8e/xa1/xf8/xdc <CJK>
+ %IRREVERSIBLE%<U7C37>     /x8e/xa1/xf8/xdd <CJK>
+ %IRREVERSIBLE%<U7C40>     /x8e/xa1/xf8/xde <CJK>
+ %IRREVERSIBLE%<U7E6B>     /x8e/xa1/xf8/xdf <CJK>
+ %IRREVERSIBLE%<U7E6D>     /x8e/xa1/xf8/xe0 <CJK>
+ %IRREVERSIBLE%<U7E79>     /x8e/xa1/xf8/xe1 <CJK>
+ %IRREVERSIBLE%<U7E69>     /x8e/xa1/xf8/xe2 <CJK>
+ %IRREVERSIBLE%<U7E6A>     /x8e/xa1/xf8/xe3 <CJK>
+ %IRREVERSIBLE%<U7E73>     /x8e/xa1/xf8/xe4 <CJK>
+ %IRREVERSIBLE%<U7F85>     /x8e/xa1/xf8/xe5 <CJK>
+ %IRREVERSIBLE%<U7FB6>     /x8e/xa1/xf8/xe6 <CJK>
+ %IRREVERSIBLE%<U7FB9>     /x8e/xa1/xf8/xe7 <CJK>
+ %IRREVERSIBLE%<U7FB8>     /x8e/xa1/xf8/xe8 <CJK>
+ %IRREVERSIBLE%<U81D8>     /x8e/xa1/xf8/xe9 <CJK>
+ %IRREVERSIBLE%<U85E9>     /x8e/xa1/xf8/xea <CJK>
+ %IRREVERSIBLE%<U85DD>     /x8e/xa1/xf8/xeb <CJK>
+ %IRREVERSIBLE%<U85EA>     /x8e/xa1/xf8/xec <CJK>
+ %IRREVERSIBLE%<U85D5>     /x8e/xa1/xf8/xed <CJK>
+ %IRREVERSIBLE%<U85E4>     /x8e/xa1/xf8/xee <CJK>
+ %IRREVERSIBLE%<U85E5>     /x8e/xa1/xf8/xef <CJK>
+ %IRREVERSIBLE%<U85F7>     /x8e/xa1/xf8/xf0 <CJK>
+ %IRREVERSIBLE%<U87FB>     /x8e/xa1/xf8/xf1 <CJK>
+ %IRREVERSIBLE%<U8805>     /x8e/xa1/xf8/xf2 <CJK>
+ %IRREVERSIBLE%<U880D>     /x8e/xa1/xf8/xf3 <CJK>
+ %IRREVERSIBLE%<U87F9>     /x8e/xa1/xf8/xf4 <CJK>
+ %IRREVERSIBLE%<U87FE>     /x8e/xa1/xf8/xf5 <CJK>
+ %IRREVERSIBLE%<U8960>     /x8e/xa1/xf8/xf6 <CJK>
+ %IRREVERSIBLE%<U895F>     /x8e/xa1/xf8/xf7 <CJK>
+ %IRREVERSIBLE%<U8956>     /x8e/xa1/xf8/xf8 <CJK>
+ %IRREVERSIBLE%<U895E>     /x8e/xa1/xf8/xf9 <CJK>
+ %IRREVERSIBLE%<U8B41>     /x8e/xa1/xf8/xfa <CJK>
+ %IRREVERSIBLE%<U8B5C>     /x8e/xa1/xf8/xfb <CJK>
+ %IRREVERSIBLE%<U8B58>     /x8e/xa1/xf8/xfc <CJK>
+ %IRREVERSIBLE%<U8B49>     /x8e/xa1/xf8/xfd <CJK>
+ %IRREVERSIBLE%<U8B5A>     /x8e/xa1/xf8/xfe <CJK>
+ %IRREVERSIBLE%<U8B4E>     /x8e/xa1/xf9/xa1 <CJK>
+ %IRREVERSIBLE%<U8B4F>     /x8e/xa1/xf9/xa2 <CJK>
+ %IRREVERSIBLE%<U8B46>     /x8e/xa1/xf9/xa3 <CJK>
+ %IRREVERSIBLE%<U8B59>     /x8e/xa1/xf9/xa4 <CJK>
+ %IRREVERSIBLE%<U8D08>     /x8e/xa1/xf9/xa5 <CJK>
+ %IRREVERSIBLE%<U8D0A>     /x8e/xa1/xf9/xa6 <CJK>
+ %IRREVERSIBLE%<U8E7C>     /x8e/xa1/xf9/xa7 <CJK>
+ %IRREVERSIBLE%<U8E72>     /x8e/xa1/xf9/xa8 <CJK>
+ %IRREVERSIBLE%<U8E87>     /x8e/xa1/xf9/xa9 <CJK>
+ %IRREVERSIBLE%<U8E76>     /x8e/xa1/xf9/xaa <CJK>
+ %IRREVERSIBLE%<U8E6C>     /x8e/xa1/xf9/xab <CJK>
+ %IRREVERSIBLE%<U8E7A>     /x8e/xa1/xf9/xac <CJK>
+ %IRREVERSIBLE%<U8E74>     /x8e/xa1/xf9/xad <CJK>
+ %IRREVERSIBLE%<U8F54>     /x8e/xa1/xf9/xae <CJK>
+ %IRREVERSIBLE%<U8F4E>     /x8e/xa1/xf9/xaf <CJK>
+ %IRREVERSIBLE%<U8FAD>     /x8e/xa1/xf9/xb0 <CJK>
+ %IRREVERSIBLE%<U908A>     /x8e/xa1/xf9/xb1 <CJK>
+ %IRREVERSIBLE%<U908B>     /x8e/xa1/xf9/xb2 <CJK>
+ %IRREVERSIBLE%<U91B1>     /x8e/xa1/xf9/xb3 <CJK>
+ %IRREVERSIBLE%<U91AE>     /x8e/xa1/xf9/xb4 <CJK>
+ %IRREVERSIBLE%<U93E1>     /x8e/xa1/xf9/xb5 <CJK>
+ %IRREVERSIBLE%<U93D1>     /x8e/xa1/xf9/xb6 <CJK>
+ %IRREVERSIBLE%<U93DF>     /x8e/xa1/xf9/xb7 <CJK>
+ %IRREVERSIBLE%<U93C3>     /x8e/xa1/xf9/xb8 <CJK>
+ %IRREVERSIBLE%<U93C8>     /x8e/xa1/xf9/xb9 <CJK>
+ %IRREVERSIBLE%<U93DC>     /x8e/xa1/xf9/xba <CJK>
+ %IRREVERSIBLE%<U93DD>     /x8e/xa1/xf9/xbb <CJK>
+ %IRREVERSIBLE%<U93D6>     /x8e/xa1/xf9/xbc <CJK>
+ %IRREVERSIBLE%<U93E2>     /x8e/xa1/xf9/xbd <CJK>
+ %IRREVERSIBLE%<U93CD>     /x8e/xa1/xf9/xbe <CJK>
+ %IRREVERSIBLE%<U93D8>     /x8e/xa1/xf9/xbf <CJK>
+ %IRREVERSIBLE%<U93E4>     /x8e/xa1/xf9/xc0 <CJK>
+ %IRREVERSIBLE%<U93D7>     /x8e/xa1/xf9/xc1 <CJK>
+ %IRREVERSIBLE%<U93E8>     /x8e/xa1/xf9/xc2 <CJK>
+ %IRREVERSIBLE%<U95DC>     /x8e/xa1/xf9/xc3 <CJK>
+ %IRREVERSIBLE%<U96B4>     /x8e/xa1/xf9/xc4 <CJK>
+ %IRREVERSIBLE%<U96E3>     /x8e/xa1/xf9/xc5 <CJK>
+ %IRREVERSIBLE%<U972A>     /x8e/xa1/xf9/xc6 <CJK>
+ %IRREVERSIBLE%<U9727>     /x8e/xa1/xf9/xc7 <CJK>
+ %IRREVERSIBLE%<U9761>     /x8e/xa1/xf9/xc8 <CJK>
+ %IRREVERSIBLE%<U97DC>     /x8e/xa1/xf9/xc9 <CJK>
+ %IRREVERSIBLE%<U97FB>     /x8e/xa1/xf9/xca <CJK>
+ %IRREVERSIBLE%<U985E>     /x8e/xa1/xf9/xcb <CJK>
+ %IRREVERSIBLE%<U9858>     /x8e/xa1/xf9/xcc <CJK>
+ %IRREVERSIBLE%<U985B>     /x8e/xa1/xf9/xcd <CJK>
+ %IRREVERSIBLE%<U98BC>     /x8e/xa1/xf9/xce <CJK>
+ %IRREVERSIBLE%<U9945>     /x8e/xa1/xf9/xcf <CJK>
+ %IRREVERSIBLE%<U9949>     /x8e/xa1/xf9/xd0 <CJK>
+ %IRREVERSIBLE%<U9A16>     /x8e/xa1/xf9/xd1 <CJK>
+ %IRREVERSIBLE%<U9A19>     /x8e/xa1/xf9/xd2 <CJK>
+ %IRREVERSIBLE%<U9B0D>     /x8e/xa1/xf9/xd3 <CJK>
+ %IRREVERSIBLE%<U9BE8>     /x8e/xa1/xf9/xd4 <CJK>
+ %IRREVERSIBLE%<U9BE7>     /x8e/xa1/xf9/xd5 <CJK>
+ %IRREVERSIBLE%<U9BD6>     /x8e/xa1/xf9/xd6 <CJK>
+ %IRREVERSIBLE%<U9BDB>     /x8e/xa1/xf9/xd7 <CJK>
+ %IRREVERSIBLE%<U9D89>     /x8e/xa1/xf9/xd8 <CJK>
+ %IRREVERSIBLE%<U9D61>     /x8e/xa1/xf9/xd9 <CJK>
+ %IRREVERSIBLE%<U9D72>     /x8e/xa1/xf9/xda <CJK>
+ %IRREVERSIBLE%<U9D6A>     /x8e/xa1/xf9/xdb <CJK>
+ %IRREVERSIBLE%<U9D6C>     /x8e/xa1/xf9/xdc <CJK>
+ %IRREVERSIBLE%<U9E92>     /x8e/xa1/xf9/xdd <CJK>
+ %IRREVERSIBLE%<U9E97>     /x8e/xa1/xf9/xde <CJK>
+ %IRREVERSIBLE%<U9E93>     /x8e/xa1/xf9/xdf <CJK>
+ %IRREVERSIBLE%<U9EB4>     /x8e/xa1/xf9/xe0 <CJK>
+ %IRREVERSIBLE%<U52F8>     /x8e/xa1/xf9/xe1 <CJK>
+ %IRREVERSIBLE%<U56B7>     /x8e/xa1/xf9/xe2 <CJK>
+ %IRREVERSIBLE%<U56B6>     /x8e/xa1/xf9/xe3 <CJK>
+ %IRREVERSIBLE%<U56B4>     /x8e/xa1/xf9/xe4 <CJK>
+ %IRREVERSIBLE%<U56BC>     /x8e/xa1/xf9/xe5 <CJK>
+ %IRREVERSIBLE%<U58E4>     /x8e/xa1/xf9/xe6 <CJK>
+ %IRREVERSIBLE%<U5B40>     /x8e/xa1/xf9/xe7 <CJK>
+ %IRREVERSIBLE%<U5B43>     /x8e/xa1/xf9/xe8 <CJK>
+ %IRREVERSIBLE%<U5B7D>     /x8e/xa1/xf9/xe9 <CJK>
+ %IRREVERSIBLE%<U5BF6>     /x8e/xa1/xf9/xea <CJK>
+ %IRREVERSIBLE%<U5DC9>     /x8e/xa1/xf9/xeb <CJK>
+ %IRREVERSIBLE%<U61F8>     /x8e/xa1/xf9/xec <CJK>
+ %IRREVERSIBLE%<U61FA>     /x8e/xa1/xf9/xed <CJK>
+ %IRREVERSIBLE%<U6518>     /x8e/xa1/xf9/xee <CJK>
+ %IRREVERSIBLE%<U6514>     /x8e/xa1/xf9/xef <CJK>
+ %IRREVERSIBLE%<U6519>     /x8e/xa1/xf9/xf0 <CJK>
+ %IRREVERSIBLE%<U66E6>     /x8e/xa1/xf9/xf1 <CJK>
+ %IRREVERSIBLE%<U6727>     /x8e/xa1/xf9/xf2 <CJK>
+ %IRREVERSIBLE%<U6AEC>     /x8e/xa1/xf9/xf3 <CJK>
+ %IRREVERSIBLE%<U703E>     /x8e/xa1/xf9/xf4 <CJK>
+ %IRREVERSIBLE%<U7030>     /x8e/xa1/xf9/xf5 <CJK>
+ %IRREVERSIBLE%<U7032>     /x8e/xa1/xf9/xf6 <CJK>
+ %IRREVERSIBLE%<U7210>     /x8e/xa1/xf9/xf7 <CJK>
+ %IRREVERSIBLE%<U737B>     /x8e/xa1/xf9/xf8 <CJK>
+ %IRREVERSIBLE%<U74CF>     /x8e/xa1/xf9/xf9 <CJK>
+ %IRREVERSIBLE%<U7662>     /x8e/xa1/xf9/xfa <CJK>
+ %IRREVERSIBLE%<U7665>     /x8e/xa1/xf9/xfb <CJK>
+ %IRREVERSIBLE%<U7926>     /x8e/xa1/xf9/xfc <CJK>
+ %IRREVERSIBLE%<U792A>     /x8e/xa1/xf9/xfd <CJK>
+ %IRREVERSIBLE%<U792C>     /x8e/xa1/xf9/xfe <CJK>
+ %IRREVERSIBLE%<U792B>     /x8e/xa1/xfa/xa1 <CJK>
+ %IRREVERSIBLE%<U7AC7>     /x8e/xa1/xfa/xa2 <CJK>
+ %IRREVERSIBLE%<U7AF6>     /x8e/xa1/xfa/xa3 <CJK>
+ %IRREVERSIBLE%<U7C4C>     /x8e/xa1/xfa/xa4 <CJK>
+ %IRREVERSIBLE%<U7C43>     /x8e/xa1/xfa/xa5 <CJK>
+ %IRREVERSIBLE%<U7C4D>     /x8e/xa1/xfa/xa6 <CJK>
+ %IRREVERSIBLE%<U7CEF>     /x8e/xa1/xfa/xa7 <CJK>
+ %IRREVERSIBLE%<U7CF0>     /x8e/xa1/xfa/xa8 <CJK>
+ %IRREVERSIBLE%<U8FAE>     /x8e/xa1/xfa/xa9 <CJK>
+ %IRREVERSIBLE%<U7E7D>     /x8e/xa1/xfa/xaa <CJK>
+ %IRREVERSIBLE%<U7E7C>     /x8e/xa1/xfa/xab <CJK>
+ %IRREVERSIBLE%<U7E82>     /x8e/xa1/xfa/xac <CJK>
+ %IRREVERSIBLE%<U7F4C>     /x8e/xa1/xfa/xad <CJK>
+ %IRREVERSIBLE%<U8000>     /x8e/xa1/xfa/xae <CJK>
+ %IRREVERSIBLE%<U81DA>     /x8e/xa1/xfa/xaf <CJK>
+ %IRREVERSIBLE%<U8266>     /x8e/xa1/xfa/xb0 <CJK>
+ %IRREVERSIBLE%<U85FB>     /x8e/xa1/xfa/xb1 <CJK>
+ %IRREVERSIBLE%<U85F9>     /x8e/xa1/xfa/xb2 <CJK>
+ %IRREVERSIBLE%<U8611>     /x8e/xa1/xfa/xb3 <CJK>
+ %IRREVERSIBLE%<U85FA>     /x8e/xa1/xfa/xb4 <CJK>
+ %IRREVERSIBLE%<U8606>     /x8e/xa1/xfa/xb5 <CJK>
+ %IRREVERSIBLE%<U860B>     /x8e/xa1/xfa/xb6 <CJK>
+ %IRREVERSIBLE%<U8607>     /x8e/xa1/xfa/xb7 <CJK>
+ %IRREVERSIBLE%<U860A>     /x8e/xa1/xfa/xb8 <CJK>
+ %IRREVERSIBLE%<U8814>     /x8e/xa1/xfa/xb9 <CJK>
+ %IRREVERSIBLE%<U8815>     /x8e/xa1/xfa/xba <CJK>
+ %IRREVERSIBLE%<U8964>     /x8e/xa1/xfa/xbb <CJK>
+ %IRREVERSIBLE%<U89BA>     /x8e/xa1/xfa/xbc <CJK>
+ %IRREVERSIBLE%<U89F8>     /x8e/xa1/xfa/xbd <CJK>
+ %IRREVERSIBLE%<U8B70>     /x8e/xa1/xfa/xbe <CJK>
+ %IRREVERSIBLE%<U8B6C>     /x8e/xa1/xfa/xbf <CJK>
+ %IRREVERSIBLE%<U8B66>     /x8e/xa1/xfa/xc0 <CJK>
+ %IRREVERSIBLE%<U8B6F>     /x8e/xa1/xfa/xc1 <CJK>
+ %IRREVERSIBLE%<U8B5F>     /x8e/xa1/xfa/xc2 <CJK>
+ %IRREVERSIBLE%<U8B6B>     /x8e/xa1/xfa/xc3 <CJK>
+ %IRREVERSIBLE%<U8D0F>     /x8e/xa1/xfa/xc4 <CJK>
+ %IRREVERSIBLE%<U8D0D>     /x8e/xa1/xfa/xc5 <CJK>
+ %IRREVERSIBLE%<U8E89>     /x8e/xa1/xfa/xc6 <CJK>
+ %IRREVERSIBLE%<U8E81>     /x8e/xa1/xfa/xc7 <CJK>
+ %IRREVERSIBLE%<U8E85>     /x8e/xa1/xfa/xc8 <CJK>
+ %IRREVERSIBLE%<U8E82>     /x8e/xa1/xfa/xc9 <CJK>
+ %IRREVERSIBLE%<U91B4>     /x8e/xa1/xfa/xca <CJK>
+ %IRREVERSIBLE%<U91CB>     /x8e/xa1/xfa/xcb <CJK>
+ %IRREVERSIBLE%<U9418>     /x8e/xa1/xfa/xcc <CJK>
+ %IRREVERSIBLE%<U9403>     /x8e/xa1/xfa/xcd <CJK>
+ %IRREVERSIBLE%<U93FD>     /x8e/xa1/xfa/xce <CJK>
+ %IRREVERSIBLE%<U95E1>     /x8e/xa1/xfa/xcf <CJK>
+ %IRREVERSIBLE%<U9730>     /x8e/xa1/xfa/xd0 <CJK>
+ %IRREVERSIBLE%<U98C4>     /x8e/xa1/xfa/xd1 <CJK>
+ %IRREVERSIBLE%<U9952>     /x8e/xa1/xfa/xd2 <CJK>
+ %IRREVERSIBLE%<U9951>     /x8e/xa1/xfa/xd3 <CJK>
+ %IRREVERSIBLE%<U99A8>     /x8e/xa1/xfa/xd4 <CJK>
+ %IRREVERSIBLE%<U9A2B>     /x8e/xa1/xfa/xd5 <CJK>
+ %IRREVERSIBLE%<U9A30>     /x8e/xa1/xfa/xd6 <CJK>
+ %IRREVERSIBLE%<U9A37>     /x8e/xa1/xfa/xd7 <CJK>
+ %IRREVERSIBLE%<U9A35>     /x8e/xa1/xfa/xd8 <CJK>
+ %IRREVERSIBLE%<U9C13>     /x8e/xa1/xfa/xd9 <CJK>
+ %IRREVERSIBLE%<U9C0D>     /x8e/xa1/xfa/xda <CJK>
+ %IRREVERSIBLE%<U9E79>     /x8e/xa1/xfa/xdb <CJK>
+ %IRREVERSIBLE%<U9EB5>     /x8e/xa1/xfa/xdc <CJK>
+ %IRREVERSIBLE%<U9EE8>     /x8e/xa1/xfa/xdd <CJK>
+ %IRREVERSIBLE%<U9F2F>     /x8e/xa1/xfa/xde <CJK>
+ %IRREVERSIBLE%<U9F5F>     /x8e/xa1/xfa/xdf <CJK>
+ %IRREVERSIBLE%<U9F63>     /x8e/xa1/xfa/xe0 <CJK>
+ %IRREVERSIBLE%<U9F61>     /x8e/xa1/xfa/xe1 <CJK>
+ %IRREVERSIBLE%<U5137>     /x8e/xa1/xfa/xe2 <CJK>
+ %IRREVERSIBLE%<U5138>     /x8e/xa1/xfa/xe3 <CJK>
+ %IRREVERSIBLE%<U56C1>     /x8e/xa1/xfa/xe4 <CJK>
+ %IRREVERSIBLE%<U56C0>     /x8e/xa1/xfa/xe5 <CJK>
+ %IRREVERSIBLE%<U56C2>     /x8e/xa1/xfa/xe6 <CJK>
+ %IRREVERSIBLE%<U5914>     /x8e/xa1/xfa/xe7 <CJK>
+ %IRREVERSIBLE%<U5C6C>     /x8e/xa1/xfa/xe8 <CJK>
+ %IRREVERSIBLE%<U5DCD>     /x8e/xa1/xfa/xe9 <CJK>
+ %IRREVERSIBLE%<U61FC>     /x8e/xa1/xfa/xea <CJK>
+ %IRREVERSIBLE%<U61FE>     /x8e/xa1/xfa/xeb <CJK>
+ %IRREVERSIBLE%<U651D>     /x8e/xa1/xfa/xec <CJK>
+ %IRREVERSIBLE%<U651C>     /x8e/xa1/xfa/xed <CJK>
+ %IRREVERSIBLE%<U6595>     /x8e/xa1/xfa/xee <CJK>
+ %IRREVERSIBLE%<U66E9>     /x8e/xa1/xfa/xef <CJK>
+ %IRREVERSIBLE%<U6AFB>     /x8e/xa1/xfa/xf0 <CJK>
+ %IRREVERSIBLE%<U6B04>     /x8e/xa1/xfa/xf1 <CJK>
+ %IRREVERSIBLE%<U6AFA>     /x8e/xa1/xfa/xf2 <CJK>
+ %IRREVERSIBLE%<U6BB2>     /x8e/xa1/xfa/xf3 <CJK>
+ %IRREVERSIBLE%<U704C>     /x8e/xa1/xfa/xf4 <CJK>
+ %IRREVERSIBLE%<U721B>     /x8e/xa1/xfa/xf5 <CJK>
+ %IRREVERSIBLE%<U72A7>     /x8e/xa1/xfa/xf6 <CJK>
+ %IRREVERSIBLE%<U74D6>     /x8e/xa1/xfa/xf7 <CJK>
+ %IRREVERSIBLE%<U74D4>     /x8e/xa1/xfa/xf8 <CJK>
+ %IRREVERSIBLE%<U7669>     /x8e/xa1/xfa/xf9 <CJK>
+ %IRREVERSIBLE%<U77D3>     /x8e/xa1/xfa/xfa <CJK>
+ %IRREVERSIBLE%<U7C50>     /x8e/xa1/xfa/xfb <CJK>
+ %IRREVERSIBLE%<U7E8F>     /x8e/xa1/xfa/xfc <CJK>
+ %IRREVERSIBLE%<U7E8C>     /x8e/xa1/xfa/xfd <CJK>
+ %IRREVERSIBLE%<U7FBC>     /x8e/xa1/xfa/xfe <CJK>
+ %IRREVERSIBLE%<U8617>     /x8e/xa1/xfb/xa1 <CJK>
+ %IRREVERSIBLE%<U862D>     /x8e/xa1/xfb/xa2 <CJK>
+ %IRREVERSIBLE%<U861A>     /x8e/xa1/xfb/xa3 <CJK>
+ %IRREVERSIBLE%<U8823>     /x8e/xa1/xfb/xa4 <CJK>
+ %IRREVERSIBLE%<U8822>     /x8e/xa1/xfb/xa5 <CJK>
+ %IRREVERSIBLE%<U8821>     /x8e/xa1/xfb/xa6 <CJK>
+ %IRREVERSIBLE%<U881F>     /x8e/xa1/xfb/xa7 <CJK>
+ %IRREVERSIBLE%<U896A>     /x8e/xa1/xfb/xa8 <CJK>
+ %IRREVERSIBLE%<U896C>     /x8e/xa1/xfb/xa9 <CJK>
+ %IRREVERSIBLE%<U89BD>     /x8e/xa1/xfb/xaa <CJK>
+ %IRREVERSIBLE%<U8B74>     /x8e/xa1/xfb/xab <CJK>
+ %IRREVERSIBLE%<U8B77>     /x8e/xa1/xfb/xac <CJK>
+ %IRREVERSIBLE%<U8B7D>     /x8e/xa1/xfb/xad <CJK>
+ %IRREVERSIBLE%<U8D13>     /x8e/xa1/xfb/xae <CJK>
+ %IRREVERSIBLE%<U8E8A>     /x8e/xa1/xfb/xaf <CJK>
+ %IRREVERSIBLE%<U8E8D>     /x8e/xa1/xfb/xb0 <CJK>
+ %IRREVERSIBLE%<U8E8B>     /x8e/xa1/xfb/xb1 <CJK>
+ %IRREVERSIBLE%<U8F5F>     /x8e/xa1/xfb/xb2 <CJK>
+ %IRREVERSIBLE%<U8FAF>     /x8e/xa1/xfb/xb3 <CJK>
+ %IRREVERSIBLE%<U91BA>     /x8e/xa1/xfb/xb4 <CJK>
+ %IRREVERSIBLE%<U942E>     /x8e/xa1/xfb/xb5 <CJK>
+ %IRREVERSIBLE%<U9433>     /x8e/xa1/xfb/xb6 <CJK>
+ %IRREVERSIBLE%<U9435>     /x8e/xa1/xfb/xb7 <CJK>
+ %IRREVERSIBLE%<U943A>     /x8e/xa1/xfb/xb8 <CJK>
+ %IRREVERSIBLE%<U9438>     /x8e/xa1/xfb/xb9 <CJK>
+ %IRREVERSIBLE%<U9432>     /x8e/xa1/xfb/xba <CJK>
+ %IRREVERSIBLE%<U942B>     /x8e/xa1/xfb/xbb <CJK>
+ %IRREVERSIBLE%<U95E2>     /x8e/xa1/xfb/xbc <CJK>
+ %IRREVERSIBLE%<U9738>     /x8e/xa1/xfb/xbd <CJK>
+ %IRREVERSIBLE%<U9739>     /x8e/xa1/xfb/xbe <CJK>
+ %IRREVERSIBLE%<U9732>     /x8e/xa1/xfb/xbf <CJK>
+ %IRREVERSIBLE%<U97FF>     /x8e/xa1/xfb/xc0 <CJK>
+ %IRREVERSIBLE%<U9867>     /x8e/xa1/xfb/xc1 <CJK>
+ %IRREVERSIBLE%<U9865>     /x8e/xa1/xfb/xc2 <CJK>
+ %IRREVERSIBLE%<U9957>     /x8e/xa1/xfb/xc3 <CJK>
+ %IRREVERSIBLE%<U9A45>     /x8e/xa1/xfb/xc4 <CJK>
+ %IRREVERSIBLE%<U9A43>     /x8e/xa1/xfb/xc5 <CJK>
+ %IRREVERSIBLE%<U9A40>     /x8e/xa1/xfb/xc6 <CJK>
+ %IRREVERSIBLE%<U9A3E>     /x8e/xa1/xfb/xc7 <CJK>
+ %IRREVERSIBLE%<U9ACF>     /x8e/xa1/xfb/xc8 <CJK>
+ %IRREVERSIBLE%<U9B54>     /x8e/xa1/xfb/xc9 <CJK>
+ %IRREVERSIBLE%<U9B51>     /x8e/xa1/xfb/xca <CJK>
+ %IRREVERSIBLE%<U9C2D>     /x8e/xa1/xfb/xcb <CJK>
+ %IRREVERSIBLE%<U9C25>     /x8e/xa1/xfb/xcc <CJK>
+ %IRREVERSIBLE%<U9DAF>     /x8e/xa1/xfb/xcd <CJK>
+ %IRREVERSIBLE%<U9DB4>     /x8e/xa1/xfb/xce <CJK>
+ %IRREVERSIBLE%<U9DC2>     /x8e/xa1/xfb/xcf <CJK>
+ %IRREVERSIBLE%<U9DB8>     /x8e/xa1/xfb/xd0 <CJK>
+ %IRREVERSIBLE%<U9E9D>     /x8e/xa1/xfb/xd1 <CJK>
+ %IRREVERSIBLE%<U9EEF>     /x8e/xa1/xfb/xd2 <CJK>
+ %IRREVERSIBLE%<U9F19>     /x8e/xa1/xfb/xd3 <CJK>
+ %IRREVERSIBLE%<U9F5C>     /x8e/xa1/xfb/xd4 <CJK>
+ %IRREVERSIBLE%<U9F66>     /x8e/xa1/xfb/xd5 <CJK>
+ %IRREVERSIBLE%<U9F67>     /x8e/xa1/xfb/xd6 <CJK>
+ %IRREVERSIBLE%<U513C>     /x8e/xa1/xfb/xd7 <CJK>
+ %IRREVERSIBLE%<U513B>     /x8e/xa1/xfb/xd8 <CJK>
+ %IRREVERSIBLE%<U56C8>     /x8e/xa1/xfb/xd9 <CJK>
+ %IRREVERSIBLE%<U56CA>     /x8e/xa1/xfb/xda <CJK>
+ %IRREVERSIBLE%<U56C9>     /x8e/xa1/xfb/xdb <CJK>
+ %IRREVERSIBLE%<U5B7F>     /x8e/xa1/xfb/xdc <CJK>
+ %IRREVERSIBLE%<U5DD4>     /x8e/xa1/xfb/xdd <CJK>
+ %IRREVERSIBLE%<U5DD2>     /x8e/xa1/xfb/xde <CJK>
+ %IRREVERSIBLE%<U5F4E>     /x8e/xa1/xfb/xdf <CJK>
+ %IRREVERSIBLE%<U61FF>     /x8e/xa1/xfb/xe0 <CJK>
+ %IRREVERSIBLE%<U6524>     /x8e/xa1/xfb/xe1 <CJK>
+ %IRREVERSIBLE%<U6B0A>     /x8e/xa1/xfb/xe2 <CJK>
+ %IRREVERSIBLE%<U6B61>     /x8e/xa1/xfb/xe3 <CJK>
+ %IRREVERSIBLE%<U7051>     /x8e/xa1/xfb/xe4 <CJK>
+ %IRREVERSIBLE%<U7058>     /x8e/xa1/xfb/xe5 <CJK>
+ %IRREVERSIBLE%<U7380>     /x8e/xa1/xfb/xe6 <CJK>
+ %IRREVERSIBLE%<U74E4>     /x8e/xa1/xfb/xe7 <CJK>
+ %IRREVERSIBLE%<U758A>     /x8e/xa1/xfb/xe8 <CJK>
+ %IRREVERSIBLE%<U766E>     /x8e/xa1/xfb/xe9 <CJK>
+ %IRREVERSIBLE%<U766C>     /x8e/xa1/xfb/xea <CJK>
+ %IRREVERSIBLE%<U79B3>     /x8e/xa1/xfb/xeb <CJK>
+ %IRREVERSIBLE%<U7C60>     /x8e/xa1/xfb/xec <CJK>
+ %IRREVERSIBLE%<U7C5F>     /x8e/xa1/xfb/xed <CJK>
+ %IRREVERSIBLE%<U807E>     /x8e/xa1/xfb/xee <CJK>
+ %IRREVERSIBLE%<U807D>     /x8e/xa1/xfb/xef <CJK>
+ %IRREVERSIBLE%<U81DF>     /x8e/xa1/xfb/xf0 <CJK>
+ %IRREVERSIBLE%<U8972>     /x8e/xa1/xfb/xf1 <CJK>
+ %IRREVERSIBLE%<U896F>     /x8e/xa1/xfb/xf2 <CJK>
+ %IRREVERSIBLE%<U89FC>     /x8e/xa1/xfb/xf3 <CJK>
+ %IRREVERSIBLE%<U8B80>     /x8e/xa1/xfb/xf4 <CJK>
+ %IRREVERSIBLE%<U8D16>     /x8e/xa1/xfb/xf5 <CJK>
+ %IRREVERSIBLE%<U8D17>     /x8e/xa1/xfb/xf6 <CJK>
+ %IRREVERSIBLE%<U8E91>     /x8e/xa1/xfb/xf7 <CJK>
+ %IRREVERSIBLE%<U8E93>     /x8e/xa1/xfb/xf8 <CJK>
+ %IRREVERSIBLE%<U8F61>     /x8e/xa1/xfb/xf9 <CJK>
+ %IRREVERSIBLE%<U9148>     /x8e/xa1/xfb/xfa <CJK>
+ %IRREVERSIBLE%<U9444>     /x8e/xa1/xfb/xfb <CJK>
+ %IRREVERSIBLE%<U9451>     /x8e/xa1/xfb/xfc <CJK>
+ %IRREVERSIBLE%<U9452>     /x8e/xa1/xfb/xfd <CJK>
+ %IRREVERSIBLE%<U973D>     /x8e/xa1/xfb/xfe <CJK>
+ %IRREVERSIBLE%<U973E>     /x8e/xa1/xfc/xa1 <CJK>
+ %IRREVERSIBLE%<U97C3>     /x8e/xa1/xfc/xa2 <CJK>
+ %IRREVERSIBLE%<U97C1>     /x8e/xa1/xfc/xa3 <CJK>
+ %IRREVERSIBLE%<U986B>     /x8e/xa1/xfc/xa4 <CJK>
+ %IRREVERSIBLE%<U9955>     /x8e/xa1/xfc/xa5 <CJK>
+ %IRREVERSIBLE%<U9A55>     /x8e/xa1/xfc/xa6 <CJK>
+ %IRREVERSIBLE%<U9A4D>     /x8e/xa1/xfc/xa7 <CJK>
+ %IRREVERSIBLE%<U9AD2>     /x8e/xa1/xfc/xa8 <CJK>
+ %IRREVERSIBLE%<U9B1A>     /x8e/xa1/xfc/xa9 <CJK>
+ %IRREVERSIBLE%<U9C49>     /x8e/xa1/xfc/xaa <CJK>
+ %IRREVERSIBLE%<U9C31>     /x8e/xa1/xfc/xab <CJK>
+ %IRREVERSIBLE%<U9C3E>     /x8e/xa1/xfc/xac <CJK>
+ %IRREVERSIBLE%<U9C3B>     /x8e/xa1/xfc/xad <CJK>
+ %IRREVERSIBLE%<U9DD3>     /x8e/xa1/xfc/xae <CJK>
+ %IRREVERSIBLE%<U9DD7>     /x8e/xa1/xfc/xaf <CJK>
+ %IRREVERSIBLE%<U9F34>     /x8e/xa1/xfc/xb0 <CJK>
+ %IRREVERSIBLE%<U9F6C>     /x8e/xa1/xfc/xb1 <CJK>
+ %IRREVERSIBLE%<U9F6A>     /x8e/xa1/xfc/xb2 <CJK>
+ %IRREVERSIBLE%<U9F94>     /x8e/xa1/xfc/xb3 <CJK>
+ %IRREVERSIBLE%<U56CC>     /x8e/xa1/xfc/xb4 <CJK>
+ %IRREVERSIBLE%<U5DD6>     /x8e/xa1/xfc/xb5 <CJK>
+ %IRREVERSIBLE%<U6200>     /x8e/xa1/xfc/xb6 <CJK>
+ %IRREVERSIBLE%<U6523>     /x8e/xa1/xfc/xb7 <CJK>
+ %IRREVERSIBLE%<U652B>     /x8e/xa1/xfc/xb8 <CJK>
+ %IRREVERSIBLE%<U652A>     /x8e/xa1/xfc/xb9 <CJK>
+ %IRREVERSIBLE%<U66EC>     /x8e/xa1/xfc/xba <CJK>
+ %IRREVERSIBLE%<U6B10>     /x8e/xa1/xfc/xbb <CJK>
+ %IRREVERSIBLE%<U74DA>     /x8e/xa1/xfc/xbc <CJK>
+ %IRREVERSIBLE%<U7ACA>     /x8e/xa1/xfc/xbd <CJK>
+ %IRREVERSIBLE%<U7C64>     /x8e/xa1/xfc/xbe <CJK>
+ %IRREVERSIBLE%<U7C63>     /x8e/xa1/xfc/xbf <CJK>
+ %IRREVERSIBLE%<U7C65>     /x8e/xa1/xfc/xc0 <CJK>
+ %IRREVERSIBLE%<U7E93>     /x8e/xa1/xfc/xc1 <CJK>
+ %IRREVERSIBLE%<U7E96>     /x8e/xa1/xfc/xc2 <CJK>
+ %IRREVERSIBLE%<U7E94>     /x8e/xa1/xfc/xc3 <CJK>
+ %IRREVERSIBLE%<U81E2>     /x8e/xa1/xfc/xc4 <CJK>
+ %IRREVERSIBLE%<U8638>     /x8e/xa1/xfc/xc5 <CJK>
+ %IRREVERSIBLE%<U863F>     /x8e/xa1/xfc/xc6 <CJK>
+ %IRREVERSIBLE%<U8831>     /x8e/xa1/xfc/xc7 <CJK>
+ %IRREVERSIBLE%<U8B8A>     /x8e/xa1/xfc/xc8 <CJK>
+ %IRREVERSIBLE%<U9090>     /x8e/xa1/xfc/xc9 <CJK>
+ %IRREVERSIBLE%<U908F>     /x8e/xa1/xfc/xca <CJK>
+ %IRREVERSIBLE%<U9463>     /x8e/xa1/xfc/xcb <CJK>
+ %IRREVERSIBLE%<U9460>     /x8e/xa1/xfc/xcc <CJK>
+ %IRREVERSIBLE%<U9464>     /x8e/xa1/xfc/xcd <CJK>
+ %IRREVERSIBLE%<U9768>     /x8e/xa1/xfc/xce <CJK>
+ %IRREVERSIBLE%<U986F>     /x8e/xa1/xfc/xcf <CJK>
+ %IRREVERSIBLE%<U995C>     /x8e/xa1/xfc/xd0 <CJK>
+ %IRREVERSIBLE%<U9A5A>     /x8e/xa1/xfc/xd1 <CJK>
+ %IRREVERSIBLE%<U9A5B>     /x8e/xa1/xfc/xd2 <CJK>
+ %IRREVERSIBLE%<U9A57>     /x8e/xa1/xfc/xd3 <CJK>
+ %IRREVERSIBLE%<U9AD3>     /x8e/xa1/xfc/xd4 <CJK>
+ %IRREVERSIBLE%<U9AD4>     /x8e/xa1/xfc/xd5 <CJK>
+ %IRREVERSIBLE%<U9AD1>     /x8e/xa1/xfc/xd6 <CJK>
+ %IRREVERSIBLE%<U9C54>     /x8e/xa1/xfc/xd7 <CJK>
+ %IRREVERSIBLE%<U9C57>     /x8e/xa1/xfc/xd8 <CJK>
+ %IRREVERSIBLE%<U9C56>     /x8e/xa1/xfc/xd9 <CJK>
+ %IRREVERSIBLE%<U9DE5>     /x8e/xa1/xfc/xda <CJK>
+ %IRREVERSIBLE%<U9E9F>     /x8e/xa1/xfc/xdb <CJK>
+ %IRREVERSIBLE%<U9EF4>     /x8e/xa1/xfc/xdc <CJK>
+ %IRREVERSIBLE%<U56D1>     /x8e/xa1/xfc/xdd <CJK>
+ %IRREVERSIBLE%<U58E9>     /x8e/xa1/xfc/xde <CJK>
+ %IRREVERSIBLE%<U652C>     /x8e/xa1/xfc/xdf <CJK>
+ %IRREVERSIBLE%<U705E>     /x8e/xa1/xfc/xe0 <CJK>
+ %IRREVERSIBLE%<U7671>     /x8e/xa1/xfc/xe1 <CJK>
+ %IRREVERSIBLE%<U7672>     /x8e/xa1/xfc/xe2 <CJK>
+ %IRREVERSIBLE%<U77D7>     /x8e/xa1/xfc/xe3 <CJK>
+ %IRREVERSIBLE%<U7F50>     /x8e/xa1/xfc/xe4 <CJK>
+ %IRREVERSIBLE%<U7F88>     /x8e/xa1/xfc/xe5 <CJK>
+ %IRREVERSIBLE%<U8836>     /x8e/xa1/xfc/xe6 <CJK>
+ %IRREVERSIBLE%<U8839>     /x8e/xa1/xfc/xe7 <CJK>
+ %IRREVERSIBLE%<U8862>     /x8e/xa1/xfc/xe8 <CJK>
+ %IRREVERSIBLE%<U8B93>     /x8e/xa1/xfc/xe9 <CJK>
+ %IRREVERSIBLE%<U8B92>     /x8e/xa1/xfc/xea <CJK>
+ %IRREVERSIBLE%<U8B96>     /x8e/xa1/xfc/xeb <CJK>
+ %IRREVERSIBLE%<U8277>     /x8e/xa1/xfc/xec <CJK>
+ %IRREVERSIBLE%<U8D1B>     /x8e/xa1/xfc/xed <CJK>
+ %IRREVERSIBLE%<U91C0>     /x8e/xa1/xfc/xee <CJK>
+ %IRREVERSIBLE%<U946A>     /x8e/xa1/xfc/xef <CJK>
+ %IRREVERSIBLE%<U9742>     /x8e/xa1/xfc/xf0 <CJK>
+ %IRREVERSIBLE%<U9748>     /x8e/xa1/xfc/xf1 <CJK>
+ %IRREVERSIBLE%<U9744>     /x8e/xa1/xfc/xf2 <CJK>
+ %IRREVERSIBLE%<U97C6>     /x8e/xa1/xfc/xf3 <CJK>
+ %IRREVERSIBLE%<U9870>     /x8e/xa1/xfc/xf4 <CJK>
+ %IRREVERSIBLE%<U9A5F>     /x8e/xa1/xfc/xf5 <CJK>
+ %IRREVERSIBLE%<U9B22>     /x8e/xa1/xfc/xf6 <CJK>
+ %IRREVERSIBLE%<U9B58>     /x8e/xa1/xfc/xf7 <CJK>
+ %IRREVERSIBLE%<U9C5F>     /x8e/xa1/xfc/xf8 <CJK>
+ %IRREVERSIBLE%<U9DF9>     /x8e/xa1/xfc/xf9 <CJK>
+ %IRREVERSIBLE%<U9DFA>     /x8e/xa1/xfc/xfa <CJK>
+ %IRREVERSIBLE%<U9E7C>     /x8e/xa1/xfc/xfb <CJK>
+ %IRREVERSIBLE%<U9E7D>     /x8e/xa1/xfc/xfc <CJK>
+ %IRREVERSIBLE%<U9F07>     /x8e/xa1/xfc/xfd <CJK>
+ %IRREVERSIBLE%<U9F77>     /x8e/xa1/xfc/xfe <CJK>
+ %IRREVERSIBLE%<U9F72>     /x8e/xa1/xfd/xa1 <CJK>
+ %IRREVERSIBLE%<U5EF3>     /x8e/xa1/xfd/xa2 <CJK>
+ %IRREVERSIBLE%<U6B16>     /x8e/xa1/xfd/xa3 <CJK>
+ %IRREVERSIBLE%<U7063>     /x8e/xa1/xfd/xa4 <CJK>
+ %IRREVERSIBLE%<U7C6C>     /x8e/xa1/xfd/xa5 <CJK>
+ %IRREVERSIBLE%<U7C6E>     /x8e/xa1/xfd/xa6 <CJK>
+ %IRREVERSIBLE%<U883B>     /x8e/xa1/xfd/xa7 <CJK>
+ %IRREVERSIBLE%<U89C0>     /x8e/xa1/xfd/xa8 <CJK>
+ %IRREVERSIBLE%<U8EA1>     /x8e/xa1/xfd/xa9 <CJK>
+ %IRREVERSIBLE%<U91C1>     /x8e/xa1/xfd/xaa <CJK>
+ %IRREVERSIBLE%<U9472>     /x8e/xa1/xfd/xab <CJK>
+ %IRREVERSIBLE%<U9470>     /x8e/xa1/xfd/xac <CJK>
+ %IRREVERSIBLE%<U9871>     /x8e/xa1/xfd/xad <CJK>
+ %IRREVERSIBLE%<U995E>     /x8e/xa1/xfd/xae <CJK>
+ %IRREVERSIBLE%<U9AD6>     /x8e/xa1/xfd/xaf <CJK>
+ %IRREVERSIBLE%<U9B23>     /x8e/xa1/xfd/xb0 <CJK>
+ %IRREVERSIBLE%<U9ECC>     /x8e/xa1/xfd/xb1 <CJK>
+ %IRREVERSIBLE%<U7064>     /x8e/xa1/xfd/xb2 <CJK>
+ %IRREVERSIBLE%<U77DA>     /x8e/xa1/xfd/xb3 <CJK>
+ %IRREVERSIBLE%<U8B9A>     /x8e/xa1/xfd/xb4 <CJK>
+ %IRREVERSIBLE%<U9477>     /x8e/xa1/xfd/xb5 <CJK>
+ %IRREVERSIBLE%<U97C9>     /x8e/xa1/xfd/xb6 <CJK>
+ %IRREVERSIBLE%<U9A62>     /x8e/xa1/xfd/xb7 <CJK>
+ %IRREVERSIBLE%<U9A65>     /x8e/xa1/xfd/xb8 <CJK>
+ %IRREVERSIBLE%<U7E9C>     /x8e/xa1/xfd/xb9 <CJK>
+ %IRREVERSIBLE%<U8B9C>     /x8e/xa1/xfd/xba <CJK>
+ %IRREVERSIBLE%<U8EAA>     /x8e/xa1/xfd/xbb <CJK>
+ %IRREVERSIBLE%<U91C5>     /x8e/xa1/xfd/xbc <CJK>
+ %IRREVERSIBLE%<U947D>     /x8e/xa1/xfd/xbd <CJK>
+ %IRREVERSIBLE%<U947E>     /x8e/xa1/xfd/xbe <CJK>
+ %IRREVERSIBLE%<U947C>     /x8e/xa1/xfd/xbf <CJK>
+ %IRREVERSIBLE%<U9C77>     /x8e/xa1/xfd/xc0 <CJK>
+ %IRREVERSIBLE%<U9C78>     /x8e/xa1/xfd/xc1 <CJK>
+ %IRREVERSIBLE%<U9EF7>     /x8e/xa1/xfd/xc2 <CJK>
+ %IRREVERSIBLE%<U8C54>     /x8e/xa1/xfd/xc3 <CJK>
+ %IRREVERSIBLE%<U947F>     /x8e/xa1/xfd/xc4 <CJK>
+ %IRREVERSIBLE%<U9E1A>     /x8e/xa1/xfd/xc5 <CJK>
+ %IRREVERSIBLE%<U7228>     /x8e/xa1/xfd/xc6 <CJK>
+ %IRREVERSIBLE%<U9A6A>     /x8e/xa1/xfd/xc7 <CJK>
+ %IRREVERSIBLE%<U9B31>     /x8e/xa1/xfd/xc8 <CJK>
+ %IRREVERSIBLE%<U9E1B>     /x8e/xa1/xfd/xc9 <CJK>
+ %IRREVERSIBLE%<U9E1E>     /x8e/xa1/xfd/xca <CJK>
+ %IRREVERSIBLE%<U7C72>     /x8e/xa1/xfd/xcb <CJK>
+ 
+ %
  % CNS 11643-1992 Planes 2-16
  %
  <U4E42>     /x8e/xa2/xa1/xa1 <CJK>

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]