1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535
|
Network Working Group J. Reschke, Ed.
Internet-Draft
Intended status: Experimental Πυθαγόρας ὁ Σάμιος (P. O. Samos)
Expires: October 17, 2017 Εργαστήριο γεωμετρία (Geometry Labs)
A. Bergström
April 15, 2017
xml2rfc V3 Feature Tests
draft-v3-features
Abstract
This document tests features introduced in xml2rfc v3 vocabulary.
Note to Readers
This note is to be removed before publishing as an RFC.
Something important about this document.
Note
This note is to be removed before publishing as an RFC.
Something else important, this time with no <name>.
Note
This note is to be removed before publishing as an RFC.
The warning in this note should not be doubled.
Another Note
This note is to be removed before publishing as an RFC.
The warning in this note should not be doubled either.
Yet Another Note
This note is to be removed before publishing as an RFC.
The removeInRFC warning is only ever the first paragraph, so if a
paragraph like this:
This note is to be removed before publishing as an RFC.
appears but is not the first paragraph, the warning should be added
again.
Status of This Memo
This Internet-Draft is submitted in full conformance with the
provisions of BCP 78 and BCP 79.
Internet-Drafts are working documents of the Internet Engineering
Task Force (IETF). Note that other groups may also distribute
working documents as Internet-Drafts. The list of current Internet-
Drafts is at http://datatracker.ietf.org/drafts/current/.
Internet-Drafts are draft documents valid for a maximum of six months
and may be updated, replaced, or obsoleted by other documents at any
time. It is inappropriate to use Internet-Drafts as reference
material or to cite them other than as "work in progress."
This Internet-Draft will expire on October 17, 2017.
Copyright Notice
Copyright (c) 2017 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to BCP 78 and the IETF Trust's Legal
Provisions Relating to IETF Documents (http://trustee.ietf.org/
license-info) in effect on the date of publication of this document.
Please review these documents carefully, as they describe your rights
and restrictions with respect to this document.
Table of Contents
1. Text Styles
1.1. em/strong
1.2. tt
1.3. bcp14
1.4. sup/sub
2. Section Titles
2.1. Title in <name> element, including markup
2.2. Title with xref: Section 2.2
2.3. Title with id
2.4. Test: Comment
3. Renaming References
4. Lists
4.1. Definition Lists
4.2. Ordered Lists
4.2.1. Styles
4.3. Unordered Lists
4.4. Unordered Lists (multi-paragraph / nested)
4.5. Unordered Lists (empty=true)
4.6. Referring to list items
5. <blockquote>
6. <aside>
7. <sourcecode>
8. SVG
8.1. inline (with @alt attribute)
8.2. inline (left)
8.3. inline (centered)
8.4. inline (right)
8.5. included (type svg)
9. <figure>/<name>
10. Tables
10.1. Bare Table (unnamed, no anchor, with iref)
10.2. Bare Table (unnamed, with anchor, not referenced)
10.3. Bare Table (unnamed, with anchor, referenced)
10.4. Named Table
10.5. Aligned Table 1
10.6. Colspan 1
10.7. Rowspan 1
10.8. References
10.9. Markup in Table Cells
10.10. Examples from existing RFCs
10.10.1. RFC 7541
11. Section References
11.1. By Section Number
11.2. By Relative URI
11.3. To "References"
11.4. To Unnumbered Section
12. Some References
Appendix A. Change Log
Appendix B. Another Change Log only containing Subsections
B.1. Test
Appendix C. Test removeInRFC duplication
Appendix D. Test removeInRFC duplication again
Appendix E. Test removeInRFC without name
E.1. section as first child
Contributors
Index
Authors' Addresses
1. Text Styles
1.1. em/strong
This is _emphasized_. This is *strong*. This is _*both*_. So is
*_this_*.
1.2. tt
This is monospaced. Standard 78: [STD78].
1.3. bcp14
This is a BCP14 MUST.
1.4. sup/sub
This is regular text. This is regular text. This is regular text.
This is regular text. This is regular text. This is regular text.
This is regular text. This is regular text. This is regular text.
This is regular text. This is regular text. This is regular text.
This is regular text. This is regular text. This is regular text.
This is regular text. This is regular text. This is regular text.
This is regular text. This is regular text. This is regular text.
This is regular text. This is regular text. This is regular text.
This is regular text. This is s_ubscript. This is s^uperscript.
This is regular text. This is regular text. This is regular text.
This is regular text. This is regular text. This is regular text.
This is regular text. This is regular text. This is regular text.
This is regular text. This is regular text. This is regular text.
This is regular text. This is regular text. This is regular text.
This is regular text. This is regular text. This is regular text.
This is regular text.
2. Section Titles
2.1. Title in <name> element, including markup
Test.
The title of this section is "Title in <name> element, including
markup".
2.2. Title with xref: Section 2.2
Test.
2.3. Title with
// id
Test: a reference to the comment (Comment titleidid).
2.4. Test: Comment
// cref Text after comment
More text after comment
3. Renaming References
Test: [0REFTEST].
4. Lists
4.1. Definition Lists
newline=default/spacing=default
Term1 Description1. Description1. Description1. Description1.
Description1. Description1. Description1. Description1.
Description1. Description1. Description1. Description1.
Term2 Description2. Description2. Description2. Description2.
Description2. Description2. Description2. Description2.
Description2. Description2. Description2. Description2.
newline=true/spacing=default
Term1
Description1. Description1. Description1. Description1.
Description1. Description1. Description1. Description1.
Description1. Description1. Description1. Description1.
Term2
Description2. Description2. Description2. Description2.
Description2. Description2. Description2. Description2.
Description2. Description2. Description2. Description2.
newline=false/spacing=default
Term1 Description1. Description1. Description1. Description1.
Description1. Description1. Description1. Description1.
Description1. Description1. Description1. Description1.
Term2 Description2. Description2. Description2. Description2.
Description2. Description2. Description2. Description2.
Description2. Description2. Description2. Description2.
newline=default/spacing=compact
Term1 Description1. Description1. Description1. Description1.
Description1. Description1. Description1. Description1.
Description1. Description1. Description1. Description1.
Term2 Description2. Description2. Description2. Description2.
Description2. Description2. Description2. Description2.
Description2. Description2. Description2. Description2.
newline=false/spacing=compact
Term1 Description1. Description1. Description1. Description1.
Description1. Description1. Description1. Description1.
Description1. Description1. Description1. Description1.
Term2 Description2. Description2. Description2. Description2.
Description2. Description2. Description2. Description2.
Description2. Description2. Description2. Description2.
newline=true/spacing=compact
Term1
Description1. Description1. Description1. Description1.
Description1. Description1. Description1. Description1.
Description1. Description1. Description1. Description1.
Term2
Description2. Description2. Description2. Description2.
Description2. Description2. Description2. Description2.
Description2. Description2. Description2. Description2.
markup
_Term1_
Description1. Description1. Description1. *Description1*.
multi-paragraph
_Term1_ Description1. Description1. Description1. Description1.
Description1. Description1. Description1. Description1.
Description1. Description1. Description1. Description1.
Description2. Description2. Description2. Description2.
Description2. Description2. Description2. Description2.
Description2. Description2. Description2. Description2.
nested list
Term1 Description1. Description1. Description1. Description1.
Description1. Description1. Description1. Description1.
Description1. Description1. Description1. Description1.
Term1b Description 1b.
Term2 Term2b Description 2b.
4.2. Ordered Lists
1. One
2. Two *2*
3. Three _3_
List item 1 is "One".
4. The quick brown fox jumps over the lazy dog.
_The quick brown fox jumps over the lazy dog._
List item 4 is the list above.
1. list 1 / item 1
2. list 1 / item 2
The items below should continue ordering from above.
3. list 1 / item 3
4. list 1 / item 4
The items below should be numbered starting with 17.
17. list 1 / item 17
18. list 1 / item 18
The items below should be numbered starting with 19.
19. list 1 / item 19
20. list 1 / item 20
4.2.1. Styles
1
1. 1
2. 2
3. 3 (check: 3)
a
a. a
b. b
c. c (check: c)
A
A. A
B. B
C. C (check: C)
i
i. i
ii. ii
iii. iii (check: iii)
I
I. I
II. II
III. III (check: III)
REC%d
REC1 REC1
REC2 REC2
REC3 REC3 (check: REC3)
REC%c with start=5
RECe e
RECf f
RECg g (check: RECg)
REC%i grouped
RECi i
REC%i grouped, continued
RECii ii (check: RECii)
4.3. Unordered Lists
* One
* Two *2*
* Three _3_
4.4. Unordered Lists (multi-paragraph / nested)
* The quick brown fox jumps over the lazy dog.
_The quick brown fox jumps over the lazy dog._
* Two *2*
* Three _3_
* sub list
- A
- B
- C
4.5. Unordered Lists (empty=true)
A
B
C
4.6. Referring to list items
(default) see Section 4.1.
(counter) see Section 4.1.
(title) see listitem.
(default, TEXTCONTENT) see TEXTCONTENT (Section 4.1).
(counter, TEXTCONTENT) see TEXTCONTENT (4.1).
(title, TEXTCONTENT) see TEXTCONTENT (listitem).
(none, TEXTCONTENT) see TEXTCONTENT.
5. <blockquote>
Let's cite:
| "The quick brown fox jumps over the lazy dog" is an English-
| language pangram - a phrase that contains all of the letters of
| the alphabet. It is used to show fonts and to test typewriters
| and computer keyboards, and in other applications involving all of
| the letters in the English alphabet. Owing to its brevity and
| coherence, it has become widely known.
|
| 1. one
|
| 2. two
|
| The parts above have anchors (Section 5, Paragraph 2.1 and
| Section 5, Paragraph 2.2), but this one does not.
|
| http://en.wikipedia.org/wiki/
| The_quick_brown_fox_jumps_over_the_lazy_dog
without block content:
| "The quick brown fox jumps over the lazy dog" is an English-
| language pangram - a phrase that contains all of the letters of
| the alphabet. It is used to show fonts and to test typewriters
| and computer keyboards, and in other applications involving all of
| the letters in the English alphabet. Owing to its brevity and
| coherence, it has become widely known.
|
| http://en.wikipedia.org/wiki/
| The_quick_brown_fox_jumps_over_the_lazy_dog
with "quotedFrom":
| Four score and seven years ago our fathers brought forth on this
| continent, a new nation, conceived in Liberty, and dedicated to
| the proposition that all men are created equal.
|
| -- Abraham Lincoln
| http://www.abrahamlincolnonline.org/lincoln/speeches/
| gettysburg.htm
6. <aside>
| *Note:* this is an aside.
|
| A second paragraph.
7. <sourcecode>
Text before...
ABC
Text after...
Inside figure
DEF
ABNF
foo = bar
8. SVG
8.1. inline (with @alt attribute)
Text before...
(Artwork only available as svg: No external link available, see
draft-v3-features.html for artwork.)
Text after...
8.2. inline (left)
Text before...
(Artwork only available as svg: No external link available, see
draft-v3-features.html for artwork.)
Text after...
8.3. inline (centered)
Text before...
(Artwork only available as svg: No external link available, see
draft-v3-features.html for artwork.)
Text after...
8.4. inline (right)
Text before...
(Artwork only available as svg: No external link available, see
draft-v3-features.html for artwork.)
Text after...
8.5. included (type svg)
(Artwork only available as svg: rfc7991.references.svg)
+--------------------+
| Included from file |
+--------------------+
Figure 1: References of [RFC7991]
This paragraph has the anchor 'Section 8.5, Paragraph 2' which will
be in conflict with an id attribute in the included SVG.
9. <figure>/<name>
ABC
Figure 2: <figure>/<name>
10. Tables
10.1. Bare Table (unnamed, no anchor, with iref)
+==========+==========+
| Column 1 | Column 2 |
+==========+==========+
| Value 1 | Value 2 |
+----------+----------+
Table 1
10.2. Bare Table (unnamed, with anchor, not referenced)
+==========+==========+
| Column 1 | Column 2 |
+==========+==========+
| Value 1 | Value 2 |
+----------+----------+
Table 2
10.3. Bare Table (unnamed, with anchor, referenced)
+==========+==========+
| Column 1 | Column 2 |
+==========+==========+
| Value 1 | Value 2 |
+----------+----------+
Table 3
See Table 3.
10.4. Named Table
+==========+==========+
| Column 1 | Column 2 |
+==========+==========+
| Value 1 | Value 2 |
+----------+----------+
Table 4: Table Name
10.5. Aligned Table 1
+==========+==========+==========+
| Column 1 | Column 2 | Column 3 |
+==========+==========+==========+
| 1 | 2 | 3 |
+----------+----------+----------+
Table 5
10.6. Colspan 1
+==========+==========+==========+
| Column 1 | Column 2 | Column 3 |
+==========+==========+==========+
| 1 | 2 and 3 |
+----------+---------------------+
Table 6
10.7. Rowspan 1
+==========+==========+==========+
| Column 1 | Column 2 | Column 3 |
+==========+==========+==========+
| 1 | 2 and 5 | 3 |
+----------+ +----------+
| 4 | | 6 |
+----------+----------+----------+
Table 7
10.8. References
+==========+==========+
| Column 1 | Column 2 |
+==========+==========+
| 1 | 2 |
+----------+----------+
Table 8
10.9. Markup in Table Cells
+=============================================+===================+
| Column 1 | Line 1 |
| | Line 2 |
+=============================================+===================+
| The _quick_ ^brown _fox *jumps* over the | Paragraph 1 |
| lazy OPTIONAL dog. Table 9 | |
| https://en.wikipedia.org/wiki/ | Paragraph 2 |
| The_quick_brown_fox_jumps_over_the_lazy_dog | |
| // comment | Source code |
| | |
| | 1. Ordered List |
| | |
| | * Unordered List |
| | |
| | Definition List |
+---------------------------------------------+-------------------+
Table 9
10.10. Examples from existing RFCs
10.10.1. RFC 7541
(<tfoot> added for testing purposes)
+=======+====================================+==========+======+
| sym | code as bits | code | len |
| | aligned to MSB | as hex | in |
| | | aligned | bits |
| | | to LSB | |
+=======+====================================+==========+======+
| ( 0) | |11111111|11000 | 1ff8 | [13] |
+-------+------------------------------------+----------+------+
| ( 1) | |11111111|11111111|1011000 | 7fffd8 | [23] |
+-------+------------------------------------+----------+------+
| ( 2) | |11111111|11111111|11111110|0010 | fffffe2 | [28] |
+-------+------------------------------------+----------+------+
| ( 3) | |11111111|11111111|11111110|0011 | fffffe3 | [28] |
+-------+------------------------------------+----------+------+
| ( 4) | |11111111|11111111|11111110|0100 | fffffe4 | [28] |
+-------+------------------------------------+----------+------+
| ( 5) | |11111111|11111111|11111110|0101 | fffffe5 | [28] |
+-------+------------------------------------+----------+------+
| ( 6) | |11111111|11111111|11111110|0110 | fffffe6 | [28] |
+-------+------------------------------------+----------+------+
| ( 7) | |11111111|11111111|11111110|0111 | fffffe7 | [28] |
+-------+------------------------------------+----------+------+
| ( 8) | |11111111|11111111|11111110|1000 | fffffe8 | [28] |
+-------+------------------------------------+----------+------+
| ( 9) | |11111111|11111111|11101010 | ffffea | [24] |
+-------+------------------------------------+----------+------+
| ( 10) | |11111111|11111111|11111111|111100 | 3ffffffc | [30] |
| | 3 | | |
+-------+------------------------------------+----------+------+
| ( 11) | |11111111|11111111|11111110|1001 | fffffe9 | [28] |
+-------+------------------------------------+----------+------+
| ( 12) | |11111111|11111111|11111110|1010 | fffffea | [28] |
+-------+------------------------------------+----------+------+
| ( 13) | |11111111|11111111|11111111|111101 | 3ffffffd | [30] |
| | 3 | | |
+-------+------------------------------------+----------+------+
| ( 14) | |11111111|11111111|11111110|1011 | fffffeb | [28] |
+-------+------------------------------------+----------+------+
| ( 15) | |11111111|11111111|11111110|1100 | fffffec | [28] |
+-------+------------------------------------+----------+------+
| ( 16) | |11111111|11111111|11111110|1101 | fffffed | [28] |
+-------+------------------------------------+----------+------+
| ( 17) | |11111111|11111111|11111110|1110 | fffffee | [28] |
+-------+------------------------------------+----------+------+
| ( 18) | |11111111|11111111|11111110|1111 | fffffef | [28] |
+-------+------------------------------------+----------+------+
| ( 19) | |11111111|11111111|11111111|0000 | ffffff0 | [28] |
+-------+------------------------------------+----------+------+
| ( 20) | |11111111|11111111|11111111|0001 | ffffff1 | [28] |
+-------+------------------------------------+----------+------+
| ( 21) | |11111111|11111111|11111111|0010 | ffffff2 | [28] |
+-------+------------------------------------+----------+------+
| ( 22) | |11111111|11111111|11111111|111110 | 3ffffffe | [30] |
| | 3 | | |
+-------+------------------------------------+----------+------+
| ( 23) | |11111111|11111111|11111111|0011 | ffffff3 | [28] |
+-------+------------------------------------+----------+------+
| ( 24) | |11111111|11111111|11111111|0100 | ffffff4 | [28] |
+-------+------------------------------------+----------+------+
| ( 25) | |11111111|11111111|11111111|0101 | ffffff5 | [28] |
+-------+------------------------------------+----------+------+
| ( 26) | |11111111|11111111|11111111|0110 | ffffff6 | [28] |
+-------+------------------------------------+----------+------+
| ( 27) | |11111111|11111111|11111111|0111 | ffffff7 | [28] |
+-------+------------------------------------+----------+------+
| ( 28) | |11111111|11111111|11111111|1000 | ffffff8 | [28] |
+-------+------------------------------------+----------+------+
| ( 29) | |11111111|11111111|11111111|1001 | ffffff9 | [28] |
+-------+------------------------------------+----------+------+
| ( 30) | |11111111|11111111|11111111|1010 | ffffffa | [28] |
+-------+------------------------------------+----------+------+
| ( 31) | |11111111|11111111|11111111|1011 | ffffffb | [28] |
+-------+------------------------------------+----------+------+
| ' ' ( | |010100 | 14 | [ 6] |
| 32) | | | |
+-------+------------------------------------+----------+------+
| '!' ( | |11111110|00 | 3f8 | [10] |
| 33) | | | |
+-------+------------------------------------+----------+------+
| '"' ( | |11111110|01 | 3f9 | [10] |
| 34) | | | |
+-------+------------------------------------+----------+------+
| '#' ( | |11111111|1010 | ffa | [12] |
| 35) | | | |
+-------+------------------------------------+----------+------+
| '$' ( | |11111111|11001 | 1ff9 | [13] |
| 36) | | | |
+-------+------------------------------------+----------+------+
| '%' ( | |010101 | 15 | [ 6] |
| 37) | | | |
+-------+------------------------------------+----------+------+
| '&' ( | |11111000 | f8 | [ 8] |
| 38) | | | |
+-------+------------------------------------+----------+------+
| ''' ( | |11111111|010 | 7fa | [11] |
| 39) | | | |
+-------+------------------------------------+----------+------+
| '(' ( | |11111110|10 | 3fa | [10] |
| 40) | | | |
+-------+------------------------------------+----------+------+
| ')' ( | |11111110|11 | 3fb | [10] |
| 41) | | | |
+-------+------------------------------------+----------+------+
| '*' ( | |11111001 | f9 | [ 8] |
| 42) | | | |
+-------+------------------------------------+----------+------+
| '+' ( | |11111111|011 | 7fb | [11] |
| 43) | | | |
+-------+------------------------------------+----------+------+
| ',' ( | |11111010 | fa | [ 8] |
| 44) | | | |
+-------+------------------------------------+----------+------+
| '-' ( | |010110 | 16 | [ 6] |
| 45) | | | |
+-------+------------------------------------+----------+------+
| '.' ( | |010111 | 17 | [ 6] |
| 46) | | | |
+-------+------------------------------------+----------+------+
| '/' ( | |011000 | 18 | [ 6] |
| 47) | | | |
+-------+------------------------------------+----------+------+
| '0' ( | |00000 | 0 | [ 5] |
| 48) | | | |
+-------+------------------------------------+----------+------+
| '1' ( | |00001 | 1 | [ 5] |
| 49) | | | |
+-------+------------------------------------+----------+------+
| '2' ( | |00010 | 2 | [ 5] |
| 50) | | | |
+-------+------------------------------------+----------+------+
| '3' ( | |011001 | 19 | [ 6] |
| 51) | | | |
+-------+------------------------------------+----------+------+
| '4' ( | |011010 | 1a | [ 6] |
| 52) | | | |
+-------+------------------------------------+----------+------+
| '5' ( | |011011 | 1b | [ 6] |
| 53) | | | |
+-------+------------------------------------+----------+------+
| '6' ( | |011100 | 1c | [ 6] |
| 54) | | | |
+-------+------------------------------------+----------+------+
| '7' ( | |011101 | 1d | [ 6] |
| 55) | | | |
+-------+------------------------------------+----------+------+
| '8' ( | |011110 | 1e | [ 6] |
| 56) | | | |
+-------+------------------------------------+----------+------+
| '9' ( | |011111 | 1f | [ 6] |
| 57) | | | |
+-------+------------------------------------+----------+------+
| ':' ( | |1011100 | 5c | [ 7] |
| 58) | | | |
+-------+------------------------------------+----------+------+
| ';' ( | |11111011 | fb | [ 8] |
| 59) | | | |
+-------+------------------------------------+----------+------+
| '<' ( | |11111111|1111100 | 7ffc | [15] |
| 60) | | | |
+-------+------------------------------------+----------+------+
| '=' ( | |100000 | 20 | [ 6] |
| 61) | | | |
+-------+------------------------------------+----------+------+
| '>' ( | |11111111|1011 | ffb | [12] |
| 62) | | | |
+-------+------------------------------------+----------+------+
| '?' ( | |11111111|00 | 3fc | [10] |
| 63) | | | |
+-------+------------------------------------+----------+------+
| '@' ( | |11111111|11010 | 1ffa | [13] |
| 64) | | | |
+-------+------------------------------------+----------+------+
| 'A' ( | |100001 | 21 | [ 6] |
| 65) | | | |
+-------+------------------------------------+----------+------+
| 'B' ( | |1011101 | 5d | [ 7] |
| 66) | | | |
+-------+------------------------------------+----------+------+
| 'C' ( | |1011110 | 5e | [ 7] |
| 67) | | | |
+-------+------------------------------------+----------+------+
| 'D' ( | |1011111 | 5f | [ 7] |
| 68) | | | |
+-------+------------------------------------+----------+------+
| 'E' ( | |1100000 | 60 | [ 7] |
| 69) | | | |
+-------+------------------------------------+----------+------+
| 'F' ( | |1100001 | 61 | [ 7] |
| 70) | | | |
+-------+------------------------------------+----------+------+
| 'G' ( | |1100010 | 62 | [ 7] |
| 71) | | | |
+-------+------------------------------------+----------+------+
| 'H' ( | |1100011 | 63 | [ 7] |
| 72) | | | |
+-------+------------------------------------+----------+------+
| 'I' ( | |1100100 | 64 | [ 7] |
| 73) | | | |
+-------+------------------------------------+----------+------+
| 'J' ( | |1100101 | 65 | [ 7] |
| 74) | | | |
+-------+------------------------------------+----------+------+
| 'K' ( | |1100110 | 66 | [ 7] |
| 75) | | | |
+-------+------------------------------------+----------+------+
| 'L' ( | |1100111 | 67 | [ 7] |
| 76) | | | |
+-------+------------------------------------+----------+------+
| 'M' ( | |1101000 | 68 | [ 7] |
| 77) | | | |
+-------+------------------------------------+----------+------+
| 'N' ( | |1101001 | 69 | [ 7] |
| 78) | | | |
+-------+------------------------------------+----------+------+
| 'O' ( | |1101010 | 6a | [ 7] |
| 79) | | | |
+-------+------------------------------------+----------+------+
| 'P' ( | |1101011 | 6b | [ 7] |
| 80) | | | |
+-------+------------------------------------+----------+------+
| 'Q' ( | |1101100 | 6c | [ 7] |
| 81) | | | |
+-------+------------------------------------+----------+------+
| 'R' ( | |1101101 | 6d | [ 7] |
| 82) | | | |
+-------+------------------------------------+----------+------+
| 'S' ( | |1101110 | 6e | [ 7] |
| 83) | | | |
+-------+------------------------------------+----------+------+
| 'T' ( | |1101111 | 6f | [ 7] |
| 84) | | | |
+-------+------------------------------------+----------+------+
| 'U' ( | |1110000 | 70 | [ 7] |
| 85) | | | |
+-------+------------------------------------+----------+------+
| 'V' ( | |1110001 | 71 | [ 7] |
| 86) | | | |
+-------+------------------------------------+----------+------+
| 'W' ( | |1110010 | 72 | [ 7] |
| 87) | | | |
+-------+------------------------------------+----------+------+
| 'X' ( | |11111100 | fc | [ 8] |
| 88) | | | |
+-------+------------------------------------+----------+------+
| 'Y' ( | |1110011 | 73 | [ 7] |
| 89) | | | |
+-------+------------------------------------+----------+------+
| 'Z' ( | |11111101 | fd | [ 8] |
| 90) | | | |
+-------+------------------------------------+----------+------+
| '[' ( | |11111111|11011 | 1ffb | [13] |
| 91) | | | |
+-------+------------------------------------+----------+------+
| '' ( | 11111111|11111110|000 | 7fff0 | 19] |
| 92) | | | |
+-------+------------------------------------+----------+------+
| ']' ( | |11111111|11100 | 1ffc | [13] |
| 93) | | | |
+-------+------------------------------------+----------+------+
| '^' ( | |11111111|111100 | 3ffc | [14] |
| 94) | | | |
+-------+------------------------------------+----------+------+
| '_' ( | |100010 | 22 | [ 6] |
| 95) | | | |
+-------+------------------------------------+----------+------+
| '`' ( | |11111111|1111101 | 7ffd | [15] |
| 96) | | | |
+-------+------------------------------------+----------+------+
| 'a' ( | |00011 | 3 | [ 5] |
| 97) | | | |
+-------+------------------------------------+----------+------+
| 'b' ( | |100011 | 23 | [ 6] |
| 98) | | | |
+-------+------------------------------------+----------+------+
| 'c' ( | |00100 | 4 | [ 5] |
| 99) | | | |
+-------+------------------------------------+----------+------+
| 'd' | |100100 | 24 | [ 6] |
| (100) | | | |
+-------+------------------------------------+----------+------+
| 'e' | |00101 | 5 | [ 5] |
| (101) | | | |
+-------+------------------------------------+----------+------+
| 'f' | |100101 | 25 | [ 6] |
| (102) | | | |
+-------+------------------------------------+----------+------+
| 'g' | |100110 | 26 | [ 6] |
| (103) | | | |
+-------+------------------------------------+----------+------+
| 'h' | |100111 | 27 | [ 6] |
| (104) | | | |
+-------+------------------------------------+----------+------+
| 'i' | |00110 | 6 | [ 5] |
| (105) | | | |
+-------+------------------------------------+----------+------+
| 'j' | |1110100 | 74 | [ 7] |
| (106) | | | |
+-------+------------------------------------+----------+------+
| 'k' | |1110101 | 75 | [ 7] |
| (107) | | | |
+-------+------------------------------------+----------+------+
| 'l' | |101000 | 28 | [ 6] |
| (108) | | | |
+-------+------------------------------------+----------+------+
| 'm' | |101001 | 29 | [ 6] |
| (109) | | | |
+-------+------------------------------------+----------+------+
| 'n' | |101010 | 2a | [ 6] |
| (110) | | | |
+-------+------------------------------------+----------+------+
| 'o' | |00111 | 7 | [ 5] |
| (111) | | | |
+-------+------------------------------------+----------+------+
| 'p' | |101011 | 2b | [ 6] |
| (112) | | | |
+-------+------------------------------------+----------+------+
| 'q' | |1110110 | 76 | [ 7] |
| (113) | | | |
+-------+------------------------------------+----------+------+
| 'r' | |101100 | 2c | [ 6] |
| (114) | | | |
+-------+------------------------------------+----------+------+
| 's' | |01000 | 8 | [ 5] |
| (115) | | | |
+-------+------------------------------------+----------+------+
| 't' | |01001 | 9 | [ 5] |
| (116) | | | |
+-------+------------------------------------+----------+------+
| 'u' | |101101 | 2d | [ 6] |
| (117) | | | |
+-------+------------------------------------+----------+------+
| 'v' | |1110111 | 77 | [ 7] |
| (118) | | | |
+-------+------------------------------------+----------+------+
| 'w' | |1111000 | 78 | [ 7] |
| (119) | | | |
+-------+------------------------------------+----------+------+
| 'x' | |1111001 | 79 | [ 7] |
| (120) | | | |
+-------+------------------------------------+----------+------+
| 'y' | |1111010 | 7a | [ 7] |
| (121) | | | |
+-------+------------------------------------+----------+------+
| 'z' | |1111011 | 7b | [ 7] |
| (122) | | | |
+-------+------------------------------------+----------+------+
| '{' | |11111111|1111110 | 7ffe | [15] |
| (123) | | | |
+-------+------------------------------------+----------+------+
| '|' | |11111111|100 | 7fc | [11] |
| (124) | | | |
+-------+------------------------------------+----------+------+
| '}' | |11111111|111101 | 3ffd | [14] |
| (125) | | | |
+-------+------------------------------------+----------+------+
| '~' | |11111111|11101 | 1ffd | [13] |
| (126) | | | |
+-------+------------------------------------+----------+------+
| (127) | |11111111|11111111|11111111|1100 | ffffffc | [28] |
+-------+------------------------------------+----------+------+
| (128) | |11111111|11111110|0110 | fffe6 | [20] |
+-------+------------------------------------+----------+------+
| (129) | |11111111|11111111|010010 | 3fffd2 | [22] |
+-------+------------------------------------+----------+------+
| (130) | |11111111|11111110|0111 | fffe7 | [20] |
+-------+------------------------------------+----------+------+
| (131) | |11111111|11111110|1000 | fffe8 | [20] |
+-------+------------------------------------+----------+------+
| (132) | |11111111|11111111|010011 | 3fffd3 | [22] |
+-------+------------------------------------+----------+------+
| (133) | |11111111|11111111|010100 | 3fffd4 | [22] |
+-------+------------------------------------+----------+------+
| (134) | |11111111|11111111|010101 | 3fffd5 | [22] |
+-------+------------------------------------+----------+------+
| (135) | |11111111|11111111|1011001 | 7fffd9 | [23] |
+-------+------------------------------------+----------+------+
| (136) | |11111111|11111111|010110 | 3fffd6 | [22] |
+-------+------------------------------------+----------+------+
| (137) | |11111111|11111111|1011010 | 7fffda | [23] |
+-------+------------------------------------+----------+------+
| (138) | |11111111|11111111|1011011 | 7fffdb | [23] |
+-------+------------------------------------+----------+------+
| (139) | |11111111|11111111|1011100 | 7fffdc | [23] |
+-------+------------------------------------+----------+------+
| (140) | |11111111|11111111|1011101 | 7fffdd | [23] |
+-------+------------------------------------+----------+------+
| (141) | |11111111|11111111|1011110 | 7fffde | [23] |
+-------+------------------------------------+----------+------+
| (142) | |11111111|11111111|11101011 | ffffeb | [24] |
+-------+------------------------------------+----------+------+
| (143) | |11111111|11111111|1011111 | 7fffdf | [23] |
+-------+------------------------------------+----------+------+
| (144) | |11111111|11111111|11101100 | ffffec | [24] |
+-------+------------------------------------+----------+------+
| (145) | |11111111|11111111|11101101 | ffffed | [24] |
+-------+------------------------------------+----------+------+
| (146) | |11111111|11111111|010111 | 3fffd7 | [22] |
+-------+------------------------------------+----------+------+
| (147) | |11111111|11111111|1100000 | 7fffe0 | [23] |
+-------+------------------------------------+----------+------+
| (148) | |11111111|11111111|11101110 | ffffee | [24] |
+-------+------------------------------------+----------+------+
| (149) | |11111111|11111111|1100001 | 7fffe1 | [23] |
+-------+------------------------------------+----------+------+
| (150) | |11111111|11111111|1100010 | 7fffe2 | [23] |
+-------+------------------------------------+----------+------+
| (151) | |11111111|11111111|1100011 | 7fffe3 | [23] |
+-------+------------------------------------+----------+------+
| (152) | |11111111|11111111|1100100 | 7fffe4 | [23] |
+-------+------------------------------------+----------+------+
| (153) | |11111111|11111110|11100 | 1fffdc | [21] |
+-------+------------------------------------+----------+------+
| (154) | |11111111|11111111|011000 | 3fffd8 | [22] |
+-------+------------------------------------+----------+------+
| (155) | |11111111|11111111|1100101 | 7fffe5 | [23] |
+-------+------------------------------------+----------+------+
| (156) | |11111111|11111111|011001 | 3fffd9 | [22] |
+-------+------------------------------------+----------+------+
| (157) | |11111111|11111111|1100110 | 7fffe6 | [23] |
+-------+------------------------------------+----------+------+
| (158) | |11111111|11111111|1100111 | 7fffe7 | [23] |
+-------+------------------------------------+----------+------+
| (159) | |11111111|11111111|11101111 | ffffef | [24] |
+-------+------------------------------------+----------+------+
| (160) | |11111111|11111111|011010 | 3fffda | [22] |
+-------+------------------------------------+----------+------+
| (161) | |11111111|11111110|11101 | 1fffdd | [21] |
+-------+------------------------------------+----------+------+
| (162) | |11111111|11111110|1001 | fffe9 | [20] |
+-------+------------------------------------+----------+------+
| (163) | |11111111|11111111|011011 | 3fffdb | [22] |
+-------+------------------------------------+----------+------+
| (164) | |11111111|11111111|011100 | 3fffdc | [22] |
+-------+------------------------------------+----------+------+
| (165) | |11111111|11111111|1101000 | 7fffe8 | [23] |
+-------+------------------------------------+----------+------+
| (166) | |11111111|11111111|1101001 | 7fffe9 | [23] |
+-------+------------------------------------+----------+------+
| (167) | |11111111|11111110|11110 | 1fffde | [21] |
+-------+------------------------------------+----------+------+
| (168) | |11111111|11111111|1101010 | 7fffea | [23] |
+-------+------------------------------------+----------+------+
| (169) | |11111111|11111111|011101 | 3fffdd | [22] |
+-------+------------------------------------+----------+------+
| (170) | |11111111|11111111|011110 | 3fffde | [22] |
+-------+------------------------------------+----------+------+
| (171) | |11111111|11111111|11110000 | fffff0 | [24] |
+-------+------------------------------------+----------+------+
| (172) | |11111111|11111110|11111 | 1fffdf | [21] |
+-------+------------------------------------+----------+------+
| (173) | |11111111|11111111|011111 | 3fffdf | [22] |
+-------+------------------------------------+----------+------+
| (174) | |11111111|11111111|1101011 | 7fffeb | [23] |
+-------+------------------------------------+----------+------+
| (175) | |11111111|11111111|1101100 | 7fffec | [23] |
+-------+------------------------------------+----------+------+
| (176) | |11111111|11111111|00000 | 1fffe0 | [21] |
+-------+------------------------------------+----------+------+
| (177) | |11111111|11111111|00001 | 1fffe1 | [21] |
+-------+------------------------------------+----------+------+
| (178) | |11111111|11111111|100000 | 3fffe0 | [22] |
+-------+------------------------------------+----------+------+
| (179) | |11111111|11111111|00010 | 1fffe2 | [21] |
+-------+------------------------------------+----------+------+
| (180) | |11111111|11111111|1101101 | 7fffed | [23] |
+-------+------------------------------------+----------+------+
| (181) | |11111111|11111111|100001 | 3fffe1 | [22] |
+-------+------------------------------------+----------+------+
| (182) | |11111111|11111111|1101110 | 7fffee | [23] |
+-------+------------------------------------+----------+------+
| (183) | |11111111|11111111|1101111 | 7fffef | [23] |
+-------+------------------------------------+----------+------+
| (184) | |11111111|11111110|1010 | fffea | [20] |
+-------+------------------------------------+----------+------+
| (185) | |11111111|11111111|100010 | 3fffe2 | [22] |
+-------+------------------------------------+----------+------+
| (186) | |11111111|11111111|100011 | 3fffe3 | [22] |
+-------+------------------------------------+----------+------+
| (187) | |11111111|11111111|100100 | 3fffe4 | [22] |
+-------+------------------------------------+----------+------+
| (188) | |11111111|11111111|1110000 | 7ffff0 | [23] |
+-------+------------------------------------+----------+------+
| (189) | |11111111|11111111|100101 | 3fffe5 | [22] |
+-------+------------------------------------+----------+------+
| (190) | |11111111|11111111|100110 | 3fffe6 | [22] |
+-------+------------------------------------+----------+------+
| (191) | |11111111|11111111|1110001 | 7ffff1 | [23] |
+-------+------------------------------------+----------+------+
| (192) | |11111111|11111111|11111000|00 | 3ffffe0 | [26] |
+-------+------------------------------------+----------+------+
| (193) | |11111111|11111111|11111000|01 | 3ffffe1 | [26] |
+-------+------------------------------------+----------+------+
| (194) | |11111111|11111110|1011 | fffeb | [20] |
+-------+------------------------------------+----------+------+
| (195) | |11111111|11111110|001 | 7fff1 | [19] |
+-------+------------------------------------+----------+------+
| (196) | |11111111|11111111|100111 | 3fffe7 | [22] |
+-------+------------------------------------+----------+------+
| (197) | |11111111|11111111|1110010 | 7ffff2 | [23] |
+-------+------------------------------------+----------+------+
| (198) | |11111111|11111111|101000 | 3fffe8 | [22] |
+-------+------------------------------------+----------+------+
| (199) | |11111111|11111111|11110110|0 | 1ffffec | [25] |
+-------+------------------------------------+----------+------+
| (200) | |11111111|11111111|11111000|10 | 3ffffe2 | [26] |
+-------+------------------------------------+----------+------+
| (201) | |11111111|11111111|11111000|11 | 3ffffe3 | [26] |
+-------+------------------------------------+----------+------+
| (202) | |11111111|11111111|11111001|00 | 3ffffe4 | [26] |
+-------+------------------------------------+----------+------+
| (203) | |11111111|11111111|11111011|110 | 7ffffde | [27] |
+-------+------------------------------------+----------+------+
| (204) | |11111111|11111111|11111011|111 | 7ffffdf | [27] |
+-------+------------------------------------+----------+------+
| (205) | |11111111|11111111|11111001|01 | 3ffffe5 | [26] |
+-------+------------------------------------+----------+------+
| (206) | |11111111|11111111|11110001 | fffff1 | [24] |
+-------+------------------------------------+----------+------+
| (207) | |11111111|11111111|11110110|1 | 1ffffed | [25] |
+-------+------------------------------------+----------+------+
| (208) | |11111111|11111110|010 | 7fff2 | [19] |
+-------+------------------------------------+----------+------+
| (209) | |11111111|11111111|00011 | 1fffe3 | [21] |
+-------+------------------------------------+----------+------+
| (210) | |11111111|11111111|11111001|10 | 3ffffe6 | [26] |
+-------+------------------------------------+----------+------+
| (211) | |11111111|11111111|11111100|000 | 7ffffe0 | [27] |
+-------+------------------------------------+----------+------+
| (212) | |11111111|11111111|11111100|001 | 7ffffe1 | [27] |
+-------+------------------------------------+----------+------+
| (213) | |11111111|11111111|11111001|11 | 3ffffe7 | [26] |
+-------+------------------------------------+----------+------+
| (214) | |11111111|11111111|11111100|010 | 7ffffe2 | [27] |
+-------+------------------------------------+----------+------+
| (215) | |11111111|11111111|11110010 | fffff2 | [24] |
+-------+------------------------------------+----------+------+
| (216) | |11111111|11111111|00100 | 1fffe4 | [21] |
+-------+------------------------------------+----------+------+
| (217) | |11111111|11111111|00101 | 1fffe5 | [21] |
+-------+------------------------------------+----------+------+
| (218) | |11111111|11111111|11111010|00 | 3ffffe8 | [26] |
+-------+------------------------------------+----------+------+
| (219) | |11111111|11111111|11111010|01 | 3ffffe9 | [26] |
+-------+------------------------------------+----------+------+
| (220) | |11111111|11111111|11111111|1101 | ffffffd | [28] |
+-------+------------------------------------+----------+------+
| (221) | |11111111|11111111|11111100|011 | 7ffffe3 | [27] |
+-------+------------------------------------+----------+------+
| (222) | |11111111|11111111|11111100|100 | 7ffffe4 | [27] |
+-------+------------------------------------+----------+------+
| (223) | |11111111|11111111|11111100|101 | 7ffffe5 | [27] |
+-------+------------------------------------+----------+------+
| (224) | |11111111|11111110|1100 | fffec | [20] |
+-------+------------------------------------+----------+------+
| (225) | |11111111|11111111|11110011 | fffff3 | [24] |
+-------+------------------------------------+----------+------+
| (226) | |11111111|11111110|1101 | fffed | [20] |
+-------+------------------------------------+----------+------+
| (227) | |11111111|11111111|00110 | 1fffe6 | [21] |
+-------+------------------------------------+----------+------+
| (228) | |11111111|11111111|101001 | 3fffe9 | [22] |
+-------+------------------------------------+----------+------+
| (229) | |11111111|11111111|00111 | 1fffe7 | [21] |
+-------+------------------------------------+----------+------+
| (230) | |11111111|11111111|01000 | 1fffe8 | [21] |
+-------+------------------------------------+----------+------+
| (231) | |11111111|11111111|1110011 | 7ffff3 | [23] |
+-------+------------------------------------+----------+------+
| (232) | |11111111|11111111|101010 | 3fffea | [22] |
+-------+------------------------------------+----------+------+
| (233) | |11111111|11111111|101011 | 3fffeb | [22] |
+-------+------------------------------------+----------+------+
| (234) | |11111111|11111111|11110111|0 | 1ffffee | [25] |
+-------+------------------------------------+----------+------+
| (235) | |11111111|11111111|11110111|1 | 1ffffef | [25] |
+-------+------------------------------------+----------+------+
| (236) | |11111111|11111111|11110100 | fffff4 | [24] |
+-------+------------------------------------+----------+------+
| (237) | |11111111|11111111|11110101 | fffff5 | [24] |
+-------+------------------------------------+----------+------+
| (238) | |11111111|11111111|11111010|10 | 3ffffea | [26] |
+-------+------------------------------------+----------+------+
| (239) | |11111111|11111111|1110100 | 7ffff4 | [23] |
+-------+------------------------------------+----------+------+
| (240) | |11111111|11111111|11111010|11 | 3ffffeb | [26] |
+-------+------------------------------------+----------+------+
| (241) | |11111111|11111111|11111100|110 | 7ffffe6 | [27] |
+-------+------------------------------------+----------+------+
| (242) | |11111111|11111111|11111011|00 | 3ffffec | [26] |
+-------+------------------------------------+----------+------+
| (243) | |11111111|11111111|11111011|01 | 3ffffed | [26] |
+-------+------------------------------------+----------+------+
| (244) | |11111111|11111111|11111100|111 | 7ffffe7 | [27] |
+-------+------------------------------------+----------+------+
| (245) | |11111111|11111111|11111101|000 | 7ffffe8 | [27] |
+-------+------------------------------------+----------+------+
| (246) | |11111111|11111111|11111101|001 | 7ffffe9 | [27] |
+-------+------------------------------------+----------+------+
| (247) | |11111111|11111111|11111101|010 | 7ffffea | [27] |
+-------+------------------------------------+----------+------+
| (248) | |11111111|11111111|11111101|011 | 7ffffeb | [27] |
+-------+------------------------------------+----------+------+
| (249) | |11111111|11111111|11111111|1110 | ffffffe | [28] |
+-------+------------------------------------+----------+------+
| (250) | |11111111|11111111|11111101|100 | 7ffffec | [27] |
+-------+------------------------------------+----------+------+
| (251) | |11111111|11111111|11111101|101 | 7ffffed | [27] |
+-------+------------------------------------+----------+------+
| (252) | |11111111|11111111|11111101|110 | 7ffffee | [27] |
+-------+------------------------------------+----------+------+
| (253) | |11111111|11111111|11111101|111 | 7ffffef | [27] |
+-------+------------------------------------+----------+------+
| (254) | |11111111|11111111|11111110|000 | 7fffff0 | [27] |
+-------+------------------------------------+----------+------+
| (255) | |11111111|11111111|11111011|10 | 3ffffee | [26] |
+-------+------------------------------------+----------+------+
| EOS | |11111111|11111111|11111111|111111 | 3fffffff | [30] |
| (256) | | | |
+=======+====================================+==========+======+
| sym | code as bits | code | len |
| | aligned to MSB | as hex | in |
| | | aligned | bits |
| | | to LSB | |
+=======+====================================+==========+======+
Table 10
11. Section References
11.1. By Section Number
"of": See Section 1 of [RFC7991].
"comma": See [RFC7991], Section 2.2.
"parens": See [RFC7991] (Appendix A).
"bare": See B.
(default): See Section 1 of [RFC7991].
With text content: See Section 2 of the wonderful Section 2 of RFC
7991 [RFC7991].
11.2. By Relative URI
"of": See Section 1 of [SVG11].
"comma": See [SVG11], Section 1.
"parens": See [SVG11] (Section 1).
"bare": See 1.
(default): See Section 1 of [SVG11].
11.3. To "References"
See Section 12, where the title is "Some References".
See references below (Section 12).
We might also link to references below without perturbing text.
11.4. To Unnumbered Section
See Appendix "Contributors", where the title is "Contributors".
See contributors below (Appendix "Contributors").
We might also link to contributors without perturbing text.
12. Some References
[0REFTEST] Reschke, J., "Reference Test", additional prose goes
_here_, November 2014. Due to a <displayreference>
element, this should be listed as "[0REFTEST]".
[BCP45] Best Current Practice 45,
<https://www.rfc-editor.org/info/bcp45>.
At the time of writing, this BCP comprises the following:
Eggert, L. and S. Harris, "IETF Discussion List Charter",
BCP 45, RFC 9245, DOI 10.17487/RFC9245, June 2022,
<https://www.rfc-editor.org/info/rfc9245>.
[DUP] Reschke, J., "Reference Duplicate Test", July 2016.
[DUP] Reschke, J., "Another Reference Duplicate Test", July
2016. Oops.
[GOST3410] "Information technology. Cryptographic data security.
Signature and verification processes of [electronic]
digital signature.", Gosudarstvennyi Standard of Russian
Federation, Правительственная комиссия России по
стандартам (Government Committee of Russia for Standards),
GOST R 34.10-2001, 2001. (In Russian)
[RFC7991] Hoffman, P., "The "xml2rfc" Version 3 Vocabulary",
RFC 7991, December 2016,
<https://www.rfc-editor.org/rfc/rfc7991>.
[RFC7996] Brownlee, N., "SVG Drawings for RFCs: SVG 1.2 RFC",
RFC 7996, DOI 10.17487/RFC7996, December 2016,
<https://www.rfc-editor.org/info/rfc7996>.
[STD78] Internet Standard 78,
<https://www.rfc-editor.org/info/std78>.
At the time of writing, this STD comprises the following:
Schoenwaelder, J., "Simple Network Management Protocol
(SNMP) Context EngineID Discovery", STD 78, RFC 5343,
DOI 10.17487/RFC5343, September 2008,
<https://www.rfc-editor.org/info/rfc5343>.
Harrington, D. and J. Schoenwaelder, "Transport Subsystem
for the Simple Network Management Protocol (SNMP)",
STD 78, RFC 5590, DOI 10.17487/RFC5590, June 2009,
<https://www.rfc-editor.org/info/rfc5590>.
Harrington, D. and W. Hardaker, "Transport Security Model
for the Simple Network Management Protocol (SNMP)",
STD 78, RFC 5591, DOI 10.17487/RFC5591, June 2009,
<https://www.rfc-editor.org/info/rfc5591>.
Hardaker, W., "Transport Layer Security (TLS) Transport
Model for the Simple Network Management Protocol (SNMP)",
STD 78, RFC 6353, DOI 10.17487/RFC6353, July 2011,
<https://www.rfc-editor.org/info/rfc6353>.
[STPETER] ᏚᎢᎵᎬᎢᎬᏒ Inc. (STPETER Inc.), "ᏚᎢᎵᎬᎢᎬᏒ's document". A
document where the author element specifies just an
organization, and both title and organization name have an
ASCII equivalent.
[SVG11] Ferraiolo, J., 藤沢, 淳 (Fujisawa, J.), and D. Jackson,
"Scalable Vector Graphics (SVG) 1.1 Specification", W3C
Recommendation REC-SVG11-20030114, January 14, 2003,
<http://www.w3.org/TR/2003/REC-SVG11-20030114/>. Latest
version available at http://www.w3.org/TR/SVG11/.
[UNQUOTED] Reschke, J., Reference Test, March 2015. (The title above
should not be quoted)
[XML] Bray, T., Paoli, J., Sperberg-McQueen, C., Maler, E., and
F. Yergeau, "Extensible Markup Language (XML) 1.0 (Fifth
Edition)", W3C Recommendation REC-xml-20081126, November
26, 2008, <http://www.w3.org/TR/2008/REC-xml-20081126/>.
Latest version available at http://www.w3.org/TR/xml.
Appendix A. Change Log
This section is to be removed before publishing as an RFC.
Foo bar.
Appendix B. Another Change Log only containing Subsections
This section is to be removed before publishing as an RFC.
B.1. Test
Foo
Appendix C. Test removeInRFC duplication
This section is to be removed before publishing as an RFC.
The above note should NOT appear twice.
Appendix D. Test removeInRFC duplication again
This section is to be removed before publishing as an RFC.
Since it is not the first paragraph in the source XML,
This section is to be removed before publishing as an RFC.
should appear twice this time.
Appendix E. Test removeInRFC without name
This section is to be removed before publishing as an RFC.
E.1. section as first child
The warning should still appear.
Contributors
Foo bar.
Index
$ % [ \ B M R T
$
$Dollar item Appendix A, Paragraph 3
%
% Appendix A, Paragraph 3
[
[Bracket item Appendix A, Paragraph 3
\
\Backslash item Appendix A, Paragraph 3
B
Bare Table Table 1
M
Markup in titles Section 2
R
Reference renaming Section 3
T
Text Styles Section 1
Authors' Addresses
Julian Reschke (editor)
line 1
line 2
line 3
Pythagoras of Samos
Geometry Labs
831 03 Pythagoreio
Greece
Additional contact information:
Πυθαγόρας ὁ Σάμιος
Εργαστήριο γεωμετρία
831 03 Πυθαγόρειο
Ελλάδα
Armin Bergström
|