# Doxyfile 1.5.7.1 # # Template for Doxyfile. # @configure_input@ # # Copyright (C) 2006 Nokia Corporation # Contact: Pekka Pessi # Licensed under LGPL. See file COPYING. # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project # # All text after a hash (#) is considered a comment and will be ignored # The format is: # TAG = value [value, ...] # For lists items can also be appended using: # TAG += value [value, ...] # Values that contain spaces should be placed between quotes (" ") #--------------------------------------------------------------------------- # Project related configuration options #--------------------------------------------------------------------------- # This tag specifies the encoding used for all characters in the config file # that follow. The default is UTF-8 which is also the encoding used for all # text before the first occurrence of this tag. Doxygen uses libiconv (or the # iconv built into libc) for the transcoding. See # http://www.gnu.org/software/libiconv for the list of possible encodings. DOXYFILE_ENCODING = UTF-8 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded # by quotes) that should identify the project. PROJECT_NAME = "sofia-sip-utils" # The PROJECT_NUMBER tag can be used to enter a project or revision number. # This could be handy for archiving the generated documentation or # if some version control system is used. PROJECT_NUMBER = @VERSION@ # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. # If a relative path is entered, it will be relative to the location # where doxygen was started. If left blank the current directory will be used. OUTPUT_DIRECTORY = ../man # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create # 4096 sub-directories (in 2 levels) under the output directory of each output # format and will distribute the generated files over these directories. # Enabling this option can be useful when feeding doxygen a huge amount of # source files, where putting all generated files in the same directory would # otherwise cause performance problems for the file system. CREATE_SUBDIRS = NO # The OUTPUT_LANGUAGE tag is used to specify the language in which all # documentation generated by doxygen is written. Doxygen will use this # information to generate all constant output in the proper language. # The default language is English, other supported languages are: # Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, # Croatian, Czech, Danish, Dutch, Farsi, Finnish, French, German, Greek, # Hungarian, Italian, Japanese, Japanese-en (Japanese with English messages), # Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, Polish, # Portuguese, Romanian, Russian, Serbian, Serbian-Cyrilic, Slovak, Slovene, # Spanish, Swedish, and Ukrainian. OUTPUT_LANGUAGE = English # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will # include brief member descriptions after the members that are listed in # the file and class documentation (similar to JavaDoc). # Set to NO to disable this. BRIEF_MEMBER_DESC = YES # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend # the brief description of a member or function before the detailed description. # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the # brief descriptions will be completely suppressed. REPEAT_BRIEF = YES # This tag implements a quasi-intelligent brief description abbreviator # that is used to form the text in various listings. Each string # in this list, if found as the leading text of the brief description, will be # stripped from the text and the result after processing the whole list, is # used as the annotated text. Otherwise, the brief description is used as-is. # If left blank, the following values are used ("$name" is automatically # replaced with the name of the entity): "The $name class" "The $name widget" # "The $name file" "is" "provides" "specifies" "contains" # "represents" "a" "an" "the" ABBREVIATE_BRIEF = # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then # Doxygen will generate a detailed section even if there is only a brief # description. ALWAYS_DETAILED_SEC = NO # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all # inherited members of a class in the documentation of that class as if those # members were ordinary class members. Constructors, destructors and assignment # operators of the base classes will not be shown. INLINE_INHERITED_MEMB = NO # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full # path before files name in the file list and in the header files. If set # to NO the shortest path that makes the file name unique will be used. FULL_PATH_NAMES = YES # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag # can be used to strip a user-defined part of the path. Stripping is # only done if one of the specified strings matches the left-hand part of # the path. The tag can be used to show relative paths in the file list. # If left blank the directory from which doxygen is run is used as the # path to strip. STRIP_FROM_PATH = # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of # the path mentioned in the documentation of a class, which tells # the reader which header file to include in order to use a class. # If left blank only the name of the header file containing the class # definition is used. Otherwise one should specify the include paths that # are normally passed to the compiler using the -I flag. STRIP_FROM_INC_PATH = # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter # (but less readable) file names. This can be useful is your file systems # doesn't support long names like on DOS, Mac, or CD-ROM. SHORT_NAMES = NO # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen # will interpret the first line (until the first dot) of a JavaDoc-style # comment as the brief description. If set to NO, the JavaDoc # comments will behave just like regular Qt-style comments # (thus requiring an explicit @brief command for a brief description.) JAVADOC_AUTOBRIEF = YES # If the QT_AUTOBRIEF tag is set to YES then Doxygen will # interpret the first line (until the first dot) of a Qt-style # comment as the brief description. If set to NO, the comments # will behave just like regular Qt-style comments (thus requiring # an explicit \brief command for a brief description.) QT_AUTOBRIEF = NO # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen # treat a multi-line C++ special comment block (i.e. a block of //! or /// # comments) as a brief description. This used to be the default behaviour. # The new default is to treat a multi-line C++ comment block as a detailed # description. Set this tag to YES if you prefer the old behaviour instead. MULTILINE_CPP_IS_BRIEF = NO # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented # member inherits the documentation from any documented member that it # re-implements. INHERIT_DOCS = YES # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce # a new page for each member. If set to NO, the documentation of a member will # be part of the file/class/namespace that contains it. SEPARATE_MEMBER_PAGES = NO # The TAB_SIZE tag can be used to set the number of spaces in a tab. # Doxygen uses this value to replace tabs by spaces in code fragments. TAB_SIZE = 8 # This tag can be used to specify a number of aliases that acts # as commands in the documentation. An alias has the form "name=value". # For example adding "sideeffect=\par Side Effects:\n" will allow you to # put the command \sideeffect (or @sideeffect) in the documentation, which # will result in a user-defined paragraph with heading "Side Effects:". # You can put \n's in the value part of an alias to insert newlines. ALIASES = "MODULEPAGE=\mainpage Sofia SIP User Agent Library - " \ "CONTACT=\par Contact:\n" \ "STATUS=\par Status:\n" \ "LICENSE=\par License:\n" \ "SofiaSIP=Sofia SIP" \ "SU=@ref su_index \"SU\"" \ "su=@ref su_index \"su\"" \ "msg=@ref msg_index \"msg\"" \ "sip=@ref sip_index \"sip\"" \ "nua=@ref nua_index \"nua\"" \ "nta=@ref nta_index \"nta\"" \ "soa=@ref soa_index \"soa\"" \ "DEF=\def" \ "TAGS=\par Related Tags:" \ "TAG=\par \n" \ "EVENTS=\par Events:\n" \ "RESPONSES=\par Related Response Codes:\n" \ "CFILE=\internal \file" \ "IFILE=\file" \ "HI=\hideinitializer " \ "HIDE=\hideinitializer " \ "SHOW=\showinitializer " \ "LGPL2=\par Lesser GNU Public License Version 2:\n \ref lgpl2\n \if 0\n" \ "ENDLGPL2=\endif \n" \ "GPL2=\par GNU Public License Version 2:\n \ref gpl2\n \if 0\n" \ "ENDGPL2=\endif \n" \ "ERRORS=\par Errors: " \ "ERROR=\par \n \b " \ "NEW_1_12_2=@since New in 1.12.2" \ "VERSION_1_12_2=1.12.2" \ "NEW_1_12_4=@since New in 1.12.4" \ "VERSION_1_12_4=1.12.4" \ "VERSION_1_12_5=1.12.5" \ "NEW_1_12_5=@since New in 1.12.5" \ "EXP_1_12_5=@since Experimental in 1.12.5, available if --enable-experimental configuration option is given" \ "VERSION_1_12_6=1.12.6" \ "NEW_1_12_6=@since New in 1.12.6" \ "EXP_1_12_6=@since Experimental in 1.12.6, available if --enable-experimental configuration option is given" \ "VERSION_1_12_7=1.12.7" \ "NEW_1_12_7=@since New in 1.12.7" \ "EXP_1_12_7=@since Experimental in 1.12.7, available if --enable-experimental configuration option is given" \ "VERSION_1_12_8=1.12.8" \ "NEW_1_12_8=@since New in 1.12.8" \ "VERSION_1_12_9=1.12.9" \ "NEW_1_12_9=@since New in 1.12.9" \ "RFC700=RFC 700" \ "RFC701=RFC 701" \ "RFC702=RFC 702" \ "RFC703=RFC 703" \ "RFC704=RFC 704" \ "RFC705=RFC 705" \ "RFC706=RFC 706" \ "RFC707=RFC 707" \ "RFC708=RFC 708" \ "RFC709=RFC 709" \ "RFC710=RFC 710" \ "RFC711=RFC 711" \ "RFC712=RFC 712" \ "RFC713=RFC 713" \ "RFC714=RFC 714" \ "RFC715=RFC 715" \ "RFC716=RFC 716" \ "RFC717=RFC 717" \ "RFC718=RFC 718" \ "RFC719=RFC 719" \ "RFC720=RFC 720" \ "RFC721=RFC 721" \ "RFC722=RFC 722" \ "RFC723=RFC 723" \ "RFC724=RFC 724" \ "RFC725=RFC 725" \ "RFC726=RFC 726" \ "RFC727=RFC 727" \ "RFC728=RFC 728" \ "RFC729=RFC 729" \ "RFC730=RFC 730" \ "RFC731=RFC 731" \ "RFC732=RFC 732" \ "RFC733=RFC 733" \ "RFC734=RFC 734" \ "RFC735=RFC 735" \ "RFC736=RFC 736" \ "RFC737=RFC 737" \ "RFC738=RFC 738" \ "RFC739=RFC 739" \ "RFC740=RFC 740" \ "RFC741=RFC 741" \ "RFC742=RFC 742" \ "RFC743=RFC 743" \ "RFC744=RFC 744" \ "RFC745=RFC 745" \ "RFC746=RFC 746" \ "RFC747=RFC 747" \ "RFC748=RFC 748" \ "RFC749=RFC 749" \ "RFC750=RFC 750" \ "RFC751=RFC 751" \ "RFC752=RFC 752" \ "RFC753=RFC 753" \ "RFC754=RFC 754" \ "RFC755=RFC 755" \ "RFC756=RFC 756" \ "RFC757=RFC 757" \ "RFC758=RFC 758" \ "RFC759=RFC 759" \ "RFC760=RFC 760" \ "RFC761=RFC 761" \ "RFC762=RFC 762" \ "RFC763=RFC 763" \ "RFC764=RFC 764" \ "RFC765=RFC 765" \ "RFC766=RFC 766" \ "RFC767=RFC 767" \ "RFC768=RFC 768" \ "RFC769=RFC 769" \ "RFC770=RFC 770" \ "RFC771=RFC 771" \ "RFC772=RFC 772" \ "RFC773=RFC 773" \ "RFC774=RFC 774" \ "RFC775=RFC 775" \ "RFC776=RFC 776" \ "RFC777=RFC 777" \ "RFC778=RFC 778" \ "RFC779=RFC 779" \ "RFC780=RFC 780" \ "RFC781=RFC 781" \ "RFC782=RFC 782" \ "RFC783=RFC 783" \ "RFC784=RFC 784" \ "RFC785=RFC 785" \ "RFC786=RFC 786" \ "RFC787=RFC 787" \ "RFC788=RFC 788" \ "RFC789=RFC 789" \ "RFC790=RFC 790" \ "RFC791=RFC 791" \ "RFC792=RFC 792" \ "RFC793=RFC 793" \ "RFC794=RFC 794" \ "RFC795=RFC 795" \ "RFC796=RFC 796" \ "RFC797=RFC 797" \ "RFC798=RFC 798" \ "RFC799=RFC 799" \ "RFC800=RFC 800" \ "RFC801=RFC 801" \ "RFC802=RFC 802" \ "RFC803=RFC 803" \ "RFC804=RFC 804" \ "RFC805=RFC 805" \ "RFC806=RFC 806" \ "RFC807=RFC 807" \ "RFC808=RFC 808" \ "RFC809=RFC 809" \ "RFC810=RFC 810" \ "RFC811=RFC 811" \ "RFC812=RFC 812" \ "RFC813=RFC 813" \ "RFC814=RFC 814" \ "RFC815=RFC 815" \ "RFC816=RFC 816" \ "RFC817=RFC 817" \ "RFC818=RFC 818" \ "RFC819=RFC 819" \ "RFC820=RFC 820" \ "RFC821=RFC 821" \ "RFC822=RFC 822" \ "RFC823=RFC 823" \ "RFC824=RFC 824" \ "RFC825=RFC 825" \ "RFC826=RFC 826" \ "RFC827=RFC 827" \ "RFC828=RFC 828" \ "RFC829=RFC 829" \ "RFC830=RFC 830" \ "RFC831=RFC 831" \ "RFC832=RFC 832" \ "RFC833=RFC 833" \ "RFC834=RFC 834" \ "RFC835=RFC 835" \ "RFC836=RFC 836" \ "RFC837=RFC 837" \ "RFC838=RFC 838" \ "RFC839=RFC 839" \ "RFC840=RFC 840" \ "RFC841=RFC 841" \ "RFC842=RFC 842" \ "RFC843=RFC 843" \ "RFC844=RFC 844" \ "RFC845=RFC 845" \ "RFC846=RFC 846" \ "RFC847=RFC 847" \ "RFC848=RFC 848" \ "RFC849=RFC 849" \ "RFC850=RFC 850" \ "RFC851=RFC 851" \ "RFC852=RFC 852" \ "RFC853=RFC 853" \ "RFC854=RFC 854" \ "RFC855=RFC 855" \ "RFC856=RFC 856" \ "RFC857=RFC 857" \ "RFC858=RFC 858" \ "RFC859=RFC 859" \ "RFC860=RFC 860" \ "RFC861=RFC 861" \ "RFC862=RFC 862" \ "RFC863=RFC 863" \ "RFC864=RFC 864" \ "RFC865=RFC 865" \ "RFC866=RFC 866" \ "RFC867=RFC 867" \ "RFC868=RFC 868" \ "RFC869=RFC 869" \ "RFC870=RFC 870" \ "RFC871=RFC 871" \ "RFC872=RFC 872" \ "RFC873=RFC 873" \ "RFC874=RFC 874" \ "RFC875=RFC 875" \ "RFC876=RFC 876" \ "RFC877=RFC 877" \ "RFC878=RFC 878" \ "RFC879=RFC 879" \ "RFC880=RFC 880" \ "RFC881=RFC 881" \ "RFC882=RFC 882" \ "RFC883=RFC 883" \ "RFC884=RFC 884" \ "RFC885=RFC 885" \ "RFC886=RFC 886" \ "RFC887=RFC 887" \ "RFC888=RFC 888" \ "RFC889=RFC 889" \ "RFC890=RFC 890" \ "RFC891=RFC 891" \ "RFC892=RFC 892" \ "RFC893=RFC 893" \ "RFC894=RFC 894" \ "RFC895=RFC 895" \ "RFC896=RFC 896" \ "RFC897=RFC 897" \ "RFC898=RFC 898" \ "RFC899=RFC 899" \ "RFC900=RFC 900" \ "RFC901=RFC 901" \ "RFC902=RFC 902" \ "RFC903=RFC 903" \ "RFC904=RFC 904" \ "RFC905=RFC 905" \ "RFC906=RFC 906" \ "RFC907=RFC 907" \ "RFC908=RFC 908" \ "RFC909=RFC 909" \ "RFC910=RFC 910" \ "RFC911=RFC 911" \ "RFC912=RFC 912" \ "RFC913=RFC 913" \ "RFC914=RFC 914" \ "RFC915=RFC 915" \ "RFC916=RFC 916" \ "RFC917=RFC 917" \ "RFC918=RFC 918" \ "RFC919=RFC 919" \ "RFC920=RFC 920" \ "RFC921=RFC 921" \ "RFC922=RFC 922" \ "RFC923=RFC 923" \ "RFC924=RFC 924" \ "RFC925=RFC 925" \ "RFC926=RFC 926" \ "RFC927=RFC 927" \ "RFC928=RFC 928" \ "RFC929=RFC 929" \ "RFC930=RFC 930" \ "RFC931=RFC 931" \ "RFC932=RFC 932" \ "RFC933=RFC 933" \ "RFC934=RFC 934" \ "RFC935=RFC 935" \ "RFC936=RFC 936" \ "RFC937=RFC 937" \ "RFC938=RFC 938" \ "RFC939=RFC 939" \ "RFC940=RFC 940" \ "RFC941=RFC 941" \ "RFC942=RFC 942" \ "RFC943=RFC 943" \ "RFC944=RFC 944" \ "RFC945=RFC 945" \ "RFC946=RFC 946" \ "RFC947=RFC 947" \ "RFC948=RFC 948" \ "RFC949=RFC 949" \ "RFC950=RFC 950" \ "RFC951=RFC 951" \ "RFC952=RFC 952" \ "RFC953=RFC 953" \ "RFC954=RFC 954" \ "RFC955=RFC 955" \ "RFC956=RFC 956" \ "RFC957=RFC 957" \ "RFC958=RFC 958" \ "RFC959=RFC 959" \ "RFC960=RFC 960" \ "RFC961=RFC 961" \ "RFC962=RFC 962" \ "RFC963=RFC 963" \ "RFC964=RFC 964" \ "RFC965=RFC 965" \ "RFC966=RFC 966" \ "RFC967=RFC 967" \ "RFC968=RFC 968" \ "RFC969=RFC 969" \ "RFC970=RFC 970" \ "RFC971=RFC 971" \ "RFC972=RFC 972" \ "RFC973=RFC 973" \ "RFC974=RFC 974" \ "RFC975=RFC 975" \ "RFC976=RFC 976" \ "RFC977=RFC 977" \ "RFC978=RFC 978" \ "RFC979=RFC 979" \ "RFC980=RFC 980" \ "RFC981=RFC 981" \ "RFC982=RFC 982" \ "RFC983=RFC 983" \ "RFC984=RFC 984" \ "RFC985=RFC 985" \ "RFC986=RFC 986" \ "RFC987=RFC 987" \ "RFC988=RFC 988" \ "RFC989=RFC 989" \ "RFC990=RFC 990" \ "RFC991=RFC 991" \ "RFC992=RFC 992" \ "RFC993=RFC 993" \ "RFC994=RFC 994" \ "RFC995=RFC 995" \ "RFC996=RFC 996" \ "RFC997=RFC 997" \ "RFC998=RFC 998" \ "RFC999=RFC 999" \ "RFC1000=RFC 1000" \ "RFC1001=RFC 1001" \ "RFC1002=RFC 1002" \ "RFC1003=RFC 1003" \ "RFC1004=RFC 1004" \ "RFC1005=RFC 1005" \ "RFC1006=RFC 1006" \ "RFC1007=RFC 1007" \ "RFC1008=RFC 1008" \ "RFC1009=RFC 1009" \ "RFC1010=RFC 1010" \ "RFC1011=RFC 1011" \ "RFC1012=RFC 1012" \ "RFC1013=RFC 1013" \ "RFC1014=RFC 1014" \ "RFC1015=RFC 1015" \ "RFC1016=RFC 1016" \ "RFC1017=RFC 1017" \ "RFC1018=RFC 1018" \ "RFC1019=RFC 1019" \ "RFC1020=RFC 1020" \ "RFC1021=RFC 1021" \ "RFC1022=RFC 1022" \ "RFC1023=RFC 1023" \ "RFC1024=RFC 1024" \ "RFC1025=RFC 1025" \ "RFC1026=RFC 1026" \ "RFC1027=RFC 1027" \ "RFC1028=RFC 1028" \ "RFC1029=RFC 1029" \ "RFC1030=RFC 1030" \ "RFC1031=RFC 1031" \ "RFC1032=RFC 1032" \ "RFC1033=RFC 1033" \ "RFC1034=RFC 1034" \ "RFC1035=RFC 1035" \ "RFC1036=RFC 1036" \ "RFC1037=RFC 1037" \ "RFC1038=RFC 1038" \ "RFC1039=RFC 1039" \ "RFC1040=RFC 1040" \ "RFC1041=RFC 1041" \ "RFC1042=RFC 1042" \ "RFC1043=RFC 1043" \ "RFC1044=RFC 1044" \ "RFC1045=RFC 1045" \ "RFC1046=RFC 1046" \ "RFC1047=RFC 1047" \ "RFC1048=RFC 1048" \ "RFC1049=RFC 1049" \ "RFC1050=RFC 1050" \ "RFC1051=RFC 1051" \ "RFC1052=RFC 1052" \ "RFC1053=RFC 1053" \ "RFC1054=RFC 1054" \ "RFC1055=RFC 1055" \ "RFC1056=RFC 1056" \ "RFC1057=RFC 1057" \ "RFC1058=RFC 1058" \ "RFC1059=RFC 1059" \ "RFC1060=RFC 1060" \ "RFC1061=RFC 1061" \ "RFC1062=RFC 1062" \ "RFC1063=RFC 1063" \ "RFC1064=RFC 1064" \ "RFC1065=RFC 1065" \ "RFC1066=RFC 1066" \ "RFC1067=RFC 1067" \ "RFC1068=RFC 1068" \ "RFC1069=RFC 1069" \ "RFC1070=RFC 1070" \ "RFC1071=RFC 1071" \ "RFC1072=RFC 1072" \ "RFC1073=RFC 1073" \ "RFC1074=RFC 1074" \ "RFC1075=RFC 1075" \ "RFC1076=RFC 1076" \ "RFC1077=RFC 1077" \ "RFC1078=RFC 1078" \ "RFC1079=RFC 1079" \ "RFC1080=RFC 1080" \ "RFC1081=RFC 1081" \ "RFC1082=RFC 1082" \ "RFC1083=RFC 1083" \ "RFC1084=RFC 1084" \ "RFC1085=RFC 1085" \ "RFC1086=RFC 1086" \ "RFC1087=RFC 1087" \ "RFC1088=RFC 1088" \ "RFC1089=RFC 1089" \ "RFC1090=RFC 1090" \ "RFC1091=RFC 1091" \ "RFC1092=RFC 1092" \ "RFC1093=RFC 1093" \ "RFC1094=RFC 1094" \ "RFC1095=RFC 1095" \ "RFC1096=RFC 1096" \ "RFC1097=RFC 1097" \ "RFC1098=RFC 1098" \ "RFC1099=RFC 1099" \ "RFC1100=RFC 1100" \ "RFC1101=RFC 1101" \ "RFC1102=RFC 1102" \ "RFC1103=RFC 1103" \ "RFC1104=RFC 1104" \ "RFC1105=RFC 1105" \ "RFC1106=RFC 1106" \ "RFC1107=RFC 1107" \ "RFC1108=RFC 1108" \ "RFC1109=RFC 1109" \ "RFC1110=RFC 1110" \ "RFC1111=RFC 1111" \ "RFC1112=RFC 1112" \ "RFC1113=RFC 1113" \ "RFC1114=RFC 1114" \ "RFC1115=RFC 1115" \ "RFC1116=RFC 1116" \ "RFC1117=RFC 1117" \ "RFC1118=RFC 1118" \ "RFC1119=RFC 1119" \ "RFC1120=RFC 1120" \ "RFC1121=RFC 1121" \ "RFC1122=RFC 1122" \ "RFC1123=RFC 1123" \ "RFC1124=RFC 1124" \ "RFC1125=RFC 1125" \ "RFC1126=RFC 1126" \ "RFC1127=RFC 1127" \ "RFC1128=RFC 1128" \ "RFC1129=RFC 1129" \ "RFC1130=RFC 1130" \ "RFC1131=RFC 1131" \ "RFC1132=RFC 1132" \ "RFC1133=RFC 1133" \ "RFC1134=RFC 1134" \ "RFC1135=RFC 1135" \ "RFC1136=RFC 1136" \ "RFC1137=RFC 1137" \ "RFC1138=RFC 1138" \ "RFC1139=RFC 1139" \ "RFC1140=RFC 1140" \ "RFC1141=RFC 1141" \ "RFC1142=RFC 1142" \ "RFC1143=RFC 1143" \ "RFC1144=RFC 1144" \ "RFC1145=RFC 1145" \ "RFC1146=RFC 1146" \ "RFC1147=RFC 1147" \ "RFC1148=RFC 1148" \ "RFC1149=RFC 1149" \ "RFC1150=RFC 1150" \ "RFC1151=RFC 1151" \ "RFC1152=RFC 1152" \ "RFC1153=RFC 1153" \ "RFC1154=RFC 1154" \ "RFC1155=RFC 1155" \ "RFC1156=RFC 1156" \ "RFC1157=RFC 1157" \ "RFC1158=RFC 1158" \ "RFC1159=RFC 1159" \ "RFC1160=RFC 1160" \ "RFC1161=RFC 1161" \ "RFC1162=RFC 1162" \ "RFC1163=RFC 1163" \ "RFC1164=RFC 1164" \ "RFC1165=RFC 1165" \ "RFC1166=RFC 1166" \ "RFC1167=RFC 1167" \ "RFC1168=RFC 1168" \ "RFC1169=RFC 1169" \ "RFC1170=RFC 1170" \ "RFC1171=RFC 1171" \ "RFC1172=RFC 1172" \ "RFC1173=RFC 1173" \ "RFC1174=RFC 1174" \ "RFC1175=RFC 1175" \ "RFC1176=RFC 1176" \ "RFC1177=RFC 1177" \ "RFC1178=RFC 1178" \ "RFC1179=RFC 1179" \ "RFC1180=RFC 1180" \ "RFC1181=RFC 1181" \ "RFC1182=RFC 1182" \ "RFC1183=RFC 1183" \ "RFC1184=RFC 1184" \ "RFC1185=RFC 1185" \ "RFC1186=RFC 1186" \ "RFC1187=RFC 1187" \ "RFC1188=RFC 1188" \ "RFC1189=RFC 1189" \ "RFC1190=RFC 1190" \ "RFC1191=RFC 1191" \ "RFC1192=RFC 1192" \ "RFC1193=RFC 1193" \ "RFC1194=RFC 1194" \ "RFC1195=RFC 1195" \ "RFC1196=RFC 1196" \ "RFC1197=RFC 1197" \ "RFC1198=RFC 1198" \ "RFC1199=RFC 1199" \ "RFC1200=RFC 1200" \ "RFC1201=RFC 1201" \ "RFC1202=RFC 1202" \ "RFC1203=RFC 1203" \ "RFC1204=RFC 1204" \ "RFC1205=RFC 1205" \ "RFC1206=RFC 1206" \ "RFC1207=RFC 1207" \ "RFC1208=RFC 1208" \ "RFC1209=RFC 1209" \ "RFC1210=RFC 1210" \ "RFC1211=RFC 1211" \ "RFC1212=RFC 1212" \ "RFC1213=RFC 1213" \ "RFC1214=RFC 1214" \ "RFC1215=RFC 1215" \ "RFC1216=RFC 1216" \ "RFC1217=RFC 1217" \ "RFC1218=RFC 1218" \ "RFC1219=RFC 1219" \ "RFC1220=RFC 1220" \ "RFC1221=RFC 1221" \ "RFC1222=RFC 1222" \ "RFC1223=RFC 1223" \ "RFC1224=RFC 1224" \ "RFC1225=RFC 1225" \ "RFC1226=RFC 1226" \ "RFC1227=RFC 1227" \ "RFC1228=RFC 1228" \ "RFC1229=RFC 1229" \ "RFC1230=RFC 1230" \ "RFC1231=RFC 1231" \ "RFC1232=RFC 1232" \ "RFC1233=RFC 1233" \ "RFC1234=RFC 1234" \ "RFC1235=RFC 1235" \ "RFC1236=RFC 1236" \ "RFC1237=RFC 1237" \ "RFC1238=RFC 1238" \ "RFC1239=RFC 1239" \ "RFC1240=RFC 1240" \ "RFC1241=RFC 1241" \ "RFC1242=RFC 1242" \ "RFC1243=RFC 1243" \ "RFC1244=RFC 1244" \ "RFC1245=RFC 1245" \ "RFC1246=RFC 1246" \ "RFC1247=RFC 1247" \ "RFC1248=RFC 1248" \ "RFC1249=RFC 1249" \ "RFC1250=RFC 1250" \ "RFC1251=RFC 1251" \ "RFC1252=RFC 1252" \ "RFC1253=RFC 1253" \ "RFC1254=RFC 1254" \ "RFC1255=RFC 1255" \ "RFC1256=RFC 1256" \ "RFC1257=RFC 1257" \ "RFC1258=RFC 1258" \ "RFC1259=RFC 1259" \ "RFC1260=RFC 1260" \ "RFC1261=RFC 1261" \ "RFC1262=RFC 1262" \ "RFC1263=RFC 1263" \ "RFC1264=RFC 1264" \ "RFC1265=RFC 1265" \ "RFC1266=RFC 1266" \ "RFC1267=RFC 1267" \ "RFC1268=RFC 1268" \ "RFC1269=RFC 1269" \ "RFC1270=RFC 1270" \ "RFC1271=RFC 1271" \ "RFC1272=RFC 1272" \ "RFC1273=RFC 1273" \ "RFC1274=RFC 1274" \ "RFC1275=RFC 1275" \ "RFC1276=RFC 1276" \ "RFC1277=RFC 1277" \ "RFC1278=RFC 1278" \ "RFC1279=RFC 1279" \ "RFC1280=RFC 1280" \ "RFC1281=RFC 1281" \ "RFC1282=RFC 1282" \ "RFC1283=RFC 1283" \ "RFC1284=RFC 1284" \ "RFC1285=RFC 1285" \ "RFC1286=RFC 1286" \ "RFC1287=RFC 1287" \ "RFC1288=RFC 1288" \ "RFC1289=RFC 1289" \ "RFC1290=RFC 1290" \ "RFC1291=RFC 1291" \ "RFC1292=RFC 1292" \ "RFC1293=RFC 1293" \ "RFC1294=RFC 1294" \ "RFC1295=RFC 1295" \ "RFC1296=RFC 1296" \ "RFC1297=RFC 1297" \ "RFC1298=RFC 1298" \ "RFC1299=RFC 1299" \ "RFC1300=RFC 1300" \ "RFC1301=RFC 1301" \ "RFC1302=RFC 1302" \ "RFC1303=RFC 1303" \ "RFC1304=RFC 1304" \ "RFC1305=RFC 1305" \ "RFC1306=RFC 1306" \ "RFC1307=RFC 1307" \ "RFC1308=RFC 1308" \ "RFC1309=RFC 1309" \ "RFC1310=RFC 1310" \ "RFC1311=RFC 1311" \ "RFC1312=RFC 1312" \ "RFC1313=RFC 1313" \ "RFC1314=RFC 1314" \ "RFC1315=RFC 1315" \ "RFC1316=RFC 1316" \ "RFC1317=RFC 1317" \ "RFC1318=RFC 1318" \ "RFC1319=RFC 1319" \ "RFC1320=RFC 1320" \ "RFC1321=RFC 1321" \ "RFC1322=RFC 1322" \ "RFC1323=RFC 1323" \ "RFC1324=RFC 1324" \ "RFC1325=RFC 1325" \ "RFC1326=RFC 1326" \ "RFC1327=RFC 1327" \ "RFC1328=RFC 1328" \ "RFC1329=RFC 1329" \ "RFC1330=RFC 1330" \ "RFC1331=RFC 1331" \ "RFC1332=RFC 1332" \ "RFC1333=RFC 1333" \ "RFC1334=RFC 1334" \ "RFC1335=RFC 1335" \ "RFC1336=RFC 1336" \ "RFC1337=RFC 1337" \ "RFC1338=RFC 1338" \ "RFC1339=RFC 1339" \ "RFC1340=RFC 1340" \ "RFC1341=RFC 1341" \ "RFC1342=RFC 1342" \ "RFC1343=RFC 1343" \ "RFC1344=RFC 1344" \ "RFC1345=RFC 1345" \ "RFC1346=RFC 1346" \ "RFC1347=RFC 1347" \ "RFC1348=RFC 1348" \ "RFC1349=RFC 1349" \ "RFC1350=RFC 1350" \ "RFC1351=RFC 1351" \ "RFC1352=RFC 1352" \ "RFC1353=RFC 1353" \ "RFC1354=RFC 1354" \ "RFC1355=RFC 1355" \ "RFC1356=RFC 1356" \ "RFC1357=RFC 1357" \ "RFC1358=RFC 1358" \ "RFC1359=RFC 1359" \ "RFC1360=RFC 1360" \ "RFC1361=RFC 1361" \ "RFC1362=RFC 1362" \ "RFC1363=RFC 1363" \ "RFC1364=RFC 1364" \ "RFC1365=RFC 1365" \ "RFC1366=RFC 1366" \ "RFC1367=RFC 1367" \ "RFC1368=RFC 1368" \ "RFC1369=RFC 1369" \ "RFC1370=RFC 1370" \ "RFC1371=RFC 1371" \ "RFC1372=RFC 1372" \ "RFC1373=RFC 1373" \ "RFC1374=RFC 1374" \ "RFC1375=RFC 1375" \ "RFC1376=RFC 1376" \ "RFC1377=RFC 1377" \ "RFC1378=RFC 1378" \ "RFC1379=RFC 1379" \ "RFC1380=RFC 1380" \ "RFC1381=RFC 1381" \ "RFC1382=RFC 1382" \ "RFC1383=RFC 1383" \ "RFC1384=RFC 1384" \ "RFC1385=RFC 1385" \ "RFC1386=RFC 1386" \ "RFC1387=RFC 1387" \ "RFC1388=RFC 1388" \ "RFC1389=RFC 1389" \ "RFC1390=RFC 1390" \ "RFC1391=RFC 1391" \ "RFC1392=RFC 1392" \ "RFC1393=RFC 1393" \ "RFC1394=RFC 1394" \ "RFC1395=RFC 1395" \ "RFC1396=RFC 1396" \ "RFC1397=RFC 1397" \ "RFC1398=RFC 1398" \ "RFC1399=RFC 1399" \ "RFC1400=RFC 1400" \ "RFC1401=RFC 1401" \ "RFC1402=RFC 1402" \ "RFC1403=RFC 1403" \ "RFC1404=RFC 1404" \ "RFC1405=RFC 1405" \ "RFC1406=RFC 1406" \ "RFC1407=RFC 1407" \ "RFC1408=RFC 1408" \ "RFC1409=RFC 1409" \ "RFC1410=RFC 1410" \ "RFC1411=RFC 1411" \ "RFC1412=RFC 1412" \ "RFC1413=RFC 1413" \ "RFC1414=RFC 1414" \ "RFC1415=RFC 1415" \ "RFC1416=RFC 1416" \ "RFC1417=RFC 1417" \ "RFC1418=RFC 1418" \ "RFC1419=RFC 1419" \ "RFC1420=RFC 1420" \ "RFC1421=RFC 1421" \ "RFC1422=RFC 1422" \ "RFC1423=RFC 1423" \ "RFC1424=RFC 1424" \ "RFC1425=RFC 1425" \ "RFC1426=RFC 1426" \ "RFC1427=RFC 1427" \ "RFC1428=RFC 1428" \ "RFC1429=RFC 1429" \ "RFC1430=RFC 1430" \ "RFC1431=RFC 1431" \ "RFC1432=RFC 1432" \ "RFC1433=RFC 1433" \ "RFC1434=RFC 1434" \ "RFC1435=RFC 1435" \ "RFC1436=RFC 1436" \ "RFC1437=RFC 1437" \ "RFC1438=RFC 1438" \ "RFC1439=RFC 1439" \ "RFC1440=RFC 1440" \ "RFC1441=RFC 1441" \ "RFC1442=RFC 1442" \ "RFC1443=RFC 1443" \ "RFC1444=RFC 1444" \ "RFC1445=RFC 1445" \ "RFC1446=RFC 1446" \ "RFC1447=RFC 1447" \ "RFC1448=RFC 1448" \ "RFC1449=RFC 1449" \ "RFC1450=RFC 1450" \ "RFC1451=RFC 1451" \ "RFC1452=RFC 1452" \ "RFC1453=RFC 1453" \ "RFC1454=RFC 1454" \ "RFC1455=RFC 1455" \ "RFC1456=RFC 1456" \ "RFC1457=RFC 1457" \ "RFC1458=RFC 1458" \ "RFC1459=RFC 1459" \ "RFC1460=RFC 1460" \ "RFC1461=RFC 1461" \ "RFC1462=RFC 1462" \ "RFC1463=RFC 1463" \ "RFC1464=RFC 1464" \ "RFC1465=RFC 1465" \ "RFC1466=RFC 1466" \ "RFC1467=RFC 1467" \ "RFC1468=RFC 1468" \ "RFC1469=RFC 1469" \ "RFC1470=RFC 1470" \ "RFC1471=RFC 1471" \ "RFC1472=RFC 1472" \ "RFC1473=RFC 1473" \ "RFC1474=RFC 1474" \ "RFC1475=RFC 1475" \ "RFC1476=RFC 1476" \ "RFC1477=RFC 1477" \ "RFC1478=RFC 1478" \ "RFC1479=RFC 1479" \ "RFC1480=RFC 1480" \ "RFC1481=RFC 1481" \ "RFC1482=RFC 1482" \ "RFC1483=RFC 1483" \ "RFC1484=RFC 1484" \ "RFC1485=RFC 1485" \ "RFC1486=RFC 1486" \ "RFC1487=RFC 1487" \ "RFC1488=RFC 1488" \ "RFC1489=RFC 1489" \ "RFC1490=RFC 1490" \ "RFC1491=RFC 1491" \ "RFC1492=RFC 1492" \ "RFC1493=RFC 1493" \ "RFC1494=RFC 1494" \ "RFC1495=RFC 1495" \ "RFC1496=RFC 1496" \ "RFC1497=RFC 1497" \ "RFC1498=RFC 1498" \ "RFC1499=RFC 1499" \ "RFC1500=RFC 1500" \ "RFC1501=RFC 1501" \ "RFC1502=RFC 1502" \ "RFC1503=RFC 1503" \ "RFC1504=RFC 1504" \ "RFC1505=RFC 1505" \ "RFC1506=RFC 1506" \ "RFC1507=RFC 1507" \ "RFC1508=RFC 1508" \ "RFC1509=RFC 1509" \ "RFC1510=RFC 1510" \ "RFC1511=RFC 1511" \ "RFC1512=RFC 1512" \ "RFC1513=RFC 1513" \ "RFC1514=RFC 1514" \ "RFC1515=RFC 1515" \ "RFC1516=RFC 1516" \ "RFC1517=RFC 1517" \ "RFC1518=RFC 1518" \ "RFC1519=RFC 1519" \ "RFC1520=RFC 1520" \ "RFC1521=RFC 1521" \ "RFC1522=RFC 1522" \ "RFC1523=RFC 1523" \ "RFC1524=RFC 1524" \ "RFC1525=RFC 1525" \ "RFC1526=RFC 1526" \ "RFC1527=RFC 1527" \ "RFC1528=RFC 1528" \ "RFC1529=RFC 1529" \ "RFC1530=RFC 1530" \ "RFC1531=RFC 1531" \ "RFC1532=RFC 1532" \ "RFC1533=RFC 1533" \ "RFC1534=RFC 1534" \ "RFC1535=RFC 1535" \ "RFC1536=RFC 1536" \ "RFC1537=RFC 1537" \ "RFC1538=RFC 1538" \ "RFC1539=RFC 1539" \ "RFC1540=RFC 1540" \ "RFC1541=RFC 1541" \ "RFC1542=RFC 1542" \ "RFC1543=RFC 1543" \ "RFC1544=RFC 1544" \ "RFC1545=RFC 1545" \ "RFC1546=RFC 1546" \ "RFC1547=RFC 1547" \ "RFC1548=RFC 1548" \ "RFC1549=RFC 1549" \ "RFC1550=RFC 1550" \ "RFC1551=RFC 1551" \ "RFC1552=RFC 1552" \ "RFC1553=RFC 1553" \ "RFC1554=RFC 1554" \ "RFC1555=RFC 1555" \ "RFC1556=RFC 1556" \ "RFC1557=RFC 1557" \ "RFC1558=RFC 1558" \ "RFC1559=RFC 1559" \ "RFC1560=RFC 1560" \ "RFC1561=RFC 1561" \ "RFC1562=RFC 1562" \ "RFC1563=RFC 1563" \ "RFC1564=RFC 1564" \ "RFC1565=RFC 1565" \ "RFC1566=RFC 1566" \ "RFC1567=RFC 1567" \ "RFC1568=RFC 1568" \ "RFC1569=RFC 1569" \ "RFC1570=RFC 1570" \ "RFC1571=RFC 1571" \ "RFC1572=RFC 1572" \ "RFC1573=RFC 1573" \ "RFC1574=RFC 1574" \ "RFC1575=RFC 1575" \ "RFC1576=RFC 1576" \ "RFC1577=RFC 1577" \ "RFC1578=RFC 1578" \ "RFC1579=RFC 1579" \ "RFC1580=RFC 1580" \ "RFC1581=RFC 1581" \ "RFC1582=RFC 1582" \ "RFC1583=RFC 1583" \ "RFC1584=RFC 1584" \ "RFC1585=RFC 1585" \ "RFC1586=RFC 1586" \ "RFC1587=RFC 1587" \ "RFC1588=RFC 1588" \ "RFC1589=RFC 1589" \ "RFC1590=RFC 1590" \ "RFC1591=RFC 1591" \ "RFC1592=RFC 1592" \ "RFC1593=RFC 1593" \ "RFC1594=RFC 1594" \ "RFC1595=RFC 1595" \ "RFC1596=RFC 1596" \ "RFC1597=RFC 1597" \ "RFC1598=RFC 1598" \ "RFC1599=RFC 1599" \ "RFC1600=RFC 1600" \ "RFC1601=RFC 1601" \ "RFC1602=RFC 1602" \ "RFC1603=RFC 1603" \ "RFC1604=RFC 1604" \ "RFC1605=RFC 1605" \ "RFC1606=RFC 1606" \ "RFC1607=RFC 1607" \ "RFC1608=RFC 1608" \ "RFC1609=RFC 1609" \ "RFC1610=RFC 1610" \ "RFC1611=RFC 1611" \ "RFC1612=RFC 1612" \ "RFC1613=RFC 1613" \ "RFC1614=RFC 1614" \ "RFC1615=RFC 1615" \ "RFC1616=RFC 1616" \ "RFC1617=RFC 1617" \ "RFC1618=RFC 1618" \ "RFC1619=RFC 1619" \ "RFC1620=RFC 1620" \ "RFC1621=RFC 1621" \ "RFC1622=RFC 1622" \ "RFC1623=RFC 1623" \ "RFC1624=RFC 1624" \ "RFC1625=RFC 1625" \ "RFC1626=RFC 1626" \ "RFC1627=RFC 1627" \ "RFC1628=RFC 1628" \ "RFC1629=RFC 1629" \ "RFC1630=RFC 1630" \ "RFC1631=RFC 1631" \ "RFC1632=RFC 1632" \ "RFC1633=RFC 1633" \ "RFC1634=RFC 1634" \ "RFC1635=RFC 1635" \ "RFC1636=RFC 1636" \ "RFC1637=RFC 1637" \ "RFC1638=RFC 1638" \ "RFC1639=RFC 1639" \ "RFC1640=RFC 1640" \ "RFC1641=RFC 1641" \ "RFC1642=RFC 1642" \ "RFC1643=RFC 1643" \ "RFC1644=RFC 1644" \ "RFC1645=RFC 1645" \ "RFC1646=RFC 1646" \ "RFC1647=RFC 1647" \ "RFC1648=RFC 1648" \ "RFC1649=RFC 1649" \ "RFC1650=RFC 1650" \ "RFC1651=RFC 1651" \ "RFC1652=RFC 1652" \ "RFC1653=RFC 1653" \ "RFC1654=RFC 1654" \ "RFC1655=RFC 1655" \ "RFC1656=RFC 1656" \ "RFC1657=RFC 1657" \ "RFC1658=RFC 1658" \ "RFC1659=RFC 1659" \ "RFC1660=RFC 1660" \ "RFC1661=RFC 1661" \ "RFC1662=RFC 1662" \ "RFC1663=RFC 1663" \ "RFC1664=RFC 1664" \ "RFC1665=RFC 1665" \ "RFC1666=RFC 1666" \ "RFC1667=RFC 1667" \ "RFC1668=RFC 1668" \ "RFC1669=RFC 1669" \ "RFC1670=RFC 1670" \ "RFC1671=RFC 1671" \ "RFC1672=RFC 1672" \ "RFC1673=RFC 1673" \ "RFC1674=RFC 1674" \ "RFC1675=RFC 1675" \ "RFC1676=RFC 1676" \ "RFC1677=RFC 1677" \ "RFC1678=RFC 1678" \ "RFC1679=RFC 1679" \ "RFC1680=RFC 1680" \ "RFC1681=RFC 1681" \ "RFC1682=RFC 1682" \ "RFC1683=RFC 1683" \ "RFC1684=RFC 1684" \ "RFC1685=RFC 1685" \ "RFC1686=RFC 1686" \ "RFC1687=RFC 1687" \ "RFC1688=RFC 1688" \ "RFC1689=RFC 1689" \ "RFC1690=RFC 1690" \ "RFC1691=RFC 1691" \ "RFC1692=RFC 1692" \ "RFC1693=RFC 1693" \ "RFC1694=RFC 1694" \ "RFC1695=RFC 1695" \ "RFC1696=RFC 1696" \ "RFC1697=RFC 1697" \ "RFC1698=RFC 1698" \ "RFC1699=RFC 1699" \ "RFC1700=RFC 1700" \ "RFC1701=RFC 1701" \ "RFC1702=RFC 1702" \ "RFC1703=RFC 1703" \ "RFC1704=RFC 1704" \ "RFC1705=RFC 1705" \ "RFC1706=RFC 1706" \ "RFC1707=RFC 1707" \ "RFC1708=RFC 1708" \ "RFC1709=RFC 1709" \ "RFC1710=RFC 1710" \ "RFC1711=RFC 1711" \ "RFC1712=RFC 1712" \ "RFC1713=RFC 1713" \ "RFC1714=RFC 1714" \ "RFC1715=RFC 1715" \ "RFC1716=RFC 1716" \ "RFC1717=RFC 1717" \ "RFC1718=RFC 1718" \ "RFC1719=RFC 1719" \ "RFC1720=RFC 1720" \ "RFC1721=RFC 1721" \ "RFC1722=RFC 1722" \ "RFC1723=RFC 1723" \ "RFC1724=RFC 1724" \ "RFC1725=RFC 1725" \ "RFC1726=RFC 1726" \ "RFC1727=RFC 1727" \ "RFC1728=RFC 1728" \ "RFC1729=RFC 1729" \ "RFC1730=RFC 1730" \ "RFC1731=RFC 1731" \ "RFC1732=RFC 1732" \ "RFC1733=RFC 1733" \ "RFC1734=RFC 1734" \ "RFC1735=RFC 1735" \ "RFC1736=RFC 1736" \ "RFC1737=RFC 1737" \ "RFC1738=RFC 1738" \ "RFC1739=RFC 1739" \ "RFC1740=RFC 1740" \ "RFC1741=RFC 1741" \ "RFC1742=RFC 1742" \ "RFC1743=RFC 1743" \ "RFC1744=RFC 1744" \ "RFC1745=RFC 1745" \ "RFC1746=RFC 1746" \ "RFC1747=RFC 1747" \ "RFC1748=RFC 1748" \ "RFC1749=RFC 1749" \ "RFC1750=RFC 1750" \ "RFC1751=RFC 1751" \ "RFC1752=RFC 1752" \ "RFC1753=RFC 1753" \ "RFC1754=RFC 1754" \ "RFC1755=RFC 1755" \ "RFC1756=RFC 1756" \ "RFC1757=RFC 1757" \ "RFC1758=RFC 1758" \ "RFC1759=RFC 1759" \ "RFC1760=RFC 1760" \ "RFC1761=RFC 1761" \ "RFC1762=RFC 1762" \ "RFC1763=RFC 1763" \ "RFC1764=RFC 1764" \ "RFC1765=RFC 1765" \ "RFC1766=RFC 1766" \ "RFC1767=RFC 1767" \ "RFC1768=RFC 1768" \ "RFC1769=RFC 1769" \ "RFC1770=RFC 1770" \ "RFC1771=RFC 1771" \ "RFC1772=RFC 1772" \ "RFC1773=RFC 1773" \ "RFC1774=RFC 1774" \ "RFC1775=RFC 1775" \ "RFC1776=RFC 1776" \ "RFC1777=RFC 1777" \ "RFC1778=RFC 1778" \ "RFC1779=RFC 1779" \ "RFC1780=RFC 1780" \ "RFC1781=RFC 1781" \ "RFC1782=RFC 1782" \ "RFC1783=RFC 1783" \ "RFC1784=RFC 1784" \ "RFC1785=RFC 1785" \ "RFC1786=RFC 1786" \ "RFC1787=RFC 1787" \ "RFC1788=RFC 1788" \ "RFC1789=RFC 1789" \ "RFC1790=RFC 1790" \ "RFC1791=RFC 1791" \ "RFC1792=RFC 1792" \ "RFC1793=RFC 1793" \ "RFC1794=RFC 1794" \ "RFC1795=RFC 1795" \ "RFC1796=RFC 1796" \ "RFC1797=RFC 1797" \ "RFC1798=RFC 1798" \ "RFC1799=RFC 1799" \ "RFC1800=RFC 1800" \ "RFC1801=RFC 1801" \ "RFC1802=RFC 1802" \ "RFC1803=RFC 1803" \ "RFC1804=RFC 1804" \ "RFC1805=RFC 1805" \ "RFC1806=RFC 1806" \ "RFC1807=RFC 1807" \ "RFC1808=RFC 1808" \ "RFC1809=RFC 1809" \ "RFC1810=RFC 1810" \ "RFC1811=RFC 1811" \ "RFC1812=RFC 1812" \ "RFC1813=RFC 1813" \ "RFC1814=RFC 1814" \ "RFC1815=RFC 1815" \ "RFC1816=RFC 1816" \ "RFC1817=RFC 1817" \ "RFC1818=RFC 1818" \ "RFC1819=RFC 1819" \ "RFC1820=RFC 1820" \ "RFC1821=RFC 1821" \ "RFC1822=RFC 1822" \ "RFC1823=RFC 1823" \ "RFC1824=RFC 1824" \ "RFC1825=RFC 1825" \ "RFC1826=RFC 1826" \ "RFC1827=RFC 1827" \ "RFC1828=RFC 1828" \ "RFC1829=RFC 1829" \ "RFC1830=RFC 1830" \ "RFC1831=RFC 1831" \ "RFC1832=RFC 1832" \ "RFC1833=RFC 1833" \ "RFC1834=RFC 1834" \ "RFC1835=RFC 1835" \ "RFC1836=RFC 1836" \ "RFC1837=RFC 1837" \ "RFC1838=RFC 1838" \ "RFC1839=RFC 1839" \ "RFC1840=RFC 1840" \ "RFC1841=RFC 1841" \ "RFC1842=RFC 1842" \ "RFC1843=RFC 1843" \ "RFC1844=RFC 1844" \ "RFC1845=RFC 1845" \ "RFC1846=RFC 1846" \ "RFC1847=RFC 1847" \ "RFC1848=RFC 1848" \ "RFC1849=RFC 1849" \ "RFC1850=RFC 1850" \ "RFC1851=RFC 1851" \ "RFC1852=RFC 1852" \ "RFC1853=RFC 1853" \ "RFC1854=RFC 1854" \ "RFC1855=RFC 1855" \ "RFC1856=RFC 1856" \ "RFC1857=RFC 1857" \ "RFC1858=RFC 1858" \ "RFC1859=RFC 1859" \ "RFC1860=RFC 1860" \ "RFC1861=RFC 1861" \ "RFC1862=RFC 1862" \ "RFC1863=RFC 1863" \ "RFC1864=RFC 1864" \ "RFC1865=RFC 1865" \ "RFC1866=RFC 1866" \ "RFC1867=RFC 1867" \ "RFC1868=RFC 1868" \ "RFC1869=RFC 1869" \ "RFC1870=RFC 1870" \ "RFC1871=RFC 1871" \ "RFC1872=RFC 1872" \ "RFC1873=RFC 1873" \ "RFC1874=RFC 1874" \ "RFC1875=RFC 1875" \ "RFC1876=RFC 1876" \ "RFC1877=RFC 1877" \ "RFC1878=RFC 1878" \ "RFC1879=RFC 1879" \ "RFC1880=RFC 1880" \ "RFC1881=RFC 1881" \ "RFC1882=RFC 1882" \ "RFC1883=RFC 1883" \ "RFC1884=RFC 1884" \ "RFC1885=RFC 1885" \ "RFC1886=RFC 1886" \ "RFC1887=RFC 1887" \ "RFC1888=RFC 1888" \ "RFC1889=RFC 1889" \ "RFC1890=RFC 1890" \ "RFC1891=RFC 1891" \ "RFC1892=RFC 1892" \ "RFC1893=RFC 1893" \ "RFC1894=RFC 1894" \ "RFC1895=RFC 1895" \ "RFC1896=RFC 1896" \ "RFC1897=RFC 1897" \ "RFC1898=RFC 1898" \ "RFC1899=RFC 1899" \ "RFC1900=RFC 1900" \ "RFC1901=RFC 1901" \ "RFC1902=RFC 1902" \ "RFC1903=RFC 1903" \ "RFC1904=RFC 1904" \ "RFC1905=RFC 1905" \ "RFC1906=RFC 1906" \ "RFC1907=RFC 1907" \ "RFC1908=RFC 1908" \ "RFC1909=RFC 1909" \ "RFC1910=RFC 1910" \ "RFC1911=RFC 1911" \ "RFC1912=RFC 1912" \ "RFC1913=RFC 1913" \ "RFC1914=RFC 1914" \ "RFC1915=RFC 1915" \ "RFC1916=RFC 1916" \ "RFC1917=RFC 1917" \ "RFC1918=RFC 1918" \ "RFC1919=RFC 1919" \ "RFC1920=RFC 1920" \ "RFC1921=RFC 1921" \ "RFC1922=RFC 1922" \ "RFC1923=RFC 1923" \ "RFC1924=RFC 1924" \ "RFC1925=RFC 1925" \ "RFC1926=RFC 1926" \ "RFC1927=RFC 1927" \ "RFC1928=RFC 1928" \ "RFC1929=RFC 1929" \ "RFC1930=RFC 1930" \ "RFC1931=RFC 1931" \ "RFC1932=RFC 1932" \ "RFC1933=RFC 1933" \ "RFC1934=RFC 1934" \ "RFC1935=RFC 1935" \ "RFC1936=RFC 1936" \ "RFC1937=RFC 1937" \ "RFC1938=RFC 1938" \ "RFC1939=RFC 1939" \ "RFC1940=RFC 1940" \ "RFC1941=RFC 1941" \ "RFC1942=RFC 1942" \ "RFC1943=RFC 1943" \ "RFC1944=RFC 1944" \ "RFC1945=RFC 1945" \ "RFC1946=RFC 1946" \ "RFC1947=RFC 1947" \ "RFC1948=RFC 1948" \ "RFC1949=RFC 1949" \ "RFC1950=RFC 1950" \ "RFC1951=RFC 1951" \ "RFC1952=RFC 1952" \ "RFC1953=RFC 1953" \ "RFC1954=RFC 1954" \ "RFC1955=RFC 1955" \ "RFC1956=RFC 1956" \ "RFC1957=RFC 1957" \ "RFC1958=RFC 1958" \ "RFC1959=RFC 1959" \ "RFC1960=RFC 1960" \ "RFC1961=RFC 1961" \ "RFC1962=RFC 1962" \ "RFC1963=RFC 1963" \ "RFC1964=RFC 1964" \ "RFC1965=RFC 1965" \ "RFC1966=RFC 1966" \ "RFC1967=RFC 1967" \ "RFC1968=RFC 1968" \ "RFC1969=RFC 1969" \ "RFC1970=RFC 1970" \ "RFC1971=RFC 1971" \ "RFC1972=RFC 1972" \ "RFC1973=RFC 1973" \ "RFC1974=RFC 1974" \ "RFC1975=RFC 1975" \ "RFC1976=RFC 1976" \ "RFC1977=RFC 1977" \ "RFC1978=RFC 1978" \ "RFC1979=RFC 1979" \ "RFC1980=RFC 1980" \ "RFC1981=RFC 1981" \ "RFC1982=RFC 1982" \ "RFC1983=RFC 1983" \ "RFC1984=RFC 1984" \ "RFC1985=RFC 1985" \ "RFC1986=RFC 1986" \ "RFC1987=RFC 1987" \ "RFC1988=RFC 1988" \ "RFC1989=RFC 1989" \ "RFC1990=RFC 1990" \ "RFC1991=RFC 1991" \ "RFC1992=RFC 1992" \ "RFC1993=RFC 1993" \ "RFC1994=RFC 1994" \ "RFC1995=RFC 1995" \ "RFC1996=RFC 1996" \ "RFC1997=RFC 1997" \ "RFC1998=RFC 1998" \ "RFC1999=RFC 1999" \ "RFC2000=RFC 2000" \ "RFC2001=RFC 2001" \ "RFC2002=RFC 2002" \ "RFC2003=RFC 2003" \ "RFC2004=RFC 2004" \ "RFC2005=RFC 2005" \ "RFC2006=RFC 2006" \ "RFC2007=RFC 2007" \ "RFC2008=RFC 2008" \ "RFC2009=RFC 2009" \ "RFC2010=RFC 2010" \ "RFC2011=RFC 2011" \ "RFC2012=RFC 2012" \ "RFC2013=RFC 2013" \ "RFC2014=RFC 2014" \ "RFC2015=RFC 2015" \ "RFC2016=RFC 2016" \ "RFC2017=RFC 2017" \ "RFC2018=RFC 2018" \ "RFC2019=RFC 2019" \ "RFC2020=RFC 2020" \ "RFC2021=RFC 2021" \ "RFC2022=RFC 2022" \ "RFC2023=RFC 2023" \ "RFC2024=RFC 2024" \ "RFC2025=RFC 2025" \ "RFC2026=RFC 2026" \ "RFC2027=RFC 2027" \ "RFC2028=RFC 2028" \ "RFC2029=RFC 2029" \ "RFC2030=RFC 2030" \ "RFC2031=RFC 2031" \ "RFC2032=RFC 2032" \ "RFC2033=RFC 2033" \ "RFC2034=RFC 2034" \ "RFC2035=RFC 2035" \ "RFC2036=RFC 2036" \ "RFC2037=RFC 2037" \ "RFC2038=RFC 2038" \ "RFC2039=RFC 2039" \ "RFC2040=RFC 2040" \ "RFC2041=RFC 2041" \ "RFC2042=RFC 2042" \ "RFC2043=RFC 2043" \ "RFC2044=RFC 2044" \ "RFC2045=RFC 2045" \ "RFC2046=RFC 2046" \ "RFC2047=RFC 2047" \ "RFC2048=RFC 2048" \ "RFC2049=RFC 2049" \ "RFC2050=RFC 2050" \ "RFC2051=RFC 2051" \ "RFC2052=RFC 2052" \ "RFC2053=RFC 2053" \ "RFC2054=RFC 2054" \ "RFC2055=RFC 2055" \ "RFC2056=RFC 2056" \ "RFC2057=RFC 2057" \ "RFC2058=RFC 2058" \ "RFC2059=RFC 2059" \ "RFC2060=RFC 2060" \ "RFC2061=RFC 2061" \ "RFC2062=RFC 2062" \ "RFC2063=RFC 2063" \ "RFC2064=RFC 2064" \ "RFC2065=RFC 2065" \ "RFC2066=RFC 2066" \ "RFC2067=RFC 2067" \ "RFC2068=RFC 2068" \ "RFC2069=RFC 2069" \ "RFC2070=RFC 2070" \ "RFC2071=RFC 2071" \ "RFC2072=RFC 2072" \ "RFC2073=RFC 2073" \ "RFC2074=RFC 2074" \ "RFC2075=RFC 2075" \ "RFC2076=RFC 2076" \ "RFC2077=RFC 2077" \ "RFC2078=RFC 2078" \ "RFC2079=RFC 2079" \ "RFC2080=RFC 2080" \ "RFC2081=RFC 2081" \ "RFC2082=RFC 2082" \ "RFC2083=RFC 2083" \ "RFC2084=RFC 2084" \ "RFC2085=RFC 2085" \ "RFC2086=RFC 2086" \ "RFC2087=RFC 2087" \ "RFC2088=RFC 2088" \ "RFC2089=RFC 2089" \ "RFC2090=RFC 2090" \ "RFC2091=RFC 2091" \ "RFC2092=RFC 2092" \ "RFC2093=RFC 2093" \ "RFC2094=RFC 2094" \ "RFC2095=RFC 2095" \ "RFC2096=RFC 2096" \ "RFC2097=RFC 2097" \ "RFC2098=RFC 2098" \ "RFC2099=RFC 2099" \ "RFC2100=RFC 2100" \ "RFC2101=RFC 2101" \ "RFC2102=RFC 2102" \ "RFC2103=RFC 2103" \ "RFC2104=RFC 2104" \ "RFC2105=RFC 2105" \ "RFC2106=RFC 2106" \ "RFC2107=RFC 2107" \ "RFC2108=RFC 2108" \ "RFC2109=RFC 2109" \ "RFC2110=RFC 2110" \ "RFC2111=RFC 2111" \ "RFC2112=RFC 2112" \ "RFC2113=RFC 2113" \ "RFC2114=RFC 2114" \ "RFC2115=RFC 2115" \ "RFC2116=RFC 2116" \ "RFC2117=RFC 2117" \ "RFC2118=RFC 2118" \ "RFC2119=RFC 2119" \ "RFC2120=RFC 2120" \ "RFC2121=RFC 2121" \ "RFC2122=RFC 2122" \ "RFC2123=RFC 2123" \ "RFC2124=RFC 2124" \ "RFC2125=RFC 2125" \ "RFC2126=RFC 2126" \ "RFC2127=RFC 2127" \ "RFC2128=RFC 2128" \ "RFC2129=RFC 2129" \ "RFC2130=RFC 2130" \ "RFC2131=RFC 2131" \ "RFC2132=RFC 2132" \ "RFC2133=RFC 2133" \ "RFC2134=RFC 2134" \ "RFC2135=RFC 2135" \ "RFC2136=RFC 2136" \ "RFC2137=RFC 2137" \ "RFC2138=RFC 2138" \ "RFC2139=RFC 2139" \ "RFC2140=RFC 2140" \ "RFC2141=RFC 2141" \ "RFC2142=RFC 2142" \ "RFC2143=RFC 2143" \ "RFC2144=RFC 2144" \ "RFC2145=RFC 2145" \ "RFC2146=RFC 2146" \ "RFC2147=RFC 2147" \ "RFC2148=RFC 2148" \ "RFC2149=RFC 2149" \ "RFC2150=RFC 2150" \ "RFC2151=RFC 2151" \ "RFC2152=RFC 2152" \ "RFC2153=RFC 2153" \ "RFC2154=RFC 2154" \ "RFC2155=RFC 2155" \ "RFC2156=RFC 2156" \ "RFC2157=RFC 2157" \ "RFC2158=RFC 2158" \ "RFC2159=RFC 2159" \ "RFC2160=RFC 2160" \ "RFC2161=RFC 2161" \ "RFC2162=RFC 2162" \ "RFC2163=RFC 2163" \ "RFC2164=RFC 2164" \ "RFC2165=RFC 2165" \ "RFC2166=RFC 2166" \ "RFC2167=RFC 2167" \ "RFC2168=RFC 2168" \ "RFC2169=RFC 2169" \ "RFC2170=RFC 2170" \ "RFC2171=RFC 2171" \ "RFC2172=RFC 2172" \ "RFC2173=RFC 2173" \ "RFC2174=RFC 2174" \ "RFC2175=RFC 2175" \ "RFC2176=RFC 2176" \ "RFC2177=RFC 2177" \ "RFC2178=RFC 2178" \ "RFC2179=RFC 2179" \ "RFC2180=RFC 2180" \ "RFC2181=RFC 2181" \ "RFC2182=RFC 2182" \ "RFC2183=RFC 2183" \ "RFC2184=RFC 2184" \ "RFC2185=RFC 2185" \ "RFC2186=RFC 2186" \ "RFC2187=RFC 2187" \ "RFC2188=RFC 2188" \ "RFC2189=RFC 2189" \ "RFC2190=RFC 2190" \ "RFC2191=RFC 2191" \ "RFC2192=RFC 2192" \ "RFC2193=RFC 2193" \ "RFC2194=RFC 2194" \ "RFC2195=RFC 2195" \ "RFC2196=RFC 2196" \ "RFC2197=RFC 2197" \ "RFC2198=RFC 2198" \ "RFC2199=RFC 2199" \ "RFC2200=RFC 2200" \ "RFC2201=RFC 2201" \ "RFC2202=RFC 2202" \ "RFC2203=RFC 2203" \ "RFC2204=RFC 2204" \ "RFC2205=RFC 2205" \ "RFC2206=RFC 2206" \ "RFC2207=RFC 2207" \ "RFC2208=RFC 2208" \ "RFC2209=RFC 2209" \ "RFC2210=RFC 2210" \ "RFC2211=RFC 2211" \ "RFC2212=RFC 2212" \ "RFC2213=RFC 2213" \ "RFC2214=RFC 2214" \ "RFC2215=RFC 2215" \ "RFC2216=RFC 2216" \ "RFC2217=RFC 2217" \ "RFC2218=RFC 2218" \ "RFC2219=RFC 2219" \ "RFC2220=RFC 2220" \ "RFC2221=RFC 2221" \ "RFC2222=RFC 2222" \ "RFC2223=RFC 2223" \ "RFC2224=RFC 2224" \ "RFC2225=RFC 2225" \ "RFC2226=RFC 2226" \ "RFC2227=RFC 2227" \ "RFC2228=RFC 2228" \ "RFC2229=RFC 2229" \ "RFC2230=RFC 2230" \ "RFC2231=RFC 2231" \ "RFC2232=RFC 2232" \ "RFC2233=RFC 2233" \ "RFC2234=RFC 2234" \ "RFC2235=RFC 2235" \ "RFC2236=RFC 2236" \ "RFC2237=RFC 2237" \ "RFC2238=RFC 2238" \ "RFC2239=RFC 2239" \ "RFC2240=RFC 2240" \ "RFC2241=RFC 2241" \ "RFC2242=RFC 2242" \ "RFC2243=RFC 2243" \ "RFC2244=RFC 2244" \ "RFC2245=RFC 2245" \ "RFC2246=RFC 2246" \ "RFC2247=RFC 2247" \ "RFC2248=RFC 2248" \ "RFC2249=RFC 2249" \ "RFC2250=RFC 2250" \ "RFC2251=RFC 2251" \ "RFC2252=RFC 2252" \ "RFC2253=RFC 2253" \ "RFC2254=RFC 2254" \ "RFC2255=RFC 2255" \ "RFC2256=RFC 2256" \ "RFC2257=RFC 2257" \ "RFC2258=RFC 2258" \ "RFC2259=RFC 2259" \ "RFC2260=RFC 2260" \ "RFC2261=RFC 2261" \ "RFC2262=RFC 2262" \ "RFC2263=RFC 2263" \ "RFC2264=RFC 2264" \ "RFC2265=RFC 2265" \ "RFC2266=RFC 2266" \ "RFC2267=RFC 2267" \ "RFC2268=RFC 2268" \ "RFC2269=RFC 2269" \ "RFC2270=RFC 2270" \ "RFC2271=RFC 2271" \ "RFC2272=RFC 2272" \ "RFC2273=RFC 2273" \ "RFC2274=RFC 2274" \ "RFC2275=RFC 2275" \ "RFC2276=RFC 2276" \ "RFC2277=RFC 2277" \ "RFC2278=RFC 2278" \ "RFC2279=RFC 2279" \ "RFC2280=RFC 2280" \ "RFC2281=RFC 2281" \ "RFC2282=RFC 2282" \ "RFC2283=RFC 2283" \ "RFC2284=RFC 2284" \ "RFC2285=RFC 2285" \ "RFC2286=RFC 2286" \ "RFC2287=RFC 2287" \ "RFC2288=RFC 2288" \ "RFC2289=RFC 2289" \ "RFC2290=RFC 2290" \ "RFC2291=RFC 2291" \ "RFC2292=RFC 2292" \ "RFC2293=RFC 2293" \ "RFC2294=RFC 2294" \ "RFC2295=RFC 2295" \ "RFC2296=RFC 2296" \ "RFC2297=RFC 2297" \ "RFC2298=RFC 2298" \ "RFC2299=RFC 2299" \ "RFC2300=RFC 2300" \ "RFC2301=RFC 2301" \ "RFC2302=RFC 2302" \ "RFC2303=RFC 2303" \ "RFC2304=RFC 2304" \ "RFC2305=RFC 2305" \ "RFC2306=RFC 2306" \ "RFC2307=RFC 2307" \ "RFC2308=RFC 2308" \ "RFC2309=RFC 2309" \ "RFC2310=RFC 2310" \ "RFC2311=RFC 2311" \ "RFC2312=RFC 2312" \ "RFC2313=RFC 2313" \ "RFC2314=RFC 2314" \ "RFC2315=RFC 2315" \ "RFC2316=RFC 2316" \ "RFC2317=RFC 2317" \ "RFC2318=RFC 2318" \ "RFC2319=RFC 2319" \ "RFC2320=RFC 2320" \ "RFC2321=RFC 2321" \ "RFC2322=RFC 2322" \ "RFC2323=RFC 2323" \ "RFC2324=RFC 2324" \ "RFC2325=RFC 2325" \ "RFC2326=RFC 2326" \ "RFC2327=RFC 2327" \ "RFC2328=RFC 2328" \ "RFC2329=RFC 2329" \ "RFC2330=RFC 2330" \ "RFC2331=RFC 2331" \ "RFC2332=RFC 2332" \ "RFC2333=RFC 2333" \ "RFC2334=RFC 2334" \ "RFC2335=RFC 2335" \ "RFC2336=RFC 2336" \ "RFC2337=RFC 2337" \ "RFC2338=RFC 2338" \ "RFC2339=RFC 2339" \ "RFC2340=RFC 2340" \ "RFC2341=RFC 2341" \ "RFC2342=RFC 2342" \ "RFC2343=RFC 2343" \ "RFC2344=RFC 2344" \ "RFC2345=RFC 2345" \ "RFC2346=RFC 2346" \ "RFC2347=RFC 2347" \ "RFC2348=RFC 2348" \ "RFC2349=RFC 2349" \ "RFC2350=RFC 2350" \ "RFC2351=RFC 2351" \ "RFC2352=RFC 2352" \ "RFC2353=RFC 2353" \ "RFC2354=RFC 2354" \ "RFC2355=RFC 2355" \ "RFC2356=RFC 2356" \ "RFC2357=RFC 2357" \ "RFC2358=RFC 2358" \ "RFC2359=RFC 2359" \ "RFC2360=RFC 2360" \ "RFC2361=RFC 2361" \ "RFC2362=RFC 2362" \ "RFC2363=RFC 2363" \ "RFC2364=RFC 2364" \ "RFC2365=RFC 2365" \ "RFC2366=RFC 2366" \ "RFC2367=RFC 2367" \ "RFC2368=RFC 2368" \ "RFC2369=RFC 2369" \ "RFC2370=RFC 2370" \ "RFC2371=RFC 2371" \ "RFC2372=RFC 2372" \ "RFC2373=RFC 2373" \ "RFC2374=RFC 2374" \ "RFC2375=RFC 2375" \ "RFC2376=RFC 2376" \ "RFC2377=RFC 2377" \ "RFC2378=RFC 2378" \ "RFC2379=RFC 2379" \ "RFC2380=RFC 2380" \ "RFC2381=RFC 2381" \ "RFC2382=RFC 2382" \ "RFC2383=RFC 2383" \ "RFC2384=RFC 2384" \ "RFC2385=RFC 2385" \ "RFC2386=RFC 2386" \ "RFC2387=RFC 2387" \ "RFC2388=RFC 2388" \ "RFC2389=RFC 2389" \ "RFC2390=RFC 2390" \ "RFC2391=RFC 2391" \ "RFC2392=RFC 2392" \ "RFC2393=RFC 2393" \ "RFC2394=RFC 2394" \ "RFC2395=RFC 2395" \ "RFC2396=RFC 2396" \ "RFC2397=RFC 2397" \ "RFC2398=RFC 2398" \ "RFC2399=RFC 2399" \ "RFC2400=RFC 2400" \ "RFC2401=RFC 2401" \ "RFC2402=RFC 2402" \ "RFC2403=RFC 2403" \ "RFC2404=RFC 2404" \ "RFC2405=RFC 2405" \ "RFC2406=RFC 2406" \ "RFC2407=RFC 2407" \ "RFC2408=RFC 2408" \ "RFC2409=RFC 2409" \ "RFC2410=RFC 2410" \ "RFC2411=RFC 2411" \ "RFC2412=RFC 2412" \ "RFC2413=RFC 2413" \ "RFC2414=RFC 2414" \ "RFC2415=RFC 2415" \ "RFC2416=RFC 2416" \ "RFC2417=RFC 2417" \ "RFC2418=RFC 2418" \ "RFC2419=RFC 2419" \ "RFC2420=RFC 2420" \ "RFC2421=RFC 2421" \ "RFC2422=RFC 2422" \ "RFC2423=RFC 2423" \ "RFC2424=RFC 2424" \ "RFC2425=RFC 2425" \ "RFC2426=RFC 2426" \ "RFC2427=RFC 2427" \ "RFC2428=RFC 2428" \ "RFC2429=RFC 2429" \ "RFC2430=RFC 2430" \ "RFC2431=RFC 2431" \ "RFC2432=RFC 2432" \ "RFC2433=RFC 2433" \ "RFC2434=RFC 2434" \ "RFC2435=RFC 2435" \ "RFC2436=RFC 2436" \ "RFC2437=RFC 2437" \ "RFC2438=RFC 2438" \ "RFC2439=RFC 2439" \ "RFC2440=RFC 2440" \ "RFC2441=RFC 2441" \ "RFC2442=RFC 2442" \ "RFC2443=RFC 2443" \ "RFC2444=RFC 2444" \ "RFC2445=RFC 2445" \ "RFC2446=RFC 2446" \ "RFC2447=RFC 2447" \ "RFC2448=RFC 2448" \ "RFC2449=RFC 2449" \ "RFC2450=RFC 2450" \ "RFC2451=RFC 2451" \ "RFC2452=RFC 2452" \ "RFC2453=RFC 2453" \ "RFC2454=RFC 2454" \ "RFC2455=RFC 2455" \ "RFC2456=RFC 2456" \ "RFC2457=RFC 2457" \ "RFC2458=RFC 2458" \ "RFC2459=RFC 2459" \ "RFC2460=RFC 2460" \ "RFC2461=RFC 2461" \ "RFC2462=RFC 2462" \ "RFC2463=RFC 2463" \ "RFC2464=RFC 2464" \ "RFC2465=RFC 2465" \ "RFC2466=RFC 2466" \ "RFC2467=RFC 2467" \ "RFC2468=RFC 2468" \ "RFC2469=RFC 2469" \ "RFC2470=RFC 2470" \ "RFC2471=RFC 2471" \ "RFC2472=RFC 2472" \ "RFC2473=RFC 2473" \ "RFC2474=RFC 2474" \ "RFC2475=RFC 2475" \ "RFC2476=RFC 2476" \ "RFC2477=RFC 2477" \ "RFC2478=RFC 2478" \ "RFC2479=RFC 2479" \ "RFC2480=RFC 2480" \ "RFC2481=RFC 2481" \ "RFC2482=RFC 2482" \ "RFC2483=RFC 2483" \ "RFC2484=RFC 2484" \ "RFC2485=RFC 2485" \ "RFC2486=RFC 2486" \ "RFC2487=RFC 2487" \ "RFC2488=RFC 2488" \ "RFC2489=RFC 2489" \ "RFC2490=RFC 2490" \ "RFC2491=RFC 2491" \ "RFC2492=RFC 2492" \ "RFC2493=RFC 2493" \ "RFC2494=RFC 2494" \ "RFC2495=RFC 2495" \ "RFC2496=RFC 2496" \ "RFC2497=RFC 2497" \ "RFC2498=RFC 2498" \ "RFC2499=RFC 2499" \ "RFC2500=RFC 2500" \ "RFC2501=RFC 2501" \ "RFC2502=RFC 2502" \ "RFC2503=RFC 2503" \ "RFC2504=RFC 2504" \ "RFC2505=RFC 2505" \ "RFC2506=RFC 2506" \ "RFC2507=RFC 2507" \ "RFC2508=RFC 2508" \ "RFC2509=RFC 2509" \ "RFC2510=RFC 2510" \ "RFC2511=RFC 2511" \ "RFC2512=RFC 2512" \ "RFC2513=RFC 2513" \ "RFC2514=RFC 2514" \ "RFC2515=RFC 2515" \ "RFC2516=RFC 2516" \ "RFC2517=RFC 2517" \ "RFC2518=RFC 2518" \ "RFC2519=RFC 2519" \ "RFC2520=RFC 2520" \ "RFC2521=RFC 2521" \ "RFC2522=RFC 2522" \ "RFC2523=RFC 2523" \ "RFC2524=RFC 2524" \ "RFC2525=RFC 2525" \ "RFC2526=RFC 2526" \ "RFC2527=RFC 2527" \ "RFC2528=RFC 2528" \ "RFC2529=RFC 2529" \ "RFC2530=RFC 2530" \ "RFC2531=RFC 2531" \ "RFC2532=RFC 2532" \ "RFC2533=RFC 2533" \ "RFC2534=RFC 2534" \ "RFC2535=RFC 2535" \ "RFC2536=RFC 2536" \ "RFC2537=RFC 2537" \ "RFC2538=RFC 2538" \ "RFC2539=RFC 2539" \ "RFC2540=RFC 2540" \ "RFC2541=RFC 2541" \ "RFC2542=RFC 2542" \ "RFC2543=RFC 2543" \ "RFC2544=RFC 2544" \ "RFC2545=RFC 2545" \ "RFC2546=RFC 2546" \ "RFC2547=RFC 2547" \ "RFC2548=RFC 2548" \ "RFC2549=RFC 2549" \ "RFC2550=RFC 2550" \ "RFC2551=RFC 2551" \ "RFC2552=RFC 2552" \ "RFC2553=RFC 2553" \ "RFC2554=RFC 2554" \ "RFC2555=RFC 2555" \ "RFC2556=RFC 2556" \ "RFC2557=RFC 2557" \ "RFC2558=RFC 2558" \ "RFC2559=RFC 2559" \ "RFC2560=RFC 2560" \ "RFC2561=RFC 2561" \ "RFC2562=RFC 2562" \ "RFC2563=RFC 2563" \ "RFC2564=RFC 2564" \ "RFC2565=RFC 2565" \ "RFC2566=RFC 2566" \ "RFC2567=RFC 2567" \ "RFC2568=RFC 2568" \ "RFC2569=RFC 2569" \ "RFC2570=RFC 2570" \ "RFC2571=RFC 2571" \ "RFC2572=RFC 2572" \ "RFC2573=RFC 2573" \ "RFC2574=RFC 2574" \ "RFC2575=RFC 2575" \ "RFC2576=RFC 2576" \ "RFC2577=RFC 2577" \ "RFC2578=RFC 2578" \ "RFC2579=RFC 2579" \ "RFC2580=RFC 2580" \ "RFC2581=RFC 2581" \ "RFC2582=RFC 2582" \ "RFC2583=RFC 2583" \ "RFC2584=RFC 2584" \ "RFC2585=RFC 2585" \ "RFC2586=RFC 2586" \ "RFC2587=RFC 2587" \ "RFC2588=RFC 2588" \ "RFC2589=RFC 2589" \ "RFC2590=RFC 2590" \ "RFC2591=RFC 2591" \ "RFC2592=RFC 2592" \ "RFC2593=RFC 2593" \ "RFC2594=RFC 2594" \ "RFC2595=RFC 2595" \ "RFC2596=RFC 2596" \ "RFC2597=RFC 2597" \ "RFC2598=RFC 2598" \ "RFC2599=RFC 2599" \ "RFC2600=RFC 2600" \ "RFC2601=RFC 2601" \ "RFC2602=RFC 2602" \ "RFC2603=RFC 2603" \ "RFC2604=RFC 2604" \ "RFC2605=RFC 2605" \ "RFC2606=RFC 2606" \ "RFC2607=RFC 2607" \ "RFC2608=RFC 2608" \ "RFC2609=RFC 2609" \ "RFC2610=RFC 2610" \ "RFC2611=RFC 2611" \ "RFC2612=RFC 2612" \ "RFC2613=RFC 2613" \ "RFC2614=RFC 2614" \ "RFC2615=RFC 2615" \ "RFC2616=RFC 2616" \ "RFC2617=RFC 2617" \ "RFC2618=RFC 2618" \ "RFC2619=RFC 2619" \ "RFC2620=RFC 2620" \ "RFC2621=RFC 2621" \ "RFC2622=RFC 2622" \ "RFC2623=RFC 2623" \ "RFC2624=RFC 2624" \ "RFC2625=RFC 2625" \ "RFC2626=RFC 2626" \ "RFC2627=RFC 2627" \ "RFC2628=RFC 2628" \ "RFC2629=RFC 2629" \ "RFC2630=RFC 2630" \ "RFC2631=RFC 2631" \ "RFC2632=RFC 2632" \ "RFC2633=RFC 2633" \ "RFC2634=RFC 2634" \ "RFC2635=RFC 2635" \ "RFC2636=RFC 2636" \ "RFC2637=RFC 2637" \ "RFC2638=RFC 2638" \ "RFC2639=RFC 2639" \ "RFC2640=RFC 2640" \ "RFC2641=RFC 2641" \ "RFC2642=RFC 2642" \ "RFC2643=RFC 2643" \ "RFC2644=RFC 2644" \ "RFC2645=RFC 2645" \ "RFC2646=RFC 2646" \ "RFC2647=RFC 2647" \ "RFC2648=RFC 2648" \ "RFC2649=RFC 2649" \ "RFC2650=RFC 2650" \ "RFC2651=RFC 2651" \ "RFC2652=RFC 2652" \ "RFC2653=RFC 2653" \ "RFC2654=RFC 2654" \ "RFC2655=RFC 2655" \ "RFC2656=RFC 2656" \ "RFC2657=RFC 2657" \ "RFC2658=RFC 2658" \ "RFC2659=RFC 2659" \ "RFC2660=RFC 2660" \ "RFC2661=RFC 2661" \ "RFC2662=RFC 2662" \ "RFC2663=RFC 2663" \ "RFC2664=RFC 2664" \ "RFC2665=RFC 2665" \ "RFC2666=RFC 2666" \ "RFC2667=RFC 2667" \ "RFC2668=RFC 2668" \ "RFC2669=RFC 2669" \ "RFC2670=RFC 2670" \ "RFC2671=RFC 2671" \ "RFC2672=RFC 2672" \ "RFC2673=RFC 2673" \ "RFC2674=RFC 2674" \ "RFC2675=RFC 2675" \ "RFC2676=RFC 2676" \ "RFC2677=RFC 2677" \ "RFC2678=RFC 2678" \ "RFC2679=RFC 2679" \ "RFC2680=RFC 2680" \ "RFC2681=RFC 2681" \ "RFC2682=RFC 2682" \ "RFC2683=RFC 2683" \ "RFC2684=RFC 2684" \ "RFC2685=RFC 2685" \ "RFC2686=RFC 2686" \ "RFC2687=RFC 2687" \ "RFC2688=RFC 2688" \ "RFC2689=RFC 2689" \ "RFC2690=RFC 2690" \ "RFC2691=RFC 2691" \ "RFC2692=RFC 2692" \ "RFC2693=RFC 2693" \ "RFC2694=RFC 2694" \ "RFC2695=RFC 2695" \ "RFC2696=RFC 2696" \ "RFC2697=RFC 2697" \ "RFC2698=RFC 2698" \ "RFC2699=RFC 2699" \ "RFC2700=RFC 2700" \ "RFC2701=RFC 2701" \ "RFC2702=RFC 2702" \ "RFC2703=RFC 2703" \ "RFC2704=RFC 2704" \ "RFC2705=RFC 2705" \ "RFC2706=RFC 2706" \ "RFC2707=RFC 2707" \ "RFC2708=RFC 2708" \ "RFC2709=RFC 2709" \ "RFC2710=RFC 2710" \ "RFC2711=RFC 2711" \ "RFC2712=RFC 2712" \ "RFC2713=RFC 2713" \ "RFC2714=RFC 2714" \ "RFC2715=RFC 2715" \ "RFC2716=RFC 2716" \ "RFC2717=RFC 2717" \ "RFC2718=RFC 2718" \ "RFC2719=RFC 2719" \ "RFC2720=RFC 2720" \ "RFC2721=RFC 2721" \ "RFC2722=RFC 2722" \ "RFC2723=RFC 2723" \ "RFC2724=RFC 2724" \ "RFC2725=RFC 2725" \ "RFC2726=RFC 2726" \ "RFC2727=RFC 2727" \ "RFC2728=RFC 2728" \ "RFC2729=RFC 2729" \ "RFC2730=RFC 2730" \ "RFC2731=RFC 2731" \ "RFC2732=RFC 2732" \ "RFC2733=RFC 2733" \ "RFC2734=RFC 2734" \ "RFC2735=RFC 2735" \ "RFC2736=RFC 2736" \ "RFC2737=RFC 2737" \ "RFC2738=RFC 2738" \ "RFC2739=RFC 2739" \ "RFC2740=RFC 2740" \ "RFC2741=RFC 2741" \ "RFC2742=RFC 2742" \ "RFC2743=RFC 2743" \ "RFC2744=RFC 2744" \ "RFC2745=RFC 2745" \ "RFC2746=RFC 2746" \ "RFC2747=RFC 2747" \ "RFC2748=RFC 2748" \ "RFC2749=RFC 2749" \ "RFC2750=RFC 2750" \ "RFC2751=RFC 2751" \ "RFC2752=RFC 2752" \ "RFC2753=RFC 2753" \ "RFC2754=RFC 2754" \ "RFC2755=RFC 2755" \ "RFC2756=RFC 2756" \ "RFC2757=RFC 2757" \ "RFC2758=RFC 2758" \ "RFC2759=RFC 2759" \ "RFC2760=RFC 2760" \ "RFC2761=RFC 2761" \ "RFC2762=RFC 2762" \ "RFC2763=RFC 2763" \ "RFC2764=RFC 2764" \ "RFC2765=RFC 2765" \ "RFC2766=RFC 2766" \ "RFC2767=RFC 2767" \ "RFC2768=RFC 2768" \ "RFC2769=RFC 2769" \ "RFC2770=RFC 2770" \ "RFC2771=RFC 2771" \ "RFC2772=RFC 2772" \ "RFC2773=RFC 2773" \ "RFC2774=RFC 2774" \ "RFC2775=RFC 2775" \ "RFC2776=RFC 2776" \ "RFC2777=RFC 2777" \ "RFC2778=RFC 2778" \ "RFC2779=RFC 2779" \ "RFC2780=RFC 2780" \ "RFC2781=RFC 2781" \ "RFC2782=RFC 2782" \ "RFC2783=RFC 2783" \ "RFC2784=RFC 2784" \ "RFC2785=RFC 2785" \ "RFC2786=RFC 2786" \ "RFC2787=RFC 2787" \ "RFC2788=RFC 2788" \ "RFC2789=RFC 2789" \ "RFC2790=RFC 2790" \ "RFC2791=RFC 2791" \ "RFC2792=RFC 2792" \ "RFC2793=RFC 2793" \ "RFC2794=RFC 2794" \ "RFC2795=RFC 2795" \ "RFC2796=RFC 2796" \ "RFC2797=RFC 2797" \ "RFC2798=RFC 2798" \ "RFC2799=RFC 2799" \ "RFC2800=RFC 2800" \ "RFC2801=RFC 2801" \ "RFC2802=RFC 2802" \ "RFC2803=RFC 2803" \ "RFC2804=RFC 2804" \ "RFC2805=RFC 2805" \ "RFC2806=RFC 2806" \ "RFC2807=RFC 2807" \ "RFC2808=RFC 2808" \ "RFC2809=RFC 2809" \ "RFC2810=RFC 2810" \ "RFC2811=RFC 2811" \ "RFC2812=RFC 2812" \ "RFC2813=RFC 2813" \ "RFC2814=RFC 2814" \ "RFC2815=RFC 2815" \ "RFC2816=RFC 2816" \ "RFC2817=RFC 2817" \ "RFC2818=RFC 2818" \ "RFC2819=RFC 2819" \ "RFC2820=RFC 2820" \ "RFC2821=RFC 2821" \ "RFC2822=RFC 2822" \ "RFC2823=RFC 2823" \ "RFC2824=RFC 2824" \ "RFC2825=RFC 2825" \ "RFC2826=RFC 2826" \ "RFC2827=RFC 2827" \ "RFC2828=RFC 2828" \ "RFC2829=RFC 2829" \ "RFC2830=RFC 2830" \ "RFC2831=RFC 2831" \ "RFC2832=RFC 2832" \ "RFC2833=RFC 2833" \ "RFC2834=RFC 2834" \ "RFC2835=RFC 2835" \ "RFC2836=RFC 2836" \ "RFC2837=RFC 2837" \ "RFC2838=RFC 2838" \ "RFC2839=RFC 2839" \ "RFC2840=RFC 2840" \ "RFC2841=RFC 2841" \ "RFC2842=RFC 2842" \ "RFC2843=RFC 2843" \ "RFC2844=RFC 2844" \ "RFC2845=RFC 2845" \ "RFC2846=RFC 2846" \ "RFC2847=RFC 2847" \ "RFC2848=RFC 2848" \ "RFC2849=RFC 2849" \ "RFC2850=RFC 2850" \ "RFC2851=RFC 2851" \ "RFC2852=RFC 2852" \ "RFC2853=RFC 2853" \ "RFC2854=RFC 2854" \ "RFC2855=RFC 2855" \ "RFC2856=RFC 2856" \ "RFC2857=RFC 2857" \ "RFC2858=RFC 2858" \ "RFC2859=RFC 2859" \ "RFC2860=RFC 2860" \ "RFC2861=RFC 2861" \ "RFC2862=RFC 2862" \ "RFC2863=RFC 2863" \ "RFC2864=RFC 2864" \ "RFC2865=RFC 2865" \ "RFC2866=RFC 2866" \ "RFC2867=RFC 2867" \ "RFC2868=RFC 2868" \ "RFC2869=RFC 2869" \ "RFC2870=RFC 2870" \ "RFC2871=RFC 2871" \ "RFC2872=RFC 2872" \ "RFC2873=RFC 2873" \ "RFC2874=RFC 2874" \ "RFC2875=RFC 2875" \ "RFC2876=RFC 2876" \ "RFC2877=RFC 2877" \ "RFC2878=RFC 2878" \ "RFC2879=RFC 2879" \ "RFC2880=RFC 2880" \ "RFC2881=RFC 2881" \ "RFC2882=RFC 2882" \ "RFC2883=RFC 2883" \ "RFC2884=RFC 2884" \ "RFC2885=RFC 2885" \ "RFC2886=RFC 2886" \ "RFC2887=RFC 2887" \ "RFC2888=RFC 2888" \ "RFC2889=RFC 2889" \ "RFC2890=RFC 2890" \ "RFC2891=RFC 2891" \ "RFC2892=RFC 2892" \ "RFC2893=RFC 2893" \ "RFC2894=RFC 2894" \ "RFC2895=RFC 2895" \ "RFC2896=RFC 2896" \ "RFC2897=RFC 2897" \ "RFC2898=RFC 2898" \ "RFC2899=RFC 2899" \ "RFC2900=RFC 2900" \ "RFC2901=RFC 2901" \ "RFC2902=RFC 2902" \ "RFC2903=RFC 2903" \ "RFC2904=RFC 2904" \ "RFC2905=RFC 2905" \ "RFC2906=RFC 2906" \ "RFC2907=RFC 2907" \ "RFC2908=RFC 2908" \ "RFC2909=RFC 2909" \ "RFC2910=RFC 2910" \ "RFC2911=RFC 2911" \ "RFC2912=RFC 2912" \ "RFC2913=RFC 2913" \ "RFC2914=RFC 2914" \ "RFC2915=RFC 2915" \ "RFC2916=RFC 2916" \ "RFC2917=RFC 2917" \ "RFC2918=RFC 2918" \ "RFC2919=RFC 2919" \ "RFC2920=RFC 2920" \ "RFC2921=RFC 2921" \ "RFC2922=RFC 2922" \ "RFC2923=RFC 2923" \ "RFC2924=RFC 2924" \ "RFC2925=RFC 2925" \ "RFC2926=RFC 2926" \ "RFC2927=RFC 2927" \ "RFC2928=RFC 2928" \ "RFC2929=RFC 2929" \ "RFC2930=RFC 2930" \ "RFC2931=RFC 2931" \ "RFC2932=RFC 2932" \ "RFC2933=RFC 2933" \ "RFC2934=RFC 2934" \ "RFC2935=RFC 2935" \ "RFC2936=RFC 2936" \ "RFC2937=RFC 2937" \ "RFC2938=RFC 2938" \ "RFC2939=RFC 2939" \ "RFC2940=RFC 2940" \ "RFC2941=RFC 2941" \ "RFC2942=RFC 2942" \ "RFC2943=RFC 2943" \ "RFC2944=RFC 2944" \ "RFC2945=RFC 2945" \ "RFC2946=RFC 2946" \ "RFC2947=RFC 2947" \ "RFC2948=RFC 2948" \ "RFC2949=RFC 2949" \ "RFC2950=RFC 2950" \ "RFC2951=RFC 2951" \ "RFC2952=RFC 2952" \ "RFC2953=RFC 2953" \ "RFC2954=RFC 2954" \ "RFC2955=RFC 2955" \ "RFC2956=RFC 2956" \ "RFC2957=RFC 2957" \ "RFC2958=RFC 2958" \ "RFC2959=RFC 2959" \ "RFC2960=RFC 2960" \ "RFC2961=RFC 2961" \ "RFC2962=RFC 2962" \ "RFC2963=RFC 2963" \ "RFC2964=RFC 2964" \ "RFC2965=RFC 2965" \ "RFC2966=RFC 2966" \ "RFC2967=RFC 2967" \ "RFC2968=RFC 2968" \ "RFC2969=RFC 2969" \ "RFC2970=RFC 2970" \ "RFC2971=RFC 2971" \ "RFC2972=RFC 2972" \ "RFC2973=RFC 2973" \ "RFC2974=RFC 2974" \ "RFC2975=RFC 2975" \ "RFC2976=RFC 2976" \ "RFC2977=RFC 2977" \ "RFC2978=RFC 2978" \ "RFC2979=RFC 2979" \ "RFC2980=RFC 2980" \ "RFC2981=RFC 2981" \ "RFC2982=RFC 2982" \ "RFC2983=RFC 2983" \ "RFC2984=RFC 2984" \ "RFC2985=RFC 2985" \ "RFC2986=RFC 2986" \ "RFC2987=RFC 2987" \ "RFC2988=RFC 2988" \ "RFC2989=RFC 2989" \ "RFC2990=RFC 2990" \ "RFC2991=RFC 2991" \ "RFC2992=RFC 2992" \ "RFC2993=RFC 2993" \ "RFC2994=RFC 2994" \ "RFC2995=RFC 2995" \ "RFC2996=RFC 2996" \ "RFC2997=RFC 2997" \ "RFC2998=RFC 2998" \ "RFC2999=RFC 2999" \ "RFC3000=RFC 3000" \ "RFC3001=RFC 3001" \ "RFC3002=RFC 3002" \ "RFC3003=RFC 3003" \ "RFC3004=RFC 3004" \ "RFC3005=RFC 3005" \ "RFC3006=RFC 3006" \ "RFC3007=RFC 3007" \ "RFC3008=RFC 3008" \ "RFC3009=RFC 3009" \ "RFC3010=RFC 3010" \ "RFC3011=RFC 3011" \ "RFC3012=RFC 3012" \ "RFC3013=RFC 3013" \ "RFC3014=RFC 3014" \ "RFC3015=RFC 3015" \ "RFC3016=RFC 3016" \ "RFC3017=RFC 3017" \ "RFC3018=RFC 3018" \ "RFC3019=RFC 3019" \ "RFC3020=RFC 3020" \ "RFC3021=RFC 3021" \ "RFC3022=RFC 3022" \ "RFC3023=RFC 3023" \ "RFC3024=RFC 3024" \ "RFC3025=RFC 3025" \ "RFC3026=RFC 3026" \ "RFC3027=RFC 3027" \ "RFC3028=RFC 3028" \ "RFC3029=RFC 3029" \ "RFC3030=RFC 3030" \ "RFC3031=RFC 3031" \ "RFC3032=RFC 3032" \ "RFC3033=RFC 3033" \ "RFC3034=RFC 3034" \ "RFC3035=RFC 3035" \ "RFC3036=RFC 3036" \ "RFC3037=RFC 3037" \ "RFC3038=RFC 3038" \ "RFC3039=RFC 3039" \ "RFC3040=RFC 3040" \ "RFC3041=RFC 3041" \ "RFC3042=RFC 3042" \ "RFC3043=RFC 3043" \ "RFC3044=RFC 3044" \ "RFC3045=RFC 3045" \ "RFC3046=RFC 3046" \ "RFC3047=RFC 3047" \ "RFC3048=RFC 3048" \ "RFC3049=RFC 3049" \ "RFC3050=RFC 3050" \ "RFC3051=RFC 3051" \ "RFC3052=RFC 3052" \ "RFC3053=RFC 3053" \ "RFC3054=RFC 3054" \ "RFC3055=RFC 3055" \ "RFC3056=RFC 3056" \ "RFC3057=RFC 3057" \ "RFC3058=RFC 3058" \ "RFC3059=RFC 3059" \ "RFC3060=RFC 3060" \ "RFC3061=RFC 3061" \ "RFC3062=RFC 3062" \ "RFC3063=RFC 3063" \ "RFC3064=RFC 3064" \ "RFC3065=RFC 3065" \ "RFC3066=RFC 3066" \ "RFC3067=RFC 3067" \ "RFC3068=RFC 3068" \ "RFC3069=RFC 3069" \ "RFC3070=RFC 3070" \ "RFC3071=RFC 3071" \ "RFC3072=RFC 3072" \ "RFC3073=RFC 3073" \ "RFC3074=RFC 3074" \ "RFC3075=RFC 3075" \ "RFC3076=RFC 3076" \ "RFC3077=RFC 3077" \ "RFC3078=RFC 3078" \ "RFC3079=RFC 3079" \ "RFC3080=RFC 3080" \ "RFC3081=RFC 3081" \ "RFC3082=RFC 3082" \ "RFC3083=RFC 3083" \ "RFC3084=RFC 3084" \ "RFC3085=RFC 3085" \ "RFC3086=RFC 3086" \ "RFC3087=RFC 3087" \ "RFC3088=RFC 3088" \ "RFC3089=RFC 3089" \ "RFC3090=RFC 3090" \ "RFC3091=RFC 3091" \ "RFC3092=RFC 3092" \ "RFC3093=RFC 3093" \ "RFC3094=RFC 3094" \ "RFC3095=RFC 3095" \ "RFC3096=RFC 3096" \ "RFC3097=RFC 3097" \ "RFC3098=RFC 3098" \ "RFC3099=RFC 3099" \ "RFC3100=RFC 3100" \ "RFC3101=RFC 3101" \ "RFC3102=RFC 3102" \ "RFC3103=RFC 3103" \ "RFC3104=RFC 3104" \ "RFC3105=RFC 3105" \ "RFC3106=RFC 3106" \ "RFC3107=RFC 3107" \ "RFC3108=RFC 3108" \ "RFC3109=RFC 3109" \ "RFC3110=RFC 3110" \ "RFC3111=RFC 3111" \ "RFC3112=RFC 3112" \ "RFC3113=RFC 3113" \ "RFC3114=RFC 3114" \ "RFC3115=RFC 3115" \ "RFC3116=RFC 3116" \ "RFC3117=RFC 3117" \ "RFC3118=RFC 3118" \ "RFC3119=RFC 3119" \ "RFC3120=RFC 3120" \ "RFC3121=RFC 3121" \ "RFC3122=RFC 3122" \ "RFC3123=RFC 3123" \ "RFC3124=RFC 3124" \ "RFC3125=RFC 3125" \ "RFC3126=RFC 3126" \ "RFC3127=RFC 3127" \ "RFC3128=RFC 3128" \ "RFC3129=RFC 3129" \ "RFC3130=RFC 3130" \ "RFC3131=RFC 3131" \ "RFC3132=RFC 3132" \ "RFC3133=RFC 3133" \ "RFC3134=RFC 3134" \ "RFC3135=RFC 3135" \ "RFC3136=RFC 3136" \ "RFC3137=RFC 3137" \ "RFC3138=RFC 3138" \ "RFC3139=RFC 3139" \ "RFC3140=RFC 3140" \ "RFC3141=RFC 3141" \ "RFC3142=RFC 3142" \ "RFC3143=RFC 3143" \ "RFC3144=RFC 3144" \ "RFC3145=RFC 3145" \ "RFC3146=RFC 3146" \ "RFC3147=RFC 3147" \ "RFC3148=RFC 3148" \ "RFC3149=RFC 3149" \ "RFC3150=RFC 3150" \ "RFC3151=RFC 3151" \ "RFC3152=RFC 3152" \ "RFC3153=RFC 3153" \ "RFC3154=RFC 3154" \ "RFC3155=RFC 3155" \ "RFC3156=RFC 3156" \ "RFC3157=RFC 3157" \ "RFC3158=RFC 3158" \ "RFC3159=RFC 3159" \ "RFC3160=RFC 3160" \ "RFC3161=RFC 3161" \ "RFC3162=RFC 3162" \ "RFC3163=RFC 3163" \ "RFC3164=RFC 3164" \ "RFC3165=RFC 3165" \ "RFC3166=RFC 3166" \ "RFC3167=RFC 3167" \ "RFC3168=RFC 3168" \ "RFC3169=RFC 3169" \ "RFC3170=RFC 3170" \ "RFC3171=RFC 3171" \ "RFC3172=RFC 3172" \ "RFC3173=RFC 3173" \ "RFC3174=RFC 3174" \ "RFC3175=RFC 3175" \ "RFC3176=RFC 3176" \ "RFC3177=RFC 3177" \ "RFC3178=RFC 3178" \ "RFC3179=RFC 3179" \ "RFC3180=RFC 3180" \ "RFC3181=RFC 3181" \ "RFC3182=RFC 3182" \ "RFC3183=RFC 3183" \ "RFC3184=RFC 3184" \ "RFC3185=RFC 3185" \ "RFC3186=RFC 3186" \ "RFC3187=RFC 3187" \ "RFC3188=RFC 3188" \ "RFC3189=RFC 3189" \ "RFC3190=RFC 3190" \ "RFC3191=RFC 3191" \ "RFC3192=RFC 3192" \ "RFC3193=RFC 3193" \ "RFC3194=RFC 3194" \ "RFC3195=RFC 3195" \ "RFC3196=RFC 3196" \ "RFC3197=RFC 3197" \ "RFC3198=RFC 3198" \ "RFC3199=RFC 3199" \ "RFC3200=RFC 3200" \ "RFC3201=RFC 3201" \ "RFC3202=RFC 3202" \ "RFC3203=RFC 3203" \ "RFC3204=RFC 3204" \ "RFC3205=RFC 3205" \ "RFC3206=RFC 3206" \ "RFC3207=RFC 3207" \ "RFC3208=RFC 3208" \ "RFC3209=RFC 3209" \ "RFC3210=RFC 3210" \ "RFC3211=RFC 3211" \ "RFC3212=RFC 3212" \ "RFC3213=RFC 3213" \ "RFC3214=RFC 3214" \ "RFC3215=RFC 3215" \ "RFC3216=RFC 3216" \ "RFC3217=RFC 3217" \ "RFC3218=RFC 3218" \ "RFC3219=RFC 3219" \ "RFC3220=RFC 3220" \ "RFC3221=RFC 3221" \ "RFC3222=RFC 3222" \ "RFC3223=RFC 3223" \ "RFC3224=RFC 3224" \ "RFC3225=RFC 3225" \ "RFC3226=RFC 3226" \ "RFC3227=RFC 3227" \ "RFC3228=RFC 3228" \ "RFC3229=RFC 3229" \ "RFC3230=RFC 3230" \ "RFC3231=RFC 3231" \ "RFC3232=RFC 3232" \ "RFC3233=RFC 3233" \ "RFC3234=RFC 3234" \ "RFC3235=RFC 3235" \ "RFC3236=RFC 3236" \ "RFC3237=RFC 3237" \ "RFC3238=RFC 3238" \ "RFC3239=RFC 3239" \ "RFC3240=RFC 3240" \ "RFC3241=RFC 3241" \ "RFC3242=RFC 3242" \ "RFC3243=RFC 3243" \ "RFC3244=RFC 3244" \ "RFC3245=RFC 3245" \ "RFC3246=RFC 3246" \ "RFC3247=RFC 3247" \ "RFC3248=RFC 3248" \ "RFC3249=RFC 3249" \ "RFC3250=RFC 3250" \ "RFC3251=RFC 3251" \ "RFC3252=RFC 3252" \ "RFC3253=RFC 3253" \ "RFC3254=RFC 3254" \ "RFC3255=RFC 3255" \ "RFC3256=RFC 3256" \ "RFC3257=RFC 3257" \ "RFC3258=RFC 3258" \ "RFC3259=RFC 3259" \ "RFC3260=RFC 3260" \ "RFC3261=RFC 3261" \ "RFC3262=RFC 3262" \ "RFC3263=RFC 3263" \ "RFC3264=RFC 3264" \ "RFC3265=RFC 3265" \ "RFC3266=RFC 3266" \ "RFC3267=RFC 3267" \ "RFC3268=RFC 3268" \ "RFC3269=RFC 3269" \ "RFC3270=RFC 3270" \ "RFC3271=RFC 3271" \ "RFC3272=RFC 3272" \ "RFC3273=RFC 3273" \ "RFC3274=RFC 3274" \ "RFC3275=RFC 3275" \ "RFC3276=RFC 3276" \ "RFC3277=RFC 3277" \ "RFC3278=RFC 3278" \ "RFC3279=RFC 3279" \ "RFC3280=RFC 3280" \ "RFC3281=RFC 3281" \ "RFC3282=RFC 3282" \ "RFC3283=RFC 3283" \ "RFC3284=RFC 3284" \ "RFC3285=RFC 3285" \ "RFC3286=RFC 3286" \ "RFC3287=RFC 3287" \ "RFC3288=RFC 3288" \ "RFC3289=RFC 3289" \ "RFC3290=RFC 3290" \ "RFC3291=RFC 3291" \ "RFC3292=RFC 3292" \ "RFC3293=RFC 3293" \ "RFC3294=RFC 3294" \ "RFC3295=RFC 3295" \ "RFC3296=RFC 3296" \ "RFC3297=RFC 3297" \ "RFC3298=RFC 3298" \ "RFC3299=RFC 3299" \ "RFC3300=RFC 3300" \ "RFC3301=RFC 3301" \ "RFC3302=RFC 3302" \ "RFC3303=RFC 3303" \ "RFC3304=RFC 3304" \ "RFC3305=RFC 3305" \ "RFC3306=RFC 3306" \ "RFC3307=RFC 3307" \ "RFC3308=RFC 3308" \ "RFC3309=RFC 3309" \ "RFC3310=RFC 3310" \ "RFC3311=RFC 3311" \ "RFC3312=RFC 3312" \ "RFC3313=RFC 3313" \ "RFC3314=RFC 3314" \ "RFC3315=RFC 3315" \ "RFC3316=RFC 3316" \ "RFC3317=RFC 3317" \ "RFC3318=RFC 3318" \ "RFC3319=RFC 3319" \ "RFC3320=RFC 3320" \ "RFC3321=RFC 3321" \ "RFC3322=RFC 3322" \ "RFC3323=RFC 3323" \ "RFC3324=RFC 3324" \ "RFC3325=RFC 3325" \ "RFC3326=RFC 3326" \ "RFC3327=RFC 3327" \ "RFC3328=RFC 3328" \ "RFC3329=RFC 3329" \ "RFC3330=RFC 3330" \ "RFC3331=RFC 3331" \ "RFC3332=RFC 3332" \ "RFC3333=RFC 3333" \ "RFC3334=RFC 3334" \ "RFC3335=RFC 3335" \ "RFC3336=RFC 3336" \ "RFC3337=RFC 3337" \ "RFC3338=RFC 3338" \ "RFC3339=RFC 3339" \ "RFC3340=RFC 3340" \ "RFC3341=RFC 3341" \ "RFC3342=RFC 3342" \ "RFC3343=RFC 3343" \ "RFC3344=RFC 3344" \ "RFC3345=RFC 3345" \ "RFC3346=RFC 3346" \ "RFC3347=RFC 3347" \ "RFC3348=RFC 3348" \ "RFC3349=RFC 3349" \ "RFC3350=RFC 3350" \ "RFC3351=RFC 3351" \ "RFC3352=RFC 3352" \ "RFC3353=RFC 3353" \ "RFC3354=RFC 3354" \ "RFC3355=RFC 3355" \ "RFC3356=RFC 3356" \ "RFC3357=RFC 3357" \ "RFC3358=RFC 3358" \ "RFC3359=RFC 3359" \ "RFC3360=RFC 3360" \ "RFC3361=RFC 3361" \ "RFC3362=RFC 3362" \ "RFC3363=RFC 3363" \ "RFC3364=RFC 3364" \ "RFC3365=RFC 3365" \ "RFC3366=RFC 3366" \ "RFC3367=RFC 3367" \ "RFC3368=RFC 3368" \ "RFC3369=RFC 3369" \ "RFC3370=RFC 3370" \ "RFC3371=RFC 3371" \ "RFC3372=RFC 3372" \ "RFC3373=RFC 3373" \ "RFC3374=RFC 3374" \ "RFC3375=RFC 3375" \ "RFC3376=RFC 3376" \ "RFC3377=RFC 3377" \ "RFC3378=RFC 3378" \ "RFC3379=RFC 3379" \ "RFC3380=RFC 3380" \ "RFC3381=RFC 3381" \ "RFC3382=RFC 3382" \ "RFC3383=RFC 3383" \ "RFC3384=RFC 3384" \ "RFC3385=RFC 3385" \ "RFC3386=RFC 3386" \ "RFC3387=RFC 3387" \ "RFC3388=RFC 3388" \ "RFC3389=RFC 3389" \ "RFC3390=RFC 3390" \ "RFC3391=RFC 3391" \ "RFC3392=RFC 3392" \ "RFC3393=RFC 3393" \ "RFC3394=RFC 3394" \ "RFC3395=RFC 3395" \ "RFC3396=RFC 3396" \ "RFC3397=RFC 3397" \ "RFC3398=RFC 3398" \ "RFC3399=RFC 3399" \ "RFC3400=RFC 3400" \ "RFC3401=RFC 3401" \ "RFC3402=RFC 3402" \ "RFC3403=RFC 3403" \ "RFC3404=RFC 3404" \ "RFC3405=RFC 3405" \ "RFC3406=RFC 3406" \ "RFC3407=RFC 3407" \ "RFC3408=RFC 3408" \ "RFC3409=RFC 3409" \ "RFC3410=RFC 3410" \ "RFC3411=RFC 3411" \ "RFC3412=RFC 3412" \ "RFC3413=RFC 3413" \ "RFC3414=RFC 3414" \ "RFC3415=RFC 3415" \ "RFC3416=RFC 3416" \ "RFC3417=RFC 3417" \ "RFC3418=RFC 3418" \ "RFC3419=RFC 3419" \ "RFC3420=RFC 3420" \ "RFC3421=RFC 3421" \ "RFC3422=RFC 3422" \ "RFC3423=RFC 3423" \ "RFC3424=RFC 3424" \ "RFC3425=RFC 3425" \ "RFC3426=RFC 3426" \ "RFC3427=RFC 3427" \ "RFC3428=RFC 3428" \ "RFC3429=RFC 3429" \ "RFC3430=RFC 3430" \ "RFC3431=RFC 3431" \ "RFC3432=RFC 3432" \ "RFC3433=RFC 3433" \ "RFC3434=RFC 3434" \ "RFC3435=RFC 3435" \ "RFC3436=RFC 3436" \ "RFC3437=RFC 3437" \ "RFC3438=RFC 3438" \ "RFC3439=RFC 3439" \ "RFC3440=RFC 3440" \ "RFC3441=RFC 3441" \ "RFC3442=RFC 3442" \ "RFC3443=RFC 3443" \ "RFC3444=RFC 3444" \ "RFC3445=RFC 3445" \ "RFC3446=RFC 3446" \ "RFC3447=RFC 3447" \ "RFC3448=RFC 3448" \ "RFC3449=RFC 3449" \ "RFC3450=RFC 3450" \ "RFC3451=RFC 3451" \ "RFC3452=RFC 3452" \ "RFC3453=RFC 3453" \ "RFC3454=RFC 3454" \ "RFC3455=RFC 3455" \ "RFC3456=RFC 3456" \ "RFC3457=RFC 3457" \ "RFC3458=RFC 3458" \ "RFC3459=RFC 3459" \ "RFC3460=RFC 3460" \ "RFC3461=RFC 3461" \ "RFC3462=RFC 3462" \ "RFC3463=RFC 3463" \ "RFC3464=RFC 3464" \ "RFC3465=RFC 3465" \ "RFC3466=RFC 3466" \ "RFC3467=RFC 3467" \ "RFC3468=RFC 3468" \ "RFC3469=RFC 3469" \ "RFC3470=RFC 3470" \ "RFC3471=RFC 3471" \ "RFC3472=RFC 3472" \ "RFC3473=RFC 3473" \ "RFC3474=RFC 3474" \ "RFC3475=RFC 3475" \ "RFC3476=RFC 3476" \ "RFC3477=RFC 3477" \ "RFC3478=RFC 3478" \ "RFC3479=RFC 3479" \ "RFC3480=RFC 3480" \ "RFC3481=RFC 3481" \ "RFC3482=RFC 3482" \ "RFC3483=RFC 3483" \ "RFC3484=RFC 3484" \ "RFC3485=RFC 3485" \ "RFC3486=RFC 3486" \ "RFC3487=RFC 3487" \ "RFC3488=RFC 3488" \ "RFC3489=RFC 3489" \ "RFC3490=RFC 3490" \ "RFC3491=RFC 3491" \ "RFC3492=RFC 3492" \ "RFC3493=RFC 3493" \ "RFC3494=RFC 3494" \ "RFC3495=RFC 3495" \ "RFC3496=RFC 3496" \ "RFC3497=RFC 3497" \ "RFC3498=RFC 3498" \ "RFC3499=RFC 3499" \ "RFC3500=RFC 3500" \ "RFC3501=RFC 3501" \ "RFC3502=RFC 3502" \ "RFC3503=RFC 3503" \ "RFC3504=RFC 3504" \ "RFC3505=RFC 3505" \ "RFC3506=RFC 3506" \ "RFC3507=RFC 3507" \ "RFC3508=RFC 3508" \ "RFC3509=RFC 3509" \ "RFC3510=RFC 3510" \ "RFC3511=RFC 3511" \ "RFC3512=RFC 3512" \ "RFC3513=RFC 3513" \ "RFC3514=RFC 3514" \ "RFC3515=RFC 3515" \ "RFC3516=RFC 3516" \ "RFC3517=RFC 3517" \ "RFC3518=RFC 3518" \ "RFC3519=RFC 3519" \ "RFC3520=RFC 3520" \ "RFC3521=RFC 3521" \ "RFC3522=RFC 3522" \ "RFC3523=RFC 3523" \ "RFC3524=RFC 3524" \ "RFC3525=RFC 3525" \ "RFC3526=RFC 3526" \ "RFC3527=RFC 3527" \ "RFC3528=RFC 3528" \ "RFC3529=RFC 3529" \ "RFC3530=RFC 3530" \ "RFC3531=RFC 3531" \ "RFC3532=RFC 3532" \ "RFC3533=RFC 3533" \ "RFC3534=RFC 3534" \ "RFC3535=RFC 3535" \ "RFC3536=RFC 3536" \ "RFC3537=RFC 3537" \ "RFC3538=RFC 3538" \ "RFC3539=RFC 3539" \ "RFC3540=RFC 3540" \ "RFC3541=RFC 3541" \ "RFC3542=RFC 3542" \ "RFC3543=RFC 3543" \ "RFC3544=RFC 3544" \ "RFC3545=RFC 3545" \ "RFC3546=RFC 3546" \ "RFC3547=RFC 3547" \ "RFC3548=RFC 3548" \ "RFC3549=RFC 3549" \ "RFC3550=RFC 3550" \ "RFC3551=RFC 3551" \ "RFC3552=RFC 3552" \ "RFC3553=RFC 3553" \ "RFC3554=RFC 3554" \ "RFC3555=RFC 3555" \ "RFC3556=RFC 3556" \ "RFC3557=RFC 3557" \ "RFC3558=RFC 3558" \ "RFC3559=RFC 3559" \ "RFC3560=RFC 3560" \ "RFC3561=RFC 3561" \ "RFC3562=RFC 3562" \ "RFC3563=RFC 3563" \ "RFC3564=RFC 3564" \ "RFC3565=RFC 3565" \ "RFC3566=RFC 3566" \ "RFC3567=RFC 3567" \ "RFC3568=RFC 3568" \ "RFC3569=RFC 3569" \ "RFC3570=RFC 3570" \ "RFC3571=RFC 3571" \ "RFC3572=RFC 3572" \ "RFC3573=RFC 3573" \ "RFC3574=RFC 3574" \ "RFC3575=RFC 3575" \ "RFC3576=RFC 3576" \ "RFC3577=RFC 3577" \ "RFC3578=RFC 3578" \ "RFC3579=RFC 3579" \ "RFC3580=RFC 3580" \ "RFC3581=RFC 3581" \ "RFC3582=RFC 3582" \ "RFC3583=RFC 3583" \ "RFC3584=RFC 3584" \ "RFC3585=RFC 3585" \ "RFC3586=RFC 3586" \ "RFC3587=RFC 3587" \ "RFC3588=RFC 3588" \ "RFC3589=RFC 3589" \ "RFC3590=RFC 3590" \ "RFC3591=RFC 3591" \ "RFC3592=RFC 3592" \ "RFC3593=RFC 3593" \ "RFC3594=RFC 3594" \ "RFC3595=RFC 3595" \ "RFC3596=RFC 3596" \ "RFC3597=RFC 3597" \ "RFC3598=RFC 3598" \ "RFC3599=RFC 3599" \ "RFC3600=RFC 3600" \ "RFC3601=RFC 3601" \ "RFC3602=RFC 3602" \ "RFC3603=RFC 3603" \ "RFC3604=RFC 3604" \ "RFC3605=RFC 3605" \ "RFC3606=RFC 3606" \ "RFC3607=RFC 3607" \ "RFC3608=RFC 3608" \ "RFC3609=RFC 3609" \ "RFC3610=RFC 3610" \ "RFC3611=RFC 3611" \ "RFC3612=RFC 3612" \ "RFC3613=RFC 3613" \ "RFC3614=RFC 3614" \ "RFC3615=RFC 3615" \ "RFC3616=RFC 3616" \ "RFC3617=RFC 3617" \ "RFC3618=RFC 3618" \ "RFC3619=RFC 3619" \ "RFC3620=RFC 3620" \ "RFC3621=RFC 3621" \ "RFC3622=RFC 3622" \ "RFC3623=RFC 3623" \ "RFC3624=RFC 3624" \ "RFC3625=RFC 3625" \ "RFC3626=RFC 3626" \ "RFC3627=RFC 3627" \ "RFC3628=RFC 3628" \ "RFC3629=RFC 3629" \ "RFC3630=RFC 3630" \ "RFC3631=RFC 3631" \ "RFC3632=RFC 3632" \ "RFC3633=RFC 3633" \ "RFC3634=RFC 3634" \ "RFC3635=RFC 3635" \ "RFC3636=RFC 3636" \ "RFC3637=RFC 3637" \ "RFC3638=RFC 3638" \ "RFC3639=RFC 3639" \ "RFC3640=RFC 3640" \ "RFC3641=RFC 3641" \ "RFC3642=RFC 3642" \ "RFC3643=RFC 3643" \ "RFC3644=RFC 3644" \ "RFC3645=RFC 3645" \ "RFC3646=RFC 3646" \ "RFC3647=RFC 3647" \ "RFC3648=RFC 3648" \ "RFC3649=RFC 3649" \ "RFC3650=RFC 3650" \ "RFC3651=RFC 3651" \ "RFC3652=RFC 3652" \ "RFC3653=RFC 3653" \ "RFC3654=RFC 3654" \ "RFC3655=RFC 3655" \ "RFC3656=RFC 3656" \ "RFC3657=RFC 3657" \ "RFC3658=RFC 3658" \ "RFC3659=RFC 3659" \ "RFC3660=RFC 3660" \ "RFC3661=RFC 3661" \ "RFC3662=RFC 3662" \ "RFC3663=RFC 3663" \ "RFC3664=RFC 3664" \ "RFC3665=RFC 3665" \ "RFC3666=RFC 3666" \ "RFC3667=RFC 3667" \ "RFC3668=RFC 3668" \ "RFC3669=RFC 3669" \ "RFC3670=RFC 3670" \ "RFC3671=RFC 3671" \ "RFC3672=RFC 3672" \ "RFC3673=RFC 3673" \ "RFC3674=RFC 3674" \ "RFC3675=RFC 3675" \ "RFC3676=RFC 3676" \ "RFC3677=RFC 3677" \ "RFC3678=RFC 3678" \ "RFC3679=RFC 3679" \ "RFC3680=RFC 3680" \ "RFC3681=RFC 3681" \ "RFC3682=RFC 3682" \ "RFC3683=RFC 3683" \ "RFC3684=RFC 3684" \ "RFC3685=RFC 3685" \ "RFC3686=RFC 3686" \ "RFC3687=RFC 3687" \ "RFC3688=RFC 3688" \ "RFC3689=RFC 3689" \ "RFC3690=RFC 3690" \ "RFC3691=RFC 3691" \ "RFC3692=RFC 3692" \ "RFC3693=RFC 3693" \ "RFC3694=RFC 3694" \ "RFC3695=RFC 3695" \ "RFC3696=RFC 3696" \ "RFC3697=RFC 3697" \ "RFC3698=RFC 3698" \ "RFC3699=RFC 3699" \ "RFC3700=RFC 3700" \ "RFC3701=RFC 3701" \ "RFC3702=RFC 3702" \ "RFC3703=RFC 3703" \ "RFC3704=RFC 3704" \ "RFC3705=RFC 3705" \ "RFC3706=RFC 3706" \ "RFC3707=RFC 3707" \ "RFC3708=RFC 3708" \ "RFC3709=RFC 3709" \ "RFC3710=RFC 3710" \ "RFC3711=RFC 3711" \ "RFC3712=RFC 3712" \ "RFC3713=RFC 3713" \ "RFC3714=RFC 3714" \ "RFC3715=RFC 3715" \ "RFC3716=RFC 3716" \ "RFC3717=RFC 3717" \ "RFC3718=RFC 3718" \ "RFC3719=RFC 3719" \ "RFC3720=RFC 3720" \ "RFC3721=RFC 3721" \ "RFC3722=RFC 3722" \ "RFC3723=RFC 3723" \ "RFC3724=RFC 3724" \ "RFC3725=RFC 3725" \ "RFC3726=RFC 3726" \ "RFC3727=RFC 3727" \ "RFC3728=RFC 3728" \ "RFC3729=RFC 3729" \ "RFC3730=RFC 3730" \ "RFC3731=RFC 3731" \ "RFC3732=RFC 3732" \ "RFC3733=RFC 3733" \ "RFC3734=RFC 3734" \ "RFC3735=RFC 3735" \ "RFC3736=RFC 3736" \ "RFC3737=RFC 3737" \ "RFC3738=RFC 3738" \ "RFC3739=RFC 3739" \ "RFC3740=RFC 3740" \ "RFC3741=RFC 3741" \ "RFC3742=RFC 3742" \ "RFC3743=RFC 3743" \ "RFC3744=RFC 3744" \ "RFC3745=RFC 3745" \ "RFC3746=RFC 3746" \ "RFC3747=RFC 3747" \ "RFC3748=RFC 3748" \ "RFC3749=RFC 3749" \ "RFC3750=RFC 3750" \ "RFC3751=RFC 3751" \ "RFC3752=RFC 3752" \ "RFC3753=RFC 3753" \ "RFC3754=RFC 3754" \ "RFC3755=RFC 3755" \ "RFC3756=RFC 3756" \ "RFC3757=RFC 3757" \ "RFC3758=RFC 3758" \ "RFC3759=RFC 3759" \ "RFC3760=RFC 3760" \ "RFC3761=RFC 3761" \ "RFC3762=RFC 3762" \ "RFC3763=RFC 3763" \ "RFC3764=RFC 3764" \ "RFC3765=RFC 3765" \ "RFC3766=RFC 3766" \ "RFC3767=RFC 3767" \ "RFC3768=RFC 3768" \ "RFC3769=RFC 3769" \ "RFC3770=RFC 3770" \ "RFC3771=RFC 3771" \ "RFC3772=RFC 3772" \ "RFC3773=RFC 3773" \ "RFC3774=RFC 3774" \ "RFC3775=RFC 3775" \ "RFC3776=RFC 3776" \ "RFC3777=RFC 3777" \ "RFC3778=RFC 3778" \ "RFC3779=RFC 3779" \ "RFC3780=RFC 3780" \ "RFC3781=RFC 3781" \ "RFC3782=RFC 3782" \ "RFC3783=RFC 3783" \ "RFC3784=RFC 3784" \ "RFC3785=RFC 3785" \ "RFC3786=RFC 3786" \ "RFC3787=RFC 3787" \ "RFC3788=RFC 3788" \ "RFC3789=RFC 3789" \ "RFC3790=RFC 3790" \ "RFC3791=RFC 3791" \ "RFC3792=RFC 3792" \ "RFC3793=RFC 3793" \ "RFC3794=RFC 3794" \ "RFC3795=RFC 3795" \ "RFC3796=RFC 3796" \ "RFC3797=RFC 3797" \ "RFC3798=RFC 3798" \ "RFC3799=RFC 3799" \ "RFC3800=RFC 3800" \ "RFC3801=RFC 3801" \ "RFC3802=RFC 3802" \ "RFC3803=RFC 3803" \ "RFC3804=RFC 3804" \ "RFC3805=RFC 3805" \ "RFC3806=RFC 3806" \ "RFC3807=RFC 3807" \ "RFC3808=RFC 3808" \ "RFC3809=RFC 3809" \ "RFC3810=RFC 3810" \ "RFC3811=RFC 3811" \ "RFC3812=RFC 3812" \ "RFC3813=RFC 3813" \ "RFC3814=RFC 3814" \ "RFC3815=RFC 3815" \ "RFC3816=RFC 3816" \ "RFC3817=RFC 3817" \ "RFC3818=RFC 3818" \ "RFC3819=RFC 3819" \ "RFC3820=RFC 3820" \ "RFC3821=RFC 3821" \ "RFC3822=RFC 3822" \ "RFC3823=RFC 3823" \ "RFC3824=RFC 3824" \ "RFC3825=RFC 3825" \ "RFC3826=RFC 3826" \ "RFC3827=RFC 3827" \ "RFC3828=RFC 3828" \ "RFC3829=RFC 3829" \ "RFC3830=RFC 3830" \ "RFC3831=RFC 3831" \ "RFC3832=RFC 3832" \ "RFC3833=RFC 3833" \ "RFC3834=RFC 3834" \ "RFC3835=RFC 3835" \ "RFC3836=RFC 3836" \ "RFC3837=RFC 3837" \ "RFC3838=RFC 3838" \ "RFC3839=RFC 3839" \ "RFC3840=RFC 3840" \ "RFC3841=RFC 3841" \ "RFC3842=RFC 3842" \ "RFC3843=RFC 3843" \ "RFC3844=RFC 3844" \ "RFC3845=RFC 3845" \ "RFC3846=RFC 3846" \ "RFC3847=RFC 3847" \ "RFC3848=RFC 3848" \ "RFC3849=RFC 3849" \ "RFC3850=RFC 3850" \ "RFC3851=RFC 3851" \ "RFC3852=RFC 3852" \ "RFC3853=RFC 3853" \ "RFC3854=RFC 3854" \ "RFC3855=RFC 3855" \ "RFC3856=RFC 3856" \ "RFC3857=RFC 3857" \ "RFC3858=RFC 3858" \ "RFC3859=RFC 3859" \ "RFC3860=RFC 3860" \ "RFC3861=RFC 3861" \ "RFC3862=RFC 3862" \ "RFC3863=RFC 3863" \ "RFC3864=RFC 3864" \ "RFC3865=RFC 3865" \ "RFC3866=RFC 3866" \ "RFC3867=RFC 3867" \ "RFC3868=RFC 3868" \ "RFC3869=RFC 3869" \ "RFC3870=RFC 3870" \ "RFC3871=RFC 3871" \ "RFC3872=RFC 3872" \ "RFC3873=RFC 3873" \ "RFC3874=RFC 3874" \ "RFC3875=RFC 3875" \ "RFC3876=RFC 3876" \ "RFC3877=RFC 3877" \ "RFC3878=RFC 3878" \ "RFC3879=RFC 3879" \ "RFC3880=RFC 3880" \ "RFC3881=RFC 3881" \ "RFC3882=RFC 3882" \ "RFC3883=RFC 3883" \ "RFC3884=RFC 3884" \ "RFC3885=RFC 3885" \ "RFC3886=RFC 3886" \ "RFC3887=RFC 3887" \ "RFC3888=RFC 3888" \ "RFC3889=RFC 3889" \ "RFC3890=RFC 3890" \ "RFC3891=RFC 3891" \ "RFC3892=RFC 3892" \ "RFC3893=RFC 3893" \ "RFC3894=RFC 3894" \ "RFC3895=RFC 3895" \ "RFC3896=RFC 3896" \ "RFC3897=RFC 3897" \ "RFC3898=RFC 3898" \ "RFC3899=RFC 3899" \ "RFC3900=RFC 3900" \ "RFC3901=RFC 3901" \ "RFC3902=RFC 3902" \ "RFC3903=RFC 3903" \ "RFC3904=RFC 3904" \ "RFC3905=RFC 3905" \ "RFC3906=RFC 3906" \ "RFC3907=RFC 3907" \ "RFC3908=RFC 3908" \ "RFC3909=RFC 3909" \ "RFC3910=RFC 3910" \ "RFC3911=RFC 3911" \ "RFC3912=RFC 3912" \ "RFC3913=RFC 3913" \ "RFC3914=RFC 3914" \ "RFC3915=RFC 3915" \ "RFC3916=RFC 3916" \ "RFC3917=RFC 3917" \ "RFC3918=RFC 3918" \ "RFC3919=RFC 3919" \ "RFC3920=RFC 3920" \ "RFC3921=RFC 3921" \ "RFC3922=RFC 3922" \ "RFC3923=RFC 3923" \ "RFC3924=RFC 3924" \ "RFC3925=RFC 3925" \ "RFC3926=RFC 3926" \ "RFC3927=RFC 3927" \ "RFC3928=RFC 3928" \ "RFC3929=RFC 3929" \ "RFC3930=RFC 3930" \ "RFC3931=RFC 3931" \ "RFC3932=RFC 3932" \ "RFC3933=RFC 3933" \ "RFC3934=RFC 3934" \ "RFC3935=RFC 3935" \ "RFC3936=RFC 3936" \ "RFC3937=RFC 3937" \ "RFC3938=RFC 3938" \ "RFC3939=RFC 3939" \ "RFC3940=RFC 3940" \ "RFC3941=RFC 3941" \ "RFC3942=RFC 3942" \ "RFC3943=RFC 3943" \ "RFC3944=RFC 3944" \ "RFC3945=RFC 3945" \ "RFC3946=RFC 3946" \ "RFC3947=RFC 3947" \ "RFC3948=RFC 3948" \ "RFC3949=RFC 3949" \ "RFC3950=RFC 3950" \ "RFC3951=RFC 3951" \ "RFC3952=RFC 3952" \ "RFC3953=RFC 3953" \ "RFC3954=RFC 3954" \ "RFC3955=RFC 3955" \ "RFC3956=RFC 3956" \ "RFC3957=RFC 3957" \ "RFC3958=RFC 3958" \ "RFC3959=RFC 3959" \ "RFC3960=RFC 3960" \ "RFC3961=RFC 3961" \ "RFC3962=RFC 3962" \ "RFC3963=RFC 3963" \ "RFC3964=RFC 3964" \ "RFC3965=RFC 3965" \ "RFC3966=RFC 3966" \ "RFC3967=RFC 3967" \ "RFC3968=RFC 3968" \ "RFC3969=RFC 3969" \ "RFC3970=RFC 3970" \ "RFC3971=RFC 3971" \ "RFC3972=RFC 3972" \ "RFC3973=RFC 3973" \ "RFC3974=RFC 3974" \ "RFC3975=RFC 3975" \ "RFC3976=RFC 3976" \ "RFC3977=RFC 3977" \ "RFC3978=RFC 3978" \ "RFC3979=RFC 3979" \ "RFC3980=RFC 3980" \ "RFC3981=RFC 3981" \ "RFC3982=RFC 3982" \ "RFC3983=RFC 3983" \ "RFC3984=RFC 3984" \ "RFC3985=RFC 3985" \ "RFC3986=RFC 3986" \ "RFC3987=RFC 3987" \ "RFC3988=RFC 3988" \ "RFC3989=RFC 3989" \ "RFC3990=RFC 3990" \ "RFC3991=RFC 3991" \ "RFC3992=RFC 3992" \ "RFC3993=RFC 3993" \ "RFC3994=RFC 3994" \ "RFC3995=RFC 3995" \ "RFC3996=RFC 3996" \ "RFC3997=RFC 3997" \ "RFC3998=RFC 3998" \ "RFC3999=RFC 3999" \ "RFC4000=RFC 4000" \ "RFC4001=RFC 4001" \ "RFC4002=RFC 4002" \ "RFC4003=RFC 4003" \ "RFC4004=RFC 4004" \ "RFC4005=RFC 4005" \ "RFC4006=RFC 4006" \ "RFC4007=RFC 4007" \ "RFC4008=RFC 4008" \ "RFC4009=RFC 4009" \ "RFC4010=RFC 4010" \ "RFC4011=RFC 4011" \ "RFC4012=RFC 4012" \ "RFC4013=RFC 4013" \ "RFC4014=RFC 4014" \ "RFC4015=RFC 4015" \ "RFC4016=RFC 4016" \ "RFC4017=RFC 4017" \ "RFC4018=RFC 4018" \ "RFC4019=RFC 4019" \ "RFC4020=RFC 4020" \ "RFC4021=RFC 4021" \ "RFC4022=RFC 4022" \ "RFC4023=RFC 4023" \ "RFC4024=RFC 4024" \ "RFC4025=RFC 4025" \ "RFC4026=RFC 4026" \ "RFC4027=RFC 4027" \ "RFC4028=RFC 4028" \ "RFC4029=RFC 4029" \ "RFC4030=RFC 4030" \ "RFC4031=RFC 4031" \ "RFC4032=RFC 4032" \ "RFC4033=RFC 4033" \ "RFC4034=RFC 4034" \ "RFC4035=RFC 4035" \ "RFC4036=RFC 4036" \ "RFC4037=RFC 4037" \ "RFC4038=RFC 4038" \ "RFC4039=RFC 4039" \ "RFC4040=RFC 4040" \ "RFC4041=RFC 4041" \ "RFC4042=RFC 4042" \ "RFC4043=RFC 4043" \ "RFC4044=RFC 4044" \ "RFC4045=RFC 4045" \ "RFC4046=RFC 4046" \ "RFC4047=RFC 4047" \ "RFC4048=RFC 4048" \ "RFC4049=RFC 4049" \ "RFC4050=RFC 4050" \ "RFC4051=RFC 4051" \ "RFC4052=RFC 4052" \ "RFC4053=RFC 4053" \ "RFC4054=RFC 4054" \ "RFC4055=RFC 4055" \ "RFC4056=RFC 4056" \ "RFC4057=RFC 4057" \ "RFC4058=RFC 4058" \ "RFC4059=RFC 4059" \ "RFC4060=RFC 4060" \ "RFC4061=RFC 4061" \ "RFC4062=RFC 4062" \ "RFC4063=RFC 4063" \ "RFC4064=RFC 4064" \ "RFC4065=RFC 4065" \ "RFC4066=RFC 4066" \ "RFC4067=RFC 4067" \ "RFC4068=RFC 4068" \ "RFC4069=RFC 4069" \ "RFC4070=RFC 4070" \ "RFC4071=RFC 4071" \ "RFC4072=RFC 4072" \ "RFC4073=RFC 4073" \ "RFC4074=RFC 4074" \ "RFC4075=RFC 4075" \ "RFC4076=RFC 4076" \ "RFC4077=RFC 4077" \ "RFC4078=RFC 4078" \ "RFC4079=RFC 4079" \ "RFC4080=RFC 4080" \ "RFC4081=RFC 4081" \ "RFC4082=RFC 4082" \ "RFC4083=RFC 4083" \ "RFC4084=RFC 4084" \ "RFC4085=RFC 4085" \ "RFC4086=RFC 4086" \ "RFC4087=RFC 4087" \ "RFC4088=RFC 4088" \ "RFC4089=RFC 4089" \ "RFC4090=RFC 4090" \ "RFC4091=RFC 4091" \ "RFC4092=RFC 4092" \ "RFC4093=RFC 4093" \ "RFC4094=RFC 4094" \ "RFC4095=RFC 4095" \ "RFC4096=RFC 4096" \ "RFC4097=RFC 4097" \ "RFC4098=RFC 4098" \ "RFC4099=RFC 4099" \ "RFC4100=RFC 4100" \ "RFC4101=RFC 4101" \ "RFC4102=RFC 4102" \ "RFC4103=RFC 4103" \ "RFC4104=RFC 4104" \ "RFC4105=RFC 4105" \ "RFC4106=RFC 4106" \ "RFC4107=RFC 4107" \ "RFC4108=RFC 4108" \ "RFC4109=RFC 4109" \ "RFC4110=RFC 4110" \ "RFC4111=RFC 4111" \ "RFC4112=RFC 4112" \ "RFC4113=RFC 4113" \ "RFC4114=RFC 4114" \ "RFC4115=RFC 4115" \ "RFC4116=RFC 4116" \ "RFC4117=RFC 4117" \ "RFC4118=RFC 4118" \ "RFC4119=RFC 4119" \ "RFC4120=RFC 4120" \ "RFC4121=RFC 4121" \ "RFC4122=RFC 4122" \ "RFC4123=RFC 4123" \ "RFC4124=RFC 4124" \ "RFC4125=RFC 4125" \ "RFC4126=RFC 4126" \ "RFC4127=RFC 4127" \ "RFC4128=RFC 4128" \ "RFC4129=RFC 4129" \ "RFC4130=RFC 4130" \ "RFC4131=RFC 4131" \ "RFC4132=RFC 4132" \ "RFC4133=RFC 4133" \ "RFC4134=RFC 4134" \ "RFC4135=RFC 4135" \ "RFC4136=RFC 4136" \ "RFC4137=RFC 4137" \ "RFC4138=RFC 4138" \ "RFC4139=RFC 4139" \ "RFC4140=RFC 4140" \ "RFC4141=RFC 4141" \ "RFC4142=RFC 4142" \ "RFC4143=RFC 4143" \ "RFC4144=RFC 4144" \ "RFC4145=RFC 4145" \ "RFC4146=RFC 4146" \ "RFC4147=RFC 4147" \ "RFC4148=RFC 4148" \ "RFC4149=RFC 4149" \ "RFC4150=RFC 4150" \ "RFC4151=RFC 4151" \ "RFC4152=RFC 4152" \ "RFC4153=RFC 4153" \ "RFC4154=RFC 4154" \ "RFC4155=RFC 4155" \ "RFC4156=RFC 4156" \ "RFC4157=RFC 4157" \ "RFC4158=RFC 4158" \ "RFC4159=RFC 4159" \ "RFC4160=RFC 4160" \ "RFC4161=RFC 4161" \ "RFC4162=RFC 4162" \ "RFC4163=RFC 4163" \ "RFC4164=RFC 4164" \ "RFC4165=RFC 4165" \ "RFC4166=RFC 4166" \ "RFC4167=RFC 4167" \ "RFC4168=RFC 4168" \ "RFC4169=RFC 4169" \ "RFC4170=RFC 4170" \ "RFC4171=RFC 4171" \ "RFC4172=RFC 4172" \ "RFC4173=RFC 4173" \ "RFC4174=RFC 4174" \ "RFC4175=RFC 4175" \ "RFC4176=RFC 4176" \ "RFC4177=RFC 4177" \ "RFC4178=RFC 4178" \ "RFC4179=RFC 4179" \ "RFC4180=RFC 4180" \ "RFC4181=RFC 4181" \ "RFC4182=RFC 4182" \ "RFC4183=RFC 4183" \ "RFC4184=RFC 4184" \ "RFC4185=RFC 4185" \ "RFC4186=RFC 4186" \ "RFC4187=RFC 4187" \ "RFC4188=RFC 4188" \ "RFC4189=RFC 4189" \ "RFC4190=RFC 4190" \ "RFC4191=RFC 4191" \ "RFC4192=RFC 4192" \ "RFC4193=RFC 4193" \ "RFC4194=RFC 4194" \ "RFC4195=RFC 4195" \ "RFC4196=RFC 4196" \ "RFC4197=RFC 4197" \ "RFC4198=RFC 4198" \ "RFC4199=RFC 4199" \ "RFC4200=RFC 4200" \ "RFC4201=RFC 4201" \ "RFC4202=RFC 4202" \ "RFC4203=RFC 4203" \ "RFC4204=RFC 4204" \ "RFC4205=RFC 4205" \ "RFC4206=RFC 4206" \ "RFC4207=RFC 4207" \ "RFC4208=RFC 4208" \ "RFC4209=RFC 4209" \ "RFC4210=RFC 4210" \ "RFC4211=RFC 4211" \ "RFC4212=RFC 4212" \ "RFC4213=RFC 4213" \ "RFC4214=RFC 4214" \ "RFC4215=RFC 4215" \ "RFC4216=RFC 4216" \ "RFC4217=RFC 4217" \ "RFC4218=RFC 4218" \ "RFC4219=RFC 4219" \ "RFC4220=RFC 4220" \ "RFC4221=RFC 4221" \ "RFC4222=RFC 4222" \ "RFC4223=RFC 4223" \ "RFC4224=RFC 4224" \ "RFC4225=RFC 4225" \ "RFC4226=RFC 4226" \ "RFC4227=RFC 4227" \ "RFC4228=RFC 4228" \ "RFC4229=RFC 4229" \ "RFC4230=RFC 4230" \ "RFC4231=RFC 4231" \ "RFC4232=RFC 4232" \ "RFC4233=RFC 4233" \ "RFC4234=RFC 4234" \ "RFC4235=RFC 4235" \ "RFC4236=RFC 4236" \ "RFC4237=RFC 4237" \ "RFC4238=RFC 4238" \ "RFC4239=RFC 4239" \ "RFC4240=RFC 4240" \ "RFC4241=RFC 4241" \ "RFC4242=RFC 4242" \ "RFC4243=RFC 4243" \ "RFC4244=RFC 4244" \ "RFC4245=RFC 4245" \ "RFC4246=RFC 4246" \ "RFC4247=RFC 4247" \ "RFC4248=RFC 4248" \ "RFC4249=RFC 4249" \ "RFC4250=RFC 4250" \ "RFC4251=RFC 4251" \ "RFC4252=RFC 4252" \ "RFC4253=RFC 4253" \ "RFC4254=RFC 4254" \ "RFC4255=RFC 4255" \ "RFC4256=RFC 4256" \ "RFC4257=RFC 4257" \ "RFC4258=RFC 4258" \ "RFC4259=RFC 4259" \ "RFC4260=RFC 4260" \ "RFC4261=RFC 4261" \ "RFC4262=RFC 4262" \ "RFC4263=RFC 4263" \ "RFC4264=RFC 4264" \ "RFC4265=RFC 4265" \ "RFC4266=RFC 4266" \ "RFC4267=RFC 4267" \ "RFC4268=RFC 4268" \ "RFC4269=RFC 4269" \ "RFC4270=RFC 4270" \ "RFC4271=RFC 4271" \ "RFC4272=RFC 4272" \ "RFC4273=RFC 4273" \ "RFC4274=RFC 4274" \ "RFC4275=RFC 4275" \ "RFC4276=RFC 4276" \ "RFC4277=RFC 4277" \ "RFC4278=RFC 4278" \ "RFC4279=RFC 4279" \ "RFC4280=RFC 4280" \ "RFC4281=RFC 4281" \ "RFC4282=RFC 4282" \ "RFC4283=RFC 4283" \ "RFC4284=RFC 4284" \ "RFC4285=RFC 4285" \ "RFC4286=RFC 4286" \ "RFC4287=RFC 4287" \ "RFC4288=RFC 4288" \ "RFC4289=RFC 4289" \ "RFC4290=RFC 4290" \ "RFC4291=RFC 4291" \ "RFC4292=RFC 4292" \ "RFC4293=RFC 4293" \ "RFC4294=RFC 4294" \ "RFC4295=RFC 4295" \ "RFC4296=RFC 4296" \ "RFC4297=RFC 4297" \ "RFC4298=RFC 4298" \ "RFC4299=RFC 4299" \ "RFC4300=RFC 4300" \ "RFC4301=RFC 4301" \ "RFC4302=RFC 4302" \ "RFC4303=RFC 4303" \ "RFC4304=RFC 4304" \ "RFC4305=RFC 4305" \ "RFC4306=RFC 4306" \ "RFC4307=RFC 4307" \ "RFC4308=RFC 4308" \ "RFC4309=RFC 4309" \ "RFC4310=RFC 4310" \ "RFC4311=RFC 4311" \ "RFC4312=RFC 4312" \ "RFC4313=RFC 4313" \ "RFC4314=RFC 4314" \ "RFC4315=RFC 4315" \ "RFC4316=RFC 4316" \ "RFC4317=RFC 4317" \ "RFC4318=RFC 4318" \ "RFC4319=RFC 4319" \ "RFC4320=RFC 4320" \ "RFC4321=RFC 4321" \ "RFC4322=RFC 4322" \ "RFC4323=RFC 4323" \ "RFC4324=RFC 4324" \ "RFC4325=RFC 4325" \ "RFC4326=RFC 4326" \ "RFC4327=RFC 4327" \ "RFC4328=RFC 4328" \ "RFC4329=RFC 4329" \ "RFC4330=RFC 4330" \ "RFC4331=RFC 4331" \ "RFC4332=RFC 4332" \ "RFC4333=RFC 4333" \ "RFC4334=RFC 4334" \ "RFC4335=RFC 4335" \ "RFC4336=RFC 4336" \ "RFC4337=RFC 4337" \ "RFC4338=RFC 4338" \ "RFC4339=RFC 4339" \ "RFC4340=RFC 4340" \ "RFC4341=RFC 4341" \ "RFC4342=RFC 4342" \ "RFC4343=RFC 4343" \ "RFC4344=RFC 4344" \ "RFC4345=RFC 4345" \ "RFC4346=RFC 4346" \ "RFC4347=RFC 4347" \ "RFC4348=RFC 4348" \ "RFC4349=RFC 4349" \ "RFC4350=RFC 4350" \ "RFC4351=RFC 4351" \ "RFC4352=RFC 4352" \ "RFC4353=RFC 4353" \ "RFC4354=RFC 4354" \ "RFC4355=RFC 4355" \ "RFC4356=RFC 4356" \ "RFC4357=RFC 4357" \ "RFC4358=RFC 4358" \ "RFC4359=RFC 4359" \ "RFC4360=RFC 4360" \ "RFC4361=RFC 4361" \ "RFC4362=RFC 4362" \ "RFC4363=RFC 4363" \ "RFC4364=RFC 4364" \ "RFC4365=RFC 4365" \ "RFC4366=RFC 4366" \ "RFC4367=RFC 4367" \ "RFC4368=RFC 4368" \ "RFC4369=RFC 4369" \ "RFC4370=RFC 4370" \ "RFC4371=RFC 4371" \ "RFC4372=RFC 4372" \ "RFC4373=RFC 4373" \ "RFC4374=RFC 4374" \ "RFC4375=RFC 4375" \ "RFC4376=RFC 4376" \ "RFC4377=RFC 4377" \ "RFC4378=RFC 4378" \ "RFC4379=RFC 4379" \ "RFC4380=RFC 4380" \ "RFC4381=RFC 4381" \ "RFC4382=RFC 4382" \ "RFC4383=RFC 4383" \ "RFC4384=RFC 4384" \ "RFC4385=RFC 4385" \ "RFC4386=RFC 4386" \ "RFC4387=RFC 4387" \ "RFC4388=RFC 4388" \ "RFC4389=RFC 4389" \ "RFC4390=RFC 4390" \ "RFC4391=RFC 4391" \ "RFC4392=RFC 4392" \ "RFC4393=RFC 4393" \ "RFC4394=RFC 4394" \ "RFC4395=RFC 4395" \ "RFC4396=RFC 4396" \ "RFC4397=RFC 4397" \ "RFC4398=RFC 4398" \ "RFC4399=RFC 4399" \ "RFC4400=RFC 4400" \ "RFC4401=RFC 4401" \ "RFC4402=RFC 4402" \ "RFC4403=RFC 4403" \ "RFC4404=RFC 4404" \ "RFC4405=RFC 4405" \ "RFC4406=RFC 4406" \ "RFC4407=RFC 4407" \ "RFC4408=RFC 4408" \ "RFC4409=RFC 4409" \ "RFC4410=RFC 4410" \ "RFC4411=RFC 4411" \ "RFC4412=RFC 4412" \ "RFC4413=RFC 4413" \ "RFC4414=RFC 4414" \ "RFC4415=RFC 4415" \ "RFC4416=RFC 4416" \ "RFC4417=RFC 4417" \ "RFC4418=RFC 4418" \ "RFC4419=RFC 4419" \ "RFC4420=RFC 4420" \ "RFC4421=RFC 4421" \ "RFC4422=RFC 4422" \ "RFC4423=RFC 4423" \ "RFC4424=RFC 4424" \ "RFC4425=RFC 4425" \ "RFC4426=RFC 4426" \ "RFC4427=RFC 4427" \ "RFC4428=RFC 4428" \ "RFC4429=RFC 4429" \ "RFC4430=RFC 4430" \ "RFC4431=RFC 4431" \ "RFC4432=RFC 4432" \ "RFC4433=RFC 4433" \ "RFC4434=RFC 4434" \ "RFC4435=RFC 4435" \ "RFC4436=RFC 4436" \ "RFC4437=RFC 4437" \ "RFC4438=RFC 4438" \ "RFC4439=RFC 4439" \ "RFC4440=RFC 4440" \ "RFC4441=RFC 4441" \ "RFC4442=RFC 4442" \ "RFC4443=RFC 4443" \ "RFC4444=RFC 4444" \ "RFC4445=RFC 4445" \ "RFC4446=RFC 4446" \ "RFC4447=RFC 4447" \ "RFC4448=RFC 4448" \ "RFC4449=RFC 4449" \ "RFC4450=RFC 4450" \ "RFC4451=RFC 4451" \ "RFC4452=RFC 4452" \ "RFC4453=RFC 4453" \ "RFC4454=RFC 4454" \ "RFC4455=RFC 4455" \ "RFC4456=RFC 4456" \ "RFC4457=RFC 4457" \ "RFC4458=RFC 4458" \ "RFC4459=RFC 4459" \ "RFC4460=RFC 4460" \ "RFC4461=RFC 4461" \ "RFC4462=RFC 4462" \ "RFC4463=RFC 4463" \ "RFC4464=RFC 4464" \ "RFC4465=RFC 4465" \ "RFC4466=RFC 4466" \ "RFC4467=RFC 4467" \ "RFC4468=RFC 4468" \ "RFC4469=RFC 4469" \ "RFC4470=RFC 4470" \ "RFC4471=RFC 4471" \ "RFC4472=RFC 4472" \ "RFC4473=RFC 4473" \ "RFC4474=RFC 4474" \ "RFC4475=RFC 4475" \ "RFC4476=RFC 4476" \ "RFC4477=RFC 4477" \ "RFC4478=RFC 4478" \ "RFC4479=RFC 4479" \ "RFC4480=RFC 4480" \ "RFC4481=RFC 4481" \ "RFC4482=RFC 4482" \ "RFC4483=RFC 4483" \ "RFC4484=RFC 4484" \ "RFC4485=RFC 4485" \ "RFC4486=RFC 4486" \ "RFC4487=RFC 4487" \ "RFC4488=RFC 4488" \ "RFC4489=RFC 4489" \ "RFC4490=RFC 4490" \ "RFC4491=RFC 4491" \ "RFC4492=RFC 4492" \ "RFC4493=RFC 4493" \ "RFC4494=RFC 4494" \ "RFC4495=RFC 4495" \ "RFC4496=RFC 4496" \ "RFC4497=RFC 4497" \ "RFC4498=RFC 4498" \ "RFC4499=RFC 4499" \ "RFC4500=RFC 4500" \ "RFC4501=RFC 4501" \ "RFC4502=RFC 4502" \ "RFC4503=RFC 4503" \ "RFC4504=RFC 4504" \ "RFC4505=RFC 4505" \ "RFC4506=RFC 4506" \ "RFC4507=RFC 4507" \ "RFC4508=RFC 4508" \ "RFC4509=RFC 4509" \ "RFC4510=RFC 4510" \ "RFC4511=RFC 4511" \ "RFC4512=RFC 4512" \ "RFC4513=RFC 4513" \ "RFC4514=RFC 4514" \ "RFC4515=RFC 4515" \ "RFC4516=RFC 4516" \ "RFC4517=RFC 4517" \ "RFC4518=RFC 4518" \ "RFC4519=RFC 4519" \ "RFC4520=RFC 4520" \ "RFC4521=RFC 4521" \ "RFC4522=RFC 4522" \ "RFC4523=RFC 4523" \ "RFC4524=RFC 4524" \ "RFC4525=RFC 4525" \ "RFC4526=RFC 4526" \ "RFC4527=RFC 4527" \ "RFC4528=RFC 4528" \ "RFC4529=RFC 4529" \ "RFC4530=RFC 4530" \ "RFC4531=RFC 4531" \ "RFC4532=RFC 4532" \ "RFC4533=RFC 4533" \ "RFC4534=RFC 4534" \ "RFC4535=RFC 4535" \ "RFC4536=RFC 4536" \ "RFC4537=RFC 4537" \ "RFC4538=RFC 4538" \ "RFC4539=RFC 4539" \ "RFC4540=RFC 4540" \ "RFC4541=RFC 4541" \ "RFC4542=RFC 4542" \ "RFC4543=RFC 4543" \ "RFC4544=RFC 4544" \ "RFC4545=RFC 4545" \ "RFC4546=RFC 4546" \ "RFC4547=RFC 4547" \ "RFC4548=RFC 4548" \ "RFC4549=RFC 4549" \ "RFC4550=RFC 4550" \ "RFC4551=RFC 4551" \ "RFC4552=RFC 4552" \ "RFC4553=RFC 4553" \ "RFC4554=RFC 4554" \ "RFC4555=RFC 4555" \ "RFC4556=RFC 4556" \ "RFC4557=RFC 4557" \ "RFC4558=RFC 4558" \ "RFC4559=RFC 4559" \ "RFC4560=RFC 4560" \ "RFC4561=RFC 4561" \ "RFC4562=RFC 4562" \ "RFC4563=RFC 4563" \ "RFC4564=RFC 4564" \ "RFC4565=RFC 4565" \ "RFC4566=RFC 4566" \ "RFC4567=RFC 4567" \ "RFC4568=RFC 4568" \ "RFC4569=RFC 4569" \ "RFC4570=RFC 4570" \ "RFC4571=RFC 4571" \ "RFC4572=RFC 4572" \ "RFC4573=RFC 4573" \ "RFC4574=RFC 4574" \ "RFC4575=RFC 4575" \ "RFC4576=RFC 4576" \ "RFC4577=RFC 4577" \ "RFC4578=RFC 4578" \ "RFC4579=RFC 4579" \ "RFC4580=RFC 4580" \ "RFC4581=RFC 4581" \ "RFC4582=RFC 4582" \ "RFC4583=RFC 4583" \ "RFC4584=RFC 4584" \ "RFC4585=RFC 4585" \ "RFC4586=RFC 4586" \ "RFC4587=RFC 4587" \ "RFC4588=RFC 4588" \ "RFC4589=RFC 4589" \ "RFC4590=RFC 4590" \ "RFC4591=RFC 4591" \ "RFC4592=RFC 4592" \ "RFC4593=RFC 4593" \ "RFC4594=RFC 4594" \ "RFC4595=RFC 4595" \ "RFC4596=RFC 4596" \ "RFC4597=RFC 4597" \ "RFC4598=RFC 4598" \ "RFC4599=RFC 4599" \ "RFC4600=RFC 4600" \ "RFC4601=RFC 4601" \ "RFC4602=RFC 4602" \ "RFC4603=RFC 4603" \ "RFC4604=RFC 4604" \ "RFC4605=RFC 4605" \ "RFC4606=RFC 4606" \ "RFC4607=RFC 4607" \ "RFC4608=RFC 4608" \ "RFC4609=RFC 4609" \ "RFC4610=RFC 4610" \ "RFC4611=RFC 4611" \ "RFC4612=RFC 4612" \ "RFC4613=RFC 4613" \ "RFC4614=RFC 4614" \ "RFC4615=RFC 4615" \ "RFC4616=RFC 4616" \ "RFC4617=RFC 4617" \ "RFC4618=RFC 4618" \ "RFC4619=RFC 4619" \ "RFC4620=RFC 4620" \ "RFC4621=RFC 4621" \ "RFC4622=RFC 4622" \ "RFC4623=RFC 4623" \ "RFC4624=RFC 4624" \ "RFC4625=RFC 4625" \ "RFC4626=RFC 4626" \ "RFC4627=RFC 4627" \ "RFC4628=RFC 4628" \ "RFC4629=RFC 4629" \ "RFC4630=RFC 4630" \ "RFC4631=RFC 4631" \ "RFC4632=RFC 4632" \ "RFC4633=RFC 4633" \ "RFC4634=RFC 4634" \ "RFC4635=RFC 4635" \ "RFC4636=RFC 4636" \ "RFC4637=RFC 4637" \ "RFC4638=RFC 4638" \ "RFC4639=RFC 4639" \ "RFC4640=RFC 4640" \ "RFC4641=RFC 4641" \ "RFC4642=RFC 4642" \ "RFC4643=RFC 4643" \ "RFC4644=RFC 4644" \ "RFC4645=RFC 4645" \ "RFC4646=RFC 4646" \ "RFC4647=RFC 4647" \ "RFC4648=RFC 4648" \ "RFC4649=RFC 4649" \ "RFC4650=RFC 4650" \ "RFC4651=RFC 4651" \ "RFC4652=RFC 4652" \ "RFC4653=RFC 4653" \ "RFC4654=RFC 4654" \ "RFC4655=RFC 4655" \ "RFC4656=RFC 4656" \ "RFC4657=RFC 4657" \ "RFC4658=RFC 4658" \ "RFC4659=RFC 4659" \ "RFC4660=RFC 4660" \ "RFC4661=RFC 4661" \ "RFC4662=RFC 4662" \ "RFC4663=RFC 4663" \ "RFC4664=RFC 4664" \ "RFC4665=RFC 4665" \ "RFC4666=RFC 4666" \ "RFC4667=RFC 4667" \ "RFC4668=RFC 4668" \ "RFC4669=RFC 4669" \ "RFC4670=RFC 4670" \ "RFC4671=RFC 4671" \ "RFC4672=RFC 4672" \ "RFC4673=RFC 4673" \ "RFC4674=RFC 4674" \ "RFC4675=RFC 4675" \ "RFC4676=RFC 4676" \ "RFC4677=RFC 4677" \ "RFC4678=RFC 4678" \ "RFC4679=RFC 4679" \ "RFC4680=RFC 4680" \ "RFC4681=RFC 4681" \ "RFC4682=RFC 4682" \ "RFC4683=RFC 4683" \ "RFC4684=RFC 4684" \ "RFC4685=RFC 4685" \ "RFC4686=RFC 4686" \ "RFC4687=RFC 4687" \ "RFC4688=RFC 4688" \ "RFC4689=RFC 4689" \ "RFC4690=RFC 4690" \ "RFC4691=RFC 4691" \ "RFC4692=RFC 4692" \ "RFC4693=RFC 4693" \ "RFC4694=RFC 4694" \ "RFC4695=RFC 4695" \ "RFC4696=RFC 4696" \ "RFC4697=RFC 4697" \ "RFC4698=RFC 4698" \ "RFC4699=RFC 4699" \ "RFC4700=RFC 4700" \ "RFC4701=RFC 4701" \ "RFC4702=RFC 4702" \ "RFC4703=RFC 4703" \ "RFC4704=RFC 4704" \ "RFC4705=RFC 4705" \ "RFC4706=RFC 4706" \ "RFC4707=RFC 4707" \ "RFC4708=RFC 4708" \ "RFC4709=RFC 4709" \ "RFC4710=RFC 4710" \ "RFC4711=RFC 4711" \ "RFC4712=RFC 4712" \ "RFC4713=RFC 4713" \ "RFC4714=RFC 4714" \ "RFC4715=RFC 4715" \ "RFC4716=RFC 4716" \ "RFC4717=RFC 4717" \ "RFC4718=RFC 4718" \ "RFC4719=RFC 4719" \ "RFC4720=RFC 4720" \ "RFC4721=RFC 4721" \ "RFC4722=RFC 4722" \ "RFC4723=RFC 4723" \ "RFC4724=RFC 4724" \ "RFC4725=RFC 4725" \ "RFC4726=RFC 4726" \ "RFC4727=RFC 4727" \ "RFC4728=RFC 4728" \ "RFC4729=RFC 4729" \ "RFC4730=RFC 4730" \ "RFC4731=RFC 4731" \ "RFC4732=RFC 4732" \ "RFC4733=RFC 4733" \ "RFC4734=RFC 4734" \ "RFC4735=RFC 4735" \ "RFC4736=RFC 4736" \ "RFC4737=RFC 4737" \ "RFC4738=RFC 4738" \ "RFC4739=RFC 4739" \ "RFC4740=RFC 4740" \ "RFC4741=RFC 4741" \ "RFC4742=RFC 4742" \ "RFC4743=RFC 4743" \ "RFC4744=RFC 4744" \ "RFC4745=RFC 4745" \ "RFC4746=RFC 4746" \ "RFC4747=RFC 4747" \ "RFC4748=RFC 4748" \ "RFC4749=RFC 4749" \ "RFC4750=RFC 4750" \ "RFC4751=RFC 4751" \ "RFC4752=RFC 4752" \ "RFC4753=RFC 4753" \ "RFC4754=RFC 4754" \ "RFC4755=RFC 4755" \ "RFC4756=RFC 4756" \ "RFC4757=RFC 4757" \ "RFC4758=RFC 4758" \ "RFC4759=RFC 4759" \ "RFC4760=RFC 4760" \ "RFC4761=RFC 4761" \ "RFC4762=RFC 4762" \ "RFC4763=RFC 4763" \ "RFC4764=RFC 4764" \ "RFC4765=RFC 4765" \ "RFC4766=RFC 4766" \ "RFC4767=RFC 4767" \ "RFC4768=RFC 4768" \ "RFC4769=RFC 4769" \ "RFC4770=RFC 4770" \ "RFC4771=RFC 4771" \ "RFC4772=RFC 4772" \ "RFC4773=RFC 4773" \ "RFC4774=RFC 4774" \ "RFC4775=RFC 4775" \ "RFC4776=RFC 4776" \ "RFC4777=RFC 4777" \ "RFC4778=RFC 4778" \ "RFC4779=RFC 4779" \ "RFC4780=RFC 4780" \ "RFC4781=RFC 4781" \ "RFC4782=RFC 4782" \ "RFC4783=RFC 4783" \ "RFC4784=RFC 4784" \ "RFC4785=RFC 4785" \ "RFC4786=RFC 4786" \ "RFC4787=RFC 4787" \ "RFC4788=RFC 4788" \ "RFC4789=RFC 4789" \ "RFC4790=RFC 4790" \ "RFC4791=RFC 4791" \ "RFC4792=RFC 4792" \ "RFC4793=RFC 4793" \ "RFC4794=RFC 4794" \ "RFC4795=RFC 4795" \ "RFC4796=RFC 4796" \ "RFC4797=RFC 4797" \ "RFC4798=RFC 4798" \ "RFC4799=RFC 4799" \ "RFC4800=RFC 4800" \ "RFC4801=RFC 4801" \ "RFC4802=RFC 4802" \ "RFC4803=RFC 4803" \ "RFC4804=RFC 4804" \ "RFC4805=RFC 4805" \ "RFC4806=RFC 4806" \ "RFC4807=RFC 4807" \ "RFC4808=RFC 4808" \ "RFC4809=RFC 4809" \ "RFC4810=RFC 4810" \ "RFC4811=RFC 4811" \ "RFC4812=RFC 4812" \ "RFC4813=RFC 4813" \ "RFC4814=RFC 4814" \ "RFC4815=RFC 4815" \ "RFC4816=RFC 4816" \ "RFC4817=RFC 4817" \ "RFC4818=RFC 4818" \ "RFC4819=RFC 4819" \ "RFC4820=RFC 4820" \ "RFC4821=RFC 4821" \ "RFC4822=RFC 4822" \ "RFC4823=RFC 4823" \ "RFC4824=RFC 4824" \ "RFC4825=RFC 4825" \ "RFC4826=RFC 4826" \ "RFC4827=RFC 4827" \ "RFC4828=RFC 4828" \ "RFC4829=RFC 4829" \ "RFC4830=RFC 4830" \ "RFC4831=RFC 4831" \ "RFC4832=RFC 4832" \ "RFC4833=RFC 4833" \ "RFC4834=RFC 4834" \ "RFC4835=RFC 4835" \ "RFC4836=RFC 4836" \ "RFC4837=RFC 4837" \ "RFC4838=RFC 4838" \ "RFC4839=RFC 4839" \ "RFC4840=RFC 4840" \ "RFC4841=RFC 4841" \ "RFC4842=RFC 4842" \ "RFC4843=RFC 4843" \ "RFC4844=RFC 4844" \ "RFC4845=RFC 4845" \ "RFC4846=RFC 4846" \ "RFC4847=RFC 4847" \ "RFC4848=RFC 4848" \ "RFC4849=RFC 4849" \ "RFC4850=RFC 4850" \ "RFC4851=RFC 4851" \ "RFC4852=RFC 4852" \ "RFC4853=RFC 4853" \ "RFC4854=RFC 4854" \ "RFC4855=RFC 4855" \ "RFC4856=RFC 4856" \ "RFC4857=RFC 4857" \ "RFC4858=RFC 4858" \ "RFC4859=RFC 4859" \ "RFC4860=RFC 4860" \ "RFC4861=RFC 4861" \ "RFC4862=RFC 4862" \ "RFC4863=RFC 4863" \ "RFC4864=RFC 4864" \ "RFC4865=RFC 4865" \ "RFC4866=RFC 4866" \ "RFC4867=RFC 4867" \ "RFC4868=RFC 4868" \ "RFC4869=RFC 4869" \ "RFC4870=RFC 4870" \ "RFC4871=RFC 4871" \ "RFC4872=RFC 4872" \ "RFC4873=RFC 4873" \ "RFC4874=RFC 4874" \ "RFC4875=RFC 4875" \ "RFC4876=RFC 4876" \ "RFC4877=RFC 4877" \ "RFC4878=RFC 4878" \ "RFC4879=RFC 4879" \ "RFC4880=RFC 4880" \ "RFC4881=RFC 4881" \ "RFC4882=RFC 4882" \ "RFC4883=RFC 4883" \ "RFC4884=RFC 4884" \ "RFC4885=RFC 4885" \ "RFC4886=RFC 4886" \ "RFC4887=RFC 4887" \ "RFC4888=RFC 4888" \ "RFC4889=RFC 4889" \ "RFC4890=RFC 4890" \ "RFC4891=RFC 4891" \ "RFC4892=RFC 4892" \ "RFC4893=RFC 4893" \ "RFC4894=RFC 4894" \ "RFC4895=RFC 4895" \ "RFC4896=RFC 4896" \ "RFC4897=RFC 4897" \ "RFC4898=RFC 4898" \ "RFC4899=RFC 4899" \ "RFC4900=RFC 4900" \ "RFC4901=RFC 4901" \ "RFC4902=RFC 4902" \ "RFC4903=RFC 4903" \ "RFC4904=RFC 4904" \ "RFC4905=RFC 4905" \ "RFC4906=RFC 4906" \ "RFC4907=RFC 4907" \ "RFC4908=RFC 4908" \ "RFC4909=RFC 4909" \ "RFC4910=RFC 4910" \ "RFC4911=RFC 4911" \ "RFC4912=RFC 4912" \ "RFC4913=RFC 4913" \ "RFC4914=RFC 4914" \ "RFC4915=RFC 4915" \ "RFC4916=RFC 4916" \ "RFC4917=RFC 4917" \ "RFC4918=RFC 4918" \ "RFC4919=RFC 4919" \ "RFC4920=RFC 4920" \ "RFC4921=RFC 4921" \ "RFC4922=RFC 4922" \ "RFC4923=RFC 4923" \ "RFC4924=RFC 4924" \ "RFC4925=RFC 4925" \ "RFC4926=RFC 4926" \ "RFC4927=RFC 4927" \ "RFC4928=RFC 4928" \ "RFC4929=RFC 4929" \ "RFC4930=RFC 4930" \ "RFC4931=RFC 4931" \ "RFC4932=RFC 4932" \ "RFC4933=RFC 4933" \ "RFC4934=RFC 4934" \ "RFC4935=RFC 4935" \ "RFC4936=RFC 4936" \ "RFC4937=RFC 4937" \ "RFC4938=RFC 4938" \ "RFC4939=RFC 4939" \ "RFC4940=RFC 4940" \ "RFC4941=RFC 4941" \ "RFC4942=RFC 4942" \ "RFC4943=RFC 4943" \ "RFC4944=RFC 4944" \ "RFC4945=RFC 4945" \ "RFC4946=RFC 4946" \ "RFC4947=RFC 4947" \ "RFC4948=RFC 4948" \ "RFC4949=RFC 4949" \ "RFC4950=RFC 4950" \ "RFC4951=RFC 4951" \ "RFC4952=RFC 4952" \ "RFC4953=RFC 4953" \ "RFC4954=RFC 4954" \ "RFC4955=RFC 4955" \ "RFC4956=RFC 4956" \ "RFC4957=RFC 4957" \ "RFC4958=RFC 4958" \ "RFC4959=RFC 4959" \ "RFC4960=RFC 4960" \ "RFC4961=RFC 4961" \ "RFC4962=RFC 4962" \ "RFC4963=RFC 4963" \ "RFC4964=RFC 4964" \ "RFC4965=RFC 4965" \ "RFC4966=RFC 4966" \ "RFC4967=RFC 4967" \ "RFC4968=RFC 4968" \ "RFC4969=RFC 4969" \ "RFC4970=RFC 4970" \ "RFC4971=RFC 4971" \ "RFC4972=RFC 4972" \ "RFC4973=RFC 4973" \ "RFC4974=RFC 4974" \ "RFC4975=RFC 4975" \ "RFC4976=RFC 4976" \ "RFC4977=RFC 4977" \ "RFC4978=RFC 4978" \ "RFC4979=RFC 4979" \ "RFC4980=RFC 4980" \ "RFC4981=RFC 4981" \ "RFC4982=RFC 4982" \ "RFC4983=RFC 4983" \ "RFC4984=RFC 4984" \ "RFC4985=RFC 4985" \ "RFC4986=RFC 4986" \ "RFC4987=RFC 4987" \ "RFC4988=RFC 4988" \ "RFC4989=RFC 4989" \ "RFC4990=RFC 4990" \ "RFC4991=RFC 4991" \ "RFC4992=RFC 4992" \ "RFC4993=RFC 4993" \ "RFC4994=RFC 4994" \ "RFC4995=RFC 4995" \ "RFC4996=RFC 4996" \ "RFC4997=RFC 4997" \ "RFC4998=RFC 4998" \ "RFC4999=RFC 4999" \ "RFC5000=RFC 5000" \ "RFC5001=RFC 5001" \ "RFC5002=RFC 5002" \ "RFC5003=RFC 5003" \ "RFC5004=RFC 5004" \ "RFC5005=RFC 5005" \ "RFC5006=RFC 5006" \ "RFC5007=RFC 5007" \ "RFC5008=RFC 5008" \ "RFC5009=RFC 5009" \ "RFC5010=RFC 5010" \ "RFC5011=RFC 5011" \ "RFC5012=RFC 5012" \ "RFC5013=RFC 5013" \ "RFC5014=RFC 5014" \ "RFC5015=RFC 5015" \ "RFC5016=RFC 5016" \ "RFC5017=RFC 5017" \ "RFC5018=RFC 5018" \ "RFC5019=RFC 5019" \ "RFC5020=RFC 5020" \ "RFC5021=RFC 5021" \ "RFC5022=RFC 5022" \ "RFC5023=RFC 5023" \ "RFC5024=RFC 5024" \ "RFC5025=RFC 5025" \ "RFC5026=RFC 5026" \ "RFC5027=RFC 5027" \ "RFC5028=RFC 5028" \ "RFC5029=RFC 5029" \ "RFC5030=RFC 5030" \ "RFC5031=RFC 5031" \ "RFC5032=RFC 5032" \ "RFC5033=RFC 5033" \ "RFC5034=RFC 5034" \ "RFC5035=RFC 5035" \ "RFC5036=RFC 5036" \ "RFC5037=RFC 5037" \ "RFC5038=RFC 5038" \ "RFC5039=RFC 5039" \ "RFC5040=RFC 5040" \ "RFC5041=RFC 5041" \ "RFC5042=RFC 5042" \ "RFC5043=RFC 5043" \ "RFC5044=RFC 5044" \ "RFC5045=RFC 5045" \ "RFC5046=RFC 5046" \ "RFC5047=RFC 5047" \ "RFC5048=RFC 5048" \ "RFC5049=RFC 5049" \ "RFC5050=RFC 5050" \ "RFC5051=RFC 5051" \ "RFC5052=RFC 5052" \ "RFC5053=RFC 5053" \ "RFC5054=RFC 5054" \ "RFC5055=RFC 5055" \ "RFC5056=RFC 5056" \ "RFC5057=RFC 5057" \ "RFC5058=RFC 5058" \ "RFC5059=RFC 5059" \ "RFC5060=RFC 5060" \ "RFC5061=RFC 5061" \ "RFC5062=RFC 5062" \ "RFC5063=RFC 5063" \ "RFC5064=RFC 5064" \ "RFC5065=RFC 5065" \ "RFC5066=RFC 5066" \ "RFC5067=RFC 5067" \ "RFC5068=RFC 5068" \ "RFC5069=RFC 5069" \ "RFC5070=RFC 5070" \ "RFC5071=RFC 5071" \ "RFC5072=RFC 5072" \ "RFC5073=RFC 5073" \ "RFC5074=RFC 5074" \ "RFC5075=RFC 5075" \ "RFC5076=RFC 5076" \ "RFC5077=RFC 5077" \ "RFC5078=RFC 5078" \ "RFC5079=RFC 5079" \ "RFC5080=RFC 5080" \ "RFC5081=RFC 5081" \ "RFC5082=RFC 5082" \ "RFC5083=RFC 5083" \ "RFC5084=RFC 5084" \ "RFC5085=RFC 5085" \ "RFC5086=RFC 5086" \ "RFC5087=RFC 5087" \ "RFC5088=RFC 5088" \ "RFC5089=RFC 5089" \ "RFC5090=RFC 5090" \ "RFC5091=RFC 5091" \ "RFC5092=RFC 5092" \ "RFC5093=RFC 5093" \ "RFC5094=RFC 5094" \ "RFC5095=RFC 5095" \ "RFC5096=RFC 5096" \ "RFC5097=RFC 5097" \ "RFC5098=RFC 5098" \ "RFC5099=RFC 5099" \ "RFC5100=RFC 5100" \ "RFC5101=RFC 5101" \ "RFC5102=RFC 5102" \ "RFC5103=RFC 5103" \ "RFC5104=RFC 5104" \ "RFC5105=RFC 5105" \ "RFC5106=RFC 5106" \ "RFC5107=RFC 5107" \ "RFC5108=RFC 5108" \ "RFC5109=RFC 5109" \ "RFC5110=RFC 5110" \ "RFC5111=RFC 5111" \ "RFC5112=RFC 5112" \ "RFC5113=RFC 5113" \ "RFC5114=RFC 5114" \ "RFC5115=RFC 5115" \ "RFC5116=RFC 5116" \ "RFC5117=RFC 5117" \ "RFC5118=RFC 5118" \ "RFC5119=RFC 5119" \ "RFC5120=RFC 5120" \ "RFC5121=RFC 5121" \ "RFC5122=RFC 5122" \ "RFC5123=RFC 5123" \ "RFC5124=RFC 5124" \ "RFC5125=RFC 5125" \ "RFC5126=RFC 5126" \ "RFC5127=RFC 5127" \ "RFC5128=RFC 5128" \ "RFC5129=RFC 5129" \ "RFC5130=RFC 5130" \ "RFC5131=RFC 5131" \ "RFC5132=RFC 5132" \ "RFC5133=RFC 5133" \ "RFC5134=RFC 5134" \ "RFC5135=RFC 5135" \ "RFC5136=RFC 5136" \ "RFC5137=RFC 5137" \ "RFC5138=RFC 5138" \ "RFC5139=RFC 5139" \ "RFC5140=RFC 5140" \ "RFC5141=RFC 5141" \ "RFC5142=RFC 5142" \ "RFC5143=RFC 5143" \ "RFC5144=RFC 5144" \ "RFC5145=RFC 5145" \ "RFC5146=RFC 5146" \ "RFC5147=RFC 5147" \ "RFC5148=RFC 5148" \ "RFC5149=RFC 5149" \ "RFC5150=RFC 5150" \ "RFC5151=RFC 5151" \ "RFC5152=RFC 5152" \ "RFC5153=RFC 5153" \ "RFC5154=RFC 5154" \ "RFC5155=RFC 5155" \ "RFC5156=RFC 5156" \ "RFC5157=RFC 5157" \ "RFC5158=RFC 5158" \ "RFC5159=RFC 5159" \ "RFC5160=RFC 5160" \ "RFC5161=RFC 5161" \ "RFC5162=RFC 5162" \ "RFC5163=RFC 5163" \ "RFC5164=RFC 5164" \ "RFC5165=RFC 5165" \ "RFC5166=RFC 5166" \ "RFC5167=RFC 5167" \ "RFC5168=RFC 5168" \ "RFC5169=RFC 5169" \ "RFC5170=RFC 5170" \ "RFC5171=RFC 5171" \ "RFC5172=RFC 5172" \ "RFC5173=RFC 5173" \ "RFC5174=RFC 5174" \ "RFC5175=RFC 5175" \ "RFC5176=RFC 5176" \ "RFC5177=RFC 5177" \ "RFC5178=RFC 5178" \ "RFC5179=RFC 5179" \ "RFC5180=RFC 5180" \ "RFC5181=RFC 5181" \ "RFC5182=RFC 5182" \ "RFC5183=RFC 5183" \ "RFC5184=RFC 5184" \ "RFC5185=RFC 5185" \ "RFC5186=RFC 5186" \ "RFC5187=RFC 5187" \ "RFC5188=RFC 5188" \ "RFC5189=RFC 5189" \ "RFC5190=RFC 5190" \ "RFC5191=RFC 5191" \ "RFC5192=RFC 5192" \ "RFC5193=RFC 5193" \ "RFC5194=RFC 5194" \ "RFC5195=RFC 5195" \ "RFC5196=RFC 5196" \ "RFC5197=RFC 5197" \ "RFC5198=RFC 5198" \ "RFC5199=RFC 5199" \ "RFC5200=RFC 5200" \ "RFC5201=RFC 5201" \ "RFC5202=RFC 5202" \ "RFC5203=RFC 5203" \ "RFC5204=RFC 5204" \ "RFC5205=RFC 5205" \ "RFC5206=RFC 5206" \ "RFC5207=RFC 5207" \ "RFC5208=RFC 5208" \ "RFC5209=RFC 5209" \ "RFC5210=RFC 5210" \ "RFC5211=RFC 5211" \ "RFC5212=RFC 5212" \ "RFC5213=RFC 5213" \ "RFC5214=RFC 5214" \ "RFC5215=RFC 5215" \ "RFC5216=RFC 5216" \ "RFC5217=RFC 5217" \ "RFC5218=RFC 5218" \ "RFC5219=RFC 5219" \ "RFC5220=RFC 5220" \ "RFC5221=RFC 5221" \ "RFC5222=RFC 5222" \ "RFC5223=RFC 5223" \ "RFC5224=RFC 5224" \ "RFC5225=RFC 5225" \ "RFC5226=RFC 5226" \ "RFC5227=RFC 5227" \ "RFC5228=RFC 5228" \ "RFC5229=RFC 5229" \ "RFC5230=RFC 5230" \ "RFC5231=RFC 5231" \ "RFC5232=RFC 5232" \ "RFC5233=RFC 5233" \ "RFC5234=RFC 5234" \ "RFC5235=RFC 5235" \ "RFC5236=RFC 5236" \ "RFC5237=RFC 5237" \ "RFC5238=RFC 5238" \ "RFC5239=RFC 5239" \ "RFC5240=RFC 5240" \ "RFC5241=RFC 5241" \ "RFC5242=RFC 5242" \ "RFC5243=RFC 5243" \ "RFC5244=RFC 5244" \ "RFC5245=RFC 5245" \ "RFC5246=RFC 5246" \ "RFC5247=RFC 5247" \ "RFC5248=RFC 5248" \ "RFC5249=RFC 5249" \ "RFC5250=RFC 5250" \ "RFC5251=RFC 5251" \ "RFC5252=RFC 5252" \ "RFC5253=RFC 5253" \ "RFC5254=RFC 5254" \ "RFC5255=RFC 5255" \ "RFC5256=RFC 5256" \ "RFC5257=RFC 5257" \ "RFC5258=RFC 5258" \ "RFC5259=RFC 5259" \ "RFC5260=RFC 5260" \ "RFC5261=RFC 5261" \ "RFC5262=RFC 5262" \ "RFC5263=RFC 5263" \ "RFC5264=RFC 5264" \ "RFC5265=RFC 5265" \ "RFC5266=RFC 5266" \ "RFC5267=RFC 5267" \ "RFC5268=RFC 5268" \ "RFC5269=RFC 5269" \ "RFC5270=RFC 5270" \ "RFC5271=RFC 5271" \ "RFC5272=RFC 5272" \ "RFC5273=RFC 5273" \ "RFC5274=RFC 5274" \ "RFC5275=RFC 5275" \ "RFC5276=RFC 5276" \ "RFC5277=RFC 5277" \ "RFC5278=RFC 5278" \ "RFC5279=RFC 5279" \ "RFC5280=RFC 5280" \ "RFC5281=RFC 5281" \ "RFC5282=RFC 5282" \ "RFC5283=RFC 5283" \ "RFC5284=RFC 5284" \ "RFC5285=RFC 5285" \ "RFC5286=RFC 5286" \ "RFC5287=RFC 5287" \ "RFC5288=RFC 5288" \ "RFC5289=RFC 5289" \ "RFC5290=RFC 5290" \ "RFC5291=RFC 5291" \ "RFC5292=RFC 5292" \ "RFC5293=RFC 5293" \ "RFC5294=RFC 5294" \ "RFC5295=RFC 5295" \ "RFC5296=RFC 5296" \ "RFC5297=RFC 5297" \ "RFC5298=RFC 5298" \ "RFC5299=RFC 5299" \ "RFC5300=RFC 5300" \ "RFC5301=RFC 5301" \ "RFC5302=RFC 5302" \ "RFC5303=RFC 5303" \ "RFC5304=RFC 5304" \ "RFC5305=RFC 5305" \ "RFC5306=RFC 5306" \ "RFC5307=RFC 5307" \ "RFC5308=RFC 5308" \ "RFC5309=RFC 5309" \ "RFC5310=RFC 5310" \ "RFC5311=RFC 5311" \ "RFC5312=RFC 5312" \ "RFC5313=RFC 5313" \ "RFC5314=RFC 5314" \ "RFC5315=RFC 5315" \ "RFC5316=RFC 5316" \ "RFC5317=RFC 5317" \ "RFC5318=RFC 5318" \ "RFC5319=RFC 5319" \ "RFC5320=RFC 5320" \ "RFC5321=RFC 5321" \ "RFC5322=RFC 5322" \ "RFC5323=RFC 5323" \ "RFC5324=RFC 5324" \ "RFC5325=RFC 5325" \ "RFC5326=RFC 5326" \ "RFC5327=RFC 5327" \ "RFC5328=RFC 5328" \ "RFC5329=RFC 5329" \ "RFC5330=RFC 5330" \ "RFC5331=RFC 5331" \ "RFC5332=RFC 5332" \ "RFC5333=RFC 5333" \ "RFC5334=RFC 5334" \ "RFC5335=RFC 5335" \ "RFC5336=RFC 5336" \ "RFC5337=RFC 5337" \ "RFC5338=RFC 5338" \ "RFC5339=RFC 5339" \ "RFC5340=RFC 5340" \ "RFC5341=RFC 5341" \ "RFC5342=RFC 5342" \ "RFC5343=RFC 5343" \ "RFC5344=RFC 5344" \ "RFC5345=RFC 5345" \ "RFC5346=RFC 5346" \ "RFC5347=RFC 5347" \ "RFC5348=RFC 5348" \ "RFC5349=RFC 5349" \ "RFC5350=RFC 5350" \ "RFC5351=RFC 5351" \ "RFC5352=RFC 5352" \ "RFC5353=RFC 5353" \ "RFC5354=RFC 5354" \ "RFC5355=RFC 5355" \ "RFC5356=RFC 5356" \ "RFC5357=RFC 5357" \ "RFC5358=RFC 5358" \ "RFC5359=RFC 5359" \ "RFC5360=RFC 5360" \ "RFC5361=RFC 5361" \ "RFC5362=RFC 5362" \ "RFC5363=RFC 5363" \ "RFC5364=RFC 5364" \ "RFC5365=RFC 5365" \ "RFC5366=RFC 5366" \ "RFC5367=RFC 5367" \ "RFC5368=RFC 5368" \ "RFC5369=RFC 5369" \ "RFC5370=RFC 5370" \ "RFC5371=RFC 5371" \ "RFC5372=RFC 5372" \ "RFC5373=RFC 5373" \ "RFC5374=RFC 5374" \ "RFC5375=RFC 5375" \ "RFC5376=RFC 5376" \ "RFC5377=RFC 5377" \ "RFC5378=RFC 5378" \ "RFC5379=RFC 5379" \ "RFC5380=RFC 5380" \ "RFC5381=RFC 5381" \ "RFC5382=RFC 5382" \ "RFC5383=RFC 5383" \ "RFC5384=RFC 5384" \ "RFC5385=RFC 5385" \ "RFC5386=RFC 5386" \ "RFC5387=RFC 5387" \ "RFC5388=RFC 5388" \ "RFC5389=RFC 5389" \ "RFC5390=RFC 5390" \ "RFC5391=RFC 5391" \ "RFC5392=RFC 5392" \ "RFC5393=RFC 5393" \ "RFC5394=RFC 5394" \ "RFC5395=RFC 5395" \ "RFC5396=RFC 5396" \ "RFC5397=RFC 5397" \ "RFC5398=RFC 5398" \ "RFC5399=RFC 5399" \ "RFC5400=RFC 5400" \ "RFC5401=RFC 5401" \ "RFC5402=RFC 5402" \ "RFC5403=RFC 5403" \ "RFC5404=RFC 5404" \ "RFC5405=RFC 5405" \ "RFC5406=RFC 5406" \ "RFC5407=RFC 5407" \ "RFC5408=RFC 5408" \ "RFC5409=RFC 5409" \ "RFC5410=RFC 5410" \ "RFC5411=RFC 5411" \ "RFC5412=RFC 5412" \ "RFC5413=RFC 5413" \ "RFC5414=RFC 5414" \ "RFC5415=RFC 5415" \ "RFC5416=RFC 5416" \ "RFC5417=RFC 5417" \ "RFC5418=RFC 5418" \ "RFC5419=RFC 5419" \ "RFC5420=RFC 5420" \ "RFC5421=RFC 5421" \ "RFC5422=RFC 5422" \ "RFC5423=RFC 5423" \ "RFC5424=RFC 5424" \ "RFC5425=RFC 5425" \ "RFC5426=RFC 5426" \ "RFC5427=RFC 5427" \ "RFC5428=RFC 5428" \ "RFC5429=RFC 5429" \ "RFC5430=RFC 5430" \ "RFC5431=RFC 5431" \ "RFC5432=RFC 5432" \ "RFC5433=RFC 5433" \ "RFC5434=RFC 5434" \ "RFC5435=RFC 5435" \ "RFC5436=RFC 5436" \ "RFC5437=RFC 5437" \ "RFC5438=RFC 5438" \ "RFC5439=RFC 5439" \ "RFC5440=RFC 5440" \ "RFC5441=RFC 5441" \ "RFC5442=RFC 5442" \ "RFC5443=RFC 5443" \ "RFC5444=RFC 5444" \ "RFC5445=RFC 5445" \ "RFC5446=RFC 5446" \ "RFC5447=RFC 5447" \ "RFC5448=RFC 5448" \ "RFC5449=RFC 5449" \ "RFC5450=RFC 5450" \ "RFC5451=RFC 5451" \ "RFC5452=RFC 5452" \ "RFC5453=RFC 5453" \ "RFC5454=RFC 5454" \ "RFC5455=RFC 5455" \ "RFC5456=RFC 5456" \ "RFC5457=RFC 5457" \ "RFC5458=RFC 5458" \ "RFC5459=RFC 5459" \ "RFC5460=RFC 5460" \ "RFC5461=RFC 5461" \ "RFC5462=RFC 5462" \ "RFC5463=RFC 5463" \ "RFC5464=RFC 5464" \ "RFC5465=RFC 5465" \ "RFC5466=RFC 5466" \ "RFC5467=RFC 5467" \ "RFC5468=RFC 5468" \ "RFC5469=RFC 5469" \ "RFC5470=RFC 5470" \ "RFC5471=RFC 5471" \ "RFC5472=RFC 5472" \ "RFC5473=RFC 5473" \ "RFC5474=RFC 5474" \ "RFC5475=RFC 5475" \ "RFC5476=RFC 5476" \ "RFC5477=RFC 5477" \ "RFC5478=RFC 5478" \ "RFC5479=RFC 5479" \ "RFC5480=RFC 5480" \ "RFC5481=RFC 5481" \ "RFC5482=RFC 5482" \ "RFC5483=RFC 5483" \ "RFC5484=RFC 5484" \ "RFC5485=RFC 5485" \ "RFC5486=RFC 5486" \ "RFC5487=RFC 5487" \ "RFC5488=RFC 5488" \ "RFC5489=RFC 5489" \ "RFC5490=RFC 5490" \ "RFC5491=RFC 5491" \ "RFC5492=RFC 5492" \ "RFC5493=RFC 5493" \ "RFC5494=RFC 5494" \ "RFC5495=RFC 5495" \ "RFC5496=RFC 5496" \ "RFC5497=RFC 5497" \ "RFC5498=RFC 5498" \ "RFC5499=RFC 5499" # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C # sources only. Doxygen will then generate output that is more tailored for C. # For instance, some of the names that are used will be different. The list # of all members will be omitted, etc. OPTIMIZE_OUTPUT_FOR_C = YES # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java # sources only. Doxygen will then generate output that is more tailored for # Java. For instance, namespaces will be presented as packages, qualified # scopes will look different, etc. OPTIMIZE_OUTPUT_JAVA = NO # Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran # sources only. Doxygen will then generate output that is more tailored for # Fortran. OPTIMIZE_FOR_FORTRAN = NO # Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL # sources. Doxygen will then generate output that is tailored for # VHDL. OPTIMIZE_OUTPUT_VHDL = NO # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want # to include (a tag file for) the STL sources as input, then you should # set this tag to YES in order to let doxygen match functions declarations and # definitions whose arguments contain STL classes (e.g. func(std::string); v.s. # func(std::string) {}). This also make the inheritance and collaboration # diagrams that involve STL classes more complete and accurate. BUILTIN_STL_SUPPORT = NO # If you use Microsoft's C++/CLI language, you should set this option to YES to # enable parsing support. CPP_CLI_SUPPORT = NO # Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. # Doxygen will parse them like normal C++ but will assume all classes use public # instead of private inheritance when no explicit protection keyword is present. SIP_SUPPORT = NO # For Microsoft's IDL there are propget and propput attributes to indicate getter # and setter methods for a property. Setting this option to YES (the default) # will make doxygen to replace the get and set methods by a property in the # documentation. This will only work if the methods are indeed getting or # setting a simple type. If this is not the case, or you want to show the # methods anyway, you should set this option to NO. IDL_PROPERTY_SUPPORT = YES # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC # tag is set to YES, then doxygen will reuse the documentation of the first # member in the group (if any) for the other members of the group. By default # all members of a group must be documented explicitly. DISTRIBUTE_GROUP_DOC = NO # Set the SUBGROUPING tag to YES (the default) to allow class member groups of # the same type (for instance a group of public functions) to be put as a # subgroup of that type (e.g. under the Public Functions section). Set it to # NO to prevent subgrouping. Alternatively, this can be done per class using # the \nosubgrouping command. SUBGROUPING = YES # When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum # is documented as struct, union, or enum with the name of the typedef. So # typedef struct TypeS {} TypeT, will appear in the documentation as a struct # with name TypeT. When disabled the typedef will appear as a member of a file, # namespace, or class. And the struct will be named TypeS. This can typically # be useful for C code in case the coding convention dictates that all compound # types are typedef'ed and only the typedef is referenced, never the tag name. TYPEDEF_HIDES_STRUCT = NO # The SYMBOL_CACHE_SIZE determines the size of the internal cache use to # determine which symbols to keep in memory and which to flush to disk. # When the cache is full, less often used symbols will be written to disk. # For small to medium size projects (<1000 input files) the default value is # probably good enough. For larger projects a too small cache size can cause # doxygen to be busy swapping symbols to and from disk most of the time # causing a significant performance penality. # If the system has enough physical memory increasing the cache will improve the # performance by keeping more symbols in memory. Note that the value works on # a logarithmic scale so increasing the size by one will rougly double the # memory usage. The cache size is given by this formula: # 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0, # corresponding to a cache size of 2^16 = 65536 symbols SYMBOL_CACHE_SIZE = 0 #--------------------------------------------------------------------------- # Build related configuration options #--------------------------------------------------------------------------- # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in # documentation are documented, even if no documentation was available. # Private class members and static file members will be hidden unless # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES EXTRACT_ALL = NO # If the EXTRACT_PRIVATE tag is set to YES all private members of a class # will be included in the documentation. EXTRACT_PRIVATE = NO # If the EXTRACT_STATIC tag is set to YES all static members of a file # will be included in the documentation. EXTRACT_STATIC = NO # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) # defined locally in source files will be included in the documentation. # If set to NO only classes defined in header files are included. EXTRACT_LOCAL_CLASSES = YES # This flag is only useful for Objective-C code. When set to YES local # methods, which are defined in the implementation section but not in # the interface are included in the documentation. # If set to NO (the default) only methods in the interface are included. EXTRACT_LOCAL_METHODS = NO # If this flag is set to YES, the members of anonymous namespaces will be # extracted and appear in the documentation as a namespace called # 'anonymous_namespace{file}', where file will be replaced with the base # name of the file that contains the anonymous namespace. By default # anonymous namespace are hidden. EXTRACT_ANON_NSPACES = NO # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all # undocumented members of documented classes, files or namespaces. # If set to NO (the default) these members will be included in the # various overviews, but no documentation section is generated. # This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_MEMBERS = YES # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all # undocumented classes that are normally visible in the class hierarchy. # If set to NO (the default) these classes will be included in the various # overviews. This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_CLASSES = YES # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all # friend (class|struct|union) declarations. # If set to NO (the default) these declarations will be included in the # documentation. HIDE_FRIEND_COMPOUNDS = NO # If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any # documentation blocks found inside the body of a function. # If set to NO (the default) these blocks will be appended to the # function's detailed documentation block. HIDE_IN_BODY_DOCS = NO # The INTERNAL_DOCS tag determines if documentation # that is typed after a \internal command is included. If the tag is set # to NO (the default) then the documentation will be excluded. # Set it to YES to include the internal documentation. INTERNAL_DOCS = NO # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate # file names in lower-case letters. If set to YES upper-case letters are also # allowed. This is useful if you have classes or files whose names only differ # in case and if your file system supports case sensitive file names. Windows # and Mac users are advised to set this option to NO. CASE_SENSE_NAMES = YES # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen # will show members with their full class and namespace scopes in the # documentation. If set to YES the scope will be hidden. HIDE_SCOPE_NAMES = YES # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen # will put a list of the files that are included by a file in the documentation # of that file. SHOW_INCLUDE_FILES = YES # If the INLINE_INFO tag is set to YES (the default) then a tag [inline] # is inserted in the documentation for inline members. INLINE_INFO = YES # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen # will sort the (detailed) documentation of file and class members # alphabetically by member name. If set to NO the members will appear in # declaration order. SORT_MEMBER_DOCS = YES # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the # brief documentation of file, namespace and class members alphabetically # by member name. If set to NO (the default) the members will appear in # declaration order. SORT_BRIEF_DOCS = NO # If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the # hierarchy of group names into alphabetical order. If set to NO (the default) # the group names will appear in their defined order. SORT_GROUP_NAMES = NO # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be # sorted by fully-qualified names, including namespaces. If set to # NO (the default), the class list will be sorted only by class name, # not including the namespace part. # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. # Note: This option applies only to the class list, not to the # alphabetical list. SORT_BY_SCOPE_NAME = NO # The GENERATE_TODOLIST tag can be used to enable (YES) or # disable (NO) the todo list. This list is created by putting \todo # commands in the documentation. GENERATE_TODOLIST = YES # The GENERATE_TESTLIST tag can be used to enable (YES) or # disable (NO) the test list. This list is created by putting \test # commands in the documentation. GENERATE_TESTLIST = YES # The GENERATE_BUGLIST tag can be used to enable (YES) or # disable (NO) the bug list. This list is created by putting \bug # commands in the documentation. GENERATE_BUGLIST = YES # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or # disable (NO) the deprecated list. This list is created by putting # \deprecated commands in the documentation. GENERATE_DEPRECATEDLIST= YES # The ENABLED_SECTIONS tag can be used to enable conditional # documentation sections, marked by \if sectionname ... \endif. ENABLED_SECTIONS = # The MAX_INITIALIZER_LINES tag determines the maximum number of lines # the initial value of a variable or define consists of for it to appear in # the documentation. If the initializer consists of more lines than specified # here it will be hidden. Use a value of 0 to hide initializers completely. # The appearance of the initializer of individual variables and defines in the # documentation can be controlled using \showinitializer or \hideinitializer # command in the documentation regardless of this setting. MAX_INITIALIZER_LINES = 0 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated # at the bottom of the documentation of classes and structs. If set to YES the # list will mention the files that were used to generate the documentation. SHOW_USED_FILES = NO # If the sources in your project are distributed over multiple directories # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy # in the documentation. The default is NO. SHOW_DIRECTORIES = NO # Set the SHOW_FILES tag to NO to disable the generation of the Files page. # This will remove the Files entry from the Quick Index and from the # Folder Tree View (if specified). The default is YES. SHOW_FILES = YES # Set the SHOW_NAMESPACES tag to NO to disable the generation of the # Namespaces page. This will remove the Namespaces entry from the Quick Index # and from the Folder Tree View (if specified). The default is YES. SHOW_NAMESPACES = YES # The FILE_VERSION_FILTER tag can be used to specify a program or script that # doxygen should invoke to get the current version for each file (typically from # the version control system). Doxygen will invoke the program by executing (via # popen()) the command , where is the value of # the FILE_VERSION_FILTER tag, and is the name of an input file # provided by doxygen. Whatever the program writes to standard output # is used as the file version. See the manual for examples. FILE_VERSION_FILTER = # The LAYOUT_FILE tag can be used to specify a layout file which will be parsed by # doxygen. The layout file controls the global structure of the generated output files # in an output format independent way. The create the layout file that represents # doxygen's defaults, run doxygen with the -l option. You can optionally specify a # file name after the option, if omitted DoxygenLayout.xml will be used as the name # of the layout file. LAYOUT_FILE = #--------------------------------------------------------------------------- # configuration options related to warning and progress messages #--------------------------------------------------------------------------- # The QUIET tag can be used to turn on/off the messages that are generated # by doxygen. Possible values are YES and NO. If left blank NO is used. QUIET = YES # The WARNINGS tag can be used to turn on/off the warning messages that are # generated by doxygen. Possible values are YES and NO. If left blank # NO is used. WARNINGS = YES # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings # for undocumented members. If EXTRACT_ALL is set to YES then this flag will # automatically be disabled. WARN_IF_UNDOCUMENTED = YES # If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for # potential errors in the documentation, such as not documenting some # parameters in a documented function, or documenting parameters that # don't exist or using markup commands wrongly. WARN_IF_DOC_ERROR = YES # This WARN_NO_PARAMDOC option can be abled to get warnings for # functions that are documented, but have no documentation for their parameters # or return value. If set to NO (the default) doxygen will only warn about # wrong or incomplete parameter documentation, but not about the absence of # documentation. WARN_NO_PARAMDOC = NO # The WARN_FORMAT tag determines the format of the warning messages that # doxygen can produce. The string should contain the $file, $line, and $text # tags, which will be replaced by the file and line number from which the # warning originated and the warning text. Optionally the format may contain # $version, which will be replaced by the version of the file (if it could # be obtained via FILE_VERSION_FILTER) WARN_FORMAT = "$file:$line: $text" # The WARN_LOGFILE tag can be used to specify a file to which warning # and error messages should be written. If left blank the output is written # to stderr. WARN_LOGFILE = #--------------------------------------------------------------------------- # configuration options related to the input files #--------------------------------------------------------------------------- # The INPUT tag can be used to specify the files and/or directories that contain # documented source files. You may enter file names like "myfile.cpp" or # directories like "/usr/src/myproject". Separate the files or directories # with spaces. INPUT = @srcdir@/utils.docs \ @srcdir@ \ @top_srcdir@/libsofia-sip-ua/su/localinfo.c \ @top_srcdir@/libsofia-sip-ua/su/addrinfo.c \ @top_srcdir@/libsofia-sip-ua/stun/stunc.c # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is # also the default input encoding. Doxygen uses libiconv (or the iconv built # into libc) for the transcoding. See http://www.gnu.org/software/libiconv for # the list of possible encodings. INPUT_ENCODING = UTF-8 # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank the following patterns are tested: # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx # *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90 FILE_PATTERNS = *.h \ *.c # The RECURSIVE tag can be used to turn specify whether or not subdirectories # should be searched for input files as well. Possible values are YES and NO. # If left blank NO is used. RECURSIVE = NO # The EXCLUDE tag can be used to specify files and/or directories that should # excluded from the INPUT source files. This way you can easily exclude a # subdirectory from a directory tree whose root is specified with the INPUT tag. EXCLUDE = # The EXCLUDE_SYMLINKS tag can be used select whether or not files or # directories that are symbolic links (a Unix filesystem feature) are excluded # from the input. EXCLUDE_SYMLINKS = NO # If the value of the INPUT tag contains directories, you can use the # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude # certain files from those directories. Note that the wildcards are matched # against the file with absolute path, so to exclude all test directories # for example use the pattern */test/* EXCLUDE_PATTERNS = acconfig.h \ config.h \ confdefs.h \ test*.h \ test*.c \ torture*.c \ *test.c \ *torture.c \ *_tag_dll.c \ *_tag_ref.c # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names # (namespaces, classes, functions, etc.) that should be excluded from the # output. The symbol name can be a fully qualified name, a word, or if the # wildcard * is used, a substring. Examples: ANamespace, AClass, # AClass::ANamespace, ANamespace::*Test EXCLUDE_SYMBOLS = # The EXAMPLE_PATH tag can be used to specify one or more files or # directories that contain example code fragments that are included (see # the \include command). EXAMPLE_PATH = # If the value of the EXAMPLE_PATH tag contains directories, you can use the # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank all files are included. EXAMPLE_PATTERNS = # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be # searched for input files to be used with the \include or \dontinclude # commands irrespective of the value of the RECURSIVE tag. # Possible values are YES and NO. If left blank NO is used. EXAMPLE_RECURSIVE = NO # The IMAGE_PATH tag can be used to specify one or more files or # directories that contain image that are included in the documentation (see # the \image command). IMAGE_PATH = # The INPUT_FILTER tag can be used to specify a program that doxygen should # invoke to filter for each input file. Doxygen will invoke the filter program # by executing (via popen()) the command , where # is the value of the INPUT_FILTER tag, and is the name of an # input file. Doxygen will then use the output that the filter program writes # to standard output. If FILTER_PATTERNS is specified, this tag will be # ignored. INPUT_FILTER = # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern # basis. Doxygen will compare the file name with each pattern and apply the # filter if there is a match. The filters are a list of the form: # pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further # info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER # is applied to all files. FILTER_PATTERNS = # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using # INPUT_FILTER) will be used to filter the input files when producing source # files to browse (i.e. when SOURCE_BROWSER is set to YES). FILTER_SOURCE_FILES = NO #--------------------------------------------------------------------------- # configuration options related to source browsing #--------------------------------------------------------------------------- # If the SOURCE_BROWSER tag is set to YES then a list of source files will # be generated. Documented entities will be cross-referenced with these sources. # Note: To get rid of all source code in the generated output, make sure also # VERBATIM_HEADERS is set to NO. SOURCE_BROWSER = NO # Setting the INLINE_SOURCES tag to YES will include the body # of functions and classes directly in the documentation. INLINE_SOURCES = NO # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct # doxygen to hide any special comment blocks from generated source code # fragments. Normal C and C++ comments will always remain visible. STRIP_CODE_COMMENTS = YES # If the REFERENCED_BY_RELATION tag is set to YES # then for each documented function all documented # functions referencing it will be listed. REFERENCED_BY_RELATION = NO # If the REFERENCES_RELATION tag is set to YES # then for each documented function all documented entities # called/used by that function will be listed. REFERENCES_RELATION = NO # If the REFERENCES_LINK_SOURCE tag is set to YES (the default) # and SOURCE_BROWSER tag is set to YES, then the hyperlinks from # functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will # link to the source code. Otherwise they will link to the documentstion. REFERENCES_LINK_SOURCE = YES # If the USE_HTAGS tag is set to YES then the references to source code # will point to the HTML generated by the htags(1) tool instead of doxygen # built-in source browser. The htags tool is part of GNU's global source # tagging system (see http://www.gnu.org/software/global/global.html). You # will need version 4.8.6 or higher. USE_HTAGS = NO # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen # will generate a verbatim copy of the header file for each class for # which an include is specified. Set to NO to disable this. VERBATIM_HEADERS = YES #--------------------------------------------------------------------------- # configuration options related to the alphabetical class index #--------------------------------------------------------------------------- # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index # of all compounds will be generated. Enable this if the project # contains a lot of classes, structs, unions or interfaces. ALPHABETICAL_INDEX = NO # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns # in which this list will be split (can be a number in the range [1..20]) COLS_IN_ALPHA_INDEX = 5 # In case all classes in a project start with a common prefix, all # classes will be put under the same header in the alphabetical index. # The IGNORE_PREFIX tag can be used to specify one or more prefixes that # should be ignored while generating the index headers. IGNORE_PREFIX = #--------------------------------------------------------------------------- # configuration options related to the HTML output #--------------------------------------------------------------------------- # If the GENERATE_HTML tag is set to YES (the default) Doxygen will # generate HTML output. GENERATE_HTML = NO # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `html' will be used as the default path. HTML_OUTPUT = ../libsofia-sip-ua/docs/html/utils # The HTML_FILE_EXTENSION tag can be used to specify the file extension for # each generated HTML page (for example: .htm,.php,.asp). If it is left blank # doxygen will generate files with .html extension. HTML_FILE_EXTENSION = .html # The HTML_HEADER tag can be used to specify a personal HTML header for # each generated HTML page. If it is left blank doxygen will generate a # standard header. HTML_HEADER = # The HTML_FOOTER tag can be used to specify a personal HTML footer for # each generated HTML page. If it is left blank doxygen will generate a # standard footer. HTML_FOOTER = # The HTML_STYLESHEET tag can be used to specify a user-defined cascading # style sheet that is used by each HTML page. It can be used to # fine-tune the look of the HTML output. If the tag is left blank doxygen # will generate a default style sheet. Note that doxygen will try to copy # the style sheet file to the HTML output directory, so don't put your own # stylesheet in the HTML output directory as well, or it will be erased! HTML_STYLESHEET = # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, # files or namespaces will be aligned in HTML using tables. If set to # NO a bullet list will be used. HTML_ALIGN_MEMBERS = YES # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML # documentation will contain sections that can be hidden and shown after the # page has loaded. For this to work a browser that supports # JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox # Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). HTML_DYNAMIC_SECTIONS = NO # If the GENERATE_DOCSET tag is set to YES, additional index files # will be generated that can be used as input for Apple's Xcode 3 # integrated development environment, introduced with OSX 10.5 (Leopard). # To create a documentation set, doxygen will generate a Makefile in the # HTML output directory. Running make will produce the docset in that # directory and running "make install" will install the docset in # ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find # it at startup. # See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html for more information. GENERATE_DOCSET = NO # When GENERATE_DOCSET tag is set to YES, this tag determines the name of the # feed. A documentation feed provides an umbrella under which multiple # documentation sets from a single provider (such as a company or product suite) # can be grouped. DOCSET_FEEDNAME = "Doxygen generated docs" # When GENERATE_DOCSET tag is set to YES, this tag specifies a string that # should uniquely identify the documentation set bundle. This should be a # reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen # will append .docset to the name. DOCSET_BUNDLE_ID = org.doxygen.Project # If the GENERATE_HTMLHELP tag is set to YES, additional index files # will be generated that can be used as input for tools like the # Microsoft HTML help workshop to generate a compiled HTML help file (.chm) # of the generated HTML documentation. GENERATE_HTMLHELP = NO # If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can # be used to specify the file name of the resulting .chm file. You # can add a path in front of the file if the result should not be # written to the html output directory. CHM_FILE = # If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can # be used to specify the location (absolute path including file name) of # the HTML help compiler (hhc.exe). If non-empty doxygen will try to run # the HTML help compiler on the generated index.hhp. HHC_LOCATION = # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag # controls if a separate .chi index file is generated (YES) or that # it should be included in the master .chm file (NO). GENERATE_CHI = NO # If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING # is used to encode HtmlHelp index (hhk), content (hhc) and project file # content. CHM_INDEX_ENCODING = # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag # controls whether a binary table of contents is generated (YES) or a # normal table of contents (NO) in the .chm file. BINARY_TOC = NO # The TOC_EXPAND flag can be set to YES to add extra items for group members # to the contents of the HTML help documentation and to the tree view. TOC_EXPAND = NO # If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and QHP_VIRTUAL_FOLDER # are set, an additional index file will be generated that can be used as input for # Qt's qhelpgenerator to generate a Qt Compressed Help (.qch) of the generated # HTML documentation. GENERATE_QHP = NO # If the QHG_LOCATION tag is specified, the QCH_FILE tag can # be used to specify the file name of the resulting .qch file. # The path specified is relative to the HTML output folder. QCH_FILE = # The QHP_NAMESPACE tag specifies the namespace to use when generating # Qt Help Project output. For more information please see # Qt Help Project / Namespace. QHP_NAMESPACE = org.doxygen.Project # The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating # Qt Help Project output. For more information please see # Qt Help Project / Virtual Folders. QHP_VIRTUAL_FOLDER = doc # If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can # be used to specify the location of Qt's qhelpgenerator. # If non-empty doxygen will try to run qhelpgenerator on the generated # .qhp file . QHG_LOCATION = # The DISABLE_INDEX tag can be used to turn on/off the condensed index at # top of each HTML page. The value NO (the default) enables the index and # the value YES disables it. DISABLE_INDEX = NO # This tag can be used to set the number of enum values (range [1..20]) # that doxygen will group on one line in the generated HTML documentation. ENUM_VALUES_PER_LINE = 1 # The GENERATE_TREEVIEW tag is used to specify whether a tree-like index # structure should be generated to display hierarchical information. # If the tag value is set to FRAME, a side panel will be generated # containing a tree-like index structure (just like the one that # is generated for HTML Help). For this to work a browser that supports # JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+, # Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are # probably better off using the HTML help feature. Other possible values # for this tag are: HIERARCHIES, which will generate the Groups, Directories, # and Class Hierarchy pages using a tree view instead of an ordered list; # ALL, which combines the behavior of FRAME and HIERARCHIES; and NONE, which # disables this behavior completely. For backwards compatibility with previous # releases of Doxygen, the values YES and NO are equivalent to FRAME and NONE # respectively. GENERATE_TREEVIEW = NONE # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be # used to set the initial width (in pixels) of the frame in which the tree # is shown. TREEVIEW_WIDTH = 250 # Use this tag to change the font size of Latex formulas included # as images in the HTML documentation. The default is 10. Note that # when you change the font size after a successful doxygen run you need # to manually remove any form_*.png images from the HTML output directory # to force them to be regenerated. FORMULA_FONTSIZE = 10 #--------------------------------------------------------------------------- # configuration options related to the LaTeX output #--------------------------------------------------------------------------- # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will # generate Latex output. GENERATE_LATEX = NO # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `latex' will be used as the default path. LATEX_OUTPUT = latex # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be # invoked. If left blank `latex' will be used as the default command name. LATEX_CMD_NAME = latex # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to # generate index for LaTeX. If left blank `makeindex' will be used as the # default command name. MAKEINDEX_CMD_NAME = makeindex # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact # LaTeX documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_LATEX = NO # The PAPER_TYPE tag can be used to set the paper type that is used # by the printer. Possible values are: a4, a4wide, letter, legal and # executive. If left blank a4wide will be used. PAPER_TYPE = a4wide # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX # packages that should be included in the LaTeX output. EXTRA_PACKAGES = # The LATEX_HEADER tag can be used to specify a personal LaTeX header for # the generated latex document. The header should contain everything until # the first chapter. If it is left blank doxygen will generate a # standard header. Notice: only use this tag if you know what you are doing! LATEX_HEADER = # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated # is prepared for conversion to pdf (using ps2pdf). The pdf file will # contain links (just like the HTML output) instead of page references # This makes the output suitable for online browsing using a pdf viewer. PDF_HYPERLINKS = YES # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of # plain latex in the generated Makefile. Set this option to YES to get a # higher quality PDF documentation. USE_PDFLATEX = YES # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. # command to the generated LaTeX files. This will instruct LaTeX to keep # running if errors occur, instead of asking the user for help. # This option is also used when generating formulas in HTML. LATEX_BATCHMODE = NO # If LATEX_HIDE_INDICES is set to YES then doxygen will not # include the index chapters (such as File Index, Compound Index, etc.) # in the output. LATEX_HIDE_INDICES = NO #--------------------------------------------------------------------------- # configuration options related to the RTF output #--------------------------------------------------------------------------- # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output # The RTF output is optimized for Word 97 and may not look very pretty with # other RTF readers or editors. GENERATE_RTF = NO # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `rtf' will be used as the default path. RTF_OUTPUT = rtf # If the COMPACT_RTF tag is set to YES Doxygen generates more compact # RTF documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_RTF = NO # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated # will contain hyperlink fields. The RTF file will # contain links (just like the HTML output) instead of page references. # This makes the output suitable for online browsing using WORD or other # programs which support those fields. # Note: wordpad (write) and others do not support links. RTF_HYPERLINKS = NO # Load stylesheet definitions from file. Syntax is similar to doxygen's # config file, i.e. a series of assignments. You only have to provide # replacements, missing definitions are set to their default value. RTF_STYLESHEET_FILE = # Set optional variables used in the generation of an rtf document. # Syntax is similar to doxygen's config file. RTF_EXTENSIONS_FILE = #--------------------------------------------------------------------------- # configuration options related to the man page output #--------------------------------------------------------------------------- # If the GENERATE_MAN tag is set to YES (the default) Doxygen will # generate man pages GENERATE_MAN = YES # The MAN_OUTPUT tag is used to specify where the man pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `man' will be used as the default path. MAN_OUTPUT = . # The MAN_EXTENSION tag determines the extension that is added to # the generated man pages (default is the subroutine's section .3) MAN_EXTENSION = .1 # If the MAN_LINKS tag is set to YES and Doxygen generates man output, # then it will generate one additional man file for each entity # documented in the real man page(s). These additional files # only source the real man page, but without them the man command # would be unable to find the correct page. The default is NO. MAN_LINKS = NO #--------------------------------------------------------------------------- # configuration options related to the XML output #--------------------------------------------------------------------------- # If the GENERATE_XML tag is set to YES Doxygen will # generate an XML file that captures the structure of # the code including all documentation. GENERATE_XML = NO # The XML_OUTPUT tag is used to specify where the XML pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `xml' will be used as the default path. XML_OUTPUT = xml # The XML_SCHEMA tag can be used to specify an XML schema, # which can be used by a validating XML parser to check the # syntax of the XML files. XML_SCHEMA = # The XML_DTD tag can be used to specify an XML DTD, # which can be used by a validating XML parser to check the # syntax of the XML files. XML_DTD = # If the XML_PROGRAMLISTING tag is set to YES Doxygen will # dump the program listings (including syntax highlighting # and cross-referencing information) to the XML output. Note that # enabling this will significantly increase the size of the XML output. XML_PROGRAMLISTING = YES #--------------------------------------------------------------------------- # configuration options for the AutoGen Definitions output #--------------------------------------------------------------------------- # If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will # generate an AutoGen Definitions (see autogen.sf.net) file # that captures the structure of the code including all # documentation. Note that this feature is still experimental # and incomplete at the moment. GENERATE_AUTOGEN_DEF = NO #--------------------------------------------------------------------------- # configuration options related to the Perl module output #--------------------------------------------------------------------------- # If the GENERATE_PERLMOD tag is set to YES Doxygen will # generate a Perl module file that captures the structure of # the code including all documentation. Note that this # feature is still experimental and incomplete at the # moment. GENERATE_PERLMOD = NO # If the PERLMOD_LATEX tag is set to YES Doxygen will generate # the necessary Makefile rules, Perl scripts and LaTeX code to be able # to generate PDF and DVI output from the Perl module output. PERLMOD_LATEX = NO # If the PERLMOD_PRETTY tag is set to YES the Perl module output will be # nicely formatted so it can be parsed by a human reader. This is useful # if you want to understand what is going on. On the other hand, if this # tag is set to NO the size of the Perl module output will be much smaller # and Perl will parse it just the same. PERLMOD_PRETTY = YES # The names of the make variables in the generated doxyrules.make file # are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. # This is useful so different doxyrules.make files included by the same # Makefile don't overwrite each other's variables. PERLMOD_MAKEVAR_PREFIX = #--------------------------------------------------------------------------- # Configuration options related to the preprocessor #--------------------------------------------------------------------------- # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will # evaluate all C-preprocessor directives found in the sources and include # files. ENABLE_PREPROCESSING = NO # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro # names in the source code. If set to NO (the default) only conditional # compilation will be performed. Macro expansion can be done in a controlled # way by setting EXPAND_ONLY_PREDEF to YES. MACRO_EXPANSION = NO # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES # then the macro expansion is limited to the macros specified with the # PREDEFINED and EXPAND_AS_DEFINED tags. EXPAND_ONLY_PREDEF = NO # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files # in the INCLUDE_PATH (see below) will be search if a #include is found. SEARCH_INCLUDES = YES # The INCLUDE_PATH tag can be used to specify one or more directories that # contain include files that are not input files but should be processed by # the preprocessor. INCLUDE_PATH = . @srcdir@ # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard # patterns (like *.h and *.hpp) to filter out the header-files in the # directories. If left blank, the patterns specified with FILE_PATTERNS will # be used. INCLUDE_FILE_PATTERNS = # The PREDEFINED tag can be used to specify one or more macro names that # are defined before the preprocessor is started (similar to the -D option of # gcc). The argument of the tag is a list of macros of the form: name # or name=definition (no spaces). If the definition and the = are # omitted =1 is assumed. To prevent a macro definition from being # undefined via #undef or recursively expanded use the := operator # instead of the = operator. PREDEFINED = DOX \ DOXYGEN_ONLY=1 \ DOCUMENTATION_ONLY=1 \ SU_HAVE_INLINE=1 \ su_inline=inline \ SOFIA_BEGIN_DECLS \ SOFIA_END_DECLS \ SOFIAPUBFUN \ SOFIACALL \ SOFIAPUBVAR=extern \ SU_DLL \ SIP_DLL \ RTSP_DLL \ SU_DLL \ NTA_DLL \ NUA_DLL \ MSG_DLL \ AUTH_DLL \ NTH_DLL \ HTTP_DLL \ __attribute__()= # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then # this tag can be used to specify a list of macro names that should be expanded. # The macro definition that is found in the sources will be used. # Use the PREDEFINED tag if you want to use a different macro definition. EXPAND_AS_DEFINED = # If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then # doxygen's preprocessor will remove all function-like macros that are alone # on a line, have an all uppercase name, and do not end with a semicolon. Such # function macros are typically used for boiler-plate code, and will confuse # the parser if not removed. SKIP_FUNCTION_MACROS = YES #--------------------------------------------------------------------------- # Configuration::additions related to external references #--------------------------------------------------------------------------- # The TAGFILES option can be used to specify one or more tagfiles. # Optionally an initial location of the external documentation # can be added for each tagfile. The format of a tag file without # this location is as follows: # TAGFILES = file1 file2 ... # Adding location for the tag files is done as follows: # TAGFILES = file1=loc1 "file2 = loc2" ... # where "loc1" and "loc2" can be relative or absolute paths or # URLs. If a location is present for each tag, the installdox tool # does not have to be run to correct the links. # Note that each tag file must have a unique name # (where the name does NOT include the path) # If a tag file is not located in the directory in which doxygen # is run, you must also specify the path to the tagfile here. TAGFILES = # When a file name is specified after GENERATE_TAGFILE, doxygen will create # a tag file that is based on the input files it reads. GENERATE_TAGFILE = ../libsofia-sip-ua/docs/utils.doxytags # If the ALLEXTERNALS tag is set to YES all external classes will be listed # in the class index. If set to NO only the inherited external classes # will be listed. ALLEXTERNALS = NO # If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed # in the modules index. If set to NO, only the current project's groups will # be listed. EXTERNAL_GROUPS = YES # The PERL_PATH should be the absolute path and name of the perl script # interpreter (i.e. the result of `which perl'). PERL_PATH = /usr/bin/perl #--------------------------------------------------------------------------- # Configuration options related to the dot tool #--------------------------------------------------------------------------- # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base # or super classes. Setting the tag to NO turns the diagrams off. Note that # this option is superseded by the HAVE_DOT option below. This is only a # fallback. It is recommended to install and use dot, since it yields more # powerful graphs. CLASS_DIAGRAMS = YES # You can define message sequence charts within doxygen comments using the \msc # command. Doxygen will then run the mscgen tool (see # http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the # documentation. The MSCGEN_PATH tag allows you to specify the directory where # the mscgen tool resides. If left empty the tool is assumed to be found in the # default search path. MSCGEN_PATH = # If set to YES, the inheritance and collaboration graphs will hide # inheritance and usage relations if the target is undocumented # or is not a class. HIDE_UNDOC_RELATIONS = YES # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is # available from the path. This tool is part of Graphviz, a graph visualization # toolkit from AT&T and Lucent Bell Labs. The other options in this section # have no effect if this option is set to NO (the default) HAVE_DOT = YES # By default doxygen will write a font called FreeSans.ttf to the output # directory and reference it in all dot files that doxygen generates. This # font does not include all possible unicode characters however, so when you need # these (or just want a differently looking font) you can specify the font name # using DOT_FONTNAME. You need need to make sure dot is able to find the font, # which can be done by putting it in a standard location or by setting the # DOTFONTPATH environment variable or by setting DOT_FONTPATH to the directory # containing the font. DOT_FONTNAME = FreeSans # The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs. # The default size is 10pt. DOT_FONTSIZE = 10 # By default doxygen will tell dot to use the output directory to look for the # FreeSans.ttf font (which doxygen will put there itself). If you specify a # different font using DOT_FONTNAME you can set the path where dot # can find it using this tag. DOT_FONTPATH = # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect inheritance relations. Setting this tag to YES will force the # the CLASS_DIAGRAMS tag to NO. CLASS_GRAPH = YES # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect implementation dependencies (inheritance, containment, and # class references variables) of the class with other documented classes. COLLABORATION_GRAPH = YES # If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen # will generate a graph for groups, showing the direct groups dependencies GROUP_GRAPHS = YES # If the UML_LOOK tag is set to YES doxygen will generate inheritance and # collaboration diagrams in a style similar to the OMG's Unified Modeling # Language. UML_LOOK = NO # If set to YES, the inheritance and collaboration graphs will show the # relations between templates and their instances. TEMPLATE_RELATIONS = NO # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT # tags are set to YES then doxygen will generate a graph for each documented # file showing the direct and indirect include dependencies of the file with # other documented files. INCLUDE_GRAPH = NO # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and # HAVE_DOT tags are set to YES then doxygen will generate a graph for each # documented header file showing the documented files that directly or # indirectly include this file. INCLUDED_BY_GRAPH = NO # If the CALL_GRAPH and HAVE_DOT options are set to YES then # doxygen will generate a call dependency graph for every global function # or class method. Note that enabling this option will significantly increase # the time of a run. So in most cases it will be better to enable call graphs # for selected functions only using the \callgraph command. CALL_GRAPH = NO # If the CALLER_GRAPH and HAVE_DOT tags are set to YES then # doxygen will generate a caller dependency graph for every global function # or class method. Note that enabling this option will significantly increase # the time of a run. So in most cases it will be better to enable caller # graphs for selected functions only using the \callergraph command. CALLER_GRAPH = NO # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen # will graphical hierarchy of all classes instead of a textual one. GRAPHICAL_HIERARCHY = YES # If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES # then doxygen will show the dependencies a directory has on other directories # in a graphical way. The dependency relations are determined by the #include # relations between the files in the directories. DIRECTORY_GRAPH = YES # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images # generated by dot. Possible values are png, jpg, or gif # If left blank png will be used. DOT_IMAGE_FORMAT = png # The tag DOT_PATH can be used to specify the path where the dot tool can be # found. If left blank, it is assumed the dot tool can be found in the path. DOT_PATH = # The DOTFILE_DIRS tag can be used to specify one or more directories that # contain dot files that are included in the documentation (see the # \dotfile command). DOTFILE_DIRS = # The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of # nodes that will be shown in the graph. If the number of nodes in a graph # becomes larger than this value, doxygen will truncate the graph, which is # visualized by representing a node as a red box. Note that doxygen if the # number of direct children of the root node in a graph is already larger than # DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note # that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. DOT_GRAPH_MAX_NODES = 50 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the # graphs generated by dot. A depth value of 3 means that only nodes reachable # from the root by following a path via at most 3 edges will be shown. Nodes # that lay further from the root node will be omitted. Note that setting this # option to 1 or 2 may greatly reduce the computation time needed for large # code bases. Also note that the size of a graph can be further restricted by # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. MAX_DOT_GRAPH_DEPTH = 0 # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent # background. This is disabled by default, because dot on Windows does not # seem to support this out of the box. Warning: Depending on the platform used, # enabling this option may lead to badly anti-aliased labels on the edges of # a graph (i.e. they become hard to read). DOT_TRANSPARENT = NO # Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output # files in one run (i.e. multiple -o and -T options on the command line). This # makes dot run faster, but since only newer versions of dot (>1.8.10) # support this, this feature is disabled by default. DOT_MULTI_TARGETS = NO # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will # generate a legend page explaining the meaning of the various boxes and # arrows in the dot generated graphs. GENERATE_LEGEND = YES # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will # remove the intermediate dot files that are used to generate # the various graphs. DOT_CLEANUP = YES #--------------------------------------------------------------------------- # Configuration::additions related to the search engine #--------------------------------------------------------------------------- # The SEARCHENGINE tag specifies whether or not a search engine should be # used. If set to NO the values of all tags below this one will be ignored. SEARCHENGINE = NO