| draft-ietf-2000-issue-05.txt | | draft-ietf-2000-issue-06.txt | |
|
| | | | |
| Network Working Group Philip J. Nesser II | | Network Working Group Philip J. Nesser II | |
|
| draft-ietf-2000-issue-05.txt Nesser & Nesser Consulting | | draft-ietf-2000-issue-06.txt Nesser & Nesser Consulting | |
| The Internet and the Millennium Problem (Year 2000) | | The Internet and the Millennium Problem (Year 2000) | |
| | | | |
| Status of this Memo | | Status of this Memo | |
| | | | |
| This document is an Internet Draft. Internet Drafts are working | | This document is an Internet Draft. Internet Drafts are working | |
| documents of the Internet Engineering Task Force (IETF), its Areas, | | documents of the Internet Engineering Task Force (IETF), its Areas, | |
| and its Working Groups. Note that other groups may also distribute | | and its Working Groups. Note that other groups may also distribute | |
| working documents as Internet Drafts. | | working documents as Internet Drafts. | |
| | | | |
| Internet Drafts are draft documents valid for a maximum of six | | Internet Drafts are draft documents valid for a maximum of six | |
| | | | |
| skipping to change at page 1, line 34 | | skipping to change at page 1, line 35 | |
| | | | |
| Abstract | | Abstract | |
| | | | |
| The Year 2000 Working Group(WG) has conducted an investigation into | | The Year 2000 Working Group(WG) has conducted an investigation into | |
| the millennium problem as it regards Internet related protocols. This | | the millennium problem as it regards Internet related protocols. This | |
| investigation only targeted the protocols as documented in the Request | | investigation only targeted the protocols as documented in the Request | |
| For Comments Series (RFCs). This investigation discovered little | | For Comments Series (RFCs). This investigation discovered little | |
| reason for concern with regards to the functionality of the protocols. | | reason for concern with regards to the functionality of the protocols. | |
| A few minor cases of older implementations still using two digit years | | A few minor cases of older implementations still using two digit years | |
| (ala RFC 850) were discovered, but almost all Internet protocols were | | (ala RFC 850) were discovered, but almost all Internet protocols were | |
|
| given a clean bill of health. Several cases of "period" problems were | | given a clean bill of health. Several cases of 'period' problems were | |
| discovered, where a time field would "roll over" as the size of field | | discovered, where a time field would 'roll over' as the size of field | |
| was reached. In particular, there are several protocols, which have | | was reached. In particular, there are several protocols, which have | |
| 32 bit, signed integer representations of the number of seconds since | | 32 bit, signed integer representations of the number of seconds since | |
| January 1, 1970 which will turn negative at Tue Jan 19 03:14:07 GMT | | January 1, 1970 which will turn negative at Tue Jan 19 03:14:07 GMT | |
| 2038. Areas whose protocols will be effected by such problems have | | 2038. Areas whose protocols will be effected by such problems have | |
| been notified so that new revisions will remove this limitation. | | been notified so that new revisions will remove this limitation. | |
| | | | |
| 1. Introduction | | 1. Introduction | |
| | | | |
| According to the trade press billions of dollars will be spend the | | According to the trade press billions of dollars will be spend the | |
| upcoming years on the year 2000 problem, also called the millennium | | upcoming years on the year 2000 problem, also called the millennium | |
| | | | |
| skipping to change at page 1, line 3745 | | skipping to change at page 1, line 3746 | |
| 1:: :: Host software | | 1:: :: Host software | |
| | | | |
| Appendix B: Automatic Script to Implement Methodology | | Appendix B: Automatic Script to Implement Methodology | |
| | | | |
| #!/usr/bin/perl | | #!/usr/bin/perl | |
| | | | |
| # Program to read text files (such as RFCs and Internet Drafts) and | | # Program to read text files (such as RFCs and Internet Drafts) and | |
| # output items that might relate to year 2000 issues, particularly | | # output items that might relate to year 2000 issues, particularly | |
| # 2-digit years. | | # 2-digit years. | |
| | | | |
|
| # Version 1.0. By Paul Hoffman (phoffman@imc.org). This is a | | # Version 1.1. By Paul Hoffman (phoffman@imc.org). This is a | |
| # quick-and-dirty hack and could be written more elegantly and | | # quick-and-dirty hack and could be written more elegantly and | |
|
| # more efficiently. There is a known bug in the line number | | # more efficiently. There may be bugs in this software. For | |
| # reporting, and there are probably other bugs as well. | | # example, there was an off-by-one-line bug in version 1.0. | |
| # Use this code at your own risk. This code may be freely | | # Use this code at your own risk. This code may be freely | |
| # redistributed. | | # redistributed. | |
| | | | |
| # Some people like using disk files, others like STDIN and STDOUT. | | # Some people like using disk files, others like STDIN and STDOUT. | |
|
| # This program accomodates both types. 'file' means input comes | | # This program accomodates both types by setting the $UsageType | |
| # from the first argument on the command line, output goes to that | | # variable. 'file' means input comes from the first argument on | |
| # filename with a ".out" extension; 'std' means STDIN and STDOUT. | | # the command line, output goes to that filename with a ".out" | |
| | | # extension; 'std' means STDIN and STDOUT. | |
| $UsageType = 'file'; # Should be 'file' or 'std' | | $UsageType = 'file'; # Should be 'file' or 'std' | |
|
| | | | |
| | | # @CheckWords is a list of words to look for. This list is used in | |
| | | # addition to the automatic checking for "yy" on a line without "YYYY". | |
| | | # You might want to add "year yyyy" to this list, but then a large | |
| | | # proportion of the RFCs and drafts get selected | |
| | | | |
| @CheckWords = qw(UTCTime two-digit 2-digit 2digit century 1900 2000); | | @CheckWords = qw(UTCTime two-digit 2-digit 2digit century 1900 2000); | |
|
| # You might want to add "year yyyy" to this list, but then a | | | |
| # large proportion of the RFCs and drafts get selected | | | |
| | | | |
| if($UsageType eq 'file') { | | if($UsageType eq 'file') { | |
| if($ARGV[0] eq '') | | if($ARGV[0] eq '') | |
| { die "You must specify the name of the file to open.\n" } | | { die "You must specify the name of the file to open.\n" } | |
| $InName = $ARGV[0]; | | $InName = $ARGV[0]; | |
| unless(-r $InName) { die "Could not read $InName.\n" } | | unless(-r $InName) { die "Could not read $InName.\n" } | |
| open(IN, $InName) or die "Could not open $InName.\n"; | | open(IN, $InName) or die "Could not open $InName.\n"; | |
| $OutName = "$InName.out"; | | $OutName = "$InName.out"; | |
| open(OUT, ">$OutName") or die "Could not write to $OutName.\n"; | | open(OUT, ">$OutName") or die "Could not write to $OutName.\n"; | |
| $OutStuff = ''; # Holder for what we're going to print out | | $OutStuff = ''; # Holder for what we're going to print out | |
| | | | |
| skipping to change at page 1, line 3798 | | skipping to change at page 1, line 3803 | |
| # Next do the words that should cause extra concern | | # Next do the words that should cause extra concern | |
| foreach $Word (@CheckWords) { | | foreach $Word (@CheckWords) { | |
| for($i = 0; $i <= $LastLine; $i += 1 ) { | | for($i = 0; $i <= $LastLine; $i += 1 ) { | |
| next unless(grep(/$Word/i, $All[$i])); | | next unless(grep(/$Word/i, $All[$i])); | |
| &PrintFive($i, "$Word"); | | &PrintFive($i, "$Word"); | |
| } | | } | |
| } | | } | |
| | | | |
| # All done. If writing to a file, and nothing got written, delete the | | # All done. If writing to a file, and nothing got written, delete the | |
| # file so that you can quickly scan for the ".out" files. | | # file so that you can quickly scan for the ".out" files. | |
|
| | | # (A better-written program would have waited to do the opens | |
| | | # until here so the unlink wouldn't be necessary. Oh, well.) | |
| if($UsageType eq 'file') { | | if($UsageType eq 'file') { | |
| if(length($OutStuff) > 0) { | | if(length($OutStuff) > 0) { | |
|
| $OutStuff = "+=+=+=+=+= File $InName +=+=+=+=+= \n | | $OutStuff = "+=+=+=+=+= File $InName +=+=+=+=+= \n$OutStuff\n"; | |
| $OutStuff\n"; | | | |
| print OUT $OutStuff; close(OUT); | | print OUT $OutStuff; close(OUT); | |
| } else { # Nothing to put in the .out | | } else { # Nothing to put in the .out | |
| close(OUT); | | close(OUT); | |
| unlink($OutName) or die "Couldn't unlink $OutName\n"; | | unlink($OutName) or die "Couldn't unlink $OutName\n"; | |
| } | | } | |
| } | | } | |
| exit; | | exit; | |
| | | | |
|
| | | # Print the five lines around the word found | |
| sub PrintFive { | | sub PrintFive { | |
| my $Where = shift(@_); my $Msg = shift(@_); | | my $Where = shift(@_); my $Msg = shift(@_); | |
| my ($WhereRealLine, $Start, $End, $j); | | my ($WhereRealLine, $Start, $End, $j); | |
| | | | |
| $WhereRealLine = $Where + 1; | | $WhereRealLine = $Where + 1; | |
| $OutStuff .= "$Msg found at line $WhereRealLine:\n"; | | $OutStuff .= "$Msg found at line $WhereRealLine:\n"; | |
|
| $Start = $Where - 2; $End = $Where + 2; | | $Start = $WhereRealLine - 2; $End = $WhereRealLine + 2; | |
| if($Where < 2) { $Start = 0 } | | if($Where < 2) { $Start = 0 } | |
| if($Where > $LastLine - 2) { $End = $LastLine } | | if($Where > $LastLine - 2) { $End = $LastLine } | |
| for($j = $Start; $j <= $End; $j += 1) { $OutStuff .= "$j: " | | for($j = $Start; $j <= $End; $j += 1) { $OutStuff .= "$j: " | |
|
| . @All[$j] } | | . $All[$j-1] } | |
| $OutStuff .= "\n"; | | $OutStuff .= "\n"; | |
| } | | } | |
| | | | |
| Appendix C: Output of the script in Appendix B on all RFC's from 1 | | Appendix C: Output of the script in Appendix B on all RFC's from 1 | |
| through 2479 | | through 2479 | |
| | | | |
| +=+=+=+=+= File rfc0052.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0052.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 141: | | 2000 found at line 141: | |
|
| 138: | | 139: | |
| 139: Chuck Rose Case University | | 140: Chuck Rose Case University | |
| 140: Jennings Computing Center (216) 368-2000 | | 141: Jennings Computing Center (216) 368-2000 | |
| 141: Case Western Reserve University x2808 | | 142: Case Western Reserve University x2808 | |
| 142: 10900 Euclid Avenue | | 143: 10900 Euclid Avenue | |
| | | | |
| +=+=+=+=+= File rfc0090.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0090.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 71: | | 2000 found at line 71: | |
|
| 68: consoles); | | 69: consoles); | |
| 69: | | 70: | |
| 70: j) Six data communication ports (3 dial @ 2000 baud, | | 71: j) Six data communication ports (3 dial @ 2000 baud, | |
| 71: 1 dedicated @ 4800 baud, and 2 dedicated @ 50,000 | | 72: 1 dedicated @ 4800 baud, and 2 dedicated @ 50,000 | |
| 72: baud) for remote batch entry terminals; | | 73: baud) for remote batch entry terminals; | |
| | | | |
| +=+=+=+=+= File rfc0230.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0230.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 92: | | 2000 found at line 92: | |
|
| 89: as for conventional synchronous block communication, since start and | | 90: as for conventional synchronous block communication, since start and | |
| 90: stop bits for each character would need to be transmitted. This loss | | 91: stop bits for each character would need to be transmitted. This loss | |
| 91: is not substantial and does occur now for 2000 bps TIP-terminal | | 92: is not substantial and does occur now for 2000 bps TIP-terminal | |
| 92: communication. | | 93: communication. | |
| 93: | | 94: | |
| | | | |
| 2000 found at line 134: | | 2000 found at line 134: | |
|
| 131: 92 transmitting sites in the U.S. and Canada were used with standard | | 132: 92 transmitting sites in the U.S. and Canada were used with standard | |
| 132: Bell System Dataphone datasets used at both ends. At both 1200 and | | 133: Bell System Dataphone datasets used at both ends. At both 1200 and | |
| 133: 2000 bps, approximately 82% of the calls had error rates of 1 error in | | 134: 2000 bps, approximately 82% of the calls had error rates of 1 error in | |
| 134: 10^5 bits or better, assuming an equal number of short, medium, and | | 135: 10^5 bits or better, assuming an equal number of short, medium, and | |
| 135: long hauls. | | 136: long hauls. | |
| | | | |
| +=+=+=+=+= File rfc0241.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0241.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 32: | | 2000 found at line 32: | |
|
| 29: justifiable on the basis that the IMP and Host computers were | | 30: justifiable on the basis that the IMP and Host computers were | |
| 30: expected to be either in the same room (up to 30 feet of cable) or, | | 31: expected to be either in the same room (up to 30 feet of cable) or, | |
| 31: via the Distant Host option, within 2000 feet on well- controlled, | | 32: via the Distant Host option, within 2000 feet on well- controlled, | |
| 32: shielded cables. A connection through common carrier facilities is | | 33: shielded cables. A connection through common carrier facilities is | |
| 33: not comparably free of errors. Usage of common- carrier lines for | | 34: not comparably free of errors. Usage of common- carrier lines for | |
| | | | |
| +=+=+=+=+= File rfc0263.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0263.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 22: | | 2000 found at line 22: | |
|
| 19: of the occasional desire to interface a Host to some IMP via a | | 20: of the occasional desire to interface a Host to some IMP via a | |
| 20: long-distance connection (where long-distance, in this context, | | 21: long-distance connection (where long-distance, in this context, | |
| 21: is any cable run longer than 2000 feet but may typically be tens | | 22: is any cable run longer than 2000 feet but may typically be tens | |
| 22: of miles) via either a hard-wire or telephone circuit. We believe | | 23: of miles) via either a hard-wire or telephone circuit. We believe | |
| 23: that any good solution to the general problem of interfacing Hosts | | 24: that any good solution to the general problem of interfacing Hosts | |
| | | | |
| +=+=+=+=+= File rfc0662.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0662.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 143: | | 2000 found at line 143: | |
|
| 140: by a rather short cable (approximately 100 feet long.) The CISL Multics is | | 141: by a rather short cable (approximately 100 feet long.) The CISL Multics is | |
| 141: connected to the IMP number 6 (port 0) by an approximately l5OO feet long cable. | | 142: connected to the IMP number 6 (port 0) by an approximately l5OO feet long cable. | |
| 142: 8oth IMPs are in close physical proximity (approximately 2000 feet,) and are | | 143: 8oth IMPs are in close physical proximity (approximately 2000 feet,) and are | |
| 143: connected to each other by a 5O kilobits per second line. The results given | | 144: connected to each other by a 5O kilobits per second line. The results given | |
| 144: above show considerable improvement in the performance with the new IMP DIM. | | 145: above show considerable improvement in the performance with the new IMP DIM. | |
| | | | |
| +=+=+=+=+= File rfc0713.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0713.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 830: | | 2000 found at line 830: | |
|
| 827: succeeding bytes in the stream used to encode the object. | | 828: succeeding bytes in the stream used to encode the object. | |
| 828: | | 829: | |
| 829: A data object requiring 20000 (47040 octal) bytes would | | 830: A data object requiring 20000 (47040 octal) bytes would | |
| 830: appear in the stream as follows. | | 831: appear in the stream as follows. | |
| 831: | | 832: | |
| | | | |
| 2000 found at line 837: | | 2000 found at line 837: | |
|
| 834: 10000010 -- specifying that the next 2 bytes | | 835: 10000010 -- specifying that the next 2 bytes | |
| 835: contain the stream length | | 836: contain the stream length | |
| 836: 01001110 -- first byte of number 20000 | | 837: 01001110 -- first byte of number 20000 | |
| 837: 00100000 -- second byte | | 838: 00100000 -- second byte | |
| 838: . | | 839: . | |
| | | | |
| 2000 found at line 845: | | 2000 found at line 845: | |
|
| 842: . | | 843: . | |
| 843: | | 844: | |
| 844: Interpretation of the contents of the 20000 bytes in | | 845: Interpretation of the contents of the 20000 bytes in | |
| 845: the stream can be performed by a module which knows the | | 846: the stream can be performed by a module which knows the | |
| 846: specific format of the non-atomic type specified by DEFGH in | | 847: specific format of the non-atomic type specified by DEFGH in | |
| | | | |
| +=+=+=+=+= File rfc0724.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0724.txt +=+=+=+=+= | |
|
| | | | |
| 2-digit found at line 1046: | | 2-digit found at line 1046: | |
|
| 1043: <4-digit-year> | | 1044: <4-digit-year> | |
| 1044: <slash-date> ::= <numeric-month> "/" <date-of-month> | | 1045: <slash-date> ::= <numeric-month> "/" <date-of-month> | |
| 1045: "/" <2-digit-year> | | 1046: "/" <2-digit-year> | |
| 1046: <numeric-month> ::= <one or two decimal digits> | | 1047: <numeric-month> ::= <one or two decimal digits> | |
| 1047: <day-of-month> ::= <one or two decimal digits> | | 1048: <day-of-month> ::= <one or two decimal digits> | |
| | | | |
| 2-digit found at line 1062: | | 2-digit found at line 1062: | |
|
| 1059: | "December" | "Dec" | | 1060: | "December" | "Dec" | |
| 1060: <4-digit-year> ::= <four decimal digits> | | 1061: <4-digit-year> ::= <four decimal digits> | |
| 1061: <2-digit-year> ::= <two decimal digits> | | 1062: <2-digit-year> ::= <two decimal digits> | |
| 1062: <time> ::= <24-hour-time> "-" <time-zone> | | 1063: <time> ::= <24-hour-time> "-" <time-zone> | |
| 1063: <24-hour-time> ::= <hour> <minute> | | 1064: <24-hour-time> ::= <hour> <minute> | |
| | | | |
| 2-digit found at line 1675: | | 2-digit found at line 1675: | |
|
| 1672: A. ALPHABETICAL LISTING OF SYNTAX RULES | | 1673: A. ALPHABETICAL LISTING OF SYNTAX RULES | |
| 1673: | | 1674: | |
| 1674: <2-digit-year> ::= <two decimal digits> | | 1675: <2-digit-year> ::= <two decimal digits> | |
| 1675: <4-digit-year> ::= <four decimal digits> | | 1676: <4-digit-year> ::= <four decimal digits> | |
| 1676: <24-hour-time> ::= <hour> <minute> | | 1677: <24-hour-time> ::= <hour> <minute> | |
| | | | |
| 2-digit found at line 1829: | | 2-digit found at line 1829: | |
|
| 1826: | | 1827: | |
| 1827: <slash-date> ::= <numeric-month> "/" <date-of-month> | | 1828: <slash-date> ::= <numeric-month> "/" <date-of-month> | |
| 1828: "/" <2-digit-year> | | 1829: "/" <2-digit-year> | |
| 1829: <space> ::= <TELNET ASCII space (decimal 32)> | | 1830: <space> ::= <TELNET ASCII space (decimal 32)> | |
| 1830: | | 1831: | |
| | | | |
| +=+=+=+=+= File rfc0731.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0731.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 1571: | | 2000 found at line 1571: | |
|
| 1568: RFC 728, 1977. | | 1569: RFC 728, 1977. | |
| 1569: | | 1570: | |
| 1570: 9. Hazeltine 2000 Desk Top Display Operating Instructions. | | 1571: 9. Hazeltine 2000 Desk Top Display Operating Instructions. | |
| 1571: Hazeltine IB-1866A, 1870. | | 1572: Hazeltine IB-1866A, 1870. | |
| 1572: | | 1573: | |
| | | | |
| +=+=+=+=+= File rfc0732.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0732.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 1681: | | 2000 found at line 1681: | |
|
| 1678: 1977. | | 1679: 1977. | |
| 1679: | | 1680: | |
| 1680: 9. Hazeltine 2000 Desk Top Display Operating Instructions. Hazeltine | | 1681: 9. Hazeltine 2000 Desk Top Display Operating Instructions. Hazeltine | |
| 1681: IB-1866A, 1870. | | 1682: IB-1866A, 1870. | |
| 1682: | | 1683: | |
| | | | |
| +=+=+=+=+= File rfc0733.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0733.txt +=+=+=+=+= | |
|
| | | | |
| 2-digit found at line 333: | | 2-digit found at line 333: | |
|
| 330: | | 331: | |
| 331: "<n>(element)" is equivalent to "<n>*<n>(element)"; that is, | | 332: "<n>(element)" is equivalent to "<n>*<n>(element)"; that is, | |
| 332: exactly <n> occurrences of (element). Thus 2DIGIT is a 2-digit | | 333: exactly <n> occurrences of (element). Thus 2DIGIT is a 2-digit | |
| 333: number, and 3ALPHA is a string of three alphabetic characters. | | 334: number, and 3ALPHA is a string of three alphabetic characters. | |
| 334: | | 335: | |
| | | | |
| 2digit found at line 333: | | 2digit found at line 333: | |
|
| 330: | | 331: | |
| 331: "<n>(element)" is equivalent to "<n>*<n>(element)"; that is, | | 332: "<n>(element)" is equivalent to "<n>*<n>(element)"; that is, | |
| 332: exactly <n> occurrences of (element). Thus 2DIGIT is a 2-digit | | 333: exactly <n> occurrences of (element). Thus 2DIGIT is a 2-digit | |
| 333: number, and 3ALPHA is a string of three alphabetic characters. | | 334: number, and 3ALPHA is a string of three alphabetic characters. | |
| 334: | | 335: | |
| | | | |
| 2digit found at line 947: | | 2digit found at line 947: | |
|
| 944: / "Sunday" / "Sun" | | 945: / "Sunday" / "Sun" | |
| 945: | | 946: | |
| 946: date = 1*2DIGIT ["-"] month ; day month year | | 947: date = 1*2DIGIT ["-"] month ; day month year | |
| 947: ["-"] (2DIGIT /4DIGIT) ; e.g. 20 Aug [19]77 | | 948: ["-"] (2DIGIT /4DIGIT) ; e.g. 20 Aug [19]77 | |
| 948: | | 949: | |
| | | | |
| 2digit found at line 948: | | 2digit found at line 948: | |
|
| 945: | | 946: | |
| 946: date = 1*2DIGIT ["-"] month ; day month year | | 947: date = 1*2DIGIT ["-"] month ; day month year | |
| 947: ["-"] (2DIGIT /4DIGIT) ; e.g. 20 Aug [19]77 | | 948: ["-"] (2DIGIT /4DIGIT) ; e.g. 20 Aug [19]77 | |
| 948: | | 949: | |
| 949: month = "January" / "Jan" / "February" / "Feb" | | 950: month = "January" / "Jan" / "February" / "Feb" | |
| | | | |
| 2digit found at line 967: | | 2digit found at line 967: | |
|
| 964: ; (seconds optional) | | 965: ; (seconds optional) | |
| 965: | | 966: | |
| 966: hour = 2DIGIT [":"] 2DIGIT [ [":"] 2DIGIT ] | | 967: hour = 2DIGIT [":"] 2DIGIT [ [":"] 2DIGIT ] | |
| 967: ; 0000[00] - 2359[59] | | 968: ; 0000[00] - 2359[59] | |
| 968: | | 969: | |
| | | | |
| 2digit found at line 1718: | | 2digit found at line 1718: | |
|
| 1715: CTL = <any TELNET ASCII control character and DEL> | | 1716: CTL = <any TELNET ASCII control character and DEL> | |
| 1716: | | 1717: | |
| 1717: date = 1*2DIGIT ["-"] month ["-"] (2DIGIT /4DIGIT) | | 1718: date = 1*2DIGIT ["-"] month ["-"] (2DIGIT /4DIGIT) | |
| 1718: date-field = "Date" ":" date-time | | 1719: date-field = "Date" ":" date-time | |
| 1719: date-time = [ day-of-week "," ] date time | | 1720: date-time = [ day-of-week "," ] date time | |
| | | | |
| 2digit found at line 1754: | | 2digit found at line 1754: | |
|
| 1751: host-indicator = 1*( ("at" / "@") node ) | | 1752: host-indicator = 1*( ("at" / "@") node ) | |
| 1752: host-phrase = phrase host-indicator | | 1753: host-phrase = phrase host-indicator | |
| 1753: hour = 2DIGIT [":"] 2DIGIT [ [":"] 2DIGIT ] | | 1754: hour = 2DIGIT [":"] 2DIGIT [ [":"] 2DIGIT ] | |
| 1754: HTAB = <TELNET ASCII horizontal-tab> | | 1755: HTAB = <TELNET ASCII horizontal-tab> | |
| 1755: | | 1756: | |
| | | | |
| +=+=+=+=+= File rfc0734.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0734.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 184: | | 2000 found at line 184: | |
|
| 181: Bit name Value Meaning | | 182: Bit name Value Meaning | |
| 182: | | 183: | |
| 183: %TOALT 200000,,0 characters 175 and 176 are converted to | | 184: %TOALT 200000,,0 characters 175 and 176 are converted to | |
| 184: altmode (033) on input. | | 185: altmode (033) on input. | |
| 185: | | 186: | |
| | | | |
| 2000 found at line 264: | | 2000 found at line 264: | |
|
| 261: NORMALLY OFF. | | 262: NORMALLY OFF. | |
| 262: | | 263: | |
| 263: %TOSA1 2000,,0 characters 001-037 should be displayed | | 264: %TOSA1 2000,,0 characters 001-037 should be displayed | |
| 264: using the Stanford/ITS extended ASCII | | 265: using the Stanford/ITS extended ASCII | |
| 265: graphics character set instead of uparrow | | 266: graphics character set instead of uparrow | |
| | | | |
| 2000 found at line 354: | | 2000 found at line 354: | |
|
| 351: %TXTOP 4000 This character has the [TOP] key depressed. | | 352: %TXTOP 4000 This character has the [TOP] key depressed. | |
| 352: | | 353: | |
| 353: %TXSFL 2000 Reserved, must be zero. | | 354: %TXSFL 2000 Reserved, must be zero. | |
| 354: | | 355: | |
| 355: %TXSFT 1000 Reserved, must be zero. | | 356: %TXSFT 1000 Reserved, must be zero. | |
| | | | |
| 2000 found at line 634: | | 2000 found at line 634: | |
|
| 631: Value Key | | 632: Value Key | |
| 632: | | 633: | |
| 633: 2000 Reserved | | 634: 2000 Reserved | |
| 634: 1000 Reserved | | 635: 1000 Reserved | |
| 635: 0400 <META> | | 636: 0400 <META> | |
| | | | |
| +=+=+=+=+= File rfc0738.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0738.txt +=+=+=+=+= | |
|
| | | | |
| 1900 found at line 41: | | 1900 found at line 41: | |
|
| 38: without sending anything. | | 39: without sending anything. | |
| 39: | | 40: | |
| 40: The time is the number of seconds since 0000 (midnight) 1 January 1900 | | 41: The time is the number of seconds since 0000 (midnight) 1 January 1900 | |
| 41: GMT, such that the time 1 is 12:00:01 am on 1 January 1900 GMT; this | | 42: GMT, such that the time 1 is 12:00:01 am on 1 January 1900 GMT; this | |
| 42: base will serve until the year 2036. As a further example, the most | | 43: base will serve until the year 2036. As a further example, the most | |
| | | | |
| 1900 found at line 42: | | 1900 found at line 42: | |
|
| 39: | | 40: | |
| 40: The time is the number of seconds since 0000 (midnight) 1 January 1900 | | 41: The time is the number of seconds since 0000 (midnight) 1 January 1900 | |
| 41: GMT, such that the time 1 is 12:00:01 am on 1 January 1900 GMT; this | | 42: GMT, such that the time 1 is 12:00:01 am on 1 January 1900 GMT; this | |
| 42: base will serve until the year 2036. As a further example, the most | | 43: base will serve until the year 2036. As a further example, the most | |
| 43: recent leap year as of this writing began from the time 2,398,291,200 | | 44: recent leap year as of this writing began from the time 2,398,291,200 | |
| | | | |
| +=+=+=+=+= File rfc0745.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0745.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 562: | | 2000 found at line 562: | |
|
| 559: Circuits, EIA standard RS-422," April 1975; Engineering Dept., | | 560: Circuits, EIA standard RS-422," April 1975; Engineering Dept., | |
| 560: Electronic Industries Assn., 2001 Eye St., N.W., Washington, D.C., | | 561: Electronic Industries Assn., 2001 Eye St., N.W., Washington, D.C., | |
| 561: 20006. | | 562: 20006. | |
| 562: | | 563: | |
| 563: REA bulletin 345-67, Rural Electrification Admin., U.S. Dept. of | | 564: REA bulletin 345-67, Rural Electrification Admin., U.S. Dept. of | |
| | | | |
| +=+=+=+=+= File rfc0746.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0746.txt +=+=+=+=+= | |
|
| | | | |
| 'yy' on a line without 'yyyy' found at line 341: | | 'yy' on a line without 'yyyy' found at line 341: | |
|
| 338: %TDGRF ;Enter graphics. | | 339: %TDGRF ;Enter graphics. | |
| 339: %GOCLR ;Clear the screen. | | 340: %GOCLR ;Clear the screen. | |
| 340: %GOMVA xx yy ;Set cursor. | | 341: %GOMVA xx yy ;Set cursor. | |
| 341: %GODLA xx yy ;Draw line from there. | | 342: %GODLA xx yy ;Draw line from there. | |
| 342: << repeat last two commands for each line >> | | 343: << repeat last two commands for each line >> | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 342: | | 'yy' on a line without 'yyyy' found at line 342: | |
|
| 339: %GOCLR ;Clear the screen. | | 340: %GOCLR ;Clear the screen. | |
| 340: %GOMVA xx yy ;Set cursor. | | 341: %GOMVA xx yy ;Set cursor. | |
| 341: %GODLA xx yy ;Draw line from there. | | 342: %GODLA xx yy ;Draw line from there. | |
| 342: << repeat last two commands for each line >> | | 343: << repeat last two commands for each line >> | |
| 343: %TDNOP ;Exit graphics. | | 344: %TDNOP ;Exit graphics. | |
| | | | |
| 2000 found at line 859: | | 2000 found at line 859: | |
|
| 856: %TRGIN 0,,400000 terminal can provide graphics input. | | 857: %TRGIN 0,,400000 terminal can provide graphics input. | |
| 857: | | 858: | |
| 858: %TRGHC 0,,200000 terminal has a hard-copy device to which output can | | 859: %TRGHC 0,,200000 terminal has a hard-copy device to which output can | |
| 859: be diverted. | | 860: be diverted. | |
| 860: | | 861: | |
| | | | |
| +=+=+=+=+= File rfc0752.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0752.txt +=+=+=+=+= | |
|
| | | | |
| 'yy' on a line without 'yyyy' found at line 218: | | 'yy' on a line without 'yyyy' found at line 218: | |
|
| 215: word 4 The name of the site in SIXBIT. | | 216: word 4 The name of the site in SIXBIT. | |
| 216: word 5 The user name who compiled the file, usually in SIXBIT. | | 217: word 5 The user name who compiled the file, usually in SIXBIT. | |
| 217: word 6 Date of compilation as SIXBIT YYMMDD. | | 218: word 6 Date of compilation as SIXBIT YYMMDD. | |
| 218: word 7 Time of compilation as SIXBIT HHMMSS. | | 219: word 7 Time of compilation as SIXBIT HHMMSS. | |
| 219: word 8 Address in file of NAME table. | | 220: word 8 Address in file of NAME table. | |
| | | | |
| +=+=+=+=+= File rfc0754.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0754.txt +=+=+=+=+= | |
|
| | | | |
| 'yy' on a line without 'yyyy' found at line 76: | | 'yy' on a line without 'yyyy' found at line 76: | |
|
| 73: | | 74: | |
| 74: Messages are transmitted as a character string to an address which is | | 75: Messages are transmitted as a character string to an address which is | |
| 75: specified "outside" the message. The destination host ("YYY") is | | 76: specified "outside" the message. The destination host ("YYY") is | |
| 76: specified to the sending (or user) FTP as the argument of the "open | | 77: specified to the sending (or user) FTP as the argument of the "open | |
| 77: connection" command, and the destination user ("XXX") is specified to | | 78: connection" command, and the destination user ("XXX") is specified to | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 81: | | 'yy' on a line without 'yyyy' found at line 81: | |
|
| 78: the receiving (or server) FTP as the argument of the "MAIL" (or "MLFL") | | 79: the receiving (or server) FTP as the argument of the "MAIL" (or "MLFL") | |
| 79: command. In Tenex, when mail is queued this outside information is | | 80: command. In Tenex, when mail is queued this outside information is | |
| 80: saved in the file name ("[---].XXX@YYY"). | | 81: saved in the file name ("[---].XXX@YYY"). | |
| 81: | | 82: | |
| 82: The proposed solutions are briefly characterized. | | 83: The proposed solutions are briefly characterized. | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 239: | | 'yy' on a line without 'yyyy' found at line 239: | |
|
| 236: | | | |
| 237: | | 237: | |
|
| 238: "[---].XXX@YYY", not anything from the header. Only the string "XXX" | | 238: | |
| 239: is passed to the FTP server. | | 239: "[---].XXX@YYY", not anything from the header. Only the string "XXX" | |
| 240: | | 240: is passed to the FTP server. | |
| | | 241: | |
| | | | |
| +=+=+=+=+= File rfc0759.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0759.txt +=+=+=+=+= | |
|
| | | | |
| two-digit found at line 1414: | | two-digit found at line 1414: | |
|
| 1411: yyyy-mm-dd-hh:mm:ss,fff+hh:mm | | 1412: yyyy-mm-dd-hh:mm:ss,fff+hh:mm | |
| 1412: | | 1413: | |
| 1413: Where yyyy is the four-digit year, mm is the two-digit month, dd is | | 1414: Where yyyy is the four-digit year, mm is the two-digit month, dd is | |
| 1414: the two-digit day, hh is the two-digit hour in 24 hour time, mm is | | 1415: the two-digit day, hh is the two-digit hour in 24 hour time, mm is | |
| 1415: the two-digit minute, ss is the two-digit second, and fff is the | | 1416: the two-digit minute, ss is the two-digit second, and fff is the | |
| | | | |
| two-digit found at line 1415: | | two-digit found at line 1415: | |
|
| 1412: | | 1413: | |
| 1413: Where yyyy is the four-digit year, mm is the two-digit month, dd is | | 1414: Where yyyy is the four-digit year, mm is the two-digit month, dd is | |
| 1414: the two-digit day, hh is the two-digit hour in 24 hour time, mm is | | 1415: the two-digit day, hh is the two-digit hour in 24 hour time, mm is | |
| 1415: the two-digit minute, ss is the two-digit second, and fff is the | | 1416: the two-digit minute, ss is the two-digit second, and fff is the | |
| 1416: decimal fraction of the second. To this basic date and time is | | 1417: decimal fraction of the second. To this basic date and time is | |
| | | | |
| two-digit found at line 1416: | | two-digit found at line 1416: | |
|
| 1413: Where yyyy is the four-digit year, mm is the two-digit month, dd is | | 1414: Where yyyy is the four-digit year, mm is the two-digit month, dd is | |
| 1414: the two-digit day, hh is the two-digit hour in 24 hour time, mm is | | 1415: the two-digit day, hh is the two-digit hour in 24 hour time, mm is | |
| 1415: the two-digit minute, ss is the two-digit second, and fff is the | | 1416: the two-digit minute, ss is the two-digit second, and fff is the | |
| 1416: decimal fraction of the second. To this basic date and time is | | 1417: decimal fraction of the second. To this basic date and time is | |
| 1417: appended the offset from Greenwich as plus or minus hh hours and mm | | 1418: appended the offset from Greenwich as plus or minus hh hours and mm | |
| | | | |
| +=+=+=+=+= File rfc0767.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0767.txt +=+=+=+=+= | |
|
| | | | |
| two-digit found at line 710: | | two-digit found at line 710: | |
|
| 707: yyyy-mm-dd-hh:mm:ss,fff+hh:mm | | 708: yyyy-mm-dd-hh:mm:ss,fff+hh:mm | |
| 708: | | 709: | |
| 709: Where yyyy is the four-digit year, mm is the two-digit month, dd is | | 710: Where yyyy is the four-digit year, mm is the two-digit month, dd is | |
| 710: the two-digit day, hh is the two-digit hour in 24 hour time, mm is | | 711: the two-digit day, hh is the two-digit hour in 24 hour time, mm is | |
| 711: the two-digit minute, ss is the two-digit second, and fff is the | | 712: the two-digit minute, ss is the two-digit second, and fff is the | |
| | | | |
| two-digit found at line 711: | | two-digit found at line 711: | |
|
| 708: | | 709: | |
| 709: Where yyyy is the four-digit year, mm is the two-digit month, dd is | | 710: Where yyyy is the four-digit year, mm is the two-digit month, dd is | |
| 710: the two-digit day, hh is the two-digit hour in 24 hour time, mm is | | 711: the two-digit day, hh is the two-digit hour in 24 hour time, mm is | |
| 711: the two-digit minute, ss is the two-digit second, and fff is the | | 712: the two-digit minute, ss is the two-digit second, and fff is the | |
| 712: decimal fraction of the second. To this basic date and time is | | 713: decimal fraction of the second. To this basic date and time is | |
| | | | |
| two-digit found at line 712: | | two-digit found at line 712: | |
|
| 709: Where yyyy is the four-digit year, mm is the two-digit month, dd is | | 710: Where yyyy is the four-digit year, mm is the two-digit month, dd is | |
| 710: the two-digit day, hh is the two-digit hour in 24 hour time, mm is | | 711: the two-digit day, hh is the two-digit hour in 24 hour time, mm is | |
| 711: the two-digit minute, ss is the two-digit second, and fff is the | | 712: the two-digit minute, ss is the two-digit second, and fff is the | |
| 712: decimal fraction of the second. To this basic date and time is | | 713: decimal fraction of the second. To this basic date and time is | |
| 713: appended the offset from Greenwich as plus or minus hh hours and mm | | 714: appended the offset from Greenwich as plus or minus hh hours and mm | |
| | | | |
| +=+=+=+=+= File rfc0786.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0786.txt +=+=+=+=+= | |
|
| | | | |
| 'yy' on a line without 'yyyy' found at line 71: | | 'yy' on a line without 'yyyy' found at line 71: | |
|
| 68: | | 69: | |
| 69: The date-time will be in the default TOPS20 ODTIM format | | 70: The date-time will be in the default TOPS20 ODTIM format | |
| 70: "dd-mmm-yy hh:mm:ss" (24 hour time). | | 71: "dd-mmm-yy hh:mm:ss" (24 hour time). | |
| 71: | | 72: | |
| 72: The files will named "arbitrary.NIMAIL.-1", where "arbitrary" will | | 73: The files will named "arbitrary.NIMAIL.-1", where "arbitrary" will | |
| | | | |
| +=+=+=+=+= File rfc0788.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0788.txt +=+=+=+=+= | |
|
| | | | |
| 'yy' on a line without 'yyyy' found at line 1592: | | 'yy' on a line without 'yyyy' found at line 1592: | |
|
| 1589: <daytime> ::= "at" <SP> <date> <SP> <time> | | 1590: <daytime> ::= "at" <SP> <date> <SP> <time> | |
| 1590: | | 1591: | |
| 1591: <date> ::= <dd> "-" <mon> "-" <yy> | | 1592: <date> ::= <dd> "-" <mon> "-" <yy> | |
| 1592: | | 1593: | |
| 1593: <time> ::= <hh> ":" <mm> ":" <ss> "-" <zone> | | 1594: <time> ::= <hh> ":" <mm> ":" <ss> "-" <zone> | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 1602: | | 'yy' on a line without 'yyyy' found at line 1602: | |
|
| 1599: "JUL" | "AUG" | "SEP" | "OCT" | "NOV" | "DEC" | | 1600: "JUL" | "AUG" | "SEP" | "OCT" | "NOV" | "DEC" | |
| 1600: | | 1601: | |
| 1601: <yy> ::= the two decimal integer year of the century in the | | 1602: <yy> ::= the two decimal integer year of the century in the | |
| 1602: range 01 to 99. | | 1603: range 01 to 99. | |
| 1603: | | 1604: | |
| | | | |
| century found at line 1602: | | century found at line 1602: | |
|
| 1599: "JUL" | "AUG" | "SEP" | "OCT" | "NOV" | "DEC" | | 1600: "JUL" | "AUG" | "SEP" | "OCT" | "NOV" | "DEC" | |
| 1600: | | 1601: | |
| 1601: <yy> ::= the two decimal integer year of the century in the | | 1602: <yy> ::= the two decimal integer year of the century in the | |
| 1602: range 01 to 99. | | 1603: range 01 to 99. | |
| 1603: | | 1604: | |
| | | | |
| +=+=+=+=+= File rfc0809.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0809.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 3349: | | 2000 found at line 3349: | |
|
| 3346: | | 3347: | |
| 3347: #define WID 0000000 /* Write Image Data */ | | 3348: #define WID 0000000 /* Write Image Data */ | |
| 3348: #define WGD 0020000 /* Write Graphic Data */ | | 3349: #define WGD 0020000 /* Write Graphic Data */ | |
| 3349: #define WAC 0022000 /* Write AlphanumCh */ | | 3350: #define WAC 0022000 /* Write AlphanumCh */ | |
| 3350: | | 3351: | |
| | | | |
| 2000 found at line 3350: | | 2000 found at line 3350: | |
|
| 3347: #define WID 0000000 /* Write Image Data */ | | 3348: #define WID 0000000 /* Write Image Data */ | |
| 3348: #define WGD 0020000 /* Write Graphic Data */ | | 3349: #define WGD 0020000 /* Write Graphic Data */ | |
| 3349: #define WAC 0022000 /* Write AlphanumCh */ | | 3350: #define WAC 0022000 /* Write AlphanumCh */ | |
| 3350: | | 3351: | |
| 3351: #define LWM 0024000 /* Load Write Mode */ | | 3352: #define LWM 0024000 /* Load Write Mode */ | |
| | | | |
| 2000 found at line 3379: | | 2000 found at line 3379: | |
|
| 3376: | | 3377: | |
| 3377: #define ERS 0030000 /* Erase */ | | 3378: #define ERS 0030000 /* Erase */ | |
| 3378: #define ERL 0032000 /* Erase Line */ | | 3379: #define ERL 0032000 /* Erase Line */ | |
| 3379: #define SLU 0034000 /* Special Location Update */ | | 3380: #define SLU 0034000 /* Special Location Update */ | |
| 3380: #define SCRL_ZAP 0100 /* unlimited scroll speed */ | | 3381: #define SCRL_ZAP 0100 /* unlimited scroll speed */ | |
| | | | |
| 2000 found at line 3392: | | 2000 found at line 3392: | |
|
| 3389: #define LLB 0070000 /* Load Lb */ | | 3390: #define LLB 0070000 /* Load Lb */ | |
| 3390: #define LLC 0074000 /* Load Lc */ | | 3391: #define LLC 0074000 /* Load Lc */ | |
| 3391: #define LGW 02000 /* perform write */ | | 3392: #define LGW 02000 /* perform write */ | |
| 3392: | | 3393: | |
| 3393: #define NOP 0110000 /* No-Operation */ | | 3394: #define NOP 0110000 /* No-Operation */ | |
| | | | |
| 2000 found at line 3396: | | 2000 found at line 3396: | |
|
| 3393: #define NOP 0110000 /* No-Operation */ | | 3394: #define NOP 0110000 /* No-Operation */ | |
| 3394: | | 3395: | |
| 3395: #define SPD 0120000 /* Select Special Device */ | | 3396: #define SPD 0120000 /* Select Special Device */ | |
| 3396: #define LPA 0130000 /* Load Peripheral Address */ | | 3397: #define LPA 0130000 /* Load Peripheral Address */ | |
| 3397: #define LPR 0140000 /* Load Peripheral Register */ | | 3398: #define LPR 0140000 /* Load Peripheral Register */ | |
| | | | |
| 2000 found at line 3405: | | 2000 found at line 3405: | |
|
| 3402: #define ALPHA 06000 /* LPR - Alphanumeric data */ | | 3403: #define ALPHA 06000 /* LPR - Alphanumeric data */ | |
| 3403: #define GRAPH 04000 /* LPR - Graphic data */ | | 3404: #define GRAPH 04000 /* LPR - Graphic data */ | |
| 3404: #define IMAGE 02000 /* LPR - Image data */ | | 3405: #define IMAGE 02000 /* LPR - Image data */ | |
| 3405: #define LTHENH 01000 /* take lo byte then hi byte */ | | 3406: #define LTHENH 01000 /* take lo byte then hi byte */ | |
| 3406: #define DROPBYTE 0400 /* drop last byte */ | | 3407: #define DROPBYTE 0400 /* drop last byte */ | |
| | | | |
| 2000 found at line 3408: | | 2000 found at line 3408: | |
|
| 3405: #define LTHENH 01000 /* take lo byte then hi byte */ | | 3406: #define LTHENH 01000 /* take lo byte then hi byte */ | |
| 3406: #define DROPBYTE 0400 /* drop last byte */ | | 3407: #define DROPBYTE 0400 /* drop last byte */ | |
| 3407: #define INTERR 02000 /* SPD - Interrupt Enable */ | | 3408: #define INTERR 02000 /* SPD - Interrupt Enable */ | |
| 3408: #define TEST 04000 /* SPD - Diagnostic Test */ | | 3409: #define TEST 04000 /* SPD - Diagnostic Test */ | |
| 3409: | | 3410: | |
| | | | |
| +=+=+=+=+= File rfc0810.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0810.txt +=+=+=+=+= | |
|
| | | | |
| 'yy' on a line without 'yyyy' found at line 146: | | 'yy' on a line without 'yyyy' found at line 146: | |
|
| 143: , (comma) is used as a data element delimiter | | 144: , (comma) is used as a data element delimiter | |
| 144: | | 145: | |
| 145: XXX/YYY indicates protocol information of the type | | 146: XXX/YYY indicates protocol information of the type | |
| 146: TRANSPORT/SERVICE. | | 147: TRANSPORT/SERVICE. | |
| 147: | | 148: | |
| | | | |
| +=+=+=+=+= File rfc0820.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0820.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 674: | | 2000 found at line 674: | |
|
| 671: 014.000.000.001 311031700035 00 PURDUE-TN [CXK] | | 672: 014.000.000.001 311031700035 00 PURDUE-TN [CXK] | |
| 672: 014.000.000.002 311060800027 00 UWISC-TN [CXK] | | 673: 014.000.000.002 311060800027 00 UWISC-TN [CXK] | |
| 673: 014.000.000.003 311030200024 00 UDEL-TN [CXK] | | 674: 014.000.000.003 311030200024 00 UDEL-TN [CXK] | |
| 674: 014.000.000.004 234219200149 23 UCL-VTEST [PK] | | 675: 014.000.000.004 234219200149 23 UCL-VTEST [PK] | |
| 675: 014.000.000.005 234219200300 23 UCL-TG [PK] | | 676: 014.000.000.005 234219200300 23 UCL-TG [PK] | |
| | | | |
| +=+=+=+=+= File rfc0821.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0821.txt +=+=+=+=+= | |
|
| | | | |
| 'yy' on a line without 'yyyy' found at line 1944: | | 'yy' on a line without 'yyyy' found at line 1944: | |
|
| 1941: <daytime> ::= <SP> <date> <SP> <time> | | 1942: <daytime> ::= <SP> <date> <SP> <time> | |
| 1942: | | 1943: | |
| 1943: <date> ::= <dd> <SP> <mon> <SP> <yy> | | 1944: <date> ::= <dd> <SP> <mon> <SP> <yy> | |
| 1944: | | 1945: | |
| 1945: <time> ::= <hh> ":" <mm> ":" <ss> <SP> <zone> | | 1946: <time> ::= <hh> ":" <mm> ":" <ss> <SP> <zone> | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 1954: | | 'yy' on a line without 'yyyy' found at line 1954: | |
|
| 1951: "JUL" | "AUG" | "SEP" | "OCT" | "NOV" | "DEC" | | 1952: "JUL" | "AUG" | "SEP" | "OCT" | "NOV" | "DEC" | |
| 1952: | | 1953: | |
| 1953: <yy> ::= the two decimal integer year of the century in the | | 1954: <yy> ::= the two decimal integer year of the century in the | |
| 1954: range 00 to 99. | | 1955: range 00 to 99. | |
| 1955: | | 1956: | |
| | | | |
| century found at line 1954: | | century found at line 1954: | |
|
| 1951: "JUL" | "AUG" | "SEP" | "OCT" | "NOV" | "DEC" | | 1952: "JUL" | "AUG" | "SEP" | "OCT" | "NOV" | "DEC" | |
| 1952: | | 1953: | |
| 1953: <yy> ::= the two decimal integer year of the century in the | | 1954: <yy> ::= the two decimal integer year of the century in the | |
| 1954: range 00 to 99. | | 1955: range 00 to 99. | |
| 1955: | | 1956: | |
| | | | |
| +=+=+=+=+= File rfc0822.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0822.txt +=+=+=+=+= | |
|
| | | | |
| 'yy' on a line without 'yyyy' found at line 1635: | | 'yy' on a line without 'yyyy' found at line 1635: | |
|
| 1632: 5.1. SYNTAX | | 1633: 5.1. SYNTAX | |
| 1633: | | 1634: | |
| 1634: date-time = [ day "," ] date time ; dd mm yy | | 1635: date-time = [ day "," ] date time ; dd mm yy | |
| 1635: ; hh:mm:ss zzz | | 1636: ; hh:mm:ss zzz | |
| 1636: | | 1637: | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 2701: | | 'yy' on a line without 'yyyy' found at line 2701: | |
|
| 2698: dates = orig-date ; Original | | 2699: dates = orig-date ; Original | |
| 2699: [ resent-date ] ; Forwarded | | 2700: [ resent-date ] ; Forwarded | |
| 2700: date-time = [ day "," ] date time ; dd mm yy | | 2701: date-time = [ day "," ] date time ; dd mm yy | |
| 2701: ; hh:mm:ss zzz | | 2702: ; hh:mm:ss zzz | |
| 2702: day = "Mon" / "Tue" / "Wed" / "Thu" | | 2703: day = "Mon" / "Tue" / "Wed" / "Thu" | |
| | | | |
| 2-digit found at line 344: | | 2-digit found at line 344: | |
|
| 341: | | 342: | |
| 342: "<n>(element)" is equivalent to "<n>*<n>(element)"; that is, | | 343: "<n>(element)" is equivalent to "<n>*<n>(element)"; that is, | |
| 343: exactly <n> occurrences of (element). Thus 2DIGIT is a 2-digit | | 344: exactly <n> occurrences of (element). Thus 2DIGIT is a 2-digit | |
| 344: number, and 3ALPHA is a string of three alphabetic characters. | | 345: number, and 3ALPHA is a string of three alphabetic characters. | |
| 345: | | 346: | |
| | | | |
| 2digit found at line 344: | | 2digit found at line 344: | |
|
| 341: | | 342: | |
| 342: "<n>(element)" is equivalent to "<n>*<n>(element)"; that is, | | 343: "<n>(element)" is equivalent to "<n>*<n>(element)"; that is, | |
| 343: exactly <n> occurrences of (element). Thus 2DIGIT is a 2-digit | | 344: exactly <n> occurrences of (element). Thus 2DIGIT is a 2-digit | |
| 344: number, and 3ALPHA is a string of three alphabetic characters. | | 345: number, and 3ALPHA is a string of three alphabetic characters. | |
| 345: | | 346: | |
| | | | |
| 2digit found at line 1641: | | 2digit found at line 1641: | |
|
| 1638: / "Fri" / "Sat" / "Sun" | | 1639: / "Fri" / "Sat" / "Sun" | |
| 1639: | | 1640: | |
| 1640: date = 1*2DIGIT month 2DIGIT ; day month year | | 1641: date = 1*2DIGIT month 2DIGIT ; day month year | |
| 1641: ; e.g. 20 Jun 82 | | 1642: ; e.g. 20 Jun 82 | |
| 1642: | | 1643: | |
| | | | |
| 2digit found at line 1650: | | 2digit found at line 1650: | |
|
| 1647: time = hour zone ; ANSI and Military | | 1648: time = hour zone ; ANSI and Military | |
| 1648: | | 1649: | |
| 1649: hour = 2DIGIT ":" 2DIGIT [":" 2DIGIT] | | 1650: hour = 2DIGIT ":" 2DIGIT [":" 2DIGIT] | |
| 1650: ; 00:00:00 - 23:59:59 | | 1651: ; 00:00:00 - 23:59:59 | |
| 1651: | | 1652: | |
| | | | |
| 2digit found at line 2697: | | 2digit found at line 2697: | |
|
| 2694: CTL = <any ASCII control ; ( 0- 37, 0.- 31.) | | 2695: CTL = <any ASCII control ; ( 0- 37, 0.- 31.) | |
| 2695: character and DEL> ; ( 177, 127.) | | 2696: character and DEL> ; ( 177, 127.) | |
| 2696: date = 1*2DIGIT month 2DIGIT ; day month year | | 2697: date = 1*2DIGIT month 2DIGIT ; day month year | |
| 2697: ; e.g. 20 Jun 82 | | 2698: ; e.g. 20 Jun 82 | |
| 2698: dates = orig-date ; Original | | 2699: dates = orig-date ; Original | |
| | | | |
| 2digit found at line 2747: | | 2digit found at line 2747: | |
|
| 2744: field-name = 1*<any CHAR, excluding CTLs, SPACE, and ":"> | | 2745: field-name = 1*<any CHAR, excluding CTLs, SPACE, and ":"> | |
| 2745: group = phrase ":" [#mailbox] ";" | | 2746: group = phrase ":" [#mailbox] ";" | |
| 2746: hour = 2DIGIT ":" 2DIGIT [":" 2DIGIT] | | 2747: hour = 2DIGIT ":" 2DIGIT [":" 2DIGIT] | |
| 2747: ; 00:00:00 - 23:59:59 | | 2748: ; 00:00:00 - 23:59:59 | |
| 2748: HTAB = <ASCII HT, horizontal-tab> ; ( 11, 9.) | | 2749: HTAB = <ASCII HT, horizontal-tab> ; ( 11, 9.) | |
| | | | |
| +=+=+=+=+= File rfc0850.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0850.txt +=+=+=+=+= | |
|
| | | | |
| 'yy' on a line without 'yyyy' found at line 227: | | 'yy' on a line without 'yyyy' found at line 227: | |
|
| 224: network. One format that is acceptable to both is | | 225: network. One format that is acceptable to both is | |
| 225: | | 226: | |
| 226: Weekday, DD-Mon-YY HH:MM:SS TIMEZONE | | 227: Weekday, DD-Mon-YY HH:MM:SS TIMEZONE | |
| 227: | | 228: | |
| 228: Several examples of valid dates appear in the sample | | 229: Several examples of valid dates appear in the sample | |
| | | | |
| +=+=+=+=+= File rfc0867.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0867.txt +=+=+=+=+= | |
|
| | | | |
| 'yy' on a line without 'yyyy' found at line 67: | | 'yy' on a line without 'yyyy' found at line 67: | |
|
| 64: Another popular syntax is that used in SMTP: | | 65: Another popular syntax is that used in SMTP: | |
| 65: | | 66: | |
| 66: dd mmm yy hh:mm:ss zzz | | 67: dd mmm yy hh:mm:ss zzz | |
| 67: | | 68: | |
| 68: Example: | | 69: Example: | |
| | | | |
| +=+=+=+=+= File rfc0868.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0868.txt +=+=+=+=+= | |
|
| | | | |
| 1900 found at line 19: | | 1900 found at line 19: | |
|
| 16: This protocol provides a site-independent, machine readable date and | | 17: This protocol provides a site-independent, machine readable date and | |
| 17: time. The Time service sends back to the originating source the time in | | 18: time. The Time service sends back to the originating source the time in | |
| 18: seconds since midnight on January first 1900. | | 19: seconds since midnight on January first 1900. | |
| 19: | | 20: | |
| 20: One motivation arises from the fact that not all systems have a | | 21: One motivation arises from the fact that not all systems have a | |
| | | | |
| 1900 found at line 83: | | 1900 found at line 83: | |
|
| 80: The Time | | 81: The Time | |
| 81: | | 82: | |
| 82: The time is the number of seconds since 00:00 (midnight) 1 January 1900 | | 83: The time is the number of seconds since 00:00 (midnight) 1 January 1900 | |
| 83: GMT, such that the time 1 is 12:00:01 am on 1 January 1900 GMT; this | | 84: GMT, such that the time 1 is 12:00:01 am on 1 January 1900 GMT; this | |
| 84: base will serve until the year 2036. | | 85: base will serve until the year 2036. | |
| | | | |
| 1900 found at line 84: | | 1900 found at line 84: | |
|
| 81: | | 82: | |
| 82: The time is the number of seconds since 00:00 (midnight) 1 January 1900 | | 83: The time is the number of seconds since 00:00 (midnight) 1 January 1900 | |
| 83: GMT, such that the time 1 is 12:00:01 am on 1 January 1900 GMT; this | | 84: GMT, such that the time 1 is 12:00:01 am on 1 January 1900 GMT; this | |
| 84: base will serve until the year 2036. | | 85: base will serve until the year 2036. | |
| 85: | | 86: | |
| | | | |
| +=+=+=+=+= File rfc0869.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0869.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 1639: | | 2000 found at line 1639: | |
|
| 1636: 400 HDH | | 1637: 400 HDH | |
| 1637: 1000 Cassette Writer | | 1638: 1000 Cassette Writer | |
| 1638: 2000 Propagation Delay Measurement | | 1639: 2000 Propagation Delay Measurement | |
| 1639: 4000 X25 | | 1640: 4000 X25 | |
| 1640: 10000 Profile Measurements | | 1641: 10000 Profile Measurements | |
| | | | |
| 2000 found at line 1642: | | 2000 found at line 1642: | |
|
| 1639: 4000 X25 | | 1640: 4000 X25 | |
| 1640: 10000 Profile Measurements | | 1641: 10000 Profile Measurements | |
| 1641: 20000 Self Authenticating Password | | 1642: 20000 Self Authenticating Password | |
| 1642: 40000 Host traffic Matrix | | 1643: 40000 Host traffic Matrix | |
| 1643: 100000 Experimental/Special | | 1644: 100000 Experimental/Special | |
| | | | |
| 2000 found at line 1669: | | 2000 found at line 1669: | |
|
| 1666: 200 Trace ON | | 1667: 200 Trace ON | |
| 1667: 1000 Statistics ON | | 1668: 1000 Statistics ON | |
| 1668: 2000 Message Generator ON | | 1669: 2000 Message Generator ON | |
| 1669: 4000 Packet Trace ON | | 1670: 4000 Packet Trace ON | |
| 1670: 10000 Host Data Checksum is BAD | | 1671: 10000 Host Data Checksum is BAD | |
| | | | |
| 2000 found at line 1672: | | 2000 found at line 1672: | |
|
| 1669: 4000 Packet Trace ON | | 1670: 4000 Packet Trace ON | |
| 1670: 10000 Host Data Checksum is BAD | | 1671: 10000 Host Data Checksum is BAD | |
| 1671: 20000 Reload Location SET | | 1672: 20000 Reload Location SET | |
| 1672: | | | |
| 1673: | | 1673: | |
|
| | | 1674: | |
| | | | |
| +=+=+=+=+= File rfc0884.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0884.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 236: | | 2000 found at line 236: | |
|
| 233: GENERAL-TERMINAL-100A | | 234: GENERAL-TERMINAL-100A | |
| 234: HAZELTINE-1500 | | 235: HAZELTINE-1500 | |
| 235: HAZELTINE-2000 | | 236: HAZELTINE-2000 | |
| 236: HP-2621 | | 237: HP-2621 | |
| 237: HP-2640A | | 238: HP-2640A | |
| | | | |
| +=+=+=+=+= File rfc0899.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0899.txt +=+=+=+=+= | |
|
| | | | |
| 1900 found at line 337: | | 1900 found at line 337: | |
|
| 334: provides a site-independent, machine readable date and time. The | | 335: provides a site-independent, machine readable date and time. The | |
| 335: Time service sends back to the originating source the time in seconds | | 336: Time service sends back to the originating source the time in seconds | |
| 336: since midnight on January first 1900. | | 337: since midnight on January first 1900. | |
| 337: | | 338: | |
| 338: 867 Postel May 83 Daytime Protocol | | 339: 867 Postel May 83 Daytime Protocol | |
| | | | |
| +=+=+=+=+= File rfc0900.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0900.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 1595: | | 2000 found at line 1595: | |
|
| 1592: HAZELTINE-1510 | | 1593: HAZELTINE-1510 | |
| 1593: HAZELTINE-1520 | | 1594: HAZELTINE-1520 | |
| 1594: HAZELTINE-2000 | | 1595: HAZELTINE-2000 | |
| 1595: HP-2621 | | 1596: HP-2621 | |
| 1596: HP-2621A | | 1597: HP-2621A | |
| | | | |
| +=+=+=+=+= File rfc0909.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0909.txt +=+=+=+=+= | |
|
| | | | |
| 'yy' on a line without 'yyyy' found at line 859: | | 'yy' on a line without 'yyyy' found at line 859: | |
|
| 856: responses from the target. A session begins when a host opens a | | 857: responses from the target. A session begins when a host opens a | |
| 857: transport connection to a target listening on a well known port. | | 858: transport connection to a target listening on a well known port. | |
| 858: LDP uses RDP port number zzz or TCP port number yyy. When the | | 859: LDP uses RDP port number zzz or TCP port number yyy. When the | |
| 859: connection has been established, the host sends a HELLO command, | | 860: connection has been established, the host sends a HELLO command, | |
| 860: and the target replies with a HELLO_REPLY. The HELLO_REPLY | | 861: and the target replies with a HELLO_REPLY. The HELLO_REPLY | |
| | | | |
| +=+=+=+=+= File rfc0923.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0923.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 1769: | | 2000 found at line 1769: | |
|
| 1766: HAZELTINE-1510 | | 1767: HAZELTINE-1510 | |
| 1767: HAZELTINE-1520 | | 1768: HAZELTINE-1520 | |
| 1768: HAZELTINE-2000 | | 1769: HAZELTINE-2000 | |
| 1769: HP-2621 | | 1770: HP-2621 | |
| 1770: HP-2621A | | 1771: HP-2621A | |
| | | | |
| +=+=+=+=+= File rfc0937.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0937.txt +=+=+=+=+= | |
|
| | | | |
| 'yy' on a line without 'yyyy' found at line 327: | | 'yy' on a line without 'yyyy' found at line 327: | |
|
| 324: FOLD mailbox - Error | | 325: FOLD mailbox - Error | |
| 325: READ [n] #xxx | | 326: READ [n] #xxx | |
| 326: RETR =yyy | | 327: RETR =yyy | |
| 327: ACKS | | 328: ACKS | |
| 328: ACKD | | 329: ACKD | |
| | | | |
| +=+=+=+=+= File rfc0943.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0943.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 1829: | | 2000 found at line 1829: | |
|
| 1826: HAZELTINE-1510 | | 1827: HAZELTINE-1510 | |
| 1827: HAZELTINE-1520 | | 1828: HAZELTINE-1520 | |
| 1828: HAZELTINE-2000 | | 1829: HAZELTINE-2000 | |
| 1829: HP-2621 | | 1830: HP-2621 | |
| 1830: HP-2621A | | 1831: HP-2621A | |
| | | | |
| +=+=+=+=+= File rfc0952.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0952.txt +=+=+=+=+= | |
|
| | | | |
| 'yy' on a line without 'yyyy' found at line 159: | | 'yy' on a line without 'yyyy' found at line 159: | |
|
| 156: ,(comma) is used as a data element delimiter | | 157: ,(comma) is used as a data element delimiter | |
| 157: | | 158: | |
| 158: XXX/YYY indicates protocol information of the type | | 159: XXX/YYY indicates protocol information of the type | |
| 159: TRANSPORT/SERVICE. | | 160: TRANSPORT/SERVICE. | |
| 160: | | 161: | |
| | | | |
| +=+=+=+=+= File rfc0956.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0956.txt +=+=+=+=+= | |
|
| | | | |
| 1900 found at line 748: | | 1900 found at line 748: | |
|
| 745: | | 746: | |
| 746: 3. The data format should be based on the UDP Time format, which | | 747: 3. The data format should be based on the UDP Time format, which | |
| 747: specifies 32-bit time in seconds since 1 January 1900, but | | 748: specifies 32-bit time in seconds since 1 January 1900, but | |
| 748: extended additional bits for the fractional part of a second. | | 749: extended additional bits for the fractional part of a second. | |
| 749: | | 750: | |
| | | | |
| 1900 found at line 826: | | 1900 found at line 826: | |
|
| 823: experiment the results indicated by UDP and ICMP are compared. In | | 824: experiment the results indicated by UDP and ICMP are compared. In | |
| 824: the UDP Time protocol time is indicated as a 32-bit field in seconds | | 825: the UDP Time protocol time is indicated as a 32-bit field in seconds | |
| 825: past 0000 UT on 1 January 1900, while in the ICMP Timestamp message | | 826: past 0000 UT on 1 January 1900, while in the ICMP Timestamp message | |
| 826: time is indicated as a 32-bit field in milliseconds past 0000 UT of | | 827: time is indicated as a 32-bit field in milliseconds past 0000 UT of | |
| 827: each day. | | 828: each day. | |
| | | | |
| 2000 found at line 1392: | | 2000 found at line 1392: | |
|
| 1389: CU-ARPA.CS.CORNELL.EDU -1 -514 | | 1390: CU-ARPA.CS.CORNELL.EDU -1 -514 | |
| 1390: UCI-ICSE.ARPA -1 -1896 | | 1391: UCI-ICSE.ARPA -1 -1896 | |
| 1391: UCI-ICSC.ARPA 1 2000 | | 1392: UCI-ICSC.ARPA 1 2000 | |
| 1392: DCN9.ARPA -7 -6610 | | 1393: DCN9.ARPA -7 -6610 | |
| 1393: TRANTOR.ARPA 10 10232 | | 1394: TRANTOR.ARPA 10 10232 | |
| | | | |
| +=+=+=+=+= File rfc0958.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0958.txt +=+=+=+=+= | |
|
| | | | |
| century found at line 41: | | century found at line 41: | |
|
| 38: NTP provides the protocol mechanisms to synchronize time in principle | | 39: NTP provides the protocol mechanisms to synchronize time in principle | |
| 39: to precisions in the order of nanoseconds while preserving a | | 40: to precisions in the order of nanoseconds while preserving a | |
| 40: non-ambiguous date, at least for this century. The protocol includes | | 41: non-ambiguous date, at least for this century. The protocol includes | |
| 41: provisions to specify the precision and estimated error of the local | | 42: provisions to specify the precision and estimated error of the local | |
| 42: clock and the characteristics of the reference clock to which it may | | 43: clock and the characteristics of the reference clock to which it may | |
| | | | |
| 1900 found at line 143: | | 1900 found at line 143: | |
|
| 140: | | 141: | |
| 141: NTP timestamps are represented as a 64-bit fixed-point number, in | | 142: NTP timestamps are represented as a 64-bit fixed-point number, in | |
| 142: seconds relative to 0000 UT on 1 January 1900. The integer part is | | 143: seconds relative to 0000 UT on 1 January 1900. The integer part is | |
| 143: in the first 32 bits and the fraction part in the last 32 bits, as | | 144: in the first 32 bits and the fraction part in the last 32 bits, as | |
| 144: shown in the following diagram. | | 145: shown in the following diagram. | |
| | | | |
| +=+=+=+=+= File rfc0960.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0960.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 1659: | | 2000 found at line 1659: | |
|
| 1656: 014.000.000.018 2624-522-80900 52 DFVLR5-X25 [HDC1] | | 1657: 014.000.000.018 2624-522-80900 52 DFVLR5-X25 [HDC1] | |
| 1657: 014.000.000.019 2041-170-10000 00 SHAPE-X25 [JFW] | | 1658: 014.000.000.019 2041-170-10000 00 SHAPE-X25 [JFW] | |
| 1658: 014.000.000.020 5052-737-20000 50 UQNET [AXH] | | 1659: 014.000.000.020 5052-737-20000 50 UQNET [AXH] | |
| 1659: 014.000.000.021 3020-801-00057 50 DMC-CRC1 [JR17] | | 1660: 014.000.000.021 3020-801-00057 50 DMC-CRC1 [JR17] | |
| 1660: 014.000.000.022-014.255.255.254 Unassigned [JBP] | | 1661: 014.000.000.022-014.255.255.254 Unassigned [JBP] | |
| | | | |
| 2000 found at line 1984: | | 2000 found at line 1984: | |
|
| 1981: AEGIS | | 1982: AEGIS | |
| 1982: APOLLO | | 1983: APOLLO | |
| 1983: BS-2000 | | 1984: BS-2000 | |
| 1984: CEDAR | | 1985: CEDAR | |
| 1985: CGW | | 1986: CGW | |
| | | | |
| 2000 found at line 2350: | | 2000 found at line 2350: | |
|
| 2347: HAZELTINE-1510 | | 2348: HAZELTINE-1510 | |
| 2348: HAZELTINE-1520 | | 2349: HAZELTINE-1520 | |
| 2349: HAZELTINE-2000 | | 2350: HAZELTINE-2000 | |
| 2350: HP-2621 | | 2351: HP-2621 | |
| 2351: HP-2621A | | 2352: HP-2621A | |
| | | | |
| +=+=+=+=+= File rfc0973.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0973.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 377: | | 2000 found at line 377: | |
|
| 374: We might add the following to the parent zone: | | 375: We might add the following to the parent zone: | |
| 375: | | 376: | |
| 376: 99.128.IN-ADDR.ARPA. 2000 NS Q.ISI.EDU. | | 377: 99.128.IN-ADDR.ARPA. 2000 NS Q.ISI.EDU. | |
| 377: 2000 NS XX.MIT.EDU. | | 378: 2000 NS XX.MIT.EDU. | |
| 378: Q.ISI.EDU. 2000 A <address of Q.ISI.EDU.> | | 379: Q.ISI.EDU. 2000 A <address of Q.ISI.EDU.> | |
| | | | |
| 2000 found at line 378: | | 2000 found at line 378: | |
|
| 375: | | 376: | |
| 376: 99.128.IN-ADDR.ARPA. 2000 NS Q.ISI.EDU. | | 377: 99.128.IN-ADDR.ARPA. 2000 NS Q.ISI.EDU. | |
| 377: 2000 NS XX.MIT.EDU. | | 378: 2000 NS XX.MIT.EDU. | |
| 378: Q.ISI.EDU. 2000 A <address of Q.ISI.EDU.> | | 379: Q.ISI.EDU. 2000 A <address of Q.ISI.EDU.> | |
| 379: XX.MIT.EDU. 2000 A <address of XX.MIT.EDU.> | | 380: XX.MIT.EDU. 2000 A <address of XX.MIT.EDU.> | |
| | | | |
| 2000 found at line 379: | | 2000 found at line 379: | |
|
| 376: 99.128.IN-ADDR.ARPA. 2000 NS Q.ISI.EDU. | | 377: 99.128.IN-ADDR.ARPA. 2000 NS Q.ISI.EDU. | |
| 377: 2000 NS XX.MIT.EDU. | | 378: 2000 NS XX.MIT.EDU. | |
| 378: Q.ISI.EDU. 2000 A <address of Q.ISI.EDU.> | | 379: Q.ISI.EDU. 2000 A <address of Q.ISI.EDU.> | |
| 379: XX.MIT.EDU. 2000 A <address of XX.MIT.EDU.> | | 380: XX.MIT.EDU. 2000 A <address of XX.MIT.EDU.> | |
| 380: | | 381: | |
| | | | |
| 2000 found at line 380: | | 2000 found at line 380: | |
|
| 377: 2000 NS XX.MIT.EDU. | | 378: 2000 NS XX.MIT.EDU. | |
| 378: Q.ISI.EDU. 2000 A <address of Q.ISI.EDU.> | | 379: Q.ISI.EDU. 2000 A <address of Q.ISI.EDU.> | |
| 379: XX.MIT.EDU. 2000 A <address of XX.MIT.EDU.> | | 380: XX.MIT.EDU. 2000 A <address of XX.MIT.EDU.> | |
| 380: | | 381: | |
| 381: and the following to the child zone: | | 382: and the following to the child zone: | |
| | | | |
| 2000 found at line 384: | | 2000 found at line 384: | |
|
| 381: and the following to the child zone: | | 382: and the following to the child zone: | |
| 382: | | 383: | |
| 383: 99.128.IN-ADDR.ARPA. 2000 NS Q.ISI.EDU. | | 384: 99.128.IN-ADDR.ARPA. 2000 NS Q.ISI.EDU. | |
| 384: 2000 NS XX.MIT.EDU. | | 385: 2000 NS XX.MIT.EDU. | |
| 385: 5000 SOA <SOA information> | | 386: 5000 SOA <SOA information> | |
| | | | |
| 2000 found at line 385: | | 2000 found at line 385: | |
|
| 382: | | 383: | |
| 383: 99.128.IN-ADDR.ARPA. 2000 NS Q.ISI.EDU. | | 384: 99.128.IN-ADDR.ARPA. 2000 NS Q.ISI.EDU. | |
| 384: 2000 NS XX.MIT.EDU. | | 385: 2000 NS XX.MIT.EDU. | |
| 385: 5000 SOA <SOA information> | | 386: 5000 SOA <SOA information> | |
| 386: Q.ISI.EDU. 2000 A <address of Q.ISI.EDU.> | | 387: Q.ISI.EDU. 2000 A <address of Q.ISI.EDU.> | |
| | | | |
| 2000 found at line 387: | | 2000 found at line 387: | |
|
| 384: 2000 NS XX.MIT.EDU. | | 385: 2000 NS XX.MIT.EDU. | |
| 385: 5000 SOA <SOA information> | | 386: 5000 SOA <SOA information> | |
| 386: Q.ISI.EDU. 2000 A <address of Q.ISI.EDU.> | | 387: Q.ISI.EDU. 2000 A <address of Q.ISI.EDU.> | |
| 387: XX.MIT.EDU. 2000 A <address of XX.MIT.EDU.> | | 388: XX.MIT.EDU. 2000 A <address of XX.MIT.EDU.> | |
| 388: | | 389: | |
| | | | |
| 2000 found at line 388: | | 2000 found at line 388: | |
|
| 385: 5000 SOA <SOA information> | | 386: 5000 SOA <SOA information> | |
| 386: Q.ISI.EDU. 2000 A <address of Q.ISI.EDU.> | | 387: Q.ISI.EDU. 2000 A <address of Q.ISI.EDU.> | |
| 387: XX.MIT.EDU. 2000 A <address of XX.MIT.EDU.> | | 388: XX.MIT.EDU. 2000 A <address of XX.MIT.EDU.> | |
| 388: | | 389: | |
| 389: SOA serials | | 390: SOA serials | |
| | | | |
| +=+=+=+=+= File rfc0977.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0977.txt +=+=+=+=+= | |
|
| | | | |
| 'yy' on a line without 'yyyy' found at line 814: | | 'yy' on a line without 'yyyy' found at line 814: | |
|
| 811: the same format as the LIST command. | | 812: the same format as the LIST command. | |
| 812: | | 813: | |
| 813: The date is sent as 6 digits in the format YYMMDD, where YY is the | | 814: The date is sent as 6 digits in the format YYMMDD, where YY is the | |
| 814: last two digits of the year, MM is the two digits of the month (with | | 815: last two digits of the year, MM is the two digits of the month (with | |
| 815: leading zero, if appropriate), and DD is the day of the month (with | | 816: leading zero, if appropriate), and DD is the day of the month (with | |
| | | | |
| century found at line 817: | | century found at line 817: | |
|
| 814: last two digits of the year, MM is the two digits of the month (with | | 815: last two digits of the year, MM is the two digits of the month (with | |
| 815: leading zero, if appropriate), and DD is the day of the month (with | | 816: leading zero, if appropriate), and DD is the day of the month (with | |
| 816: leading zero, if appropriate). The closest century is assumed as | | 817: leading zero, if appropriate). The closest century is assumed as | |
| 817: part of the year (i.e., 86 specifies 1986, 30 specifies 2030, 99 is | | 818: part of the year (i.e., 86 specifies 1986, 30 specifies 2030, 99 is | |
| 818: 1999, 00 is 2000). | | 819: 1999, 00 is 2000). | |
| | | | |
| 2000 found at line 819: | | 2000 found at line 819: | |
|
| 816: leading zero, if appropriate). The closest century is assumed as | | 817: leading zero, if appropriate). The closest century is assumed as | |
| 817: part of the year (i.e., 86 specifies 1986, 30 specifies 2030, 99 is | | 818: part of the year (i.e., 86 specifies 1986, 30 specifies 2030, 99 is | |
| 818: 1999, 00 is 2000). | | 819: 1999, 00 is 2000). | |
| 819: | | 820: | |
| 820: Time must also be specified. It must be as 6 digits HHMMSS with HH | | 821: Time must also be specified. It must be as 6 digits HHMMSS with HH | |
| | | | |
| 2000 found at line 1190: | | 2000 found at line 1190: | |
|
| 1187: | | 1188: | |
| 1188: (client asks for new newsgroups since April 3, 1985) | | 1189: (client asks for new newsgroups since April 3, 1985) | |
| 1189: C: NEWGROUPS 850403 020000 | | 1190: C: NEWGROUPS 850403 020000 | |
| 1190: | | 1191: | |
| 1191: S: 231 New newsgroups since 03/04/85 02:00:00 follow | | 1192: S: 231 New newsgroups since 03/04/85 02:00:00 follow | |
| | | | |
| 2000 found at line 1275: | | 2000 found at line 1275: | |
|
| 1272: | | 1273: | |
| 1273: (client asks for new newsgroups since 2 am, May 15, 1985) | | 1274: (client asks for new newsgroups since 2 am, May 15, 1985) | |
| 1274: C: NEWGROUPS 850515 020000 | | 1275: C: NEWGROUPS 850515 020000 | |
| 1275: S: 235 New newsgroups since 850515 follow | | 1276: S: 235 New newsgroups since 850515 follow | |
| 1276: S: net.fluff | | 1277: S: net.fluff | |
| | | | |
| 2000 found at line 1282: | | 2000 found at line 1282: | |
|
| 1279: | | 1280: | |
| 1280: (client asks for new news articles since 2 am, May 15, 1985) | | 1281: (client asks for new news articles since 2 am, May 15, 1985) | |
| 1281: C: NEWNEWS * 850515 020000 | | 1282: C: NEWNEWS * 850515 020000 | |
| 1282: S: 230 New news since 850515 020000 follows | | 1283: S: 230 New news since 850515 020000 follows | |
| 1283: S: <1772@foo.UUCP> | | 1284: S: <1772@foo.UUCP> | |
| | | | |
| 2000 found at line 1283: | | 2000 found at line 1283: | |
|
| 1280: (client asks for new news articles since 2 am, May 15, 1985) | | 1281: (client asks for new news articles since 2 am, May 15, 1985) | |
| 1281: C: NEWNEWS * 850515 020000 | | 1282: C: NEWNEWS * 850515 020000 | |
| 1282: S: 230 New news since 850515 020000 follows | | 1283: S: 230 New news since 850515 020000 follows | |
| 1283: S: <1772@foo.UUCP> | | 1284: S: <1772@foo.UUCP> | |
| 1284: S: <87623@baz.UUCP> | | 1285: S: <87623@baz.UUCP> | |
| | | | |
| +=+=+=+=+= File rfc0985.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0985.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 505: | | 2000 found at line 505: | |
|
| 502: Very Distant Host (VDH) methods are not recommended for new | | 503: Very Distant Host (VDH) methods are not recommended for new | |
| 503: implementations. The Distant Host (DH) method is used when the | | 504: implementations. The Distant Host (DH) method is used when the | |
| 504: host and IMP are separated by not more than about 2000 feet of | | 505: host and IMP are separated by not more than about 2000 feet of | |
| 505: cable, while the HDLC Distant Host is used for greater distances | | 506: cable, while the HDLC Distant Host is used for greater distances | |
| 506: where a modem is required. Retransmission, resequencing and flow | | 507: where a modem is required. Retransmission, resequencing and flow | |
| | | | |
| +=+=+=+=+= File rfc0987.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0987.txt +=+=+=+=+= | |
|
| | | | |
| UTCTime found at line 1100: | | UTCTime found at line 1100: | |
|
| 1097: X.408 (sections 4.2.2 and 5.2.2). | | 1098: X.408 (sections 4.2.2 and 5.2.2). | |
| 1098: | | 1099: | |
| 1099: 3.3.5. UTCTime | | 1100: 3.3.5. UTCTime | |
| 1100: | | 1101: | |
| 1101: Both UTCTime and the RFC 822 822.date-time syntax contain: Year | | 1102: Both UTCTime and the RFC 822 822.date-time syntax contain: Year | |
| | | | |
| UTCTime found at line 1102: | | UTCTime found at line 1102: | |
|
| 1099: 3.3.5. UTCTime | | 1100: 3.3.5. UTCTime | |
| 1100: | | 1101: | |
| 1101: Both UTCTime and the RFC 822 822.date-time syntax contain: Year | | 1102: Both UTCTime and the RFC 822 822.date-time syntax contain: Year | |
| 1102: (lowest two digits), Month, Day of Month, hour, minute, second | | 1103: (lowest two digits), Month, Day of Month, hour, minute, second | |
| 1103: (optional), and Timezone. 822.date-time also contains an | | 1104: (optional), and Timezone. 822.date-time also contains an | |
| | | | |
| UTCTime found at line 1107: | | UTCTime found at line 1107: | |
|
| 1104: optional day of the week, but this is redundant. Therefore a | | 1105: optional day of the week, but this is redundant. Therefore a | |
| 1105: symmetrical mapping can be made between these constructs <5>. | | 1106: symmetrical mapping can be made between these constructs <5>. | |
| 1106: The UTCTime format which specifies the timezone offset should | | 1107: The UTCTime format which specifies the timezone offset should | |
| 1107: be used, in line with CEN/CENELEC recommendations. | | 1108: be used, in line with CEN/CENELEC recommendations. | |
| 1108: | | 1109: | |
| | | | |
| UTCTime found at line 3395: | | UTCTime found at line 3395: | |
|
| 3392: | | 3393: | |
| 3393: The extended syntax of zone defined in the JNT Mail Protocol | | 3394: The extended syntax of zone defined in the JNT Mail Protocol | |
| 3394: should be used in the mapping of UTCTime defined in chapter 3. | | 3395: should be used in the mapping of UTCTime defined in chapter 3. | |
| 3395: | | 3396: | |
| 3396: 5. Lack of separate 822-P1 originator specification | | 3397: 5. Lack of separate 822-P1 originator specification | |
| | | | |
| UTCTime found at line 3910: | | UTCTime found at line 3910: | |
|
| 3907: <5> In practice, a gateway will need to parse various illegal | | 3908: <5> In practice, a gateway will need to parse various illegal | |
| 3908: variants on 822.date-time. In cases where 822.date-time cannot | | 3909: variants on 822.date-time. In cases where 822.date-time cannot | |
| 3909: be parsed, it is recommended that the derived UTCTime is set to | | 3910: be parsed, it is recommended that the derived UTCTime is set to | |
| 3910: the value at the time of translation. | | 3911: the value at the time of translation. | |
| 3911: | | 3912: | |
| | | | |
| 2digit found at line 2785: | | 2digit found at line 2785: | |
|
| 2782: last-trace ";" | | 2783: last-trace ";" | |
| 2783: "ext" 1*DIGIT | | 2784: "ext" 1*DIGIT | |
| 2784: "flags" 2DIGIT | | 2785: "flags" 2DIGIT | |
| 2785: [ "intended" mailbox ] ";" | | 2786: [ "intended" mailbox ] ";" | |
| 2786: [ "info" printablestring ] | | 2787: [ "info" printablestring ] | |
| | | | |
| +=+=+=+=+= File rfc0990.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0990.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 2265: | | 2000 found at line 2265: | |
|
| 2262: 014.000.000.018 2624-522-80900 52 DFVLR5-X25 [GB7] | | 2263: 014.000.000.018 2624-522-80900 52 DFVLR5-X25 [GB7] | |
| 2263: 014.000.000.019 2041-170-10000 00 SHAPE-X25 [JFW] | | 2264: 014.000.000.019 2041-170-10000 00 SHAPE-X25 [JFW] | |
| 2264: 014.000.000.020 5052-737-20000 50 UQNET [AXH] | | 2265: 014.000.000.020 5052-737-20000 50 UQNET [AXH] | |
| 2265: 014.000.000.021 3020-801-00057 50 DMC-CRC1 [JR17] | | 2266: 014.000.000.021 3020-801-00057 50 DMC-CRC1 [JR17] | |
| 2266: 014.000.000.022 2624-522-80902 77 DFVLRVAX-X25 [GB7] | | 2267: 014.000.000.022 2624-522-80902 77 DFVLRVAX-X25 [GB7] | |
| | | | |
| 2000 found at line 2584: | | 2000 found at line 2584: | |
|
| 2581: AEGIS | | 2582: AEGIS | |
| 2582: APOLLO | | 2583: APOLLO | |
| 2583: BS-2000 | | 2584: BS-2000 | |
| 2584: CEDAR | | 2585: CEDAR | |
| 2585: CGW | | 2586: CGW | |
| | | | |
| 2000 found at line 2945: | | 2000 found at line 2945: | |
|
| 2942: HAZELTINE-1510 | | 2943: HAZELTINE-1510 | |
| 2943: HAZELTINE-1520 | | 2944: HAZELTINE-1520 | |
| 2944: HAZELTINE-2000 | | 2945: HAZELTINE-2000 | |
| 2945: HP-2621 | | 2946: HP-2621 | |
| 2946: HP-2621A | | 2947: HP-2621A | |
| | | | |
| +=+=+=+=+= File rfc0996.txt +=+=+=+=+= | | +=+=+=+=+= File rfc0996.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 76: | | 2000 found at line 76: | |
|
| 73: | | 74: | |
| 74: Process type: 000027 options: 040000 | | 75: Process type: 000027 options: 040000 | |
| 75: Subnet: DMV status: 376 hello: 15 timeout: 2000 | | 76: Subnet: DMV status: 376 hello: 15 timeout: 2000 | |
| 76: Foreign address: [192.5.39.87] max size: 576 | | 77: Foreign address: [192.5.39.87] max size: 576 | |
| 77: Input packets 3645 Output packets 3690 | | 78: Input packets 3645 Output packets 3690 | |
| | | | |
| +=+=+=+=+= File rfc1000.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1000.txt +=+=+=+=+= | |
|
| | | | |
| 1900 found at line 3105: | | 1900 found at line 3105: | |
|
| 3102: protocol provides a site-independent, machine readable date and | | 3103: protocol provides a site-independent, machine readable date and | |
| 3103: time. The Time service sends back to the originating source the | | 3104: time. The Time service sends back to the originating source the | |
| 3104: time in seconds since midnight on January first 1900. | | 3105: time in seconds since midnight on January first 1900. | |
| 3105: | | 3106: | |
| 3106: 867 Postel May 83 Daytime Protocol | | 3107: 867 Postel May 83 Daytime Protocol | |
| | | | |
| +=+=+=+=+= File rfc1009.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1009.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 1412: | | 2000 found at line 1412: | |
|
| 1409: method is used when the host and IMP (the Defense Communication | | 1410: method is used when the host and IMP (the Defense Communication | |
| 1410: Agency calls it a Packet Switch Node or PSN) are separated by not | | 1411: Agency calls it a Packet Switch Node or PSN) are separated by not | |
| 1411: more than about 2000 feet of cable, while the HDLC Distant Host | | 1412: more than about 2000 feet of cable, while the HDLC Distant Host | |
| 1412: (HDH) is used for greater distances where a modem is required. | | 1413: (HDH) is used for greater distances where a modem is required. | |
| 1413: Under HDH, retransmission, resequencing and flow control are | | 1414: Under HDH, retransmission, resequencing and flow control are | |
| | | | |
| +=+=+=+=+= File rfc1010.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1010.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 969: | | 2000 found at line 969: | |
|
| 966: 014.000.000.018 2624-522-80900 52 DFVLR5-X25 [GB7] | | 967: 014.000.000.018 2624-522-80900 52 DFVLR5-X25 [GB7] | |
| 967: 014.000.000.019 2041-170-10000 00 SHAPE-X25 [JFW] | | 968: 014.000.000.019 2041-170-10000 00 SHAPE-X25 [JFW] | |
| 968: 014.000.000.020 5052-737-20000 50 UQNET [AXH] | | 969: 014.000.000.020 5052-737-20000 50 UQNET [AXH] | |
| 969: 014.000.000.021 3020-801-00057 50 DMC-CRC1 [JR17] | | 970: 014.000.000.021 3020-801-00057 50 DMC-CRC1 [JR17] | |
| 970: 014.000.000.022 2624-522-80902 77 DFVLRVAX-X25 [GB7] | | 971: 014.000.000.022 2624-522-80902 77 DFVLRVAX-X25 [GB7] | |
| | | | |
| 2000 found at line 1353: | | 2000 found at line 1353: | |
|
| 1350: AEGIS | | 1351: AEGIS | |
| 1351: APOLLO | | 1352: APOLLO | |
| 1352: BS-2000 | | 1353: BS-2000 | |
| 1353: CEDAR | | 1354: CEDAR | |
| 1354: CGW | | 1355: CGW | |
| | | | |
| 2000 found at line 1719: | | 2000 found at line 1719: | |
|
| 1716: HAZELTINE-1510 | | 1717: HAZELTINE-1510 | |
| 1717: HAZELTINE-1520 | | 1718: HAZELTINE-1520 | |
| 1718: HAZELTINE-2000 | | 1719: HAZELTINE-2000 | |
| 1719: HP-2621 | | 1720: HP-2621 | |
| 1720: HP-2621A | | 1721: HP-2621A | |
| | | | |
| +=+=+=+=+= File rfc1024.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1024.txt +=+=+=+=+= | |
|
| | | | |
| 1900 found at line 535: | | 1900 found at line 535: | |
|
| 532: | | 533: | |
| 533: The local system clock, measured in milliseconds since 00:00 1 | | 534: The local system clock, measured in milliseconds since 00:00 1 | |
| 534: January 1900 UTC. Assumed to be only a local estimate of the time. | | 535: January 1900 UTC. Assumed to be only a local estimate of the time. | |
| 535: The value 0 is reserved for an uninitialized clock (For example, an | | 536: The value 0 is reserved for an uninitialized clock (For example, an | |
| 536: uninitialized time-of-day chip.) | | 537: uninitialized time-of-day chip.) | |
| | | | |
| 1900 found at line 546: | | 1900 found at line 546: | |
|
| 543: A network synchronized clock, which is assumed to be synchronized | | 544: A network synchronized clock, which is assumed to be synchronized | |
| 544: across some part of a network. The clock value is measured in | | 545: across some part of a network. The clock value is measured in | |
| 545: milliseconds since 00:00 1 January 1900 UTC. Specific information | | 546: milliseconds since 00:00 1 January 1900 UTC. Specific information | |
| 546: about the synchronization protocol is found in the system variable | | 547: about the synchronization protocol is found in the system variable | |
| 547: dictionary. The value 0 is used to indicate an uninitialized clock. | | 548: dictionary. The value 0 is used to indicate an uninitialized clock. | |
| | | | |
| +=+=+=+=+= File rfc1036.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1036.txt +=+=+=+=+= | |
|
| | | | |
| 'yy' on a line without 'yyyy' found at line 196: | | 'yy' on a line without 'yyyy' found at line 196: | |
|
| 193: both is: | | 194: both is: | |
| 194: | | 195: | |
| 195: Wdy, DD Mon YY HH:MM:SS TIMEZONE | | 196: Wdy, DD Mon YY HH:MM:SS TIMEZONE | |
| 196: | | 197: | |
| 197: Several examples of valid dates appear in the sample message above. | | 198: Several examples of valid dates appear in the sample message above. | |
| | | | |
| +=+=+=+=+= File rfc1037.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1037.txt +=+=+=+=+= | |
|
| | | | |
| 1900 found at line 541: | | 1900 found at line 541: | |
|
| 538: Date A numeric data token. The date is expressed in | | 539: Date A numeric data token. The date is expressed in | |
| 539: Universal Time format, which measures a time as | | 540: Universal Time format, which measures a time as | |
| 540: the number of seconds since January 1, 1900, at | | 541: the number of seconds since January 1, 1900, at | |
| 541: midnight GMT. | | 542: midnight GMT. | |
| 542: | | 543: | |
| | | | |
| 1900 found at line 2544: | | 1900 found at line 2544: | |
|
| 2541: The creation date of the file. The date is expressed in Universal | | 2542: The creation date of the file. The date is expressed in Universal | |
| 2542: Time format, which measures a time as the number of seconds since | | 2543: Time format, which measures a time as the number of seconds since | |
| 2543: January 1, 1900, at midnight GMT. Creation date does not necessarily | | 2544: January 1, 1900, at midnight GMT. Creation date does not necessarily | |
| 2544: mean the time the file system created the directory entry or records | | 2545: mean the time the file system created the directory entry or records | |
| 2545: of the file. For systems that support modification or appending to | | 2546: of the file. For systems that support modification or appending to | |
| | | | |
| +=+=+=+=+= File rfc1038.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1038.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 317: | | 2000 found at line 317: | |
|
| 314: | | 315: | |
| 315: The values of this field are assigned by DCA Code R130, Washington, | | 316: The values of this field are assigned by DCA Code R130, Washington, | |
| 316: D.C. 20305-2000. Each value corresponds to a requestor who, once | | 317: D.C. 20305-2000. Each value corresponds to a requestor who, once | |
| 317: assigned, becomes the authority for the remainder of the option | | 318: assigned, becomes the authority for the remainder of the option | |
| 318: definition for that value. | | 319: definition for that value. | |
| | | | |
| +=+=+=+=+= File rfc1050.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1050.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 323: | | 2000 found at line 323: | |
|
| 320: 7.3 Program Number Assignment | | 321: 7.3 Program Number Assignment | |
| 321: | | 322: | |
| 322: Program numbers are given out in groups of hexadecimal 20000000 | | 323: Program numbers are given out in groups of hexadecimal 20000000 | |
| 323: (decimal 536870912) according to the following chart: | | 324: (decimal 536870912) according to the following chart: | |
| 324: | | 325: | |
| | | | |
| 2000 found at line 327: | | 2000 found at line 327: | |
|
| 324: | | 325: | |
| 325: 0 - 1fffffff defined by Sun | | 326: 0 - 1fffffff defined by Sun | |
| 326: 20000000 - 3fffffff defined by user | | 327: 20000000 - 3fffffff defined by user | |
| 327: 40000000 - 5fffffff transient | | 328: 40000000 - 5fffffff transient | |
| 328: 60000000 - 7fffffff reserved | | 329: 60000000 - 7fffffff reserved | |
| | | | |
| +=+=+=+=+= File rfc1057.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1057.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 339: | | 2000 found at line 339: | |
|
| 336: 7.3 Program Number Assignment | | 337: 7.3 Program Number Assignment | |
| 337: | | 338: | |
| 338: Program numbers are given out in groups of hexadecimal 20000000 | | 339: Program numbers are given out in groups of hexadecimal 20000000 | |
| 339: (decimal 536870912) according to the following chart: | | 340: (decimal 536870912) according to the following chart: | |
| 340: | | 341: | |
| | | | |
| 2000 found at line 343: | | 2000 found at line 343: | |
|
| 340: | | 341: | |
| 341: 0 - 1fffffff defined by Sun | | 342: 0 - 1fffffff defined by Sun | |
| 342: 20000000 - 3fffffff defined by user | | 343: 20000000 - 3fffffff defined by user | |
| 343: 40000000 - 5fffffff transient | | 344: 40000000 - 5fffffff transient | |
| 344: 60000000 - 7fffffff reserved | | 345: 60000000 - 7fffffff reserved | |
| | | | |
| +=+=+=+=+= File rfc1059.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1059.txt +=+=+=+=+= | |
|
| | | | |
| century found at line 142: | | century found at line 142: | |
|
| 139: mechanisms to synchronize time in principle to precisions in the | | 140: mechanisms to synchronize time in principle to precisions in the | |
| 140: order of nanoseconds while preserving a non-ambiguous date well into | | 141: order of nanoseconds while preserving a non-ambiguous date well into | |
| 141: the next century. The protocol includes provisions to specify the | | 142: the next century. The protocol includes provisions to specify the | |
| 142: characteristics and estimate the error of the local clock and the | | 143: characteristics and estimate the error of the local clock and the | |
| 143: time server to which it may be synchronized. It also includes | | 144: time server to which it may be synchronized. It also includes | |
| | | | |
| 1900 found at line 574: | | 1900 found at line 574: | |
|
| 571: frequency to the TA time scale. At 0000 hours on 1 January 1972 the | | 572: frequency to the TA time scale. At 0000 hours on 1 January 1972 the | |
| 572: NTP time scale was set to 2,272,060,800, representing the number of | | 573: NTP time scale was set to 2,272,060,800, representing the number of | |
| 573: TA seconds since 0000 hours on 1 January 1900. The insertion of leap | | 574: TA seconds since 0000 hours on 1 January 1900. The insertion of leap | |
| 574: seconds in UTC does not affect the oscillator itself, only the | | 575: seconds in UTC does not affect the oscillator itself, only the | |
| 575: translation between TA and UTC, or conventional civil time. However, | | 576: translation between TA and UTC, or conventional civil time. However, | |
| | | | |
| 1900 found at line 649: | | 1900 found at line 649: | |
|
| 646: main product of the protocol, a special timestamp format has been | | 647: main product of the protocol, a special timestamp format has been | |
| 647: established. NTP timestamps are represented as a 64-bit unsigned | | 648: established. NTP timestamps are represented as a 64-bit unsigned | |
| 648: fixed-point number, in seconds relative to 0000 UT on 1 January 1900. | | 649: fixed-point number, in seconds relative to 0000 UT on 1 January 1900. | |
| 649: The integer part is in the first 32 bits and the fraction part in the | | 650: The integer part is in the first 32 bits and the fraction part in the | |
| 650: last 32 bits, as shown in the following diagram. | | 651: last 32 bits, as shown in the following diagram. | |
| | | | |
| 1900 found at line 690: | | 1900 found at line 690: | |
|
| 687: the Integer Part) has been set and that the 64-bit field will | | 688: the Integer Part) has been set and that the 64-bit field will | |
| 688: overflow some time in 2036. Should NTP be in use in 2036, some | | 689: overflow some time in 2036. Should NTP be in use in 2036, some | |
| 689: external means will be necessary to qualify time relative to 1900 and | | 690: external means will be necessary to qualify time relative to 1900 and | |
| 690: time relative to 2036 (and other multiples of 136 years). | | 691: time relative to 2036 (and other multiples of 136 years). | |
| 691: Timestamped data requiring such qualification will be so precious | | 692: Timestamped data requiring such qualification will be so precious | |
| | | | |
| +=+=+=+=+= File rfc1060.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1060.txt +=+=+=+=+= | |
|
| | | | |
| 'yy' on a line without 'yyyy' found at line 2324: | | 'yy' on a line without 'yyyy' found at line 2324: | |
|
| 2321: AB-00-03-00-00-00 6004 DEC Local Area Transport (LAT) - old | | 2322: AB-00-03-00-00-00 6004 DEC Local Area Transport (LAT) - old | |
| 2322: AB-00-04-00-xx-xx ???? Reserved DEC customer private use | | 2323: AB-00-04-00-xx-xx ???? Reserved DEC customer private use | |
| 2323: AB-00-04-01-xx-yy 6007 DEC Local Area VAX Cluster groups | | 2324: AB-00-04-01-xx-yy 6007 DEC Local Area VAX Cluster groups | |
| 2324: System Communication Architecture (SCA) | | 2325: System Communication Architecture (SCA) | |
| 2325: CF-00-00-00-00-00 9000 Ethernet Configuration Test protocol (Loopback) | | 2326: CF-00-00-00-00-00 9000 Ethernet Configuration Test protocol (Loopback) | |
| | | | |
| 2000 found at line 2729: | | 2000 found at line 2729: | |
|
| 2726: 014.000.000.018 2624-522-80900 52 FGAN-SIEMENS-X25 [GB7] | | 2727: 014.000.000.018 2624-522-80900 52 FGAN-SIEMENS-X25 [GB7] | |
| 2727: 014.000.000.019 2041-170-10000 00 SHAPE-X25 [JFW] | | 2728: 014.000.000.019 2041-170-10000 00 SHAPE-X25 [JFW] | |
| 2728: 014.000.000.020 5052-737-20000 50 UQNET [AXH] | | 2729: 014.000.000.020 5052-737-20000 50 UQNET [AXH] | |
| 2729: 014.000.000.021 3020-801-00057 50 DMC-CRC1 [VXT] | | 2730: 014.000.000.021 3020-801-00057 50 DMC-CRC1 [VXT] | |
| 2730: 014.000.000.022 2624-522-80329 02 FGAN-FGANFFMVAX-X25 [GB7] | | 2731: 014.000.000.022 2624-522-80329 02 FGAN-FGANFFMVAX-X25 [GB7] | |
| | | | |
| 2000 found at line 3155: | | 2000 found at line 3155: | |
|
| 3152: AEGIS MACOS TP3010 | | 3153: AEGIS MACOS TP3010 | |
| 3153: APOLLO MINOS TRSDOS | | 3154: APOLLO MINOS TRSDOS | |
| 3154: BS-2000 MOS ULTRIX | | 3155: BS-2000 MOS ULTRIX | |
| 3155: CEDAR MPE5 UNIX | | 3156: CEDAR MPE5 UNIX | |
| 3156: CGW MSDOS UNIX-BSD | | 3157: CGW MSDOS UNIX-BSD | |
| | | | |
| 2000 found at line 3508: | | 2000 found at line 3508: | |
|
| 3505: HAZELTINE-1520 IBM-3278-5-E | | 3506: HAZELTINE-1520 IBM-3278-5-E | |
| 3506: HAZELTINE-1552 IBM-3279-2-E | | 3507: HAZELTINE-1552 IBM-3279-2-E | |
| 3507: HAZELTINE-2000 IBM-3279-3-E | | 3508: HAZELTINE-2000 IBM-3279-3-E | |
| 3508: HAZELTINE-ESPRIT IMLAC | | 3509: HAZELTINE-ESPRIT IMLAC | |
| 3509: HP-2392 INFOTON-100 | | 3510: HP-2392 INFOTON-100 | |
| | | | |
| +=+=+=+=+= File rfc1064.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1064.txt +=+=+=+=+= | |
|
| | | | |
| 'yy' on a line without 'yyyy' found at line 1321: | | 'yy' on a line without 'yyyy' found at line 1321: | |
|
| 1318: "NO" SP text_line / "BAD" SP text_line) | | 1319: "NO" SP text_line / "BAD" SP text_line) | |
| 1319: | | 1320: | |
| 1320: date ::= string in form "dd-mmm-yy hh:mm:ss-zzz" | | 1321: date ::= string in form "dd-mmm-yy hh:mm:ss-zzz" | |
| 1321: | | 1322: | |
| 1322: envelope ::= "(" env_date SP env_subject SP env_from SP | | 1323: envelope ::= "(" env_date SP env_subject SP env_from SP | |
| | | | |
| +=+=+=+=+= File rfc1085.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1085.txt +=+=+=+=+= | |
|
| | | | |
| UTCTime found at line 1501: | | UTCTime found at line 1501: | |
|
| 1498: | | 1499: | |
| 1499: commonReference | | 1500: commonReference | |
| 1500: UTCTime, | | 1501: UTCTime, | |
| 1501: | | 1502: | |
| 1502: additionalReferenceInformation[0] | | 1503: additionalReferenceInformation[0] | |
| | | | |
| +=+=+=+=+= File rfc1094.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1094.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 878: | | 2000 found at line 878: | |
|
| 875: | | 876: | |
| 876: 0040000 This is a directory; "type" field should be NFDIR. | | 877: 0040000 This is a directory; "type" field should be NFDIR. | |
| 877: 0020000 This is a character special file; "type" field should | | 878: 0020000 This is a character special file; "type" field should | |
| 878: be NFCHR. | | 879: be NFCHR. | |
| 879: 0060000 This is a block special file; "type" field should be | | 880: 0060000 This is a block special file; "type" field should be | |
| | | | |
| 2000 found at line 883: | | 2000 found at line 883: | |
|
| 880: NFBLK. | | 881: NFBLK. | |
| 881: 0100000 This is a regular file; "type" field should be NFREG. | | 882: 0100000 This is a regular file; "type" field should be NFREG. | |
| 882: 0120000 This is a symbolic link file; "type" field should be | | 883: 0120000 This is a symbolic link file; "type" field should be | |
| 883: NFLNK. | | 884: NFLNK. | |
| 884: 0140000 This is a named socket; "type" field should be NFNON. | | 885: 0140000 This is a named socket; "type" field should be NFNON. | |
| | | | |
| 2000 found at line 887: | | 2000 found at line 887: | |
|
| 884: 0140000 This is a named socket; "type" field should be NFNON. | | 885: 0140000 This is a named socket; "type" field should be NFNON. | |
| 885: 0004000 Set user id on execution. | | 886: 0004000 Set user id on execution. | |
| 886: 0002000 Set group id on execution. | | 887: 0002000 Set group id on execution. | |
| 887: 0001000 Save swapped text even after use. | | 888: 0001000 Save swapped text even after use. | |
| 888: 0000400 Read permission for owner. | | 889: 0000400 Read permission for owner. | |
| | | | |
| +=+=+=+=+= File rfc1108.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1108.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 187: | | 2000 found at line 187: | |
|
| 184: throughout DoD common user data networks, users of these networks | | 185: throughout DoD common user data networks, users of these networks | |
| 185: should submit requirements for additional Protection Authority Flags | | 186: should submit requirements for additional Protection Authority Flags | |
| 186: to DISA DISDB, Washington, D.C. 20305-2000, for review and approval. | | 187: to DISA DISDB, Washington, D.C. 20305-2000, for review and approval. | |
| 187: Such review and approval should be sought prior to design, | | 188: Such review and approval should be sought prior to design, | |
| 188: development or deployment of any system which would make use of | | 189: development or deployment of any system which would make use of | |
| | | | |
| 2000 found at line 774: | | 2000 found at line 774: | |
|
| 771: data networks, and to maximize interoperability, each activity should | | 772: data networks, and to maximize interoperability, each activity should | |
| 772: submit its plans for the definition and use of an Additional Security | | 773: submit its plans for the definition and use of an Additional Security | |
| 773: Info Format Code to DISA DISDB, Washington, D.C. 20305-2000 for | | 774: Info Format Code to DISA DISDB, Washington, D.C. 20305-2000 for | |
| 774: review and approval. DISA DISDB will forward plans to the Internet | | 775: review and approval. DISA DISDB will forward plans to the Internet | |
| 775: Activities Board for architectural review and, if required, a cleared | | 776: Activities Board for architectural review and, if required, a cleared | |
| | | | |
| +=+=+=+=+= File rfc1114.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1114.txt +=+=+=+=+= | |
|
| | | | |
| UTCTime found at line 922: | | UTCTime found at line 922: | |
|
| 919: issuer Name, | | 920: issuer Name, | |
| 920: list SEQUENCE RCLEntry, | | 921: list SEQUENCE RCLEntry, | |
| 921: lastUpdate UTCTime, | | 922: lastUpdate UTCTime, | |
| 922: nextUpdate UTCTime} | | 923: nextUpdate UTCTime} | |
| 923: | | 924: | |
| | | | |
| UTCTime found at line 923: | | UTCTime found at line 923: | |
|
| 920: list SEQUENCE RCLEntry, | | 921: list SEQUENCE RCLEntry, | |
| 921: lastUpdate UTCTime, | | 922: lastUpdate UTCTime, | |
| 922: nextUpdate UTCTime} | | 923: nextUpdate UTCTime} | |
| 923: | | 924: | |
| 924: RCLEntry ::= SEQUENCE { | | 925: RCLEntry ::= SEQUENCE { | |
| | | | |
| UTCTime found at line 927: | | UTCTime found at line 927: | |
|
| 924: RCLEntry ::= SEQUENCE { | | 925: RCLEntry ::= SEQUENCE { | |
| 925: subject CertificateSerialNumber, | | 926: subject CertificateSerialNumber, | |
| 926: revocationDate UTCTime} | | 927: revocationDate UTCTime} | |
| 927: | | 928: | |
| 928: 3.4 Certificate Definition and Usage | | 929: 3.4 Certificate Definition and Usage | |
| | | | |
| UTCTime found at line 1296: | | UTCTime found at line 1296: | |
|
| 1293: | | 1294: | |
| 1294: Validity ::= SEQUENCE{ | | 1295: Validity ::= SEQUENCE{ | |
| 1295: notBefore UTCTime, | | 1296: notBefore UTCTime, | |
| 1296: notAfter UTCTime} | | 1297: notAfter UTCTime} | |
| 1297: | | 1298: | |
| | | | |
| UTCTime found at line 1297: | | UTCTime found at line 1297: | |
|
| 1294: Validity ::= SEQUENCE{ | | 1295: Validity ::= SEQUENCE{ | |
| 1295: notBefore UTCTime, | | 1296: notBefore UTCTime, | |
| 1296: notAfter UTCTime} | | 1297: notAfter UTCTime} | |
| 1297: | | 1298: | |
| 1298: SubjectPublicKeyInfo ::= SEQUENCE{ | | 1299: SubjectPublicKeyInfo ::= SEQUENCE{ | |
| | | | |
| +=+=+=+=+= File rfc1117.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1117.txt +=+=+=+=+= | |
|
| | | | |
| 'yy' on a line without 'yyyy' found at line 4965: | | 'yy' on a line without 'yyyy' found at line 4965: | |
|
| 4962: jwmanly%amherst.bitnet@MITVMA.MIT.EDU | | 4963: jwmanly%amherst.bitnet@MITVMA.MIT.EDU | |
| 4963: [JWN10] Norris, James W a02jwn1%niu.bitnet@CUNYVM.CUNY.EDU | | 4964: [JWN10] Norris, James W a02jwn1%niu.bitnet@CUNYVM.CUNY.EDU | |
| 4964: [JY24] Yu, Jessica jyy@MERIT.EDU | | 4965: [JY24] Yu, Jessica jyy@MERIT.EDU | |
| 4965: [JY33] Yoshida, Jun ---none--- | | 4966: [JY33] Yoshida, Jun ---none--- | |
| 4966: [KA4] Auerbach, Karl auerbach@CSL.SRI.COM | | 4967: [KA4] Auerbach, Karl auerbach@CSL.SRI.COM | |
| | | | |
| +=+=+=+=+= File rfc1123.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1123.txt +=+=+=+=+= | |
|
| | | | |
| 2digit found at line 3239: | | 2digit found at line 3239: | |
|
| 3236: The syntax for the date is hereby changed to: | | 3237: The syntax for the date is hereby changed to: | |
| 3237: | | 3238: | |
| 3238: date = 1*2DIGIT month 2*4DIGIT | | 3239: date = 1*2DIGIT month 2*4DIGIT | |
| 3239: | | | |
| 3240: | | 3240: | |
|
| | | 3241: | |
| | | | |
| century found at line 3253: | | century found at line 3253: | |
|
| 3250: | | 3251: | |
| 3251: All mail software SHOULD use 4-digit years in dates, to ease | | 3252: All mail software SHOULD use 4-digit years in dates, to ease | |
| 3252: the transition to the next century. | | 3253: the transition to the next century. | |
| 3253: | | 3254: | |
| 3254: There is a strong trend towards the use of numeric timezone | | 3255: There is a strong trend towards the use of numeric timezone | |
| | | | |
| +=+=+=+=+= File rfc1133.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1133.txt +=+=+=+=+= | |
|
| | | | |
| 'yy' on a line without 'yyyy' found at line 493: | | 'yy' on a line without 'yyyy' found at line 493: | |
|
| 490: Telephone: 313 936-2655 | | 491: Telephone: 313 936-2655 | |
| 491: Fax: 313 747-3745 | | 492: Fax: 313 747-3745 | |
| 492: EMail: jyy@merit.edu | | 493: EMail: jyy@merit.edu | |
| 493: | | 494: | |
| 494: Hans-Werner Braun | | 495: Hans-Werner Braun | |
| | | | |
| +=+=+=+=+= File rfc1138.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1138.txt +=+=+=+=+= | |
|
| | | | |
| UTCTime found at line 1471: | | UTCTime found at line 1471: | |
|
| 1468: the full BNF easier to parse. | | 1469: the full BNF easier to parse. | |
| 1469: | | 1470: | |
| 1470: 3.3.5. UTCTime | | 1471: 3.3.5. UTCTime | |
| 1471: | | 1472: | |
| 1472: Both UTCTime and the RFC 822 822.date-time syntax contain: Year | | 1473: Both UTCTime and the RFC 822 822.date-time syntax contain: Year | |
| | | | |
| UTCTime found at line 1473: | | UTCTime found at line 1473: | |
|
| 1470: 3.3.5. UTCTime | | 1471: 3.3.5. UTCTime | |
| 1471: | | 1472: | |
| 1472: Both UTCTime and the RFC 822 822.date-time syntax contain: Year | | 1473: Both UTCTime and the RFC 822 822.date-time syntax contain: Year | |
| 1473: (lowest two digits), Month, Day of Month, hour, minute, second | | 1474: (lowest two digits), Month, Day of Month, hour, minute, second | |
| 1474: (optional), and Timezone. 822.date-time also contains an optional | | 1475: (optional), and Timezone. 822.date-time also contains an optional | |
| | | | |
| UTCTime found at line 1482: | | UTCTime found at line 1482: | |
|
| 1479: In practice, a gateway will need to parse various illegal | | 1480: In practice, a gateway will need to parse various illegal | |
| 1480: variants on 822.date-time. In cases where 822.date-time | | 1481: variants on 822.date-time. In cases where 822.date-time | |
| 1481: cannot be parsed, it is recommended that the derived UTCTime | | 1482: cannot be parsed, it is recommended that the derived UTCTime | |
| 1482: is set to the value at the time of translation. | | 1483: is set to the value at the time of translation. | |
| 1483: | | 1484: | |
| | | | |
| UTCTime found at line 1485: | | UTCTime found at line 1485: | |
|
| 1482: is set to the value at the time of translation. | | 1483: is set to the value at the time of translation. | |
| 1483: | | 1484: | |
| 1484: The UTCTime format which specifies the timezone offset should be | | 1485: The UTCTime format which specifies the timezone offset should be | |
| 1485: used. | | 1486: used. | |
| 1486: | | 1487: | |
| | | | |
| UTCTime found at line 4469: | | UTCTime found at line 4469: | |
|
| 4466: | | 4467: | |
| 4467: The extended syntax of zone defined in the JNT Mail Protocol should | | 4468: The extended syntax of zone defined in the JNT Mail Protocol should | |
| 4468: be used in the mapping of UTCTime defined in Chapter 3. | | 4469: be used in the mapping of UTCTime defined in Chapter 3. | |
| 4469: | | 4470: | |
| 4470: 6. Lack of 822-MTS originator specification | | 4471: 6. Lack of 822-MTS originator specification | |
| | | | |
| +=+=+=+=+= File rfc1147.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1147.txt +=+=+=+=+= | |
|
| | | | |
| 'yy' on a line without 'yyyy' found at line 9715: | | 'yy' on a line without 'yyyy' found at line 9715: | |
|
| 9712: cerns to security and management personnel at DDN facili- | | 9713: cerns to security and management personnel at DDN facili- | |
| 9713: ties. It is available online, via kermit or anonymous FTP, | | 9714: ties. It is available online, via kermit or anonymous FTP, | |
| 9714: from nic.ddn.mil, in SCC:DDN-SECURITY-yy-nn.TXT (where "yy" | | 9715: from nic.ddn.mil, in SCC:DDN-SECURITY-yy-nn.TXT (where "yy" | |
| 9715: is the year and "nn" is the bulletin number). The SCC pro- | | 9716: is the year and "nn" is the bulletin number). The SCC pro- | |
| 9716: vides immediate assistance with DDN-related host security | | 9717: vides immediate assistance with DDN-related host security | |
| | | | |
| century found at line 1096: | | century found at line 1096: | |
|
| 1093: "NETMON." These tools were independently developed, are | | 1094: "NETMON." These tools were independently developed, are | |
| 1094: functionally different, run in different environments, and | | 1095: functionally different, run in different environments, and | |
| 1095: are no more related than Richard Burton the 19th century | | 1096: are no more related than Richard Burton the 19th century | |
| 1096: explorer and Richard Burton the 20th century actor. BYU's | | 1097: explorer and Richard Burton the 20th century actor. BYU's | |
| 1097: tool "NETMON" is listed as "NETMON (I)," MITRE's as "NETMON | | 1098: tool "NETMON" is listed as "NETMON (I)," MITRE's as "NETMON | |
| | | | |
| century found at line 1097: | | century found at line 1097: | |
|
| 1094: functionally different, run in different environments, and | | 1095: functionally different, run in different environments, and | |
| 1095: are no more related than Richard Burton the 19th century | | 1096: are no more related than Richard Burton the 19th century | |
| 1096: explorer and Richard Burton the 20th century actor. BYU's | | 1097: explorer and Richard Burton the 20th century actor. BYU's | |
| 1097: tool "NETMON" is listed as "NETMON (I)," MITRE's as "NETMON | | 1098: tool "NETMON" is listed as "NETMON (I)," MITRE's as "NETMON | |
| 1098: (II)," and the tool from SNMP Research as "NETMON (III)." | | 1099: (II)," and the tool from SNMP Research as "NETMON (III)." | |
| | | | |
| 2000 found at line 4134: | | 2000 found at line 4134: | |
|
| 4131: libraries), but this has not been done. Curses is very | | 4132: libraries), but this has not been done. Curses is very | |
| 4132: slow and cpu intensive on VMS, but the tool has been | | 4133: slow and cpu intensive on VMS, but the tool has been | |
| 4133: run in a window on a VAXstation 2000. Just don't try | | 4134: run in a window on a VAXstation 2000. Just don't try | |
| 4134: to run it on a terminal connected to a 11/750. | | 4135: to run it on a terminal connected to a 11/750. | |
| 4135: | | 4136: | |
| | | | |
| +=+=+=+=+= File rfc1148.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1148.txt +=+=+=+=+= | |
|
| | | | |
| UTCTime found at line 1475: | | UTCTime found at line 1475: | |
|
| 1472: the full BNF easier to parse. | | 1473: the full BNF easier to parse. | |
| 1473: | | 1474: | |
| 1474: 3.3.5. UTCTime | | 1475: 3.3.5. UTCTime | |
| 1475: | | 1476: | |
| 1476: Both UTCTime and the RFC 822 822.date-time syntax contain: Year | | 1477: Both UTCTime and the RFC 822 822.date-time syntax contain: Year | |
| | | | |
| UTCTime found at line 1477: | | UTCTime found at line 1477: | |
|
| 1474: 3.3.5. UTCTime | | 1475: 3.3.5. UTCTime | |
| 1475: | | 1476: | |
| 1476: Both UTCTime and the RFC 822 822.date-time syntax contain: Year | | 1477: Both UTCTime and the RFC 822 822.date-time syntax contain: Year | |
| 1477: (lowest two digits), Month, Day of Month, hour, minute, second | | 1478: (lowest two digits), Month, Day of Month, hour, minute, second | |
| 1478: (optional), and Timezone. 822.date-time also contains an optional | | 1479: (optional), and Timezone. 822.date-time also contains an optional | |
| | | | |
| UTCTime found at line 1486: | | UTCTime found at line 1486: | |
|
| 1483: In practice, a gateway will need to parse various illegal | | 1484: In practice, a gateway will need to parse various illegal | |
| 1484: variants on 822.date-time. In cases where 822.date-time | | 1485: variants on 822.date-time. In cases where 822.date-time | |
| 1485: cannot be parsed, it is recommended that the derived UTCTime | | 1486: cannot be parsed, it is recommended that the derived UTCTime | |
| 1486: is set to the value at the time of translation. | | 1487: is set to the value at the time of translation. | |
| 1487: | | 1488: | |
| | | | |
| UTCTime found at line 1489: | | UTCTime found at line 1489: | |
|
| 1486: is set to the value at the time of translation. | | 1487: is set to the value at the time of translation. | |
| 1487: | | 1488: | |
| 1488: The UTCTime format which specifies the timezone offset should be | | 1489: The UTCTime format which specifies the timezone offset should be | |
| 1489: used. | | 1490: used. | |
| 1490: | | 1491: | |
| | | | |
| UTCTime found at line 4566: | | UTCTime found at line 4566: | |
|
| 4563: | | 4564: | |
| 4564: The extended syntax of zone defined in the JNT Mail Protocol should | | 4565: The extended syntax of zone defined in the JNT Mail Protocol should | |
| 4565: be used in the mapping of UTCTime defined in Chapter 3. | | 4566: be used in the mapping of UTCTime defined in Chapter 3. | |
| 4566: | | 4567: | |
| 4567: 6. Lack of 822-MTS originator specification | | 4568: 6. Lack of 822-MTS originator specification | |
| | | | |
| +=+=+=+=+= File rfc1152.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1152.txt +=+=+=+=+= | |
|
| | | | |
| 'yy' on a line without 'yyyy' found at line 937: | | 'yy' on a line without 'yyyy' found at line 937: | |
|
| 934: Reservation Multiple-Access). | | 935: Reservation Multiple-Access). | |
| 935: | | 936: | |
| 936: Finally, Yechiam Yemeni (YY, Columbia University) discussed his work | | 937: Finally, Yechiam Yemeni (YY, Columbia University) discussed his work | |
| 937: on a protocol silicon compiler. In order to exploit the potential | | 938: on a protocol silicon compiler. In order to exploit the potential | |
| 938: parallelism, he is planning to use one processor per connection. | | 939: parallelism, he is planning to use one processor per connection. | |
| | | | |
| +=+=+=+=+= File rfc1153.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1153.txt +=+=+=+=+= | |
|
| | | | |
| 'yy' on a line without 'yyyy' found at line 119: | | 'yy' on a line without 'yyyy' found at line 119: | |
|
| 116: | | | |
| 117: | | 117: | |
|
| 118: Date: ddd, dd mmm yy hh:mm:ss zzz | | 118: | |
| 119: From: listname-REQUEST@fqhn | | 119: Date: ddd, dd mmm yy hh:mm:ss zzz | |
| 120: Reply-To: listname@fqhn | | 120: From: listname-REQUEST@fqhn | |
| | | 121: Reply-To: listname@fqhn | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 122: | | 'yy' on a line without 'yyyy' found at line 122: | |
|
| 119: From: listname-REQUEST@fqhn | | 120: From: listname-REQUEST@fqhn | |
| 120: Reply-To: listname@fqhn | | 121: Reply-To: listname@fqhn | |
| 121: Subject: listname Digest Vyy #nn | | 122: Subject: listname Digest Vyy #nn | |
| 122: To: listname@fqhn | | 123: To: listname@fqhn | |
| 123: | | 124: | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 125: | | 'yy' on a line without 'yyyy' found at line 125: | |
|
| 122: To: listname@fqhn | | 123: To: listname@fqhn | |
| 123: | | 124: | |
| 124: listname Digest ddd, dd mmm yy Volume yy : Issue nn | | 125: listname Digest ddd, dd mmm yy Volume yy : Issue nn | |
| 125: | | 126: | |
| 126: Today's Topics: | | 127: Today's Topics: | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 137: | | 'yy' on a line without 'yyyy' found at line 137: | |
|
| 134: ---------------------------------------------------------------------- | | 135: ---------------------------------------------------------------------- | |
| 135: | | 136: | |
| 136: Date: ddd, dd mmm yy hh:mm:ss zzz | | 137: Date: ddd, dd mmm yy hh:mm:ss zzz | |
| 137: From: Joe User <username@fqhn> | | 138: From: Joe User <username@fqhn> | |
| 138: Subject: Message One Subject | | 139: Subject: Message One Subject | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 147: | | 'yy' on a line without 'yyyy' found at line 147: | |
|
| 144: ------------------------------ | | 145: ------------------------------ | |
| 145: | | 146: | |
| 146: Date: ddd, dd mmm yy hh:mm:ss zzz | | 147: Date: ddd, dd mmm yy hh:mm:ss zzz | |
| 147: From: Jane User <username@fqhn> | | 148: From: Jane User <username@fqhn> | |
| 148: Subject: Message Two Subject | | 149: Subject: Message Two Subject | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 157: | | 'yy' on a line without 'yyyy' found at line 157: | |
|
| 154: ------------------------------ | | 155: ------------------------------ | |
| 155: | | 156: | |
| 156: End of listname Digest Vyy Issue #nn | | 157: End of listname Digest Vyy Issue #nn | |
| 157: ************************************ | | 158: ************************************ | |
| 158: | | 159: | |
| | | | |
| +=+=+=+=+= File rfc1161.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1161.txt +=+=+=+=+= | |
|
| | | | |
| 1900 found at line 322: | | 1900 found at line 322: | |
|
| 319: on the protocol-ID | | 320: on the protocol-ID | |
| 320: | | 321: | |
| 321: 03019000 | | 322: 03019000 | |
| 322: | | 323: | |
| 323: 5. Acknowledgements | | 324: 5. Acknowledgements | |
| | | | |
| 2000 found at line 210: | | 2000 found at line 210: | |
|
| 207: (1) <nsap> is a hex string defining the nsap, e.g., | | 208: (1) <nsap> is a hex string defining the nsap, e.g., | |
| 208: | | 209: | |
| 209: "snmp"/NS+4900590800200038bafe00 | | 210: "snmp"/NS+4900590800200038bafe00 | |
| 210: | | 211: | |
| 211: Similarly, SNMP traps are, by convention, sent to a manager listening | | 212: Similarly, SNMP traps are, by convention, sent to a manager listening | |
| | | | |
| 2000 found at line 291: | | 2000 found at line 291: | |
|
| 288: (1) <nsap> is a hex string defining the nsap, e.g., | | 289: (1) <nsap> is a hex string defining the nsap, e.g., | |
| 289: | | 290: | |
| 290: "snmp"/NS+4900590800200038bafe00 | | 291: "snmp"/NS+4900590800200038bafe00 | |
| 291: | | 292: | |
| 292: Similarly, SNMP traps are, by convention, sent to a manager listening | | 293: Similarly, SNMP traps are, by convention, sent to a manager listening | |
| | | | |
| +=+=+=+=+= File rfc1164.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1164.txt +=+=+=+=+= | |
|
| | | | |
| 'yy' on a line without 'yyyy' found at line 1267: | | 'yy' on a line without 'yyyy' found at line 1267: | |
|
| 1264: Phone: (313) 936-3000 | | 1265: Phone: (313) 936-3000 | |
| 1265: | | 1266: | |
| 1266: Email: JYY@MERIT.EDU | | 1267: Email: JYY@MERIT.EDU | |
| 1267: | | | |
| 1268: | | 1268: | |
|
| | | 1269: | |
| | | | |
| +=+=+=+=+= File rfc1166.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1166.txt +=+=+=+=+= | |
|
| | | | |
| 'yy' on a line without 'yyyy' found at line 8270: | | 'yy' on a line without 'yyyy' found at line 8270: | |
|
| 8267: [JWN10] Norris, James W. | | 8268: [JWN10] Norris, James W. | |
| 8268: a02jwn1%niu.bitnet@CUNYVM.CUNY.EDU | | 8269: a02jwn1%niu.bitnet@CUNYVM.CUNY.EDU | |
| 8269: [JY24] Yu, Jessica jyy@MERIT.EDU | | 8270: [JY24] Yu, Jessica jyy@MERIT.EDU | |
| 8270: [JY33] Yoshida, Jun ---none--- | | 8271: [JY33] Yoshida, Jun ---none--- | |
| 8271: [JY35] Young, Jeff ---none--- | | 8272: [JY35] Young, Jeff ---none--- | |
| | | | |
| +=+=+=+=+= File rfc1167.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1167.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 89: | | 2000 found at line 89: | |
|
| 86: are also likely play a role along with Switched Multi-megabit Data | | 87: are also likely play a role along with Switched Multi-megabit Data | |
| 87: Service (SMDS) provided by telecommunications carriers. It also | | 88: Service (SMDS) provided by telecommunications carriers. It also | |
| 88: would be fair to ask what role FTS-2000 might play in the system, at | | 89: would be fair to ask what role FTS-2000 might play in the system, at | |
| 89: least in support of government access to the NREN, and possibly in | | 90: least in support of government access to the NREN, and possibly in | |
| 90: support of national agency network facilities. | | 91: support of national agency network facilities. | |
| | | | |
| +=+=+=+=+= File rfc1173.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1173.txt +=+=+=+=+= | |
|
| | | | |
| century found at line 72: | | century found at line 72: | |
|
| 69: only choice; I don't see any prospect of either the government or | | 70: only choice; I don't see any prospect of either the government or | |
| 70: private enterprise building a monolithic, centralized, ubiquitous "Ma | | 71: private enterprise building a monolithic, centralized, ubiquitous "Ma | |
| 71: Datagram" network provider in this century. | | 72: Datagram" network provider in this century. | |
| 72: | | 73: | |
| 73: 2. Responsibilities of Network Managers | | 74: 2. Responsibilities of Network Managers | |
| | | | |
| +=+=+=+=+= File rfc1176.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1176.txt +=+=+=+=+= | |
|
| | | | |
| 'yy' on a line without 'yyyy' found at line 1435: | | 'yy' on a line without 'yyyy' found at line 1435: | |
|
| 1432: "NO" SP text_line / "BAD" SP text_line) | | 1433: "NO" SP text_line / "BAD" SP text_line) | |
| 1433: | | 1434: | |
| 1434: date ::= string in form "dd-mmm-yy hh:mm:ss-zzz" | | 1435: date ::= string in form "dd-mmm-yy hh:mm:ss-zzz" | |
| 1435: | | 1436: | |
| 1436: envelope ::= "(" env_date SP env_subject SP env_from SP | | 1437: envelope ::= "(" env_date SP env_subject SP env_from SP | |
| | | | |
| +=+=+=+=+= File rfc1185.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1185.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 208: | | 2000 found at line 208: | |
|
| 205: 1.1MBps, no matter how high the theoretical transfer rate of the | | 206: 1.1MBps, no matter how high the theoretical transfer rate of the | |
| 206: path. This corresponds to cycling the sequence number space in | | 207: path. This corresponds to cycling the sequence number space in | |
| 207: Twrap= 2000 secs, which is safe in today's Internet. | | 208: Twrap= 2000 secs, which is safe in today's Internet. | |
| 208: | | 209: | |
| 209: Based on this reasoning, an earlier RFC [McKenzie89] has cautioned | | 210: Based on this reasoning, an earlier RFC [McKenzie89] has cautioned | |
| | | | |
| +=+=+=+=+= File rfc1190.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1190.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 7630: | | 2000 found at line 7630: | |
|
| 7627: link failure | | 7628: link failure | |
| 7628: | | 7629: | |
| 7629: 2000 DefaultRecoveryTimeout Interval between successive | | 7630: 2000 DefaultRecoveryTimeout Interval between successive | |
| 7630: HELLOs to/from active neighbors | | 7631: HELLOs to/from active neighbors | |
| 7631: | | 7632: | |
| | | | |
| +=+=+=+=+= File rfc1191.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1191.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 925: | | 2000 found at line 925: | |
|
| 922: 65535 Hyperchannel RFC 1044 | | 923: 65535 Hyperchannel RFC 1044 | |
| 923: 65535 | | 924: 65535 | |
| 924: 32000 Just in case | | 925: 32000 Just in case | |
| 925: 17914 16Mb IBM Token Ring ref. [6] | | 926: 17914 16Mb IBM Token Ring ref. [6] | |
| 926: 17914 | | 927: 17914 | |
| | | | |
| +=+=+=+=+= File rfc1203.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1203.txt +=+=+=+=+= | |
|
| | | | |
| 'yy' on a line without 'yyyy' found at line 2102: | | 'yy' on a line without 'yyyy' found at line 2102: | |
|
| 2099: "NO" SP text_line / "BAD" SP text_line) | | 2100: "NO" SP text_line / "BAD" SP text_line) | |
| 2100: | | 2101: | |
| 2101: date ::= string in form "dd-mmm-yy hh:mm:ss-zzz" | | 2102: date ::= string in form "dd-mmm-yy hh:mm:ss-zzz" | |
| 2102: | | 2103: | |
| 2103: envelope ::= "(" env_date SP env_subject SP env_from SP | | 2104: envelope ::= "(" env_date SP env_subject SP env_from SP | |
| | | | |
| 2000 found at line 2614: | | 2000 found at line 2614: | |
|
| 2611: question. For example: | | 2612: question. For example: | |
| 2612: | | 2613: | |
| 2613: tag42 FETCH 197 BODY 2000:3999 | | 2614: tag42 FETCH 197 BODY 2000:3999 | |
| 2614: | | 2615: | |
| 2615: would fetch the second two thousand bytes of the body of message | | 2616: would fetch the second two thousand bytes of the body of message | |
| | | | |
| +=+=+=+=+= File rfc1207.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1207.txt +=+=+=+=+= | |
|
| | | | |
| 'yy' on a line without 'yyyy' found at line 136: | | 'yy' on a line without 'yyyy' found at line 136: | |
|
| 133: directory. Information includes packet counts by NSS and byte | | 134: directory. Information includes packet counts by NSS and byte | |
| 134: counts for type of use (ftp, smtp, telnet, etc.). Filenames are | | 135: counts for type of use (ftp, smtp, telnet, etc.). Filenames are | |
| 135: of the form 'NSFyy-mm.type'. | | 136: of the form 'NSFyy-mm.type'. | |
| 136: | | 137: | |
| 137: Files are available for anonymous ftp; use 'guest' as the | | 138: Files are available for anonymous ftp; use 'guest' as the | |
| | | | |
| +=+=+=+=+= File rfc1210.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1210.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 1548: | | 2000 found at line 1548: | |
|
| 1545: Franci Bigi (1) | | 1546: Franci Bigi (1) | |
| 1546: CEC | | 1547: CEC | |
| 1547: Rue de la Loi 2000 | | 1548: Rue de la Loi 2000 | |
| 1548: B-1049 | | 1549: B-1049 | |
| 1549: Brussels | | 1550: Brussels | |
| | | | |
| 2000 found at line 1756: | | 2000 found at line 1756: | |
|
| 1753: Rolf Speth (1) | | 1754: Rolf Speth (1) | |
| 1754: CEC | | 1755: CEC | |
| 1755: Rue de la Loi 2000 | | 1756: Rue de la Loi 2000 | |
| 1756: B-1049 | | 1757: B-1049 | |
| 1757: Brussels | | 1758: Brussels | |
| | | | |
| 2000 found at line 1773: | | 2000 found at line 1773: | |
|
| 1770: Jose Torcato (1), (2) | | 1771: Jose Torcato (1), (2) | |
| 1771: CEC, TR 61 0/10 | | 1772: CEC, TR 61 0/10 | |
| 1772: Rue de la Loi 2000 | | 1773: Rue de la Loi 2000 | |
| 1773: B-1049 | | 1774: B-1049 | |
| 1774: Brussels | | 1775: Brussels | |
| | | | |
| 2000 found at line 1801: | | 2000 found at line 1801: | |
|
| 1798: Karel De Vriendt (1) | | 1799: Karel De Vriendt (1) | |
| 1799: CEC | | 1800: CEC | |
| 1800: Rue de la Loi 2000 | | 1801: Rue de la Loi 2000 | |
| 1801: B-1049 | | 1802: B-1049 | |
| 1802: Brussels | | 1803: Brussels | |
| | | | |
| 2000 found at line 1837: | | 2000 found at line 1837: | |
|
| 1834: Rosalie Zobel (1) (2) | | 1835: Rosalie Zobel (1) (2) | |
| 1835: CEC | | 1836: CEC | |
| 1836: Rue de la Loi 2000 | | 1837: Rue de la Loi 2000 | |
| 1837: B-1049 | | 1838: B-1049 | |
| 1838: Brussels | | 1839: Brussels | |
| | | | |
| +=+=+=+=+= File rfc1211.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1211.txt +=+=+=+=+= | |
|
| | | | |
| 1900 found at line 1591: | | 1900 found at line 1591: | |
|
| 1588: | | 1589: | |
| 1589: westine 49% mconnect OSI3.NCSL.NIST.GOV | | 1590: westine 49% mconnect OSI3.NCSL.NIST.GOV | |
| 1590: connecting to host OSI3.NCSL.NIST.GOV (0x6c300681), port 0x1900 | | 1591: connecting to host OSI3.NCSL.NIST.GOV (0x6c300681), port 0x1900 | |
| 1591: connection open | | 1592: connection open | |
| 1592: 220 osi3.ncsl.nist.gov sendmail 4.0/NIST(rbj/dougm) ready at | | 1593: 220 osi3.ncsl.nist.gov sendmail 4.0/NIST(rbj/dougm) ready at | |
| | | | |
| 2000 found at line 2363: | | 2000 found at line 2363: | |
|
| 2360: Office Automation Division | | 2361: Office Automation Division | |
| 2361: Code H610 | | 2362: Code H610 | |
| 2362: Washington, DC 20305-2000 | | 2363: Washington, DC 20305-2000 | |
| 2363: | | 2364: | |
| 2364: Hostname: DCA-EMS.DCA.MIL | | 2365: Hostname: DCA-EMS.DCA.MIL | |
| | | | |
| +=+=+=+=+= File rfc1218.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1218.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 1249: | | 2000 found at line 1249: | |
|
| 1246: Rapport Communication, Inc. | | 1247: Rapport Communication, Inc. | |
| 1247: 3055 Q Street NW | | 1248: 3055 Q Street NW | |
| 1248: Washington, DC 20007 | | 1249: Washington, DC 20007 | |
| 1249: | | 1250: | |
| 1250: Tel: +1 202-342-2727 | | 1251: Tel: +1 202-342-2727 | |
| | | | |
| +=+=+=+=+= File rfc1224.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1224.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 983: | | 2000 found at line 983: | |
|
| 980: and placed in an ethernet packet). 120 request packets are sent | | 981: and placed in an ethernet packet). 120 request packets are sent | |
| 981: each cycle (3 for each of 40 nodes), and 120 response packets are | | 982: each cycle (3 for each of 40 nodes), and 120 response packets are | |
| 982: expected. 72000 bytes (240 packets at 300 bytes each) must be | | 983: expected. 72000 bytes (240 packets at 300 bytes each) must be | |
| 983: transferred during each poll cycle, merely to determine that the | | 984: transferred during each poll cycle, merely to determine that the | |
| 984: network is fine. | | 985: network is fine. | |
| | | | |
| +=+=+=+=+= File rfc1244.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1244.txt +=+=+=+=+= | |
|
| | | | |
| 'yy' on a line without 'yyyy' found at line 2481: | | 'yy' on a line without 'yyyy' found at line 2481: | |
|
| 2478: and concerns to security and management personnel at DDN | | 2479: and concerns to security and management personnel at DDN | |
| 2479: facilities. It is available online, via kermit or anonymous | | 2480: facilities. It is available online, via kermit or anonymous | |
| 2480: FTP, from the host NIC.DDN.MIL, in SCC:DDN-SECURITY-yy- | | 2481: FTP, from the host NIC.DDN.MIL, in SCC:DDN-SECURITY-yy- | |
| 2481: nn.TXT (where "yy" is the year and "nn" is the bulletin | | 2482: nn.TXT (where "yy" is the year and "nn" is the bulletin | |
| 2482: number). The SCC provides immediate assistance with DDN- | | 2483: number). The SCC provides immediate assistance with DDN- | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 2482: | | 'yy' on a line without 'yyyy' found at line 2482: | |
|
| 2479: facilities. It is available online, via kermit or anonymous | | 2480: facilities. It is available online, via kermit or anonymous | |
| 2480: FTP, from the host NIC.DDN.MIL, in SCC:DDN-SECURITY-yy- | | 2481: FTP, from the host NIC.DDN.MIL, in SCC:DDN-SECURITY-yy- | |
| 2481: nn.TXT (where "yy" is the year and "nn" is the bulletin | | 2482: nn.TXT (where "yy" is the year and "nn" is the bulletin | |
| 2482: number). The SCC provides immediate assistance with DDN- | | 2483: number). The SCC provides immediate assistance with DDN- | |
| 2483: related host security problems; call (800) 235-3155 (6:00 | | 2484: related host security problems; call (800) 235-3155 (6:00 | |
| | | | |
| +=+=+=+=+= File rfc1251.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1251.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 316: | | 2000 found at line 316: | |
|
| 313: where growing above 100 network numbers seemed excessive. | | 314: where growing above 100 network numbers seemed excessive. | |
| 314: Todays number of networks in the global infrastructure | | 315: Todays number of networks in the global infrastructure | |
| 315: exceeds 2000 connected networks, and many more if isolated | | 316: exceeds 2000 connected networks, and many more if isolated | |
| 316: network islands get included. | | 317: network islands get included. | |
| 317: | | 318: | |
| | | | |
| +=+=+=+=+= File rfc1254.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1254.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 592: | | 2000 found at line 592: | |
|
| 589: number of packet arrivals, over which packets are dropped with | | 590: number of packet arrivals, over which packets are dropped with | |
| 590: uniform probability. For instance, in a sample implementation, if | | 591: uniform probability. For instance, in a sample implementation, if | |
| 591: this interval spanned 2000 packet arrivals, and a suitable | | 592: this interval spanned 2000 packet arrivals, and a suitable | |
| 592: probability of drop was 0.001, then two random variables would be | | 593: probability of drop was 0.001, then two random variables would be | |
| 593: drawn in a uniform distribution in the range of 1 to 2,000. The | | 594: drawn in a uniform distribution in the range of 1 to 2,000. The | |
| | | | |
| 2000 found at line 859: | | 2000 found at line 859: | |
|
| 856: indicates that to get good, consistent performance, we may need to | | 857: indicates that to get good, consistent performance, we may need to | |
| 857: have up to 5 to 10 times the number of active source-destination | | 858: have up to 5 to 10 times the number of active source-destination | |
| 858: pairs. In a typical gateway, this may require around 1000 to 2000 | | 859: pairs. In a typical gateway, this may require around 1000 to 2000 | |
| 859: queues. | | 860: queues. | |
| 860: | | 861: | |
| | | | |
| +=+=+=+=+= File rfc1255.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1255.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 1361: | | 2000 found at line 1361: | |
|
| 1358: Rapport Communication, Inc. | | 1359: Rapport Communication, Inc. | |
| 1359: 3055 Q Street NW | | 1360: 3055 Q Street NW | |
| 1360: Washington, DC 20007 | | 1361: Washington, DC 20007 | |
| 1361: | | 1362: | |
| 1362: Tel: +1 202-342-2727 | | 1363: Tel: +1 202-342-2727 | |
| | | | |
| +=+=+=+=+= File rfc1259.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1259.txt +=+=+=+=+= | |
|
| | | | |
| century found at line 345: | | century found at line 345: | |
|
| 342: should never go back to any monopoly arrangement like the pre- | | 343: should never go back to any monopoly arrangement like the pre- | |
| 343: divestiture AT&T which held back market-driven innovation in | | 344: divestiture AT&T which held back market-driven innovation in | |
| 344: telecommunications for half a century. Given the interconnection | | 345: telecommunications for half a century. Given the interconnection | |
| 345: technology now available, we should never again have to accept the | | 346: technology now available, we should never again have to accept the | |
| 346: argument that we have to sacrifice interoperability for efficiency, | | 347: argument that we have to sacrifice interoperability for efficiency, | |
| | | | |
| century found at line 594: | | century found at line 594: | |
|
| 591: | | 592: | |
| 592: In light of the possibilities for new service offerings by the | | 593: In light of the possibilities for new service offerings by the | |
| 593: 21st century, as well as the growing importance of | | 594: 21st century, as well as the growing importance of | |
| 594: telecommunications and information services to US economic and | | 595: telecommunications and information services to US economic and | |
| 595: social development, limiting our concept of universal service to | | 596: social development, limiting our concept of universal service to | |
| | | | |
| century found at line 744: | | century found at line 744: | |
|
| 741: If we have the vision and commitment to try this, the transformation | | 742: If we have the vision and commitment to try this, the transformation | |
| 742: of the network frontier from wilderness to civilization need not | | 743: of the network frontier from wilderness to civilization need not | |
| 743: display the brutality of 19th century imperialism. As commercial | | 744: display the brutality of 19th century imperialism. As commercial | |
| 744: opportunities to offer applications and services develop, | | 745: opportunities to offer applications and services develop, | |
| 745: entrepreneurs will discover that ease of use sells. The normal, | | 746: entrepreneurs will discover that ease of use sells. The normal, | |
| | | | |
| 2000 found at line 1115: | | 2000 found at line 1115: | |
|
| 1112: California v. FCC (9th Cir. 1990). | | 1113: California v. FCC (9th Cir. 1990). | |
| 1113: | | 1114: | |
| 1114: 18. NTIA Telecomm 2000 at 79. | | 1115: 18. NTIA Telecomm 2000 at 79. | |
| 1115: | | 1116: | |
| 1116: 19. Committee on Energy and Commerce, Subcommittee on | | 1117: 19. Committee on Energy and Commerce, Subcommittee on | |
| | | | |
| +=+=+=+=+= File rfc1270.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1270.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 594: | | 2000 found at line 594: | |
|
| 591: Hopkinton, Mass. 01748 | | 592: Hopkinton, Mass. 01748 | |
| 592: | | 593: | |
| 593: Phone: (508) 435-2000 | | 594: Phone: (508) 435-2000 | |
| 594: | | 595: | |
| 595: Email: kasten@europa.clearpoint.com | | 596: Email: kasten@europa.clearpoint.com | |
| | | | |
| +=+=+=+=+= File rfc1274.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1274.txt +=+=+=+=+= | |
|
| | | | |
| UTCTime found at line 1051: | | UTCTime found at line 1051: | |
|
| 1048: lastModifiedTime ATTRIBUTE | | 1049: lastModifiedTime ATTRIBUTE | |
| 1049: WITH ATTRIBUTE-SYNTAX | | 1050: WITH ATTRIBUTE-SYNTAX | |
| 1050: uTCTimeSyntax | | 1051: uTCTimeSyntax | |
| 1051: ::= {pilotAttributeType 23} | | 1052: ::= {pilotAttributeType 23} | |
| 1052: | | 1053: | |
| | | | |
| UTCTime found at line 2990: | | UTCTime found at line 2990: | |
|
| 2987: lastModifiedTime ATTRIBUTE | | 2988: lastModifiedTime ATTRIBUTE | |
| 2988: WITH ATTRIBUTE-SYNTAX | | 2989: WITH ATTRIBUTE-SYNTAX | |
| 2989: uTCTimeSyntax | | 2990: uTCTimeSyntax | |
| 2990: ::= {pilotAttributeType 23} | | 2991: ::= {pilotAttributeType 23} | |
| 2991: | | 2992: | |
| | | | |
| +=+=+=+=+= File rfc1276.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1276.txt +=+=+=+=+= | |
|
| | | | |
| UTCTime found at line 558: | | UTCTime found at line 558: | |
|
| 555: } | | 556: } | |
| 556: | | 557: | |
| 557: EDBVersion ::= UTCTime 40 | | 558: EDBVersion ::= UTCTime 40 | |
| 558: | | 559: | |
| 559: ___________________Figure_2:__Replication_Protocol_____________________ | | 560: ___________________Figure_2:__Replication_Protocol_____________________ | |
| | | | |
| UTCTime found at line 938: | | UTCTime found at line 938: | |
|
| 935: } | | 936: } | |
| 936: | | 937: | |
| 937: EDBVersion ::= UTCTime | | 938: EDBVersion ::= UTCTime | |
| 938: END | | 939: END | |
| 939: | | 940: | |
| | | | |
| +=+=+=+=+= File rfc1283.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1283.txt +=+=+=+=+= | |
|
| | | | |
| 1900 found at line 317: | | 1900 found at line 317: | |
|
| 314: on the protocol-ID | | 315: on the protocol-ID | |
| 315: | | 316: | |
| 316: 03019000 | | 317: 03019000 | |
| 317: | | 318: | |
| 318: This is an X.25 protocol-ID assigned for local purposes. | | 319: This is an X.25 protocol-ID assigned for local purposes. | |
| | | | |
| 2000 found at line 206: | | 2000 found at line 206: | |
|
| 203: (1) <nsap> is a hex string defining the nsap, e.g., | | 204: (1) <nsap> is a hex string defining the nsap, e.g., | |
| 204: | | 205: | |
| 205: "snmp"/NS+4900590800200038bafe00 | | 206: "snmp"/NS+4900590800200038bafe00 | |
| 206: | | 207: | |
| 207: Similarly, SNMP traps are, by convention, sent to a manager listening | | 208: Similarly, SNMP traps are, by convention, sent to a manager listening | |
| | | | |
| 2000 found at line 278: | | 2000 found at line 278: | |
|
| 275: (1) <nsap> is a hex string defining the nsap, e.g., | | 276: (1) <nsap> is a hex string defining the nsap, e.g., | |
| 276: | | 277: | |
| 277: "snmp"/NS+4900590800200038bafe00 | | 278: "snmp"/NS+4900590800200038bafe00 | |
| 278: | | | |
| 279: | | 279: | |
|
| | | 280: | |
| | | | |
| +=+=+=+=+= File rfc1284.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1284.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 1146: | | 2000 found at line 1146: | |
|
| 1143: Hopkinton Mass 01748 | | 1144: Hopkinton Mass 01748 | |
| 1144: | | 1145: | |
| 1145: Phone: 508-435-2000 | | 1146: Phone: 508-435-2000 | |
| 1146: EMail: kasten@europa.clearpoint.com | | 1147: EMail: kasten@europa.clearpoint.com | |
| 1147: | | 1148: | |
| | | | |
| +=+=+=+=+= File rfc1285.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1285.txt +=+=+=+=+= | |
|
| | | | |
| 'yy' on a line without 'yyyy' found at line 219: | | 'yy' on a line without 'yyyy' found at line 219: | |
|
| 216: -- The unique identifier for the FDDI station. This is a | | 217: -- The unique identifier for the FDDI station. This is a | |
| 217: -- string of 8 octets, represented as | | 218: -- string of 8 octets, represented as | |
| 218: -- X' yy yy xx xx xx xx xx xx' | | 219: -- X' yy yy xx xx xx xx xx xx' | |
| 219: -- with the low order 6 octet (xx) from a unique IEEE | | 220: -- with the low order 6 octet (xx) from a unique IEEE | |
| 220: -- assigned address. The high order two bits of the IEEE | | 221: -- assigned address. The high order two bits of the IEEE | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 232: | | 'yy' on a line without 'yyyy' found at line 232: | |
|
| 229: | | 230: | |
| 230: -- (Universal/Local) bit should both be zero. The first two | | 231: -- (Universal/Local) bit should both be zero. The first two | |
| 231: -- octets, the yy octets, are implementor-defined. | | 232: -- octets, the yy octets, are implementor-defined. | |
| 232: -- | | 233: -- | |
| 233: -- The representation of the address portion of the station id | | 234: -- The representation of the address portion of the station id | |
| | | | |
| +=+=+=+=+= File rfc1290.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1290.txt +=+=+=+=+= | |
|
| | | | |
| 'yy' on a line without 'yyyy' found at line 549: | | 'yy' on a line without 'yyyy' found at line 549: | |
|
| 546: Anonymous FTP to nis.nsf.net | | 547: Anonymous FTP to nis.nsf.net | |
| 547: cd stats | | 548: cd stats | |
| 548: get nsfyy-mm.ptraffic where yy is year, 91 and mm is month, 06 | | 549: get nsfyy-mm.ptraffic where yy is year, 91 and mm is month, 06 | |
| 549: get nsf91-06.ptraffic ptraffic is the packet traffic | | 550: get nsf91-06.ptraffic ptraffic is the packet traffic | |
| 550: | | 551: | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 552: | | 'yy' on a line without 'yyyy' found at line 552: | |
|
| 549: get nsf91-06.ptraffic ptraffic is the packet traffic | | 550: get nsf91-06.ptraffic ptraffic is the packet traffic | |
| 550: | | 551: | |
| 551: get nsfyy-mm.btraffic where yy is year, 91 and mm is month, 06 | | 552: get nsfyy-mm.btraffic where yy is year, 91 and mm is month, 06 | |
| 552: get nsf91-06.btraffic btraffic is the byte traffic | | 553: get nsf91-06.btraffic btraffic is the byte traffic | |
| 553: | | 554: | |
| | | | |
| +=+=+=+=+= File rfc1292.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1292.txt +=+=+=+=+= | |
|
| | | | |
| UTCTime found at line 3648: | | UTCTime found at line 3648: | |
|
| 3645: | | | |
| 3646: | | 3646: | |
|
| 3647: When comparing attributes of UTCtime syntax, if the seconds field | | 3647: | |
| 3648: is omitted, QUIPU does not perform the match correctly (i.e., the | | 3648: When comparing attributes of UTCtime syntax, if the seconds field | |
| 3649: seconds field in the attribute values should be ignored, but are | | 3649: is omitted, QUIPU does not perform the match correctly (i.e., the | |
| | | 3650: seconds field in the attribute values should be ignored, but are | |
| | | | |
| 2000 found at line 4158: | | 2000 found at line 4158: | |
|
| 4155: | | 4156: | |
| 4156: UCOM.X 500 runs on: Sun 3, Sun 4, IBM RS 6000, Philips P 9000, DEC | | 4157: UCOM.X 500 runs on: Sun 3, Sun 4, IBM RS 6000, Philips P 9000, DEC | |
| 4157: machines, Bull DPX 2000, HP 9000/300, Siemens IN 6000 and 386-based | | 4158: machines, Bull DPX 2000, HP 9000/300, Siemens IN 6000 and 386-based | |
| 4158: PCs. It can easily be ported to any UNIX machine. | | 4159: PCs. It can easily be ported to any UNIX machine. | |
| 4159: | | 4160: | |
| | | | |
| 2000 found at line 4803: | | 2000 found at line 4803: | |
|
| 4800: HARDWARE PLATFORMS | | 4801: HARDWARE PLATFORMS | |
| 4801: | | 4802: | |
| 4802: 3Com's OSI/TCP CS/2000 and CS/2100. | | 4803: 3Com's OSI/TCP CS/2000 and CS/2100. | |
| 4803: | | 4804: | |
| 4804: SOFTWARE PLATFORMS | | 4805: SOFTWARE PLATFORMS | |
| | | | |
| 2000 found at line 4807: | | 2000 found at line 4807: | |
|
| 4804: SOFTWARE PLATFORMS | | 4805: SOFTWARE PLATFORMS | |
| 4805: | | 4806: | |
| 4806: The "SW/2000-OT Vers 1.0" software runs on 3Com's OSI/TCP CS/2000 and | | 4807: The "SW/2000-OT Vers 1.0" software runs on 3Com's OSI/TCP CS/2000 and | |
| 4807: CS/2100, both stand-alone systems. | | 4808: CS/2100, both stand-alone systems. | |
| 4808: | | 4809: | |
| | | | |
| 2000 found at line 4812: | | 2000 found at line 4812: | |
|
| 4809: AVAILABILITY | | 4810: AVAILABILITY | |
| 4810: | | 4811: | |
| 4811: The dual-stack OSI/TCP terminal server and its "SW/2000-OT Vers 1.0" | | 4812: The dual-stack OSI/TCP terminal server and its "SW/2000-OT Vers 1.0" | |
| 4812: software is available from: | | 4813: software is available from: | |
| 4813: | | 4814: | |
| | | | |
| +=+=+=+=+= File rfc1295.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1295.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 98: | | 2000 found at line 98: | |
|
| 95: Rapport Communication | | 96: Rapport Communication | |
| 96: 3055 Q Street NW | | 97: 3055 Q Street NW | |
| 97: Washington, DC 20007 | | 98: Washington, DC 20007 | |
| 98: | | 99: | |
| 99: Phone: +1 202-342-2727 | | 100: Phone: +1 202-342-2727 | |
| | | | |
| +=+=+=+=+= File rfc1303.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1303.txt +=+=+=+=+= | |
|
| | | | |
| UTCTime found at line 189: | | UTCTime found at line 189: | |
|
| 186: TYPE NOTATION ::= | | 187: TYPE NOTATION ::= | |
| 187: "LAST-UPDATED" | | 188: "LAST-UPDATED" | |
| 188: value(update UTCTime) | | 189: value(update UTCTime) | |
| 189: "PRODUCT-RELEASE" | | 190: "PRODUCT-RELEASE" | |
| 190: value(release DisplayString) | | 191: value(release DisplayString) | |
| | | | |
| +=+=+=+=+= File rfc1305.pdf +=+=+=+=+= | | | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 40: | | | |
| 37: ˼…KÆã;x_I×à‘ù '+Oi§^*@JºH9¿û<wåìv&û£u&tÃ3>*˜,ÀáÊ^£%‰îþ=õ½P4U.²3£²n²ŽÆlÖè½9š {Vc’i>‹¢âÚÒËÙÏÂloÂÔöà¶#38: Í‚B-¥wÛdÞî¶XÐÍ2¹ý’îá¨ÅþH>Œ11IJp?ÃhêȲ<˜Þ„+»ÉqE[t÷tg¼“ó${ò•nRyç´±PCê6Nõ'«éÜ›Èöü…nìpB9é!ÝRðÚœMÚ™«Ç:Wü ½A^¨ÕZÇp39: H‰ì—ßr›8ÆŸÀï K±3P$Ä¿ËlZw²³éz¶7í^P¬Ø4€2 7“>}‚0t;MœÉÄF¶áÇw¾óéÏdñjIAÉå‚Pä¼QŸ9‘‚ˆ:¾‡’rá¢ÍâÕÛ‚6'ÙÂv×…³nqb‚S+ÄŸŽÄ%²ˆOE%y%7ÖÉ_ð#LÿˆM|ÇC6u(CÉkµ˜Z‚X6q±cÙ”2£³JÖb½Ëd.*ËŽàKMö‡ÈAèeØ[Ä^àPžPýˆïÌ´¾œÕL[Oµ‰C=Žœv†:!Æïy‘J¾V‡ ϶•(ÄæÖ²Yðò$:”´E™üôèP½·ä%:©³m.y&w5·l?Žè]+ÔÈÙë3+ùrT(5FZÔPãYy]ð¬$Uf40: ü¯Rd”Ææ m’ad04;G„_§2UïKQ—©±úÂmrØ:aèÐàв§ÛzFç‡Ø•-Œüåjž@ïŸäèCZç)¤±Y€?Öh•ÖiÉ%¯á‘„ö„/ñi5ºxl‹mbu{X}Ú™–í©(KÕ]"Ü¡ƒŠ[#Xâ±YâÐU†ÈöÇ€åϽÎmC¾¦ClÞÛŠóÚ„F^¶6Ç!‘N†D…—ð¦Ù—&`v÷õ¸<Ùݘ¨àùCx§…È®ìe^HØ0\«X0èѲCHg'YbWØÁÞÉNna’g‡]Jl6ÿùgGÉB | | | |
| 41: ÇåÙg˜<w"ÿo8J…®Ãb[Ðî8v±Æs1ü\¬!ù‰KôÏ5×›¾}–™3p-ÐpÊ | | | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 184: | | | |
| 181: ýuq´-WnÒ]ì€Ó¸k„4þÄt¶¡tó•0¼-‡Z£3U†¿¢òË$î=ã&¶<(”± ‹± ÅM /„•©¥šA²í÷E»ëÐ5ÄÔ c,ÇfMÎ5r4NõºíÛ‘åÒ Ä>Icnåªf+ š›Ù|Rêΰ ¶»{áË~Æþµ 00·ôJ¥„MÎJë)^ƒ¦ØPD,ß*›e‰@¿h[C‡182: gª‡üÕVð)…Z˜">z¾k‹`ë#kgÁàÀžAŒ]øm£°p’q4þ¶2'Âñ=¡Oùcëä3bx¡0Y¢Èun&ôÉQ‡*.ÛovA·0îÒj&ßLh•æCAGêàg+´\*à#åb¹äÂŒ±¢J‚¼éE183: ·÷’ŠX6¡ÿy‚184: ¢_À?Üe,¥V¿±B¨ì¨P±‰ƒ\°oäðù=gf®cÒ–.¸"_gΜsmkO°íö/e¯TqHÉhÖ¨"ô©>-Ù'îæÂX†_^è™m?JïΊìÖ´‹¸XOŒnrÑN$ºkÝ„dÅà øçL:iéÜÌ«\sÉá‹t©·YqG4«`õ«ç¡UQ!‹1¡uN˜obqwªžrÈ÷¡Ù5ÄÀ”g;w΢üU>~h[¾Š=,my;ALp+‹‰ÎBÅZ0cÇßèy˜0ë#qè¦2NÙWi÷¡ìömu’›ò¥Û°d®#l6ã185: ] 7`½š>Ø\Q/“³Ú!jéF?‰Ç+m€ø° äÙ2ËøywAZd@ | | | |
| 'yy' on a line without 'yyyy' found at line 248: | | | |
| 245: H‰„WÛr£HýýC=Mqg"öÁã¶g½cË | | | |
| 246: ‹mOD{°T’˜–@ÈnÏ×ÏÉ,@Br÷FGcQ—¼çÉÃoéèÓ/”H—#å | | | |
| 247: ÿð'R¶/‰í8éväˆÕèÓï3%VõhìØŽãŠtο‚X¤o£¯²|ÕÕZg‹ZdÅBXcWɺÉ^6Ú’Þ=¹ÓºÂ/åÈÌ'²Æ¢¬Ëyž5yYÔ¶°þ—þg¤"‘~†Rèø*ÓµKKy²ÜlÊ·¼X‰•@D"+¢¶ºÑd)Ej"l¨ˆw4iźÞo5L | | | |
| 248: $¤(™cë;½U,ÉÖl·ÛX*ä9[LvŒ!ce«˜ŒzãucCYÒCdäèf#>ôE:$-v{iФ9FÐø€“ÂR‰œì·/ˆÔ³œ¤SûËõãìöaòlý*Òu^+–æÙ ,ó}Ué¢8(^[ …¹M=KïÙ:ÒôQe”Q=AdRüŸÂ1-«Æh¶Biceúð˜²rŠÝ™–É]±Ü@vš±ö,•ÝÁÏ-ÄyUPÄcùò. ·»y[ u…ÆíH^â¤9…ú˜ÐcO-Lx¡ürmعáþ8—ûf]V9¥¢¡Ç;§¦))ÛdzM®‘Ç}Dä¹È}ö=ßî·bÖTYƒ¿Çá¸çB»$Óþ¤Çkéãeúß{‰•!óÏ6Z*ªÂ†¢°Ö¦1¶ôÒ*©IJC®fÒ÷šmöZ4ë¬ó¬/úcçUç¼×¶ .æåÌЃb—Í¿QdQŒ¯Y•S]_pue›º9E~W¡uøø³ëzy±Ì‹¼yÇoŸ–ÔM=…r_T:›¯I 4*Sõþ…3·p6Æ™‹)üèµbŶ§¿å¬£f½µô¯>ÉI_ØŽïóqµ)çßÄåJ##–r9÷—^þ~ͱ‡)ű;·å›dý–aˆÝFx²¿ÒKþ™£‘Èþ™L*Þrô1EîƒÐ÷íã´Õ2GçÈYpÔ =§_D1‡",¢†dÞÔb“‘©5„ØïYC‰‰+Qk[ÔÃ5M‹hœVç7ýÖb‚0ûãú Bž-(ü•ª,9Ô `‘³ú+—ËùÓUÅ0Vq/¨þJaP•ô”„¿K=¨æ½”óls+Û‰’¶¹¢.\œDš”B²ÉÂh ÌPÌ´åIÞx¥\@$ÖÄB÷Kh¥‚NéÅjrÂùŸR¤m6ýѸ¤ÔR‘ÐÞ¦tñ…›pzY Z°é@ÊCjMZ°ÊºVY²—Ÿn32¦“³ò/ªæ~–:vh¦BÆëÝÛí6þur!ðo8¶'HÈ +éæC>GÛïùfhN,*€±/qÞ’û„m¿NGJäb¤œØN<¡bוˆc;D@V¥GË_F¿¥G„@%‘DBE±í&ĆäD&»ÔxÇØB%˜,P)IS„êmñíJ > | | | |
| 249: m»\it£²¨{"ƒ!º«FêàŒ3œÞ׺o‡Mwí «:ç¤W>çà"Ôç}¿|¾¥—“+BÁºŸÖº0¿¸ØLqc†ëžÓ=jòV+]“{èÙ™Ùþ1N$-:ûj±çÒ¬ àãÿ/Lc a×ñx/æëª,ò¿™Oˆí_1ÊíÈþ-ËŠÕ˜ÏõŽIXK ~"ñ#ÈiCˆ¡@& 縵˜î(":·˜¶A½Lîî:¢bYçK+d | | | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 273: | | | |
| 270: ÆÿÏþŸØwa.ößßÀ–¼°fôþ&ót~y¥ðwÞI˪ïêaÔ²¦åšr]uƈÜSØ áüÛéZjñÒ"ù„‡×ª¦Q†¬Màž¸3ÂÇ2~˜y¿I=1U5JvÃ#õ#ÖlûZbdTÐ^Rç@[NºúªoD[VGŠFUvâ?ˆ—‚qå}sFµ§FÜQþfGïhcexŸ¿“{ÇþIbç[~(éƒqèu˾õ~‘›¡ÇC&»ößÀž0‰¬=UÓW_ÕFV”3Q6½VñÅ8Ó’ßå™BïDjZ°”bÄM„dáQúajwÉÒ†Í]X„Pp6…÷t”ZÒj‘]zlujÜ›Þ`Zì6®F”?ë×d?£3šÑéÉîXvÆhÙ¨ò^5j8þþ3PYÔ#œ¦dÐäpG“y——Öo½€¯ ®;¾Gß’Ó²#$xë}ðÍczz[Icè•êØÀ¹ÔxÓ…ð´_ÚýöŒ¢Ç/$xåÞC‡©íPU>ÌÁ&1¢»¥æˆ(R‰ +ìDä÷û¢¯ªQ3îÇ•VæÉ¯'¥¹éé²@O¶FY°M@..¸Ÿâ’:¼J€‰I<T¬Ÿ<lJïª`ýÉgóoQtTU©5Er``¿ï³±Í±àԆâe.5Ãà‚û¡WK0*ºŒÞFHT`ÛUk}œijâýj{ÄäW°‹ì›ÑêÆuðˆbáfþ´š™-I4湟ü[´‰ó271: W{•دºï‡ké/5)E9N§ÒUGÝwê¿V¹˜ñ¾“C >Kdá=]8ÆÕÜÊÕ ,ûÄb='ÒÝ;¹°J»Ûqæ1–ô¡£ñÇ‹ª&RÍ3œÖȱ³[ãøßÁª‘åµ:ÍX³)1š&÷œéÖæ’à9qP¤Ï0±åW8Îjqƒ€•5¢†™5™Ñ 8@ÁI*Ìj~!%!„¡¾›†Ü?Ú»õVÑåñT!¤¡ŸNÍä†W|¹`½?(ê×Eÿ ¼–ÎÛ+™Ègƒ ¶§‘Ä¡•]alÁH˜˜I•¬Fœ †LdÙ5‘夡p~«HÔ272: =¨í¤e¥&g)Ä¢;£´rþèLè'E_äÓ†ÞI=—vÌŠi@â•ÐzëQ±Ë¦˜$Ö†{SAëÞÚ«]P<+ÏÃʱm²"Í‚onyY˜aUÐt$µQÿ¼.Ê×Ò”üAšìŒm}Áêlð‹÷ž:Ìž ó!ø×Ý¿?þðög[\AÌb:âú¢c}¾{ÇàíÉUâ&ÎP€;ÇX¸yìR±a“´¼9|sóÆæ·?IŠÕ08Jƒ¹nW‡Ú$ | | | |
| 273:  ÿg‚8RGq'×§¢¯ªåNÓZM274: ‚…H²Zô_l8Qr!×äùuÜνǦÊõäöªÿØD) b‚hyªL]¨?5"ÌÄ›…Ìâ$‰q3u‰ãŠåÿ³Ö™ÌbëÕ#Ê›áD¨œ˜÷ÁùÚÌðcãTÔº¬²ç | | | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 326: | | | |
| 323: vìk-!¶$2Q’~.{ù˜¶ùÑSü vƒ.r.;ä§<k+³Tq1ý`f?™Œ@|t1324: y¾ùz-½@Í+<<LdœaŸJQ>Á4…ª['Ÿm·_¸G¾S)lbvò{T EMx6,325: k œ·V@w¨;5‡}³ÀˆoÍ9°ket7I\]‘!{«ËKl¨õ¹Áƒ-|m¯¡ý©•ÚÍ›oÀÛf]vï!‰¤DJyYç«óiKËJâgá326: H‰ìWÛrãÆýýÃ<¶„7Qù%vœlªœl%¬¼¬ò327: tïU¨ã’ÁÖ´#ëzõT¶—¡Â+_¸0o›cyºôªX£á¡½t2 Üø;gÿ/8æëc1 gxžU•~`Þ—"6Ï&ð<߀§A»wÜ4 =~÷ü"œ,šŽŒùäNÇGƦøÐ”Ô™ì”ê…ó3üµÏ0vmUÙÒHµ+‘Hãæƒ…k7õw²i¿é,ƒ#t~ eðYÆq€>Cš | | | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 343: | | | |
| 340: ŸÍA"‘>7¦ìš±H_H¿Ó͹®JúÁq•ö}þòC?2Å^¼l*{Ì•J蘹RÈxb˜)V™#_Ó WÓ¦°×švuú?θÉkÃf“#½¦ÇTë5ò˜ãJÍ7 $¿ìº“ÀÉëz%dÔùýæHWf æ‡~¬Ñ|¸)àëÃjcð1⻬®³bÚlŽIwû¿Ç¼õ룽æ%êRÇÙ¢Ùr9Åz7Ù膘0Üè²ó¸ð ½%áâXè7° ¿jŠrwdƒ×TǸicÖÅEÄñIV÷y˜H›‡ëôÞP2Ö].ž5ß“Žn›Üü½¨à›Ìs‡BÜ@ñ —.!¬—4„Z›y˜ÔD0C“üÛöA2`ÌÀ Ï@7Q!Aä°_¥ÀÐQVà˜Þ|ÞC„Á‘(Ãj‡?û2ÏÇ*†B>½Z€øk341: €« ¿º€¡$°ŽÌš#ñjÇ8«ÌçCV™š5Û´a‹²Ù“a¥,X9+VáG³4ÙÀ#ƒ=W¥•aEYüiªSQàû'YC@!‹ÝòS):wTö’5¼ÁZŒŸN¥’½±×Ú”Áûœ˜ã}w¤sZ×å2K›¬,Ø6A™†ÕOÅr[•Eö§Y1¤àÕ¨ð‡öäàAðAºÜ¦‹,Ïš'æD<+XY )'uÖ'+õ | | | |
| 342: É%f‰WÔb‚5%ü˜X#4³oÒ‹8tÔµÄÑâ¬WļnŽtcÙC…ÈÇöÐÿ§ÄGÉ+½„ÕÚ샥12d‡È!£¥&ÐjJhÑYÑ©&÷A{¢wàßÖ{\,@ã©ç/w<ê\uì}dä{}ì}:äJ(Tå5ŠÊ:øB²WØ•‡bÕTÙžLžB긧˼\Þ#º|@—äëÚ4´VÁ®†À[B]¯¼sý‹ŸØëjݘ±ÀUˈA8i§ˆÜÚúYy|dT¢ëñ‡¾°ÿî°[€ºŽY…n©[yg*ÞßöO$pMlUcy‚ „ ¡€ÕŠøˆ¾a;õžƒÑ¿ÄáŽ:Ý343: ÿvÀeÔ:䂾Š7âil»t•I׺!ð;zh¾,!gè§mÉ¥~9‚–a›µ6w¬_àNÝ7 g@hV‰íthƃi•¥‹Üô´sg9$ÆN÷81v¼kÇ@hoöX´Lþ$²gËkKCnG,wòó$ŽAÆqu¸cÕ”ˆÇýfÒUÊÕD ®˜i9Œ¸V|•úUM=eFp1)ja_»¡Ãš\1Ðù¤\”ò¾NPt°¥DÖ³kTeºªAÃ(-#û´CÚ÷®ŽÈqå·¥œˆZ¹@{úlœÕº‹øXOü\êm:/ü4=à_:Nº¡Ø‚KHÍT¤Ú¾ì<¶THP†Æ¹í¶`ÀÑHàEcÜÆ\R9 | | | |
| 344: …’·UŽÒÁ©ÊÉ }ѤƒŠž€¨73 '~ë:¦^HßG^ŒÍ-œºìF4µEp;šH|ê\4¿È5¶×:D–þ¯ýØFô†uA | | | |
| 'yy' on a line without 'yyyy' found at line 371: | | | |
| 368: àæ›1¨"333²ÐðÕ´369: H‰œW]“Û¸üûðº$š¤$J*?9N]²y¸r••ÊÃ9\Z1?’«ìýú뀥ÝäRW®•%˜Ìôô4þtxøøSªbu8>ĉŠðÿÅÑ6L6*Ý%áf¥ÕC¤ž>þå[¬ž»‡eFQ¢ùÃ/º{íBkŽ}Y™`™jüóð7Ü;ƒ›0†½ÃŸô÷d³ÿºúŠÂýνs1Íñ¼]´¢ÝüÜä?>¹]‰ÛµLÃh§–qï¸uÚ©M]ܘÃ7ñýò!+±»Ú"ë | | | |
| 370: ânm“›b°æ“í½iÞ¶é] ÎÒcº¦2¶7•Ê›úX>6ë˦îT¦Zkò²–q¢MàPÍ`s£š£B¾ÊúY•õ±±•¬W%v¼då9{:¼Pýɨc°Üé&À~[q[°ÜêLbŒn’°[¹€ú Ž´…CÁBÃåG~ŒþÚáÜ™NÑj×f8³ÊzÕÔfÙ_ÀmoìKvîBõ÷nÈÎç×';ÞêSÉñ^—üåÎ%¶Ê`¹Ñ5?TV¥§çÏÆ=£XûÓ‹9Óqv’k‚„µ”KYyS˜k®Xçm˜®gååòKAS/T7ä'ìuÖɧ | | | |
| 371: 6ÚfEÙ¨ Õy$úDPÁ–!¦L±‹7æÅÔ*ØéŸ_UÙwæ|\ à/cdÖºª'c¥>A’Jb-ùë | | | |
| 372: iz®5Ì{·#.%Ü›cn·.Ü’‚Â#÷0³ÓEÜ«G†SKLðÒIÎù-¼ðl«ÅÕÉ'ÕÃð…gÆŸ- %·@¨éY‘5»Ö | | | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 540: | | | |
| 537: ç&Q±kõ³üÂr0 &»“›RBÉ’ô'”ÿ *i4ú(´/¥×y§k]Rä!‰•;5eÕÙÆ¼+Ú€ | | | |
| 538: WÄCƒ9¡'¡xºšëÙc=¦.Üp¤~¤B…Âv‡GwÉüº0çú¤3´,Ðò?#°VˆéV¬‡ƒÅSõÝ‹ÆÝèa+â«Ã ¨(=ˆ¾ Ž^[ÝMß‹½¢q«Â«³âtxiö»Mˆg‚ãJiœHð>"žöñVÌ£}w0Ô©ÛT±¹è1å bÛç¢_fµ„¹íŽÝÊVGœ¯´;$C©¿{ãµ$G]tÛÐb|8¬øD´Ýž©½äjÈ7YìvAÀ¹Ì´ªm ä2T6Ä+é1x*kÆT쬲{²w±ø”ø5ÌÁëË$Q‹Ùtùž†öç·/r²€ÝxFÈ9*O¿Kú<™g=vÖÛÒÖÐs¿}=@Qæ;Y.‘‚÷ðkÁ™p?[¯Ó!0¸%ÇëÞÔµã5á:»Õ¬}B=ÊB9‹SŠüÏrYèëÓ§539: H‰¤WënÛÊ~¿Ãþ$‹æ^Hî"8rÒœ"=©Oª@;?dвS¤ARqܧïÌ,/KJ”ƒS‘Eqvv.ß|3óëúêæ7Å8[﮸`!üƒ? DÄT¤™°õá*dW7ûgÍÕ*ÂäSú¦[¿\ÝyY¹ß”i^>2Ÿ‡^Ónò"o_™/oSn™o¼MšëMú°iZÕ[.^¯YëóÄÛgÌ×^ | | | |
| 540: ’ùvÓÂCâ>¼Ü_q¯á‘ËPi¼¶>–)nñئ¥kn×ÿþñá?¿üññwÿëúï`õŠ<fë¿Z£–¶už5¿þf%ŒB‰Á+ï¶BàíÍo¦L tüf’@¦h§ðxŠsPÑIÑ7J|¯¸ Œûaµj«5Tƒ4\~Ò›“DpP¥#çª1úðE|毌‘i!Œ6X™/¸WdiËî½fsx.²{Ÿ¤¶yóœÕM^•¬öIPyŦͿgˆUäUøŠ(‚ƒà·P}à›”³ 5™…&Až’J1_tHZ‡,&üUì±ç,«;SŸë¬ìAÒÁJ啸A>¸)ò¦½&ÓWB‰Æüb”:ÄVýË>O÷uÂIö€ | | | |
| 541: ŠôXX<q‰¨‹P=DqK÷ ¬›²kšü›šµÝŽr»¼h3üR÷§œ@£ÊmÖ¤uþ€€WàÉ÷¼:6ä+ñÖ¨~eö6ýüEœ | | | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 605: | | | |
| 602: ×ô{H'²Â¬Û&OÍŽínš®IÛüø,¸s––ùæsT·ä‘ ÃA(Éoo‹¨&H.j™.Ñãžp„Wž±¹Tµ | | | |
| 603: ³õBÄm’iÉúütõ.À604: H‰tWÛ’Û¸ý‚ù<’)‰©ë<:“8™¬×vŪÚTeó605: 7„BglyŸ º`â·¾-É@©É'Æ#’Ý£U*˜‹&ƒTp½GM¹Ê¡© | | | |
| 606: ó¶oÆÛö„¨cô~‘8ßèù…Âò|ÓIÏTè˳Ò#£+¼®¬cœaã•#¶É§ýºScüˆ“"Cy–¸ÿãQR¡…f°ûn(D¦³ü>†d(ÀîÉ)"›c€¥ºªð¶²gW;=3EuôëäòL¥D)¤³Ù9wšåØiĘXÜŒæôú=ËÏÈ7ÏÅO;0ê¹Nh«uûáoº{Ãx|À#"A*ΜrÙÀ¤H<hÛÑïfêÐwÔ7Ùyê—ùN¾¢6/<L`\y+½¯Í±sWXÐ{4µL}µL¾pušþû˜” ã+Û‚„,…:(üjUöÞƒ`Q€¬’a‚„#Ùbk²dv£SôEl'<ü!/Ês6!g | | | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 640: | | | |
| 637: ×Ìq«°¾¢¸U‚Õùn©„POÉ…M÷xÁB‡å9vÐÄEj;¾šª²êiæHÜàÓìú¶®ä§SVC0êÆT„çGøGU|ÙY€ÐÆ¢êD"†*a,¯+M€§Ùò¼]ν½êU@óøhÞbYÅëÍû——‚bNšÅj¢aü³S+AP¢yÐ÷Ü›¹638: Ó>Ÿ_ÉG—Öˆ(B„Ó!†£ï÷¦mⶬi¯êžqݰš?v¤.m`L] ½j¶ªÑ^ŽÒwØ‚í³YÛ]KßÕÞ²:E‘N©jO¢tÆ7ù –¿/&a–8ʼng‘<ãõÜÃì,2st´ß·fÛ;A‹’a>¶H¡Í){…‹éb0Ït ”˜¹hì rhqœ)ƒ©Â8òR$óÚJ“Ãü1ÿ‚7\¦¸;¾ýï}2]‡ºyò–¶rKü»¶®÷ÞƒÿSÛÆßS?~S†yÊѰ¿-Of³hhVšŒòsìÇ–EŠÓ0þ¿H—šÕBš;(ˆ—¤rÐÍòâŸ639: H‰ÜWËrÛ:ýÿVSà”„K€ïì$Yy¸lß”¤L±I¼¡H…¤â8_» )ù1™ÍTMM¥Œ¢OŸsº1]]üñÖg’6R1þÁ‘*`a¬Dà±ÕþÂeÛ‹?Þ-%Û6p½Ê.\áFlõpñ…§åš9c)ùÔ!w¤âEáŒCŽOC¾t`¨ö{]ot±ÁCåò´a8ùAsbž:ãˆ7ŽËÙ:o²cÓÀ*1¯œqÀK觇¼Ýáä«JÃ" ŸUûã¯_9,äš=$¼jwºnð*m™ñË|›·i—óïÇü°×eëܯ® „±2f«Ë‹1Dâ* V¬U¶yU | | | |
| 640: gõà¢.4= | | | |
| 641: »é2Âéô¢4D•ÇEœ-œ€k¸æŒ®j„…®JGú<Óí£GÞ|aØ4«À~àËd:‰“{6ùš¶zÄ´£$oq9–‚MpõÞþ | | | |
| 'yy' on a line without 'yyyy' found at line 883: | | | |
| 880: ƒ¡X¹²gÍѳû?^©ÿè@v«°íœóÏyɸȓ!øö8Ï®’Eðœ!)dñÓfgMår€6:ÃFÛ©‹›žœ‡é@Þ=þ)[@pòÕlIt˜ÃÆÃÄàF<881: –<Ÿ®ÅB | | | |
| 882: °T‹²î™œ àþËwì&DÁ/è?ì‘&uAˆ{6z³1-½yY+JS,d‘Pÿ¾óÞ.¤ÄQ”eöí¼™yïN,ÜLÒýà˽~â|Þæ_Ÿ¹û/S3ǸwjN4u/Þ©‹ûf)Ýüd¨883: H‰mUÁ®Û6üÿTñäH²-ÛÇ iÐxÁC+ô’ä@S”ÅF’²ë~}gI)¶‹DÈârggg¸æy’îø†–u’ÛŒJÒ’´°?•uÚ,l3lo¸lÅpVŽ]•U¬µÂçüÈ}’¸¹‡ùV±«¸±ZuâöÂL’ox“d¼qÊ31Ô¬Önœ³dª“#Wx(Fª~aRtrê„Wuòúm•¯w,Í×yɪ«4[gYÎ*¹š_®«/œ²ŽÖH圪™˜±µ²ÌfU§Å©»±“™Dµ)ku(½@Á9a¶ 4x:Gû^÷*õV®A޶ž¬rköiõT?vQDìQX¯©\û‚œyh‘/@Iºç–ú¼ãBÊ©'j ïbû®3}DåxI·!´à½¹€KcCgûçö†ÖÒÏŒKÓ“ éCNrìIŽ2ÄoC|بiCJ$?&à"°ÃR<ð‹M¦vo‘é#uçüD-4´Resources 231 0 R /Contents 232 0 R /MediaBox [ 0 0 612 792 ] /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj231 0 obj<< /ProcSet [ /PDF /Text ] /Font << /F2 615 0 R /F4 616 0 R /F6 619 0 R /F9 365 0 R >> /ExtGState << /GS1 367 0 R >> >> endobj232 0 obj<< /Length 3755 /Filter /FlateDecode >> stream | | | |
| 884: H‰œWÛ’ÛÆý‚ý‡yR»4n¼ oŠb¥”ªÈªýdå—ã | | | |
| 'yy' on a line without 'yyyy' found at line 893: | | | |
| 890: ijXªƒâQ¨¥´²øñ<£1+{׃Ü\ÑôóSc¯æ\å©§¶¨û9w«3N":JpqXF]è›Ó’6´_\eÉïCÁ”V:QÂò}˜‹±>gy°kµ891: Ùíl®û¾òJãE¾†D^S±^)NN|+µ¾G8Sw¸l’÷W?x@8ì$JòS[í÷5Y | | | |
| 892: ‰ºZŽzqbªƒEªM˜³ú/ª_O=@9¨ä‹®Ð"/U%Žª¢Ÿ“ì±·¿@!4u¾Ðù&o'Ñt„ÖMÂŒ)iyï ñ’DÖ~?¶j>óvRâøÎÓ1´¬©TC»’ЯâœSñ@¼‹dÒ‹þHï¦I¾X§“†Žæ1…ÅЯ4 I£YÍã^É5¡^>£‡·ÚÆÐêŒr’èáBVkíaƒåß¡zOµ´†XØ_._„yYè”ÐÇå@~Þ¾½7E?]e.Ex8 ÐvÇöÔª?¦ | | | |
| 893: í™r | | | |
| 894: >ÿãd$ñ’ÁOñut^ó@¿t6¹çþÕi3ÊÑrvЕSkïùaÙ‚•îª0µWžá\("rðL )zµ‘Jæ@M~L!²ùŽ21QA‰Ñ'»Ñ“k?X¹Ú‘L3SÙdß4ÇQ¼¾ç‚FtÞÕL¡ÂIÈ×è13_Ôj?ÍDÝØFµ#ÊJyöhuÚxAOœíW9(NW—Uy4ãylGª% {±S[¯;J¼–B*¾5Ò€²b$£ÀSñeh Ÿg[ÎF( | | | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 929: | | | |
| 926: :½ço²(z+Ÿ…Ñ’N8EX“@l-B<ÃiqaHò}ÃMy úd†ïóD ¸{]XÓªÂ4e‹¨7Ø2 6¼“Á”OK©Uòi¢Y¼ÊŸy/õÇ ãÓ9îÿüv1ûÂlÜ…£õ…é›ÎjEv·*zÒa4º‰£j;e);ð=YÓ#ØJ಄·Vïu-i¸å9²ºðÞ8ÂÜ | | | |
| 927: —¦Õ‹JôøŸ¹½”èÂ`–M»×p/Á4|¤õ?®Æ§˜¥îy"þüð7ÁjÆ eÈ]¡·úG¿Ûœ&â'y7ÆËOdLÌ…i<_înÂIèEÆQX928: I”Û»”‚ï3øîjŠº/Ù¹0ð'dMμ¦!IÀÅQ)OÑIIJÙlåg^–£³×J"‡3q”¶Áéâç™8dCæðC–ÚÐÖ« aQ šâO²f+929: íÄ2é lï&Q5n¿ƒALù#~G~×åq~µ‰j¬læw€«=cð_#µë[båºò˜ÃÛê_Ø’ïrŸ&9*"—&g(ú<Ù›®—u}ލ²YT™ÞŠ#WñKÆ•³[0{ƒ^}û'=äy׋ú™oÖˆ/IB<æÔzd"TÄ81^´#‰Yú*Ð5œ`“WDƒÙ²0Ã|R,wúé+n¸O ”±Üx‘jQ×uvîB‘à[ÚU]êrúÑZÒuŽÐð[ìõ×WÉ–èArö M§e}–Œ’Cá“÷Üsòk¨93‚¥CkÕÈfh¡þ)*Ÿƒ’,‚GÚ<\¹ì&¹få)‰Ü\rY³Ä0…ëŒñ~PV33œÄ^žž«Ä=>¢ | | | |
| 930: çæ$qÝS¤8ÄSõMiUÙŠK¿È™±\ÜÓ—¿ýºtÛ’s“\ÖêB“´ä–†}çŠÇ&PrâÕþE®À×¹01 Qa,r…}é@®x¬rM "Jòç®ñJ9'~¥Ä¿¿<}¯®Ó™Óí | | | |
| 'yy' on a line without 'yyyy' found at line 974: | | | |
| 971: ù½Â4a…1V‰Û½ûó¢$àZ€ | | | |
| 972: †Ko¾o7oÍÆÍÆ|ñnÌC~s}m^h#Òk"2<,„ËP7°êLø;¸NäÒü“„ÖQaŒøçÁõ¯ì)4ˆŸ- .Þ„²ó s,›ŸhΨIÈ»ð®ï˜ýºh…Yô Ÿ~(_LNhsä;Y¿ÿõ·2ÿ=J%z@r@¤-±qN'-‚8ÂIˆÁöli | | | |
| 973: Ïâ#=C®ôyo»¡¯#ÃÏlw©±uï‡AøÍФjÝ060Ê‹÷®o6"ø974: „Ù±÷]=å„’!í9…A"%(jCÖ·$¶ù”™¤Ü¢‚bÖ«µšËÚ‡¨gI§Ÿ 6é©Ð¡#¨= BD9;à4ˆéx.H.MfB“ýVrkn}º´„m6˜N–WW–óÉr)gÀ¥Ö*5U¹&²ø¥Èh/'¶ô€¿œø®ø ß+ª‰2¯Ê€KEåÚ“JÌqVÊI^±ÿ‰¾Ahõö”>µõx”Iò¾ƒø„"XÞÀQÁîGýqQR!ɾkO̪“t°©ëcoiü“º¢^ßJ×í¢ð9S(|t<;(Φ«10@¥AlÏ'–#¶Å½êÔ‡< | | | |
| 975: €¼Ž/–¤&¡ø"é@´Î©³ÐœpÔuħÚD·}ކ=÷®Ý4X3IRÅ‘®!žÀ·NVãN:âüãDBAXý“aÞŸrÃøï! è´ˆºh‘I9§bDšþj†…Ô^L'fi½›3Üú,°Õ„OQOy·œx`¦ì“h.Žâÿ|WËr£Fý‚üKQ%ÑX`–ó¬rUìLÅrf£m‰ U<Fñßçœ{„íLRIÐÝ4}Ï= ÌjÂùD»T” | | | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 992: | | | |
| 989: •—§?{:½Ë–AÀ£ìÿ,x3é\ã|©(ö2Øš¡¿¢|vöaÊ$íiÙŠëZÜ ¾f)ù©»Ãuã,à QòÃê£Xñxüu‡yCo5„ðTDœˆ^!v±âÎ'ÕØ&@¹Dà„Âå†*EÈÒ\n€3€ŸønæûX–b™IÀ’GGlLÅB°¡›Uj!FyvBÌR7Íb79"ªQÙØ TÑDi@}4É‚#hè‡ø;tƒ#h0w«Bh!„àG'GÃ0v!¼DˆÎ"eÙ$nÇBt‰Ÿ#¤©eCž¹A®,„ø!±BBPQxDˆ‚ÜÍUh7¹DHÏbÿ”ž(QnåBz‰#d©eC¸ù‹g—¹…@—„'@k\ÊBÈgbÿ„r™²(Çx Ø /Uø–1^ƒr¾eÒa³6æÀÆþ"ÁB•Ùê"<‡ˆÕÉŠ$ŒÜ,Žlˆà"¶ L”œ @_S52DøOŠ'³Sž²oÉÉ·4M°á¹dn–ŸCd¹:Bd‘ú¶a—ÔÍ}"cßâ“o’”ÀÂp7Æé‰|Ë££.Ûç’ÑÓAÊåñ4J2dN7ÖÐEÇåg3NÞÎ*j4ôÍ»D d›¦,jãèüákg¡ÄìùéÝõR…>r•â£pŠöKSZ÷sÛýàölŽc»vh1«aŽúîzÒmƒCÌSË$н‡|ìâ̪Ÿ–﫺îÕ÷EË '³i%(ÃH² ×i:Kå990: H‰„WÛrÛÈýýÃ<) | | | |
| 991: Æ Yyrl¯cWKSOq†àPÄÄ0¸ˆÖ~ýžÓ3 A]’R $ˆ™FO÷éÓ§ÿ±¾y÷[®µÞÝ$©Šñ‡E¥sU,Óhž©õá&V7ï>OÔCwsGqŒõ¥|Ë | | | |
| 992: µ>Ýü;¨šÎ´}eUujkzÓªÆl~è÷Fõa²ªƒéJ]U…·ó áE™0)‚]x›;Sö*¼];[×öT5²3L“ KÔGSšÃÆ´²"Ybu~ãL~;í«rþgýÎÞ&Q²Tëø | | | |
| 993: 7áe‘8/F73›¬]öƒ®å£±ð6£cY Ú0ÉCÇjÝWΑ>¼ÍË‹âhèëPWºQemËŸX8ÿŽ{íÐöÆ4ª3¥m¶ªÃ$4/}Ór´K° -˜ÔÇcïðßreÓOŽUðX×)ˆçîp}XþtÚŒ‘g”ï×T?F?ºX»ÄˆvVKgg]W;`gè`!«ò§ÜâŽ×ëf«Ûú„K8½”ãÙCUþ±(]c | | | |
| 'yy' on a line without 'yyyy' found at line 1040: | | | |
| 1037: ˜YЃ1038: RN—ê|ù=fW®‹–$£×ÆW$Csèn>Òå5£·÷‡ÆØËò¾Ìª˜Ð©;QÔZXêh‘Ñì^±疣ÝqZn™²1i | | | |
| 1039: 9}ùZ8G7¬ù†)Ëò²ìÛCN¶»\Ûìøf$=jèÊœ•“®ØY×tyYUØFZ6ƒ[4<ì•·®/H˜·Òûa]¾"nDZõ¸-‡$SÉ%JØÙŸ¸Ãµ1ëº&/§=ŽTCžžJÊÖՕЕ•=$føgPé¡ÊÚqc<±¡\ÿtMaš¨ | | | |
| 1040: ³q×)k¹ç¨o9„áz\LB¯¨»b÷LVQW=®—¤Cw @–,m>ÝYýÄò™(ÉÕKÓ–ýóÎÍù]ß74[(×Ïî@ág1041: ØïÛær—qUd‰Ã$%¯cPóÜ™="ð.ÂÒ3ùdìbÿ×¢wülúHyp´Q¤n¶X]µÇ—L‘FÔq6~ñîThIut ŸH¾î¯©¢«ëüí ót,ú*·ýœ¹†~—"DÖe·¯²7øbÎçQ#1ôóé½¢ß1ëÝhÆZ^§À“ÓÑÜW.•9N›¡ÿ3ÞU¿~õçUT Bk%5·s>U)7¾£÷œšr¯1:pÇ©iÂô]pË©Zê‰Öj˜½¢á>F å/¡þĪ`hÅcÌXWmíÕUÑÚQ”ï<AŽ.øù–*MFø~Ñ&™€7ßk«‚˜ó( o©b#n{PFðž×1ä–ð¶Ž£ŽÖÅ÷TXN©`ÇT˜isåà;xņ]7ÁkJw'¿ò¶©´D;L#Jg⌠| | | |
| 'yy' on a line without 'yyyy' found at line 1083: | | | |
| 1080: m[¼Âî4^]93EÙÚWØ£:…jK"¶ó¸2êõš ¼ªð@iYüz‚0|wöSó‘^Wâ©HúáüÅãÁ^ g^½!{G4¢w,§Ž¹`fËi¬ìîÜ0н1ã³·Ù×›ï+ïkåÕ‡mqp6‘5qúz ¹É÷›ÓµuïJ¶Ôïê,ÏŠ=û‘™áÎWÉ8NEZÏ8‹xL}2Ø?°´¼9¥£Àïr˜0Þ :t:%o_ȶÿ®“^y¤ö¯ | | | |
| 1081: x‚&g}ÐWÿÝ;ÖýL²·v.Q9á¥2Îtp´7œ-ŒIl‡ëÐö6CM«ª,ëðPÅ<6±“HOAÖúÀ›>!ë#3éÄb€Ö1ëg“k¸RS¼È‡nÏšºÅ2á ~úE¾é“÷|å=M–ÀÃ>²ß×ç²zzðÖüSÊ“£øÞ7Íq ½²Ú–m¾nêý‰Ó«µÿ–ïOø | | | |
| 1082: .røà÷âØØÞ$«8·&sù2ò_þ:Í|ÊjWV¥€ÃòI‚"Âx¾õlVrÊ×Á«å¦xhiÌ=Úx9øxC’¨yyáC¯'ÎÉyi:O‹™©+a™ï]+b·[=8¸ãµØžèçþ±T&ˆ®þ¿ Æ%Áï\¾{ Vb>ô:ÔÇzSï½oþ¿‹CS | | | |
| 1083: }ªÈ7hú2Žþ’¦ÝSY¦%ƒÀ[FRIáÿÇr¿o8a&Z™Ápè˜~’@©ÿ„zúÖŸÂnüŸ1084: H‰¬WÛnãÈýýC?R»‡}'L€,’ 6yHäa&ÁÐRËæ¬D9$eÃÀ~|ªª›/¢dÆ`$YlU×åÔ©S¿¬Ÿ¾(ÆÙz·à‚%ðÞ,…f&±–l}X$ìañé¯ÿäì¡^¬’8IàÛ}Òš__£¦8¸åÊD,vUþàê˜ý ÿ.éKW7Åòßë¿-ÒØ¤pÅúÏ`²µ`½…CÞ8v\rí–IÄ–+5Žò‡²hN[|¦vd,Nå}‘×nË\UÑãŠ/¹ú§—<ðèÁ§/Ym,T?)xKúAGÅrýãRvױ⽓”ŽA"–+=âÛ ‹ûåŠGÇÍo,ßlN‡Ó¢Ü²#$‰¼Y ÊÈŠÇ<¥¬´†Ð$Ï03”…òx(Ê|ÏŠ²qÕ3|ð®Ù.•¶¡À'n“XZfLŠoJ3 | | | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 1109: | | | |
| 1106: ({@ÆdËd«»KÞ°h˜éBÞœyk’zº];]ŽÅ@i$Ä;„R|ˆŸ_Œ | | | |
| 1107: œ1108: §"?éåŠOºÛ#ÇÉ›"F¿1fÛ~ ±ÕÉFd’4â;bÕ©^µƒhÔ´iJ}Åù/é}½ÐKÆýÀ¸‡K1109: J|gÑ¡DÖQ{?æEžÓM:|0¹»— l‡ºÂEB§;J9~$:) | | | |
| 1110: =@ Œ77÷Q+5T9ö&ˆ¤¦îóKµÂAv2Ë”ªdª»ih¾`"Ü…r e«h\háS9[€^Úfì3WwŠ;/tçuËQ³€R.ŸÙ!¢º,Iñ¬_›¤¥T¥`1#RŸÆ~ J*ïk[vR¡Ud8‹FXY¡MÉ4fÙ:y0GX-0ê†þ¼pªïîQÀójèóNçëU1MÝÉf\R71ÀWs²êyÌÜÿ.j8ë’ÐMãíBOi:M!}Ñq/€¹ÖžDÞàúø|f„åmÞÜŒŽMC´ÜËon]Õª|âÎÊm2¦T {ÈDYWU]ŒÍÀã·,“ª½ÄPË%À¹â'§ÈÏ“©M¶øAXãw.æQ‡«rf¸LÒÀDàTulˆyÒ‹äîxÇc*UŽà*]bãP¬´¦¯¦ØVüÌMÞÌ|Öæ¹3X¶žøŒêeš`+yè%vÊ#aï°?Oc‰e)\*ëþªº”H6Øá£ÝNÉ¥†ÊÖZ4y÷Q î]U|šái®¿»l"Òf„HŽo~êu3òØlJå%oÌRÀS/«7ëÉ¢y¢»õ¯ª~>Óf‘¿(Þte:*Ϧ«žÔðª¨ÓÎMá*κç‹V°i¡ó¢Ï \\úÝíÂ0¢í0À’G\k탪#osR¬VÛƒëÛZ“Îf‘Â*îp¶§CÂ0ÄäÌCT&'½ÁCÀ¬³h0Í,¶±ð])e<“ | | | |
| 'yy' on a line without 'yyyy' found at line 1135: | | | |
| 1132: Z-U | | | |
| 1133: 'ù¹1134: Z-U–¾é–&üIYYúæ† ÎpRËŸ6å½a*¶d‰Ð'i*ÄFÖôÅq€>”‡V”›È¡/,šR3ŒêpÌß[Z@_˜‰ˆA裶èCy¿I0ú˜D"ôi𢡠O“èCyŸ2 OÆ ú¨ËßS™€>ê,@ʇšÜ`5ˆH„>i–6^'ÝÄWduˆ¡Œûc1«2™p(+•?®H’Ḳqñ“)!KKØô€aãú¤Ù´ñ¦ï€,e,d‰ò¡_i ËrlWÖ¾H–ä_“‘,É/‘e0·F–ÁR$Ë`é9²ºF–ºu@–á&²6k–6ÿ%ˆU#9æ<ó*Fd\Õ¬‘h¾É¾©Ú×µ«¥)&hõ¡ÐÚó¾Ö¡µoç2"Mù–ýM¹SßÙ²?‰å•ú]Ë#äýûÑ…‰•Gnö½[ÔN¯(Ð^ÏÿÄ‚ŒãP°(ïD,2]-ÑD±ÈâÝá-8iûù²?ÆËQ~¸¦jìUocHæ¶æð§p>ü=*Ž-TUõn¾¿ìyʳòíx8ùh¿ÙšŠúÁvõUßWCxN.^|Nãø´½nˆ n6ü«Þ×uà¿'ÎuÏ¿ª/ÇG^—óÁg|ïÆSµS_ç?Çñ÷4?¨ŽƒÜ£ºíœQê|÷sòXÏj§GÏ´ïùíñÄ;e¿;ŽŸÑZ˜Yõ0y~¨¬‘üü'À1135: H‰ŒW]sÛºüþx$;CRÔ§OiÒ´éKïܸ½×}€HHb• øßßÝ¢§Óñˆ¦(8سgÏâ/wï>e*QÇ»$U1þðo—DéFm÷i´Y«‡æ.V§»wû’¨“½[ÅQãýâ7i®®w¿ÇÞüw4mñ¬Â}PYî‚¢k‡¾«kSªpðË&мÆãÑô¦¼WaºÊêTº~§[]w'?ðÉôî>}¸Jõ||ÿá1ŒðßþÕ–¦WÃÙ`LjíØ\†ªkÃÕ6PC˜ì‚³Âÿ<ü¯’(Ù«‡w‹°“ÌEÍþý្]mzÝœ3á’XfH0nïp‘»$_G[`³Ë¢Äcƒ9ƒU>|] ˜Æiãµí>ZïøÚ¶d‚MuáJ¶¸¶¶’8&ZÝÒ`âr1ýªÁã | | | |
| 1136: ŸšxÔØ,¡|.—æ1ÄØ4ž«ÃU&“m0/¾m»Vj£»§0‰ñ.2Ñ(³àÈWÁTù~1žŒ °ÂæsÁr+Xúôg©ÛGÑ?[$ÑÊa˜¬Â>Ðm)pèŸö¦¨¬€É™ | | | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 1165: | | | |
| 1162: ;×·š"Õp¸d ³Ý•ò¦0õ1163: N+Z^ÆÂ'ݾb./ùRq.ÆÜµev.葦KC“mH·þnS=œÂ,WI¼³hn•Qô'†+?Ï^`"©PúO©^È^®QÍZL׸{Â@¦_]·†–öáéðêì/f³Bð\pôÉ้ÿø±Gÿþ§±§šûžŸ/’0Y•£ÇsݼFf7†m¯»‹Y+rüzâÃ^]¯m¨Î2pÜ¿C–îzuý8uv´b35á RÕ7L ·- —[á[‹åz´íݨÁUŠÂÐq@[†üRÌ&~ÜÀ9So˜²*œN‡³ñwå3¤¨&'0˜¹\È¿Õ>"BƩۣÀ{çª] cf»Iq‰ú‡yVSö®âo¹ãÊ#‚'‘#YsZÊßµ$Ö"ºP¥ƒQ€¼ˆ.ŸØüFï3€òLž)¼4‚î)ìªû¹1ÃŒáÄé[øÀŽ‹}ÌjT¡æÎH„Â)ÂË”÷Wüoçyíâ‡%p0:ÎÜmÄ]¿Í@pOÄQÖ_òíñr%p}3¥)¦†j | | | |
| 1164: Õ;@c¶²lYÊ£AîÒ)R:P9)ëy1…§¶”LjțȔS8P°-_I9/5ñ›0xg~Õ`x¢}Küœ|üH'urªuphÆúzm¨3âUÊø“kžxè!uä9yyyyáÔTDZÃé¦ï¸Ó£ï‘bÜÁ;„ Š%OüÁvÙì¶Aø ò<Ê@mXþ“r,ж§F#ôÔ#+1[YH)FÞ¾³»$%ÿ;Š,“ËÙ™o»ÎshÚÕ5™ßoîÇÞ´®úC›Z | | | |
| 1165: f¡>,»Þ–;€¡$,½8f†Q8<3œ|¸C‹?÷/î²2‚;$Œ,yáûe]5ïQh˜¢ýs„Á·ºÑÑÃô„#‰ÙàþwVJ—å`5t#V`1#õ,£~2?Px^tˆaª´æÅÕ²ÄLø¢ëÁæ¹ú®Mf‹€Ÿ#ÜÅuÒ9b‡ÚÄC…ƒõÁ´‚P$ü²Ä©z»Þ,²ü–?v^>¡|äs”vŸ„CòØ$Ÿœìš†Þ6üwÏx'ltÓŠ$˜1166: 9ÖkØxÄ^è(¿\ËM§gS––¢fCð-#AMmßÞDÃ#¨$4eF&öæIÿG/LÖFŸÇúÂÆäK®¹ŒÃ!Kápã°˜‹rï¯H%Ë5”ï’gºR@º{>¼‹“͒Ъ|kÄÙ:dÌBµ!OÕs±W•£è3îHM‡%!´ | | | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 1199: | | | |
| 1196: =@󎱉@Y0:áñ–?(þrkUæ–b¥\n30g/ó 02”‡ßšê]†Ãq騿Òqø4>Ûz™^.)Çãü4ÏÔ4¥M`w¾mZÛ7¦'Ñî¼I‡ÙüÃêç|2ˆ>¹P²/¦ÌðSã v>]:~ʪ+¾$¬®/rÓHJëœK²c®å|ÊM)á‚g’ðîbÑoO7°¶º¼ˆù!Ï¡´äË$àëü?z8ké)ÊÎè)ªZ+_áǪð9*ïÿq¶´mCù'^¯HÑÈ@Ôgçäl9¼FxT=ŸêꥮÞÝ¢ßhÏýÆE¿Àçb(´ñhü"}ƒèêÌ‘õnž‰S!Û¶j | | | |
| 1197: ®Š bv¡qƒR )£Zp9"*†—λ’îI¹1È—›UZDÁõ Zoôr`ÏÃé·¸{:† óv§áÏð0Ä}õu:ƒÄÃw[éûõºvJg»j+¡ ЬõŠéÝš\Ì-¸›ö¯-Ë™Ìú‘tw䨫ƒ1198: H‰”WÛvœ8ý‚ú=BO ‘·ÇN2Éš;ã™TgÜy ”\&¡ÀÊnçëgIPPWÏò*ŒÐÑÖ>G禷Ëůãly·à‚øÃ¿„û"b‚g~Š™Í"`ëů?s¶î^à<fËB¿‚-Ÿ·ÎG×ããë§À3Öï©Ã®]ž8¹8ý½Ë#Gm\:yO_Ë"¯\! ÓÐÔJ¹"p*¦w®:L‹Ý»ÖÑûäÆÎ’†7nÈvE’×ôVºÂ ßAoŽ+°ý÷ëòwè*®ó¸ŸH¶|W«OŒ.Ë{…@s‰u7®—8¬jÖÄ–USü`E^³oе$£ZÕ©ºW+öí…õXz§?«Õ·¼øáMÝ·MÅ vê4+U±î¾y®YY3—g·r½mLn,Çh³¥Ë9”–Й(k¦dð÷ÆàœèâEZËo4*öéÊ®ï`=@ÜiÒ`™¯ò‡¾|RÞCÞæÕ«öö™ópŸwÊÓÚTMóÀþtn®®þt߀'™ó|_÷„Û—õ¶ÙvÅ‹ëÅœ/ïþÅåïK|øˆßï€øÎ2ó3ã»f·_¶ZpV²…ꋃØÁ6ó)›S9f¬¥9Æ"f"ŒýLÆ,’æ…Hô¬Ašc]‡é ›-¶ÃÛŒ£,ö“[ÛÅQšN°íÒ´5c˜–ðÌ,ÉŒ7°ŠÅçÅÛåä„wî„Z0‰ýÈ8âßȘˆ¡È³¦qHlæËˆÌfÇ2¥qµ¸ûå@$4M‰W{ó³%e·d@=²Ëõp D´¦‡dG±ŸF&¦µÁ&©wºÂ~@T•ø!Ÿ;ˆí}#ðtf„(“ñ=øžFüÀne\2¢ÙeŽz¸Äa¢{†(áb¢»Û¨”tw®(C|(+RØ:¼ˆ¶}eâ£çŠƒÈ—1Ɖ$_íÉå¤öî„Õ4‰«IMÆüvÂ$œ‘Ç–Ä\ÞšKÌH›Œ$f›Îi"æ~ƒâŸÑÜŽ£ÌZf&o-@ „"‚›ùTÆž[â`½•ãë÷æy6·#¥›=%íŠ1Æy¨•‚’Ø[%gòZÉa“))9ˆì6B~1199: t¡ËÉ’ÁÙL‰ºu¾ØÜõÇ=ð½êж| >ûB—-°-8rNâ´+tRp³÷à†Gšqïw€ÃñÑÉé^÷÷±†®µ§‡;å¶Øö—ÈrêÄ$²F#“N2Óa<¦‡Ódw€ó¢oï…nxîÆ†GPÃÃ^G8ð“„É4 4q–0ö—‰.gŽ%<Þ:úÖr–ÜоLr2Õäu2ÖG{9¬‰%)ƒŒÅóa=°‘½cÍT«îT«êB™+Ð^òÙãÊ3 | | | |
| 1200: SÁ[ù+¹’E¥¾/L’ÛI®#²N2úÊô:Zˆ}FC¦{¾@K—l†¸s¼ê Gä]Ô&4žyƒÛêÝRéÁV´M×5Op298 0 obj<< /Length 4859 /Filter /FlateDecode >> stream | | | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 1201: | | | |
| 1198: H‰”WÛvœ8ý‚ú=BO ‘·ÇN2Éš;ã™TgÜy ”\&¡ÀÊnçëgIPPWÏò*ŒÐÑÖ>G禷Ëůãly·à‚øÃ¿„û"b‚g~Š™Í"`ëů?s¶î^à<fËB¿‚-Ÿ·ÎG×ããë§À3Öï©Ã®]ž8¹8ý½Ë#Gm\:yO_Ë"¯\! ÓÐÔJ¹"p*¦w®:L‹Ý»ÖÑûäÆÎ’†7nÈvE’×ôVºÂ ßAoŽ+°ý÷ëòwè*®ó¸ŸH¶|W«OŒ.Ë{…@s‰u7®—8¬jÖÄ–USü`E^³oе$£ZÕ©ºW+öí…õXz§?«Õ·¼øáMÝ·MÅ vê4+U±î¾y®YY3—g·r½mLn,Çh³¥Ë9”–Й(k¦dð÷ÆàœèâEZËo4*öéÊ®ï`=@ÜiÒ`™¯ò‡¾|RÞCÞæÕ«öö™ópŸwÊÓÚTMóÀþtn®®þt߀'™ó|_÷„Û—õ¶ÙvÅ‹ëÅœ/ïþÅåïK|øˆßï€øÎ2ó3ã»f·_¶ZpV²…ꋃØÁ6ó)›S9f¬¥9Æ"f"ŒýLÆ,’æ…Hô¬Ašc]‡é ›-¶ÃÛŒ£,ö“[ÛÅQšN°íÒ´5c˜–ðÌ,ÉŒ7°ŠÅçÅÛåä„wî„Z0‰ýÈ8âßȘˆ¡È³¦qHlæËˆÌfÇ2¥qµ¸ûå@$4M‰W{ó³%e·d@=²Ëõp D´¦‡dG±ŸF&¦µÁ&©wºÂ~@T•ø!Ÿ;ˆí}#ðtf„(“ñ=øžFüÀne\2¢ÙeŽz¸Äa¢{†(áb¢»Û¨”tw®(C|(+RØ:¼ˆ¶}eâ£çŠƒÈ—1Ɖ$_íÉå¤öî„Õ4‰«IMÆüvÂ$œ‘Ç–Ä\ÞšKÌH›Œ$f›Îi"æ~ƒâŸÑÜŽ£ÌZf&o-@ „"‚›ùTÆž[â`½•ãë÷æy6·#¥›=%íŠ1Æy¨•‚’Ø[%gòZÉa“))9ˆì6B~1199: t¡ËÉ’ÁÙL‰ºu¾ØÜõÇ=ð½êж| >ûB—-°-8rNâ´+tRp³÷à†Gšqïw€ÃñÑÉé^÷÷±†®µ§‡;å¶Øö—ÈrêÄ$²F#“N2Óa<¦‡Ódw€ó¢oï…nxîÆ†GPÃÃ^G8ð“„É4 4q–0ö—‰.gŽ%<Þ:úÖr–ÜоLr2Õäu2ÖG{9¬‰%)ƒŒÅóa=°‘½cÍT«îT«êB™+Ð^òÙãÊ3 | | | |
| 1200: SÁ[ù+¹’E¥¾/L’ÛI®#²N2úÊô:Zˆ}FC¦{¾@K—l†¸s¼ê Gä]Ô&4žyƒÛêÝRéÁV´M×5Op298 0 obj<< /Length 4859 /Filter /FlateDecode >> stream | | | |
| 1201: H‰ŒWM“£Fýúu¯„©¢ø:ìÅöŽc6:쉰Â{ØÙ’J;4€ºÝóëý2¤’z:&†FP•Tf¾|ùò§åìÇZH±ÜΤ!þáO*‹$SA‰åaŠÝìÇ_ÿb×Í ±|=[àNáîeö_oë§^k¾žL½~E½þÿ–ÿ†åÔZŽƒ,ƒåå/3¯÷—ÿ¿|2´¶/Wv³bëKå5þÖé"|y}y0Xú2ôŠUe„Ÿy2¾Ì½Î_`ùÉ—©w8mùÍtü¼ß7ÖåÞ×SQ÷e_ÒóÜkÚMYcYõê/þVè•0áýe6dµ Ý¡·nê®Ç>û«¬qˆ&»¸H‚H‰…dvö"·‡?4SⷦǷ¢èq“Ñ^:Ž”^áË„<“~§ø™{ÿÇaþ:¶Æ_dì–×Ñ™"Ú2>-D€ö›ÓІbµå7=…ॡwp(öjº`}B>c)¿oØë®<+vEåAªl2Â1QB¾xåöUàÔ‚Öšƒ©û¢/›: T.ì6D Kxë˜FÜ$ÊFâãå|ãLÒÛZCP#³ÏH‚Måj$Ð1Âæ«…M~~f¬|§Âˆ«uÅXÕ…ÙÙ*L$(ÑIòJ:æÓÛrE!Z€:©“rØlØcï·å'*-ÑͺܖkÛd(z©Çí«¦9r˜BnºCË‘J:dìáò5Ç6.íÈéôu¥¼•¿ÐÞ+]l3„iÈ—ÂfvGOØÊ3\_‘M.uîËÌ|/t™Û®ŠµgþòwhM3âE~²nÚÖ0j¸g¿“âr䑈³4Hï¤[ç(p‰e Õ9-[O¤;U¦ŽAÄMÄ6VÅ˾\<¹ôWÖÍÀöF§Œm{¥ûýÉí¢÷É-B‹tcpÜÐ÷î“[¤b‚n cÛ=>ˆP;IîZİާX¸ºgèŸKœüTÔHúilp‰·2ûâ¹D#ËŽà›!î¶½Jï€ÕJ½©^z1202: ´ÝJËÊÖl@í1ÕûYaã×dp„ž%Õ#bC–%ÑÅ®4T”]ßÙrCp²ËqFá¨â˜r¶,¶xJÀßþõh?rûôô4·Øä | | | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 1222: | | | |
| 1219: H‰¬WM“£Èýýêˆ<-šúàëàƒ;왵=‡°"|˜ñ–h5^Z »Ýóë÷e¢@i-1¢*«2óåË—›»‡Ï¡bó|'•ðð_Êh׋EW‡bs¸óÄþîáË¿¤Ø×wÎûjó_슻]žëEíF~R¾tíUn¬i¯³m×›Óz?è×ãé´>v£˜×+Zo]Æ\e_ÆÁîÚž«ÈÞæ¯wΟG'Á¼é^Lw¼p~•Œ½Q®2ÝÉô¤‚ص‚ÀÚÛý“o7u:ÝÀÇ2Ÿ|¡eÏ´ìo›;)2qGV< "²ŸÖ¯Ò»ç?Ý=n¬à(×DýñxR‘l7Ž}·‚Wjk,cÃf‹”mÞ±¼[?1{ã]gfc=>V=Mf;ûïwß‘;Ø_ËÛÿ³ùÇÙ1Z©K™ŽÑ | | | |
| 1220: ñ:wÏNmŸÁeÐiÍù±@÷cºáHXœ»~éÈkhšŒö5C&Rt™îu 2”á2ûK©Ò¾aÏ®1221: YšïjÆÃ|UáN”wrÑçÛ~%Ábà±_ÃÊïΕ‚mã5l¨gMÇL<–éÕ$ãZÍðÇŒã¹ñ@4rùÞQÀ¸ôŒ†D·îyÚÕz@Í…ª¸uo08ëDÓAEE¾QZÚ‚âÕ·3•öÀm£”ž§ewÞ§iÐdlGÐ#7\Ÿî}5pZI¾´çõ¥¹@¹óש@.1„VìÉ`p–!šig ªw*]µì‰ñ'žÔ}+&‰>1pá–Ö~·«OÉ´7Ü“ùµÒœg0'ãôTèxP]¿¿dÛ±]IÏ)é£ZI§JëcYìjÑ”"Û²¨›¤hD³Š´ä°ZûŽ8æ¯5Z…Èðk¿oÒ}•4ÄçËëm’§;ñô!híKJ_?¯"ç+V|ÃDN“R~àCW2vèàŽqº$éh(Þf7Ó§Ïeÿ±”Â)‰ñ+ó›:E雳yÉj49DÎsYášž¥r²šü~K‹,ÅžKzQoÇ<=à<-æÆ¤+|ÒGk2Y)Ï¡u»õ.iQÔMz¸X¸Këm•=!yÒ¤•ËþytÏXMò${>þwÖ¼ŠÙ‘²”ô©J), S«Èy£«%ô‘ãÍkŠáÂû^ˆ¬~ý”§Àð=›z,w)5ùÈ9R¨iWÙˆ’rõÌ £Eå1-ÖyYéÏᤠ)ÔÏ|,ÂöZl) | | | |
| 1222: Ëm¡m:>©Éøÿ2CÝV´^i | | | |
| 1223: ‘¦ÞgŸë QD$lžk ^ßý¨SC^‚dV75( | | | |
| 'yy' on a line without 'yyyy' found at line 1234: | | | |
| 1231: ‡Þœ´e2>žˆ`±«)rCm›F{˜çLêu7´6Älà6 | | | |
| 1232: k×m-5ÕçÍño®ÿõ@×SKÉñ–[PgæÑ¹´Y ïÆNp"M+jâ1.ëõ3ãþ¤×:*0ú‚¸UYI]uZù!p4é,®tÛ'.—T8g'úK'®¸\Ÿ8^6›ËZt¯[*OCTr{÷Ö¨/ JƒÞ4†¤©x2õ^wvhêË í¥Ï5`ëpÀðRk|†&š’XŒ¢„G1ŸÎ‘@ ¦> ~Ö½Ý VÚŽiŽX̘ô…öÚ%TJÙ$™lÜÓ+I+ɹ¦„™$¾Œi¿“mIÍèÊ$bUýëñTApáxÊŸH’CIâ›x¡êÌyüÜ;ïj׈å?€“©JPåh–éj••ò‰²ŒvöÈUUÙHÉå”íò ìçNQ“B)xõ̆JùŠzP«œ¡µý/À1233: H‰”WÛrÛÈýýÃ<)‹™ÁµRy°“¬“ìÆqÕ2yYç‡"$\¸1234: b-–Í](î~øô‹ÃÝ"B™‰e‰_—‡»_½OþB*/àg„gFï*ôćµ/µ÷¸§ç0V>~kýEê=Ðâ?~îýÙ¼ øTøXXñ8ÿðÕóÿ»üŒKÆQæì£7%uæ3½Â_>¾v¥Â Mç3¿úvjd§.hÇD,d%bù—;\0Œè‚Þrk„zÅŠ\‰IJΈ.!¦ä³™!À¾LyeWôEcFã/"¯§‡¨È/Ü*íŒ5Fû¦jÍZ¬žÅH£0²)¾WÍž4¼jCS{óÛÞ´¥›ÕÕ¦/ÚRÚëüEâmè1mQweQcPÑ NüÐ+é³ÂK]c׊NÑ®yÖ¸5¡¡Èy’GW | | | |
| 1235: §^¤½›5¯ÕëVõ¦1íH7C2 ºÀ–b¬ódÌ®jÄð<Œ¦ Är[âèX‘zÕiÝ~Øuýçä°M}¹FSŽûÞÚ²mÙ1°Òš&¦•];ŒE; | | | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 1241: | | | |
| 1238: £Ò!£.ˆy+ŒJgŒBÓL ½À§à-}ŠÌÈœTšï4D‡Ië¹!W%£@Îgžà0;Â!²¿DA¯»ëuÜÛø ¬K¼š0ª;PµîúðÝ•fJx#ŠM~‚©)8Úa0ã=v>âÕ†œ1Á¨¯¤7N0Êc!boIK&Þª+úõ¢éöHìµ-à}[vÍδCÁË‘z®ðÛ¾èÇßeh™¡®b¤'ØòXÌ¥S K‚¡K8;šŸ&Ö|ÔÿªXÕÏþ"q´œN=¹£hÌ<keÈ{I¬uñã7‰BƒSâTä›J3." | | | |
| 1239: å,•Â81240: œMžã¬'XcpV•auøÏyy_µCUŠšj·ƒ¦A/¸¾AuCWï 6îmñ¨4Ð3`!õ+-¨icc¡ÉÁ”-¶|*6$°+6¼E5‹8†9•’ÀÇÚ†™’XÝTAUG#ÛõEIFidgûÁ<}ôÙQ¤ «|F<ˆÏ”óK_{_Gé {ÉPÊAß°Emª²pÞ ì8I[zÊ(·Žæš‡` kš®)SsÎí9¯7}w>]K(Ž7þY*š!†aßPÒ\Iü(Nƒ‰EN"Î_Ÿ'~”ÄÄF1 4ŠdR<Ú]V€Up«)žc· ÿ©ÌK'©È%eaI aÅfug9ü#PÝ£,soÉQÆÄ¥+ª&CG\œ‡Ì83 | | | |
| 1241: £¥È˜áËÛÎÙ[·Eû6ØÛ!Êó {ëÓŒòt6ñmIIrïlúŸ®ì›eP/ö}¡q¬ðŽÃ”Úš†8;ÿ©¼°@*lÞâÜ€0ˆ“ã|¼I™€”Ùü‹„ÉeÀN˜kAÕSÎW | | | |
| 1242: ›,FfÍ|¿ÚT$ì‚i&¨K@—êó{N×Ä-Á‡ ê(g~Ç-Ub£8Íg>øëòNŠJÜå¼[Lt.E$Ip-˜p{s·ùÃÝÇå+ÚSñÜkiÕZZ ¼š'e/÷xqÊ6›ŸGHÆáù„¹¸Šj̽ÁPY—ôˆ~DWD%øyùwݘÞ6°²ÿ†X‚HåÜ, ßKýþ | | | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 1259: | | | |
| 1256: Vmkœ‡Ÿß½—Ô8¤†©ãlè-‡¥¤ÆÉÜ’’¢]€#ZR¯¬Ä¦x@E¥üÍ%}˪šçIµb„‰Û¡8Ÿ›ú[y*:Dã«Ð«+QŠ~[c¬úºoÅCÑRåøÃ‹0ßÎueÄ㋟LS<ò`ˆ8%¸»/'s§\ž;¥¤%|àÍ®tåÞï[Ó ;”\žFý5¼ô-ùCmÌé\6%•ãÅ–yboGI0ôÕ‘ÓœÊ | | | |
| 1257: ñ]ŠàÚ®¨º1258: =èf·m‰5†wcØ"ö%u/làÚ?g§ä½´Þ)N$±È“Ì˵ ƒ\O2ü~³’qD¹HÐ#)Tn¥*$Ô7fµÿÀ*‰]ªÃð§q„÷T½ôÔåÒ£@+g½gðy3"UĪ$“„³Y ¿z¿¢P…¨•ç¦`™‡Êûµ8ö¸FWÞw<åŸi|'±‘Š$‰¹\7eRr£å|6Œ«ëw0»×;¾cH‰¼iç{´d‰Æ¸Ì³ÒÔÕ‚°ÉÜn µË(PwÛÕh9éíáž&[¼½Ó4uóŽÛšP"täöñ·Ëó¡@Çýó>±‚‹ší|„³ | | | |
| 1259: FœÊK‹¸í,c1260: H‰ÔWÛŽãÆý‚ù‡~$³Cºo¼Ø | | | |
| 'yy' on a line without 'yyyy' found at line 1282: | | | |
| 1279: óáИŒ›¦é©¨òÅPe”T»‡ç‘[#|ˆB„I°/îAò¾œ’À¶mÓR€ˆšaq|aKI¦÷@HùÒ(*ò§øëñB¹?ìÙD×7eUöÏïN«n6{¸òãì<4(rXµícQêø“dX"ÈìØ?Û¥ñ0NÖ&žìœp›o;Èt'‹¶b¶%f6*¢§’`"©¼ | | | |
| 1280: |•$¤&®,‰M•*€yºÓõg´zÌO6„Gã\û‘#I¸«ÀM%"Zd¨A£Cu5Z{'å:Ï&³(Ù0DÝ‹jà¡h‹½% | | | |
| 1281: h)¹·Þ¯í˜„¶êSu×·àWDc×6{‡\ß“]ºóf˜•C•"|‡¶µDUî ÊÑôš¨Îï{¾ŽsmMÕ@Šaà²M[´Ïâˆ*ðG0,ùæC"–¤WÆ2Sš”:!…·XRý¹>ÙùöídâYðÅ@ÿÅéô„Û…iÊùÎâÕȘ$éä…ráš”œ¦¯^Óøï®É‰=ÖJ ä‰Ô‡cq4Ë¿Å$k OüØ[lîÀ˜÷‡®'ô±ÍõŽôœç¨s…îÄdr¾jÂóª£È,øz(êÅTú:ºd®Ö9ŠWk?¬1ºH›§19«¹×û2OI2K9Çô¾Ì2¦•)HCyYð+ŠÞâ¹ðU¿Hmò&ã:Ì›ã}wVÒ¹>î¼€`¥x䜼°„`¥RÂßdçŸàE§Sf$j*Ö˃Ò1ßmLônH´BÝ’—hfý–ÉNÅÍc¢§p禜:X±Ý‚²Á¥= h ¼j6EµÚàßñ€qÃr#`ìcƒÿàÇ’>üÜ\~¬x<üÄ—åß | | | |
| 1282: ü˜1ÇL)¦ç”"ÂÌÚ“6{.ê7}‹¹—uú–©1283: ýòuÏT’ôGÏêE]Ï6ú‘6“G|©<¸qÚ÷z¹ÇdÃBí– | | | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 1292: | | | |
| 1289: nű×徬o›z Ù>U7hÆÄ¹1290: 7HUdðÔ´_ȶìÞ§¶é›MS‰ÿÿ¶mW65ý·]%‰Ê‚a©Ž7ÛÍô_®Ø$hr“àcYU¬Ñ¨ôØÛ#ulOl(Ã\³R…6ôbî¿1291: H‰ŒWÛrã6ýÿÁ¬É1292: ¢3z–Y{6¡Z”8o?&ÌC)åtŒðv§#WüL>ÙÿûZ0°N€‘Q$?2{"³¬î”¨Äy¡~EäÍW%ÂçòéìÝæ›»ïW×’7*[$?)n | | | |
| 1293: vQ'Fk×$â sQ4o£¥ÓE¿ú}–Ëç’¨[h™ˆgöO7ˆ5Îäý…j€yW«4à6}»UNUw«§Ny¥IN•üÞâ¿À‡Î¹B—ê14ç!áÝàCÅIÚ͵â3™;õ¾¦èÜQRôfT´ÁÑM%1ŠY_*ù2•ÜUÑ»SÉSNö›:ŠBµèß_ÑQÆA˜¿¥£s¸¢pY„j2ꪜfA¢Ã¹ÿÝ8…/â1áeiÎ65faàÆ«Ç+8IÎÆ+ˆ’Ç«íPTµ]‹¾Úêb¨ÚÃ2 t0^éÍ | | | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 1426: | | | |
| 1423: ]6nâ[…K_×ñÂtQû×ðDD¢w¾÷ëÎ@¡dïeúí•2^€p`ë2¥à”쮲R‘XpÄ€©(Z òÀTDýúŸH w$`^}W–.}½°4µlv`Y´ˆÍú˜vÕ:&¾éŒã \qæÿšn)Ý„£–K ºGÂEÈ—pœ§H+…3ÖuPNlÖpÞ1424: +|ЕҀ¸ži›ÒË¥ýÕ8Û^.%‘îûÌFÓ—/]Dñî½9™zo`Bu£^dú2ëáî˜fŒÒœCÅ0ø¬·&™UÞ0C7Ö0›‘ÝvßÙ̪ÐeýÕF¯d~ò5…§4}2ì,Æ>ˆû*V¨˜8ò¶÷Ú,$ »ÝZ‘jß῎©CYóß ÈeŽAóå8^I,!ùP—ÖbJS”c^ù¶*‹¦mMAãÍ—!ß—ÝÉ´X~ | | | |
| 1425: Q$œf(Ù¼(ÎÇ3HÆìJ€!Í>UÞõ@c’¦J=š'g°æçÓŽ`/yãVa`ÚÚ³CÛÝÄ·ÚäIê"’¨ŸF°]V†64˜1ÙËSYY»{Ó=~šÃ%¶Üy.*L*‹ýª¤Â`Ó‹A‹ 4'Ð1ch K1Ðá4»WvF0>¤Ù=!ƒŽÆ•†ˆ½ EÖ2H‘çk~Ää_ySGL1426: \úöØÖíã(:ÊuY ’Êühœv©r‡@j¤E¨B1þl7eJ€*[à˜ÀÖèVXÊ+ö²àhªCa(´¦ ¥y*M1ÄO1shµ/í‹×¯àýr•,N¸p ﳒ㳌ühDŒ±B†Á@Û,lNÍWÓ~+ùöXô{%¥ò"rKò8ŒÛ´M¹£7c | | | |
| 1427: Iï·”÷‰þ 7¥ïýD|iŠKËñØTv6:%Ë®g¨õ´Ú ‹ÁaQ§¡búéDJÄÐ}α©3y¿žïôL»p&‘P8øm¹ãî‰ÝüÍ«ÈÏo¥ýXßzû–Mg)è^Ç©›Žs2Mó«&‹ß² C6É«ÙüÏua9U | | | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 1434: | | | |
| 1431: >MDœg̸6>Ÿ×†Ê’ .æ®ÞôIeêŠyÜ5ž¸LS’ÿé@,oº¡@PòWžü‹dÄr¾òÝe:Õw+™Hà8þåíÅ–0zÂã(¾»¿“ˆ»(Ѝ9ãBRò E÷ðݾÛüp÷ú~îLŒž;³üž5ÿé|ÒïVæ‘ºÒø+!ò‚Ëù›¢Yäœ!T6b}…šþ,:z 8Æ)@¤,vâŠÿ°3–—öOãÞÿw@õ•î€õ&{Qvtmý¨×aiZBQ]vb¥7m§·e³Ç©¶¼|d‘³o$Cò_¦#Ì¢ÙØœ÷“ضGý¨»s¬Ê½²•o +d¾ôî;ýhÚC_?-xp7Ò¥h;²¾î§ 6<„/ÁºÚ6æ÷ƒîŪìqø±"«qê#Ðût˜QûËÈëLó |zäRˆЫ÷ø]¹ÿ†ïñ±2ûçZGŸŒ®×L¥Øš‡-ìmWåÊÔfx-íÆwÞ5¬èºcmúªìÖôÑñ³òÎØ¸Ä¯LÔôèpÈ—C]·´w4'$uôŸGSýfÄÇ__ý;O>‹5bF^ÃQDµeýÐvf G·D;fÉ5}fï)lÅCû…K,›žÂÑÐZÞEkŸ¼‡ÃˆJ9Lôh騱'9ˆœÍª!wÄ”:ÛG¯J]³ÓâÁ<:%‚c6f› | | | |
| 1432: çû&”1433: Fb¼©"ò„{)²øº»@îS»…Ì4ÓJj7Å}{]ñºô InHÒSÊs倯šV@˜ì|ªÉ‰Sž¦/ôÌvÆ)CçÌÎÍ;ã4 ’l¶r97” J]‚ Âjz±Ó¶v–PYy:µ¦E | | | |
| 1434: |pAÛœØ^x÷Hƒ/!ºlmw‚¤iÖ=§ˆt–Š;ª¡²F{¢GækW=~ëüvn³„1435: ëéLÊ.„Õ™;@¡\áé?^K«mš¶Ñ»=že7V°š’ZÑ.yÌv´Ô;6U}`©nDºNÇØHÏ–ãObuöWnò¼¤G‡õ“«:‘*í"QÔŠp*t÷âĶëV.|¼SŒ±„Ý@üÝIqa6Nñ#ü‡õ5ÅÞ | | | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 1470: | | | |
| 1467: H‰ìVÛnã6ýýÃ<dbÙ$u5´ | | | |
| 1468: °í6‹,"è | | | |
| 1469: E8YYvhëbØò&Ånÿ½3”dKŽÛ- | | | |
| 1470: ô¥(Ð9×3gH~ŸX“k$$K*øÃ?é:c媱ç@RX–ÖäýG ËÅ~çÉʲ°åX†¼³l1BA’Zl›Õûm‘„0> 4*“kÕ8jtC·Ó%¡ÔÌZy¶îÙ·¥`c3:8úf2¸)k.–qÁ¶\:ìócΕbÀm%P§%·=6Úe©YЗ+á-÷ª±%}V$oÄ4.¹'Z*øCòáŽÉ&T‡t“îäâ$S³'»t„Ó¤1471: MÌz]mÚõ'½|203ÒWÐíé”ÕÀûŒý÷2i²¼˜²ÆFå§Ø>Wzóz7c3Ž¥@T¿sÎAåHѨPX‹ˆJ+•‹8¢4Ó¹.—€žOÂj43¬rÀæ47À£¬œ7 §ÕžÌõã~š¯IÏ“¡Ñ[<滬ÖéUΪö\ë¬F°AxÛ>ñÍ7AÈÐ7Æxhäð¯ÎŠÍ®3”\œ’£o^í?弌à72£¦B3h¶Ý¢ic‹îÖ”£ƒ¶³OVàSä>> endobj352 0 obj<< /Length 1173 /Filter /FlateDecode >> stream | | | |
| | | | |
| 1900 found at line 1494: | | | |
| 1491: H‰u“ÝnÜ …ŸÀï0—PãýóÞVU«ö6–zÑô‚Åã]T,ÀÙäí;ƒ“þ©ÑJà5æ;‡ñû®¸û¸ÝP¨júÑÔžªf‡¶©ö[覢†Kq÷é^Á%e]Õu)êJíöÐÝŠobhl”¥Ú | | | |
| 1492: +ÕAx>;Ž:ù°YE\Ìd³Z–'AÚF€$½ƒÑ.S™Ñ›¤j„—e+¤:Šd'ë.¤RÚG*÷zÆ¿GάËL–Pd³åð¬#V¹Îg^wò{÷…¼•ªR-tVk*[[mé¾·‰NØ€¹jwÁ7²“îóœ<D?!ÌÁì—@’£ öŒ=È£°ŽÇ{4)ƒ¨VlA„v=O¼ªö"]²ór°cÂð×¹jFb¸SûÂEÛל9%‰/EfŽà8–Ë;Yî¼í¤ªE%kÊ’þzµ#BbÙ#þ6-OT‚”ä='×,2>PÆ)ãvï | | | |
| 1493: Nï°Òeù@gÒuŸ—K¤'µƒù…—Ô#:¿Þf÷ùEàuŒË˜À€O3‹Î °]Í]ˆ4‹/bã§ ]¿f=¼–txËÙOóˆ´œ4yeÛÙ{¤36¿W\Bx†Þƒó ô0'°Ž.‚>ÛѦg¸Ùt¥kÆGë&ojñ˜s9e,n´lèDËÀ¡â“‰ûömÞRs#x‚ow$Cj—¿…5Ü›~Žð tþàFÔ1Áâ’•%ýãÞïr¸ŸçAš™çH±¹þAV¹ÕÚsÁcûW«m×Vû ‹&ùendstreamendobj364 0 obj<< /Type /ExtGState /SA false /OP false /HT /Default >> endobj365 0 obj<< /Type /Font /Subtype /Type1 /Name /F8 /Encoding 617 0 R /BaseFont /Times-Italic >> endobj366 0 obj<< /Type /Font /Subtype /Type1 /Name /F11 /Encoding 617 0 R /BaseFont /Times-Bold >> endobj367 0 obj<< /Type /ExtGState /SA false /OP false /HT /Default >> endobj368 0 obj588 endobj369 0 obj<< /Count 23 /Type /Outlines /First 370 0 R /Last 371 0 R >> endobj370 0 obj<< /Title (Abstract)/Parent 369 0 R /A 581 0 R /Next 578 0 R >> endobj371 0 obj<< /Title (Author\220s address)/Prev 372 0 R /Parent 369 0 R /A 373 0 R >> endobj372 0 obj<< /Title (Security considerations)/Next 371 0 R /Prev 374 0 R ! | | | |
| /Parent 369 0 R /A 375 0 R >> endobj373 0 obj<< /S /GoTo /D [ 359 0 R /XYZ -5 749 1 ] >> endobj374 0 obj<< /Title (Appendix I. Selected C-Language Program Listings)/Next 372 0 R /Prev 376 0 R /Parent 369 0 R /A 377 0 R /First 378 0 R /Last 379 0 R /Count -6 >> endobj375 0 obj<< /S /GoTo /D [ 359 0 R /XYZ -5 749 1 ] >> endobj376 0 obj<< /Title (Appendix H. Analysis of Errors and Correctness Principles)/Next 374 0 R /Prev 390 0 R /Parent 369 0 R /A 391 0 R /First 392 0 R /Last 393 0 R /Count -6 >> endobj377 0 obj<< /S /GoTo /D [ 341 0 R /XYZ -5 797 1 ] >> endobj378 0 obj<< /Title (I.1. Common Definitions and Variables)/A 389 0 R /Parent 374 0 R /Next 387 0 R >> endobj379 0 obj<< /Title (I.6. Subroutine to Compute Synchronization Distance)/A 380 0 R /Prev 381 0 R /Parent 374 0 R >> endobj380 0 obj<< /S /GoTo /D [ 356 0 R /XYZ -5 797 1 ] >> endobj381 0 obj<< /Title (I.5. Clock\205Combining Procedure)/A 382 0 R ! | | | |
| /Next 379 0 R /Prev 383 0 R /Parent 374 0 R >> endobj382 0 obj<< /S /GoTo /D [ 353 0 R /XYZ -5 503 1 ] >> endobj383 0 obj<< /Title (I.4. Clock\205Selection Algorithm)/A 384 0 R /Next 381 0 R /Prev 385 0 R /Parent 374 0 R >> endobj384 0 obj<< /S /GoTo /D [ 350 0 R /XYZ -5 503 1 ] >> endobj385 0 obj<< /Title (I.3. Interval Intersection Algorithm)/A 386 0 R /Next 383 0 R /Prev 387 0 R /Parent 374 0 R >> endobj386 0 obj<< /S /GoTo /D [ 347 0 R /XYZ -5 797 1 ] >> endobj387 0 obj<< /Title (I.2. Clock\205Filter Algorithm)/A 388 0 R /Next 385 0 R /Prev 378 0 R /Parent 374 0 R >> endobj388 0 obj<< /S /GoTo /D [ 344 0 R /XYZ -5 797 1 ] >> endobj389 0 obj<< /S /GoTo /D [ 341 0 R /XYZ -5 797 1 ] >> endobj390 0 obj<< /Title (Appendix G. Computer Clock Modelling and Analysis)/Next 376 0 R /Prev 404 0 R /Parent 369 0 R /A 405 0 R /First 406 0 R /Last 407 0 R /Count -6 >> endobj391 0 obj<< /S /GoTo /D [ 314 0 R /XYZ! | | | |
| -5 797 1 ] >> endobj392 0 obj<< /Title (H.1. Introduction)/A 403 0 R /Parent 376 0 R /Next 401 0 R >> endobj393 0 obj<< /Title (H.6. Correctness Principles)/A 394 0 R /Prev 395 0 R /Parent 376 0 R >> endobj394 0 obj<< /S /GoTo /D [ 332 0 R /XYZ -5 503 1 ] >> endobj395 0 obj<< /Title (H.5. Inherited Errors)/A 396 0 R /Next 393 0 R /Prev 397 0 R /Parent 376 0 R >> endobj396 0 obj<< /S /GoTo /D [ 326 0 R /XYZ -5 797 1 ] >> endobj397 0 obj<< /Title (H.4. Network Errors)/A 398 0 R /Next 395 0 R /Prev 399 0 R /Parent 376 0 R >> endobj398 0 obj<< /S /GoTo /D [ 323 0 R /XYZ -5 797 1 ] >> endobj399 0 obj<< /Title (H.3. Measurement Errors)/A 400 0 R /Next 397 0 R /Prev 401 0 R /Parent 376 0 R >> endobj400 0 obj<< /S /GoTo /D [ 320 0 R /XYZ -5 797 1 ] >> endobj401 0 obj<< /Title (H.2. Timestamp Errors)/A 402 0 R /Next 399 0 R /Prev 392 0 R /Parent 376 0 R >> endobj402 0 obj<< /S /GoTo /D [ 314 0 R /XYZ -5 ! | | | |
| 797 1 ] >> endobj403 0 obj<< /S /GoTo /D [ 314 0 R /XYZ -5 797 1 ] >> endobj404 0 obj<< /Title (Appendix F. The NTP Clock-Combining Algorithm)/Next 390 0 R /Prev 422 0 R /Parent 369 0 R /A 423 0 R /First 424 0 R /Last 425 0 R /Count -6 >> endobj405 0 obj<< /S /GoTo /D [ 278 0 R /XYZ -5 797 1 ] >> endobj406 0 obj<< /Title (G.1. Computer Clock Models)/A 417 0 R /Parent 390 0 R /Next 415 0 R /First 418 0 R /Last 419 0 R /Count -2 >> endobj407 0 obj<< /Title (G.6. The NTP Clock Model)/A 408 0 R /Prev 409 0 R /Parent 390 0 R >> endobj408 0 obj<< /S /GoTo /D [ 305 0 R /XYZ -5 503 1 ] >> endobj409 0 obj<< /Title (G.5. Adjusting PLL Bandwidth)/A 410 0 R /Next 407 0 R /Prev 411 0 R /Parent 390 0 R >> endobj410 0 obj<< /S /GoTo /D [ 302 0 R /XYZ -5 503 1 ] >> endobj411 0 obj<< /Title (G.4. Adjusting VCO Gain)/A 412 0 R /Next 409 0 R /Prev 413 0 R /Parent 390 0 R >> endobj412 0 obj<< /S /GoTo /D [ 302 0 R /XYZ! | | | |
| -5 797 1 ] >> endobj413 0 obj<< /Title (G.3. Parameter Management)/A 414 0 R /Next 411 0 R /Prev 415 0 R /Parent 390 0 R >> endobj414 0 obj<< /S /GoTo /D [ 299 0 R /XYZ -5 503 1 ] >> endobj415 0 obj<< /Title (G.2. Mathematical Model of the NTP Logical Clock)/A 416 0 R /Next 413 0 R /Prev 406 0 R /Parent 390 0 R >> endobj416 0 obj<< /S /GoTo /D [ 293 0 R /XYZ -5 503 1 ] >> endobj417 0 obj<< /S /GoTo /D [ 278 0 R /XYZ -5 797 1 ] >> endobj418 0 obj<< /Title (G.1.1. The Fuzzball Clock Model)/A 421 0 R /Parent 406 0 R /Next 419 0 R >> endobj419 0 obj<< /Title (G.1.2. The Unix Clock Model)/A 420 0 R /Prev 418 0 R /Parent 406 0 R >> endobj420 0 obj<< /S /GoTo /D [ 287 0 R /XYZ -5 797 1 ] >> endobj421 0 obj<< /S /GoTo /D [ 284 0 R /XYZ -5 797 1 ] >> endobj422 0 obj<< /Title (Appendix E. The NTP Timescale and its Chronometry)/Next 404 0 R /Prev 436 0 R /Parent 369 0 R /A 437 0 R /First 438 0 R /Last 439 0 R /C! | | | |
| ount -8 >> endobj423 0 obj<< /S /GoTo /D [ 260 0 R /XYZ -5 797 1 ] >> endobj424 0 obj<< /Title (F.1. Introduction)/A 435 0 R /Parent 404 0 R /Next 433 0 R >> endobj425 0 obj<< /Title (F.6. Clock-Combining Procedure)/A 426 0 R /Prev 427 0 R /Parent 404 0 R >> endobj426 0 obj<< /S /GoTo /D [ 272 0 R /XYZ -5 503 1 ] >> endobj427 0 obj<< /Title (F.5. Application to NTP)/A 428 0 R /Next 425 0 R /Prev 429 0 R /Parent 404 0 R >> endobj428 0 obj<< /S /GoTo /D [ 272 0 R /XYZ -5 797 1 ] >> endobj429 0 obj<< /Title (F.4. Development of a Composite Timescale)/A 430 0 R /Next 427 0 R /Prev 431 0 R /Parent 404 0 R >> endobj430 0 obj<< /S /GoTo /D [ 263 0 R /XYZ -5 503 1 ] >> endobj431 0 obj<< /Title (F.3. Clock Modelling)/A 432 0 R /Next 429 0 R /Prev 433 0 R /Parent 404 0 R >> endobj432 0 obj<< /S /GoTo /D [ 263 0 R /XYZ -5 797 1 ] >> endobj433 0 obj<< /Title (F.2. Determining Time and Frequency)/A 434 0 R /Nex! | | | |
| t 431 0 R /Prev 424 0 R /Parent 404 0 R >> endobj434 0 obj<< /S /GoTo /D [ 260 0 R /XYZ -5 797 1 ] >> endobj435 0 obj<< /S /GoTo /D [ 260 0 R /XYZ -5 797 1 ] >> endobj436 0 obj<< /Title (Appendix D. Differences from Previous Versions)/Next 422 0 R /Prev 454 0 R /Parent 369 0 R /A 455 0 R >> endobj437 0 obj<< /S /GoTo /D [ 230 0 R /XYZ -5 797 1 ] >> endobj438 0 obj<< /Title (E.1. Introduction)/A 453 0 R /Parent 422 0 R /Next 451 0 R >> endobj439 0 obj<< /Title (E.8. The NTP Timescale and Reckoning with UTC)/A 440 0 R /Prev 441 0 R /Parent 422 0 R >> endobj440 0 obj<< /S /GoTo /D [ 254 0 R /XYZ -5 797 1 ] >> endobj441 0 obj<< /Title (E.7. Determination of Time and Leap Seconds)/A 442 0 R /Next 439 0 R /Prev 443 0 R /Parent 422 0 R >> endobj442 0 obj<< /S /GoTo /D [ 248 0 R /XYZ -5 503 1 ] >> endobj443 0 obj<< /Title (E.6. Determination of Frequency)/A 444 0 R /Next 441 0 R /Prev 445 0 R /Parent 422 0 R >! | | | |
| > endobj444 0 obj<< /S /GoTo /D [ 248 0 R /XYZ -5 797 1 ] >> endobj445 0 obj<< /Title (E.5. The Modified Julian Day System)/A 446 0 R /Next 443 0 R /Prev 447 0 R /Parent 422 0 R >> endobj446 0 obj<< /S /GoTo /D [ 245 0 R /XYZ -5 503 1 ] >> endobj447 0 obj<< /Title (E.4. Calendar Systems)/A 448 0 R /Next 445 0 R /Prev 449 0 R /Parent 422 0 R >> endobj448 0 obj<< /S /GoTo /D [ 242 0 R /XYZ -5 797 1 ] >> endobj449 0 obj<< /Title (E.3. Time and Frequency Dissemination)/A 450 0 R /Next 447 0 R /Prev 451 0 R /Parent 422 0 R >> endobj450 0 obj<< /S /GoTo /D [ 236 0 R /XYZ -5 797 1 ] >> endobj451 0 obj<< /Title (E.2. Primary Frequency and Time Standards)/A 452 0 R /Next 449 0 R /Prev 438 0 R /Parent 422 0 R >> endobj452 0 obj<< /S /GoTo /D [ 230 0 R /XYZ -5 503 1 ] >> endobj453 0 obj<< /S /GoTo /D [ 230 0 R /XYZ -5 797 1 ] >> endobj454 0 obj<< /Title (Appendix C. Authentication Issues)/Next 436 0 R /Prev 456! | | | |
| 0 R /Parent 369 0 R /A 457 0 R /First 458 0 R /Last 459 0 R /Count -2 >> endobj455 0 obj<< /S /GoTo /D [ 216 0 R /XYZ -5 797 1 ] >> endobj456 0 obj<< /Title (Appendix B. NTP Control Messages)/Next 454 0 R /Prev 468 0 R /Parent 369 0 R /A 469 0 R /First 470 0 R /Last 471 0 R /Count -3 >> endobj457 0 obj<< /S /GoTo /D [ 201 0 R /XYZ -5 797 1 ] >> endobj458 0 obj<< /Title (C.1. NTP Authentication Mechanism)/A 467 0 R /Parent 454 0 R /Next 459 0 R >> endobj459 0 obj<< /Title (C.2. NTP Authentication Procedures)/Count -3 /Last 460 0 R /First 461 0 R /A 462 0 R /Prev 458 0 R /Parent 454 0 R >> endobj460 0 obj<< /Title (C.2.3. Control-Message Procedures)/A 466 0 R /Prev 464 0 R /Parent 459 0 R >> endobj461 0 obj<< /Title (C.2.1. Encrypt Procedure)/A 463 0 R /Parent 459 0 R /Next 464 0 R >> endobj462 0 obj<< /S /GoTo /D [ 207 0 R /XYZ -5 503 1 ] >> endobj463 0 obj<< /S /GoTo /D [ 207 0 R /XYZ -5 503 1 ] >> ! | | | |
| endobj464 0 obj<< /Title (C.2.2. Decrypt Procedure)/A 465 0 R /Next 460 0 R /Prev 461 0 R /Parent 459 0 R >> endobj465 0 obj<< /S /GoTo /D [ 210 0 R /XYZ -5 797 1 ] >> endobj466 0 obj<< /S /GoTo /D [ 213 0 R /XYZ -5 797 1 ] >> endobj467 0 obj<< /S /GoTo /D [ 204 0 R /XYZ -5 797 1 ] >> endobj468 0 obj<< /Title (Appendix A. NTP Data Format - Version 3)/Next 456 0 R /Prev 484 0 R /Parent 369 0 R /A 485 0 R >> endobj469 0 obj<< /S /GoTo /D [ 177 0 R /XYZ -4 796 1.25 ] >> endobj470 0 obj<< /Title (B.1. NTP Control Message Format)/A 483 0 R /Parent 456 0 R /Next 473 0 R >> endobj471 0 obj<< /Title (B.3. Commands)/A 472 0 R /Prev 473 0 R /Parent 456 0 R >> endobj472 0 obj<< /S /GoTo /D [ 195 0 R /XYZ -4 796 1.25 ] >> endobj473 0 obj<< /Title (B.2. Status Words)/Count -4 /Last 474 0 R /First 475 0 R /A 476 0 R /Next 471 0 R /Prev 470 0 R /Parent 456 0 R >> endobj474 0 obj<< /Title (B.2.4. Error Status Word)! | | | |
| /A 482 0 R /Prev 480 0 R /Parent 473 0 R >> endobj475 0 obj<< /Title (B.2.1. System Status Word)/A 477 0 R /Parent 473 0 R /Next 478 0 R >> endobj476 0 obj<< /S /GoTo /D [ 186 0 R /XYZ -4 796 1.25 ] >> endobj477 0 obj<< /S /GoTo /D [ 186 0 R /XYZ -4 796 1.25 ] >> endobj478 0 obj<< /Title (B.2.2. Peer Status Word)/A 479 0 R /Next 480 0 R /Prev 475 0 R /Parent 473 0 R >> endobj479 0 obj<< /S /GoTo /D [ 189 0 R /XYZ -4 796 1.25 ] >> endobj480 0 obj<< /Title (B.2.3. Clock Status Word)/A 481 0 R /Next 474 0 R /Prev 478 0 R /Parent 473 0 R >> endobj481 0 obj<< /S /GoTo /D [ 192 0 R /XYZ -4 796 1.25 ] >> endobj482 0 obj<< /S /GoTo /D [ 192 0 R /XYZ -4 402 1.25 ] >> endobj483 0 obj<< /S /GoTo /D [ 180 0 R /XYZ -4 402 1.25 ] >> endobj484 0 obj<< /Title (7. References)/Next 468 0 R /Prev 486 0 R /Parent 369 0 R /A 487 0 R >> endobj485 0 obj<< /S /GoTo /D [ 168 0 R /XYZ -4 796 1.25 ] >> endobj486 0 obj<< ! | | | |
| /Title (6. Acknowledgments)/Next 484 0 R /Prev 488 0 R /Parent 369 0 R /A 489 0 R >> endobj487 0 obj<< /S /GoTo /D [ 156 0 R /XYZ -4 796 1.25 ] >> endobj488 0 obj<< /Title (5. Local Clocks)/Next 486 0 R /Prev 490 0 R /Parent 369 0 R /A 491 0 R /First 492 0 R /Last 493 0 R /Count -4 >> endobj489 0 obj<< /S /GoTo /D [ 153 0 R /XYZ -4 402 1.25 ] >> endobj490 0 obj<< /Title (4. Filtering and Selection Algorithms)/Next 488 0 R /Prev 500 0 R /Parent 369 0 R /A 501 0 R /First 502 0 R /Last 503 0 R /Count -2 >> endobj491 0 obj<< /S /GoTo /D [ 138 0 R /XYZ -4 402 1.25 ] >> endobj492 0 obj<< /Title (5.1. Fuzzball Implementation)/A 499 0 R /Parent 488 0 R /Next 497 0 R >> endobj493 0 obj<< /Title (5.4. Implementation Issues)/A 494 0 R /Prev 495 0 R /Parent 488 0 R >> endobj494 0 obj<< /S /GoTo /D [ 150 0 R /XYZ -4 402 1.25 ] >> endobj495 0 obj<< /Title (5.3. Step Phase Adjustments)/A 496 0 R /Next 493 0 R /Prev ! | | | |
| 497 0 R /Parent 488 0 R >> endobj496 0 obj<< /S /GoTo /D [ 147 0 R /XYZ -4 402 1.25 ] >> endobj497 0 obj<< /Title (5.2. Gradual Phase Adjustments)/A 498 0 R /Next 495 0 R /Prev 492 0 R /Parent 488 0 R >> endobj498 0 obj<< /S /GoTo /D [ 144 0 R /XYZ -4 796 1.25 ] >> endobj499 0 obj<< /S /GoTo /D [ 141 0 R /XYZ -4 796 1.25 ] >> endobj500 0 obj<< /Title (3. Network Time Protocol)/Next 490 0 R /Prev 510 0 R /Parent 369 0 R /A 511 0 R /First 512 0 R /Last 513 0 R /Count -6 >> endobj501 0 obj<< /S /GoTo /D [ 120 0 R /XYZ -4 796 1.25 ] >> endobj502 0 obj<< /Title (4.1. Clock-Filter Procedure)/A 509 0 R /Parent 490 0 R /Next 503 0 R >> endobj503 0 obj<< /Title (4.2. Clock-Selection Procedure)/A 504 0 R /Prev 502 0 R /Parent 490 0 R /First 505 0 R /Last 506 0 R /Count -2 >> endobj504 0 obj<< /S /GoTo /D [ 126 0 R /XYZ -4 402 1.25 ] >> endobj505 0 obj<< /Title (4.2.1. Intersection Algorithm)/A 508 0 R /Parent ! | | | |
| 503 0 R /Next 506 0 R >> endobj506 0 obj<< /Title (4.2.2. Clustering Algorithm)/A 507 0 R /Prev 505 0 R /Parent 503 0 R >> endobj507 0 obj<< /S /GoTo /D [ 132 0 R /XYZ -4 796 1.25 ] >> endobj508 0 obj<< /S /GoTo /D [ 126 0 R /XYZ -4 402 1.25 ] >> endobj509 0 obj<< /S /GoTo /D [ 123 0 R /XYZ -4 796 1.25 ] >> endobj510 0 obj<< /Title (2. System Architecture)/Next 500 0 R /Prev 564 0 R /Parent 369 0 R /A 565 0 R /First 566 0 R /Last 567 0 R /Count -2 >> endobj511 0 obj<< /S /GoTo /D [ 42 0 R /XYZ -4 406 1.25 ] >> endobj512 0 obj<< /Title (3.1. Data Formats)/A 563 0 R /Parent 500 0 R /Next 547 0 R >> endobj513 0 obj<< /Title (3.6. Access Control Issues)/A 514 0 R /Prev 515 0 R /Parent 500 0 R >> endobj514 0 obj<< /S /GoTo /D [ 117 0 R /XYZ -4 796 1.25 ] >> endobj515 0 obj<< /Title (3.5. Synchronization Distance Procedure)/A 516 0 R /Count 0 /Next 513 0 R /Prev 517 0 R /Parent 500 0 R >> endobj516 0 obj! | | | |
| << /S /GoTo /D [ 114 0 R /XYZ -4 402 1.25 ] >> endobj517 0 obj<< /Title (3.4. Event Processing)/A 518 0 R /Next 515 0 R /Prev 519 0 R /Parent 500 0 R /First 520 0 R /Last 521 0 R /Count -9 >> endobj518 0 obj<< /S /GoTo /D [ 75 0 R /XYZ -4 796 1.25 ] >> endobj519 0 obj<< /Title (3.3. Modes of Operation)/A 546 0 R /Next 517 0 R /Prev 547 0 R /Parent 500 0 R >> endobj520 0 obj<< /Title (3.4.1. Notation Conventions)/A 545 0 R /Next 543 0 R /Parent 517 0 R >> endobj521 0 obj<< /Title (3.4.9. Poll-Update Procedure)/A 522 0 R /Prev 523 0 R /Parent 517 0 R >> endobj522 0 obj<< /S /GoTo /D [ 114 0 R /XYZ -4 796 1.25 ] >> endobj523 0 obj<< /Title (3.4.8. Clear Procedure)/A 524 0 R /Next 521 0 R /Prev 525 0 R /Parent 517 0 R >> endobj524 0 obj<< /S /GoTo /D [ 111 0 R /XYZ -4 402 1.25 ] >> endobj525 0 obj<< /Title (3.4.7. Initialization Procedures)/A 526 0 R /Next 523 0 R /Prev 527 0 R /Parent 517 0 R /First 528 ! | | | |
| 0 R /Last 529 0 R /Count -4 >> endobj526 0 obj<< /S /GoTo /D [ 102 0 R /XYZ -4 402 1.25 ] >> endobj527 0 obj<< /Title (3.4.6. Primary-Clock Procedure)/A 536 0 R /Next 525 0 R /Prev 537 0 R /Parent 517 0 R >> endobj528 0 obj<< /Title (3.4.7.1. Initialization Procedure)/A 535 0 R /Parent 525 0 R /Count 0 /Next 533 0 R >> endobj529 0 obj<< /Title (3.4.7.4. Primary Clock-Instantiation Procedure)/A 530 0 R /Prev 531 0 R /Parent 525 0 R >> endobj530 0 obj<< /S /GoTo /D [ 111 0 R /XYZ -4 796 1.25 ] >> endobj531 0 obj<< /Title (3.4.7.3. Receive-Instantiation Procedure)/A 532 0 R /Next 529 0 R /Prev 533 0 R /Parent 525 0 R >> endobj532 0 obj<< /S /GoTo /D [ 108 0 R /XYZ -4 796 1.25 ] >> endobj533 0 obj<< /Title (3.4.7.2. Initialization-Instantiation Procedure)/A 534 0 R /Next 531 0 R /Prev 528 0 R /Parent 525 0 R >> endobj534 0 obj<< /S /GoTo /D [ 105 0 R /XYZ -4 402 1.25 ] >> endobj535 0 obj<< /S /GoTo /D [ 10! | | | |
| 5 0 R /XYZ -4 796 1.25 ] >> endobj536 0 obj<< /S /GoTo /D [ 102 0 R /XYZ -4 796 1.25 ] >> endobj537 0 obj<< /Title (3.4.5. Clock-Update Procedure)/A 538 0 R /Next 527 0 R /Prev 539 0 R /Parent 517 0 R >> endobj538 0 obj<< /S /GoTo /D [ 99 0 R /XYZ -4 796 1.25 ] >> endobj539 0 obj<< /Title (3.4.4. Packet Procedure)/A 540 0 R /Next 537 0 R /Prev 541 0 R /Parent 517 0 R >> endobj540 0 obj<< /S /GoTo /D [ 90 0 R /XYZ -4 402 1.25 ] >> endobj541 0 obj<< /Title (3.4.3. Receive Procedure)/A 542 0 R /Next 539 0 R /Prev 543 0 R /Parent 517 0 R >> endobj542 0 obj<< /S /GoTo /D [ 84 0 R /XYZ -4 402 1.25 ] >> endobj543 0 obj<< /Title (3.4.2. Transmit Procedure)/A 544 0 R /Next 541 0 R /Prev 520 0 R /Parent 517 0 R >> endobj544 0 obj<< /S /GoTo /D [ 78 0 R /XYZ -4 402 1.25 ] >> endobj545 0 obj<< /S /GoTo /D [ 75 0 R /XYZ -4 796 1.25 ] >> endobj546 0 obj<< /S /GoTo /D [ 69 0 R /XYZ -4 402 1.25 ] >> endobj547 0 o! | | | |
| bj<< /Title (3.2. State Variables and Parameters)/Count -7 /Last 548 0 R /First 549 0 R /A 550 0 R /Next 519 0 R /Prev 512 0 R /Parent 500 0 R >> endobj548 0 obj<< /Title (3.2.7. Parameters)/A 562 0 R /Prev 560 0 R /Parent 547 0 R >> endobj549 0 obj<< /Title (3.2.1. Common Variables)/A 551 0 R /Parent 547 0 R /Next 552 0 R >> endobj550 0 obj<< /S /GoTo /D [ 45 0 R /XYZ -4 402 1.25 ] >> endobj551 0 obj<< /S /GoTo /D [ 45 0 R /XYZ -4 402 1.25 ] >> endobj552 0 obj<< /Title (3.2.2. System Variables)/A 553 0 R /Next 554 0 R /Prev 549 0 R /Parent 547 0 R >> endobj553 0 obj<< /S /GoTo /D [ 54 0 R /XYZ -4 402 1.25 ] >> endobj554 0 obj<< /Title (3.2.3. Peer Variables)/A 555 0 R /Next 556 0 R /Prev 552 0 R /Parent 547 0 R >> endobj555 0 obj<< /S /GoTo /D [ 54 0 R /XYZ -4 402 1.25 ] >> endobj556 0 obj<< /Title (3.2.4. Packet Variables)/A 557 0 R /Next 558 0 R /Prev 554 0 R /Parent 547 0 R >> endobj557 0 obj<<! | | | |
| /S /GoTo /D [ 60 0 R /XYZ -4 402 1.25 ] >> endobj558 0 obj<< /Title (3.2.5. Clock-Filter Variables)/A 559 0 R /Next 560 0 R /Prev 556 0 R /Parent 547 0 R >> endobj559 0 obj<< /S /GoTo /D [ 60 0 R /XYZ -4 402 1.25 ] >> endobj560 0 obj<< /Title (3.2.6. Authentication Variables)/A 561 0 R /Next 548 0 R /Prev 558 0 R /Parent 547 0 R >> endobj561 0 obj<< /S /GoTo /D [ 63 0 R /XYZ -4 454 1.25 ] >> endobj562 0 obj<< /S /GoTo /D [ 63 0 R /XYZ -4 454 1.25 ] >> endobj563 0 obj<< /S /GoTo /D [ 42 0 R /XYZ -4 402 1.25 ] >> endobj564 0 obj<< /Title (1. Introduction)/Next 510 0 R /Prev 570 0 R /Parent 369 0 R /A 571 0 R /First 572 0 R /Last 572 0 R /Count -1 >> endobj565 0 obj<< /S /GoTo /D [ 30 0 R /XYZ -4 406 1.25 ] >> endobj566 0 obj<< /Title (2.1. Implementation Model)/A 569 0 R /Parent 510 0 R /Count 0 /Next 567 0 R >> endobj567 0 obj<< /Title (2.2. Network Configurations)/A 568 0 R /Prev 566 0 R /Parent 51! | | | |
| 0 0 R >> endobj568 0 obj<< /S /GoTo /D [ 39 0 R /XYZ -4 796 1.25 ] >> endobj569 0 obj<< /S /GoTo /D [ 36 0 R /XYZ -4 796 1.25 ] >> endobj570 0 obj<< /Title (List of Tables)/Next 564 0 R /Prev 574 0 R /Parent 369 0 R /A 575 0 R >> endobj571 0 obj<< /S /GoTo /D [ 21 0 R /XYZ -4 796 1.25 ] >> endobj572 0 obj<< /Title (1.1. Related Technology)/A 573 0 R /Parent 564 0 R >> endobj573 0 obj<< /S /GoTo /D [ 24 0 R /XYZ -4 796 1.25 ] >> endobj574 0 obj<< /Title (Table of Contents)/Next 570 0 R /Prev 576 0 R /Parent 369 0 R /A 577 0 R >> endobj575 0 obj<< /S /GoTo /D [ 15 0 R /XYZ -4 406 1.25 ] >> endobj576 0 obj<< /Title (Preface)/Next 574 0 R /Prev 578 0 R /Parent 369 0 R /A 579 0 R >> endobj577 0 obj<< /S /GoTo /D [ 9 0 R /XYZ -4 796 1.25 ] >> endobj578 0 obj<< /Title (Status of this Memo)/Next 576 0 R /Prev 370 0 R /Parent 369 0 R /A 580 0 R >> endobj579 0 obj<< /S /GoTo /D [ 1 0 R /XYZ -4 796 1.25 ! | | | |
| ] >> endobj580 0 obj<< /S /GoTo /D [ 613 0 R /XYZ -4 406 1.25 ] >> endobj581 0 obj<< /S /GoTo /D [ 613 0 R /XYZ -4 694 1.25 ] >> endobj582 0 obj<< /Type /Pages /Kids [ 595 0 R 594 0 R 602 0 R 608 0 R ] /Count 120 >> endobj583 0 obj<< /CreationDate (D:19980506142422)/Producer (Acrobat Distiller 3.0 for Power Macintosh)/ModDate (D:19980506173035)>> endobj584 0 obj<< /Type /Pages /Kids [ 15 0 R 18 0 R 21 0 R 24 0 R 27 0 R 30 0 R ] /Count 6 /Parent 595 0 R >> endobj585 0 obj<< /Type /Pages /Kids [ 613 0 R 1 0 R 4 0 R 9 0 R 12 0 R ] /Count 5 /Parent 595 0 R >> endobj586 0 obj<< /Type /Pages /Kids [ 153 0 R 156 0 R 159 0 R 162 0 R 165 0 R ] /Count 5 /Parent 594 0 R >> endobj587 0 obj<< /Type /Pages /Kids [ 138 0 R 141 0 R 144 0 R 147 0 R 150 0 R ] /Count 5 /Parent 594 0 R >> endobj588 0 obj<< /Type /Pages /Kids [ 123 0 R 126 0 R 129 0 R 132 0 R 135 0 R ] /Count 5 /Parent 594 0 R >> endobj589 0 obj<< /Type /Pages ! | | | |
| /Kids [ 108 0 R 111 0 R 114 0 R 117 0 R 120 0 R ] /Count 5 /Parent 594 0 R >> endobj590 0 obj<< /Type /Pages /Kids [ 93 0 R 96 0 R 99 0 R 102 0 R 105 0 R ] /Count 5 /Parent 594 0 R >> endobj591 0 obj<< /Type /Pages /Kids [ 78 0 R 81 0 R 84 0 R 87 0 R 90 0 R ] /Count 5 /Parent 595 0 R >> endobj592 0 obj<< /Type /Pages /Kids [ 63 0 R 66 0 R 69 0 R 72 0 R 75 0 R ] /Count 5 /Parent 595 0 R >> endobj593 0 obj<< /Type /Pages /Kids [ 48 0 R 51 0 R 54 0 R 57 0 R 60 0 R ] /Count 5 /Parent 595 0 R >> endobj594 0 obj<< /Type /Pages /Kids [ 590 0 R 589 0 R 588 0 R 587 0 R 586 0 R ] /Count 25 /Parent 582 0 R >> endobj595 0 obj<< /Type /Pages /Kids [ 585 0 R 584 0 R 596 0 R 593 0 R 592 0 R 591 0 R ] /Count 31 /Parent 582 0 R >> endobj596 0 obj<< /Type /Pages /Kids [ 33 0 R 36 0 R 39 0 R 42 0 R 45 0 R ] /Count 5 /Parent 595 0 R >> endobj597 0 obj<< /Type /Pages /Kids [ 168 0 R 171 0 R 174 0 R 177 0 R 180 0 R 183 0 R 186 0 R 189! | | | |
| 0 R 192 0 R ] /Count 9 /Parent 602 0 R >> endobj598 0 obj<< /Type /Pages /Kids [ 347 0 R 350 0 R 353 0 R 356 0 R 359 0 R ] /Count 5 /Parent 608 0 R >> endobj599 0 obj<< /Type /Pages /Kids [ 332 0 R 335 0 R 338 0 R 341 0 R 344 0 R ] /Count 5 /Parent 608 0 R >> endobj600 0 obj<< /Type /Pages /Kids [ 317 0 R 320 0 R 323 0 R 326 0 R 329 0 R ] /Count 5 /Parent 608 0 R >> endobj601 0 obj<< /Type /Pages /Kids [ 302 0 R 305 0 R 308 0 R 311 0 R 314 0 R ] /Count 5 /Parent 608 0 R >> endobj602 0 obj<< /Type /Pages /Kids [ 597 0 R 610 0 R 609 0 R 607 0 R 606 0 R 605 0 R 604 0 R ] /Count 39 /Parent 582 0 R >> endobj603 0 obj<< /Type /Pages /Kids [ 287 0 R 290 0 R 293 0 R 296 0 R 299 0 R ] /Count 5 /Parent 608 0 R >> endobj604 0 obj<< /Type /Pages /Kids [ 272 0 R 275 0 R 278 0 R 281 0 R 284 0 R ] /Count 5 /Parent 602 0 R >> endobj605 0 obj<< /Type /Pages /Kids [ 257 0 R 260 0 R 263 0 R 266 0 R 269 0 R ] /Count 5 /Parent 602! | | | |
| 0 R >> endobj606 0 obj<< /Type /Pages /Kids [ 242 0 R 245 0 R 248 0 R 251 0 R 254 0 R ] /Count 5 /Parent 602 0 R >> endobj607 0 obj<< /Type /Pages /Kids [ 225 0 R 230 0 R 233 0 R 236 0 R 239 0 R ] /Count 5 /Parent 602 0 R >> endobj608 0 obj<< /Type /Pages /Kids [ 603 0 R 601 0 R 600 0 R 599 0 R 598 0 R ] /Count 25 /Parent 582 0 R >> endobj609 0 obj<< /Type /Pages /Kids [ 210 0 R 213 0 R 216 0 R 219 0 R 222 0 R ] /Count 5 /Parent 602 0 R >> endobj610 0 obj<< /Type /Pages /Kids [ 195 0 R 198 0 R 201 0 R 204 0 R 207 0 R ] /Count 5 /Parent 602 0 R >> endobjxref0 611 0000000000 65535 f 0000005209 00000 n 0000005361 00000 n 0000005489 00000 n 0000008659 00000 n 0000008811 00000 n 0000008927 00000 n 0000008962 00000 n 0000008982 00000 n 0000009977 00000 n 0000010131 00000 n 0000010260 00000 n 0000011824 00000 n 0000011979 00000 n 0000012108 00000 n 0000014108 00000 n 0000014263 00000 n 0000014404 00000 n 0000016353 00000! | | | |
| n 0000016508 00000 n 0000016625 00000 n 0000017176 00000 n 0000017331 00000 n 0000017460 00000 n 0000021029 00000 n 0000021184 00000 n 0000021313 00000 n 0000024833 00000 n 0000024988 00000 n 0000025117 00000 n 0000028899 00000 n 0000029054 00000 n 0000029183 00000 n 0000032622 00000 n 0000032777 00000 n 0000032906 00000 n 0000036687 00000 n 0000036842 00000 n 0000036983 00000 n 0000040012 00000 n 0000040167 00000 n 0000040308 00000 n 0000043617 00000 n 0000043772 00000 n 0000043913 00000 n 0000047355 00000 n 0000047510 00000 n 0000047639 00000 n 0000051136 00000 n 0000051291 00000 n 0000051408 00000 n 0000053618 00000 n 0000053773 00000 n 0000053890 00000 n 0000056592 00000 n 0000056747 00000 n 0000056876 00000 n 0000059237 00000 n 0000059392 00000 n 0000059509 00000 n 0000061327 00000 n 0000061482 00000 n 0000061611 00000 n 0000063817 00000 n 0000063972 00000 n 0000064101 00000 n 0000066757 00000 n 0000066912 00000 n 0000067! | | | |
| 041 00000 n 0000069264 00000 n 0000069419 00000 n 0000069548 00000 n 0000072010 00000 n 0000072165 00000 n 0000072282 00000 n 0000075553 00000 n 0000075708 00000 n 0000075849 00000 n 0000079442 00000 n 0000079597 00000 n 0000079750 00000 n 0000082862 00000 n 0000083017 00000 n 0000083158 00000 n 0000086031 00000 n 0000086186 00000 n 0000086339 00000 n 0000089278 00000 n 0000089433 00000 n 0000089586 00000 n 0000091937 00000 n 0000092092 00000 n 0000092245 00000 n 0000094670 00000 n 0000094825 00000 n 0000094978 00000 n 0000098235 00000 n 0000098390 00000 n 0000098556 00000 n 0000102316 00000 n 0000102473 00000 n 0000102627 00000 n 0000105591 00000 n 0000105749 00000 n 0000105891 00000 n 0000109232 00000 n 0000109390 00000 n 0000109532 00000 n 0000112340 00000 n 0000112498 00000 n 0000112640 00000 n 0000114852 00000 n 0000115010 00000 n 0000115164 00000 n 0000118203 00000 n 0000118361 00000 n 0000118515 00000 n 0000121410 00000 n! | | | |
| 0000121568 00000 n 0000121710 00000 n 0000125190 00000 n 0000125348 00000 n 0000125502 00000 n 0000129592 00000 n 0000129750 00000 n 0000129904 00000 n 0000134315 00000 n 0000134473 00000 n 0000134627 00000 n 0000138619 00000 n 0000138777 00000 n 0000138931 00000 n 0000142760 00000 n 0000142918 00000 n 0000143072 00000 n 0000146737 00000 n 0000146895 00000 n 0000147049 00000 n 0000150709 00000 n 0000150867 00000 n 0000151021 00000 n 0000154069 00000 n 0000154227 00000 n 0000154381 00000 n 0000158273 00000 n 0000158431 00000 n 0000158585 00000 n 0000162040 00000 n 0000162198 00000 n 0000162352 00000 n 0000165746 00000 n 0000165904 00000 n 0000166034 00000 n 0000169598 00000 n 0000169756 00000 n 0000169886 00000 n 0000173358 00000 n 0000173516 00000 n 0000173658 00000 n 0000176995 00000 n 0000177153 00000 n 0000177283 00000 n 0000179935 00000 n 0000180093 00000 n 0000180223 00000 n 0000182911 00000 n 0000183069 00000 n 000018319! | | | |
| 9 00000 n 0000185078 00000 n 0000185236 00000 n 0000185366 00000 n 0000187503 00000 n 0000187661 00000 n 0000187779 00000 n 0000190001 00000 n 0000190159 00000 n 0000190277 00000 n 0000191024 00000 n 0000191182 00000 n 0000191312 00000 n 0000194731 00000 n 0000194889 00000 n 0000195019 00000 n 0000197861 00000 n 0000198019 00000 n 0000198137 00000 n 0000200068 00000 n 0000200226 00000 n 0000200356 00000 n 0000202725 00000 n 0000202883 00000 n 0000203025 00000 n 0000205046 00000 n 0000205204 00000 n 0000205334 00000 n 0000207525 00000 n 0000207683 00000 n 0000207813 00000 n 0000210511 00000 n 0000210669 00000 n 0000210787 00000 n 0000213452 00000 n 0000213610 00000 n 0000213740 00000 n 0000217215 00000 n 0000217373 00000 n 0000217503 00000 n 0000220703 00000 n 0000220861 00000 n 0000220991 00000 n 0000224064 00000 n 0000224222 00000 n 0000224364 00000 n 0000226883 00000 n 0000227041 00000 n 0000227183 00000 n 0000228479 00000 n ! | | | |
| 0000228738 00000 n 0000235208 00000 n 0000235231 00000 n 0000235389 00000 n 0000235519 00000 n 0000238905 00000 n 0000239063 00000 n 0000239181 00000 n 0000242414 00000 n 0000242572 00000 n 0000242690 00000 n 0000242729 00000 n 0000242751 00000 n 0000243753 00000 n 0000243911 00000 n 0000244053 00000 n 0000247884 00000 n 0000248042 00000 n 0000248172 00000 n 0000251458 00000 n 0000251616 00000 n 0000251746 00000 n 0000255254 00000 n 0000255412 00000 n 0000255542 00000 n 0000259095 00000 n 0000259253 00000 n 0000259383 00000 n 0000262864 00000 n 0000263022 00000 n 0000263152 00000 n 0000266585 00000 n 0000266743 00000 n 0000266885 00000 n 0000270795 00000 n 0000270953 00000 n 0000271071 00000 n 0000273673 00000 n 0000273831 00000 n 0000273961 00000 n 0000277654 00000 n 0000277812 00000 n 0000277930 00000 n 0000279990 00000 n 0000280148 00000 n 0000280290 00000 n 0000284222 00000 n 0000284380 00000 n 0000284534 00000 n 0000289532 ! | | | |
| 00000 n 0000289690 00000 n 0000289832 00000 n 0000295153 00000 n 0000295311 00000 n 0000295453 00000 n 0000299704 00000 n 0000299862 00000 n 0000300016 00000 n 0000303525 00000 n 0000303683 00000 n 0000303825 00000 n 0000305686 00000 n 0000305844 00000 n 0000305986 00000 n 0000309547 00000 n 0000309705 00000 n 0000309847 00000 n 0000313522 00000 n 0000313680 00000 n 0000313822 00000 n 0000317399 00000 n 0000317557 00000 n 0000317711 00000 n 0000321976 00000 n 0000322134 00000 n 0000322276 00000 n 0000325624 00000 n 0000325782 00000 n 0000325936 00000 n 0000328585 00000 n 0000328743 00000 n 0000328885 00000 n 0000333820 00000 n 0000333978 00000 n 0000334132 00000 n 0000338170 00000 n 0000338328 00000 n 0000338482 00000 n 0000342713 00000 n 0000342871 00000 n 0000343025 00000 n 0000346152 00000 n 0000346310 00000 n 0000346452 00000 n 0000351664 00000 n 0000351822 00000 n 0000351964 00000 n 0000354045 00000 n 0000354203 00000 n 00! | | | |
| 00354357 00000 n 0000357896 00000 n 0000358054 00000 n 0000358196 00000 n 0000363105 00000 n 0000363263 00000 n 0000363417 00000 n 0000368771 00000 n 0000368929 00000 n 0000369083 00000 n 0000373990 00000 n 0000374148 00000 n 0000374302 00000 n 0000378214 00000 n 0000378372 00000 n 0000378514 00000 n 0000383639 00000 n 0000383797 00000 n 0000383951 00000 n 0000388115 00000 n 0000388273 00000 n 0000388415 00000 n 0000392233 00000 n 0000392391 00000 n 0000392533 00000 n 0000395200 00000 n 0000395358 00000 n 0000395488 00000 n 0000397331 00000 n 0000397489 00000 n 0000397619 00000 n 0000399014 00000 n 0000399172 00000 n 0000399290 00000 n 0000400364 00000 n 0000400522 00000 n 0000400640 00000 n 0000401889 00000 n 0000402047 00000 n 0000402165 00000 n 0000403313 00000 n 0000403471 00000 n 0000403589 00000 n 0000404444 00000 n 0000404602 00000 n 0000404720 00000 n 0000405248 00000 n 0000405333 00000 n 0000406001 00000 n 0000406080 00! | | | |
| 000 n 0000406190 00000 n 0000406299 00000 n 0000406378 00000 n 0000406400 00000 n 0000406484 00000 n 0000406571 00000 n 0000406669 00000 n 0000406786 00000 n 0000406851 00000 n 0000407035 00000 n 0000407100 00000 n 0000407293 00000 n 0000407358 00000 n 0000407474 00000 n 0000407604 00000 n 0000407669 00000 n 0000407796 00000 n 0000407861 00000 n 0000407988 00000 n 0000408053 00000 n 0000408183 00000 n 0000408248 00000 n 0000408372 00000 n 0000408437 00000 n 0000408502 00000 n 0000408687 00000 n 0000408752 00000 n 0000408848 00000 n 0000408954 00000 n 0000409019 00000 n 0000409134 00000 n 0000409199 00000 n 0000409312 00000 n 0000409377 00000 n 0000409494 00000 n 0000409559 00000 n 0000409674 00000 n 0000409739 00000 n 0000409804 00000 n 0000409985 00000 n 0000410050 00000 n 0000410197 00000 n 0000410300 00000 n 0000410365 00000 n 0000410487 00000 n 0000410552 00000 n 0000410669 00000 n 0000410734 00000 n 0000410853 00000 n 0000! | | | |
| 410918 00000 n 0000411060 00000 n 0000411125 00000 n 0000411190 00000 n 0000411300 00000 n 0000411406 00000 n 0000411471 00000 n 0000411536 00000 n 0000411721 00000 n 0000411786 00000 n 0000411882 00000 n 0000411991 00000 n 0000412056 00000 n 0000412173 00000 n 0000412238 00000 n 0000412373 00000 n 0000412438 00000 n 0000412552 00000 n 0000412617 00000 n 0000412746 00000 n 0000412811 00000 n 0000412876 00000 n 0000413016 00000 n 0000413081 00000 n 0000413177 00000 n 0000413301 00000 n 0000413366 00000 n 0000413503 00000 n 0000413568 00000 n 0000413693 00000 n 0000413758 00000 n 0000413887 00000 n 0000413952 00000 n 0000414067 00000 n 0000414132 00000 n 0000414263 00000 n 0000414328 00000 n 0000414463 00000 n 0000414528 00000 n 0000414593 00000 n 0000414762 00000 n 0000414827 00000 n 0000414995 00000 n 0000415060 00000 n 0000415172 00000 n 0000415327 00000 n 0000415439 00000 n 0000415542 00000 n 0000415607 00000 n 0000415672 0000! | | | |
| 0 n 0000415790 00000 n 0000415855 00000 n 0000415920 00000 n 0000415985 00000 n 0000416118 00000 n 0000416186 00000 n 0000416296 00000 n 0000416388 00000 n 0000416456 00000 n 0000416609 00000 n 0000416712 00000 n 0000416816 00000 n 0000416884 00000 n 0000416952 00000 n 0000417069 00000 n 0000417137 00000 n 0000417255 00000 n 0000417323 00000 n 0000417391 00000 n 0000417459 00000 n 0000417566 00000 n 0000417634 00000 n 0000417746 00000 n 0000417814 00000 n 0000417965 00000 n 0000418033 00000 n 0000418206 00000 n 0000418274 00000 n 0000418381 00000 n 0000418486 00000 n 0000418554 00000 n 0000418675 00000 n 0000418743 00000 n 0000418867 00000 n 0000418935 00000 n 0000419003 00000 n 0000419163 00000 n 0000419231 00000 n 0000419337 00000 n 0000419488 00000 n 0000419556 00000 n 0000419664 00000 n 0000419770 00000 n 0000419838 00000 n 0000419906 00000 n 0000419974 00000 n 0000420132 00000 n 0000420199 00000 n 0000420295 00000 n 000042! | | | |
| 0400 00000 n 0000420468 00000 n 0000420611 00000 n 0000420679 00000 n 0000420836 00000 n 0000420903 00000 n 0000421020 00000 n 0000421126 00000 n 0000421233 00000 n 0000421301 00000 n 0000421417 00000 n 0000421485 00000 n 0000421653 00000 n 0000421721 00000 n 0000421845 00000 n 0000421967 00000 n 0000422092 00000 n 0000422160 00000 n 0000422294 00000 n 0000422362 00000 n 0000422503 00000 n 0000422571 00000 n 0000422639 00000 n 0000422707 00000 n 0000422830 00000 n 0000422897 00000 n 0000423014 00000 n 0000423081 00000 n 0000423199 00000 n 0000423266 00000 n 0000423385 00000 n 0000423452 00000 n 0000423519 00000 n 0000423586 00000 n 0000423757 00000 n 0000423853 00000 n 0000423955 00000 n 0000424022 00000 n 0000424089 00000 n 0000424206 00000 n 0000424273 00000 n 0000424388 00000 n 0000424455 00000 n 0000424572 00000 n 0000424639 00000 n 0000424762 00000 n 0000424829 00000 n 0000424954 00000 n 0000425021 00000 n 0000425088 00000 ! | | | |
| n 0000425155 00000 n 0000425306 00000 n 0000425373 00000 n 0000425487 00000 n 0000425593 00000 n 0000425660 00000 n 0000425727 00000 n 0000425835 00000 n 0000425902 00000 n 0000425989 00000 n 0000426056 00000 n 0000426167 00000 n 0000426234 00000 n 0000426335 00000 n 0000426401 00000 n 0000426514 00000 n 0000426580 00000 n 0000426648 00000 n 0000426716 00000 n 0000426810 00000 n 0000426950 00000 n 0000427069 00000 n 0000427179 00000 n 0000427296 00000 n 0000427413 00000 n 0000427530 00000 n 0000427647 00000 n 0000427761 00000 n 0000427873 00000 n 0000427985 00000 n 0000428097 00000 n 0000428215 00000 n 0000428341 00000 n 0000428453 00000 n 0000428603 00000 n 0000428720 00000 n 0000428837 00000 n 0000428954 00000 n 0000429071 00000 n 0000429205 00000 n 0000429322 00000 n 0000429439 00000 n 0000429556 00000 n 0000429673 00000 n 0000429790 00000 n 0000429908 00000 n 0000430025 00000 n trailer<</Size 611/ID[<a03dfa95deed8e70ade803! | | | |
| 2c3646cf9d><a03dfa95deed8e70ade8032c3646cf9d>]>>startxref173%%EOFÿ | | | |
| 2000 found at line 1494: | | | |
| 1491: H‰u“ÝnÜ …ŸÀï0—PãýóÞVU«ö6–zÑô‚Åã]T,ÀÙäí;ƒ“þ©ÑJà5æ;‡ñû®¸û¸ÝP¨júÑÔžªf‡¶©ö[覢†Kq÷é^Á%e]Õu)êJíöÐÝŠobhl”¥Ú | | | |
| 1492: +ÕAx>;Ž:ù°YE\Ìd³Z–'AÚF€$½ƒÑ.S™Ñ›¤j„—e+¤:Šd'ë.¤RÚG*÷zÆ¿GάËL–Pd³åð¬#V¹Îg^wò{÷…¼•ªR-tVk*[[mé¾·‰NØ€¹jwÁ7²“îóœ<D?!ÌÁì—@’£ öŒ=È£°ŽÇ{4)ƒ¨VlA„v=O¼ªö"]²ór°cÂð×¹jFb¸SûÂEÛל9%‰/EfŽà8–Ë;Yî¼í¤ªE%kÊ’þzµ#BbÙ#þ6-OT‚”ä='×,2>PÆ)ãvï | | | |
| 1493: Nï°Òeù@gÒuŸ—K¤'µƒù…—Ô#:¿Þf÷ùEàuŒË˜À€O3‹Î °]Í]ˆ4‹/bã§ ]¿f=¼–txËÙOóˆ´œ4yeÛÙ{¤36¿W\Bx†Þƒó ô0'°Ž.‚>ÛѦg¸Ùt¥kÆGë&ojñ˜s9e,n´lèDËÀ¡â“‰ûömÞRs#x‚ow$Cj—¿…5Ü›~Žð tþàFÔ1Áâ’•%ýãÞïr¸ŸçAš™çH±¹þAV¹ÕÚsÁcûW«m×Vû ‹&ùendstreamendobj364 0 obj<< /Type /ExtGState /SA false /OP false /HT /Default >> endobj365 0 obj<< /Type /Font /Subtype /Type1 /Name /F8 /Encoding 617 0 R /BaseFont /Times-Italic >> endobj366 0 obj<< /Type /Font /Subtype /Type1 /Name /F11 /Encoding 617 0 R /BaseFont /Times-Bold >> endobj367 0 obj<< /Type /ExtGState /SA false /OP false /HT /Default >> endobj368 0 obj588 endobj369 0 obj<< /Count 23 /Type /Outlines /First 370 0 R /Last 371 0 R >> endobj370 0 obj<< /Title (Abstract)/Parent 369 0 R /A 581 0 R /Next 578 0 R >> endobj371 0 obj<< /Title (Author\220s address)/Prev 372 0 R /Parent 369 0 R /A 373 0 R >> endobj372 0 obj<< /Title (Security considerations)/Next 371 0 R /Prev 374 0 R ! | | | |
| /Parent 369 0 R /A 375 0 R >> endobj373 0 obj<< /S /GoTo /D [ 359 0 R /XYZ -5 749 1 ] >> endobj374 0 obj<< /Title (Appendix I. Selected C-Language Program Listings)/Next 372 0 R /Prev 376 0 R /Parent 369 0 R /A 377 0 R /First 378 0 R /Last 379 0 R /Count -6 >> endobj375 0 obj<< /S /GoTo /D [ 359 0 R /XYZ -5 749 1 ] >> endobj376 0 obj<< /Title (Appendix H. Analysis of Errors and Correctness Principles)/Next 374 0 R /Prev 390 0 R /Parent 369 0 R /A 391 0 R /First 392 0 R /Last 393 0 R /Count -6 >> endobj377 0 obj<< /S /GoTo /D [ 341 0 R /XYZ -5 797 1 ] >> endobj378 0 obj<< /Title (I.1. Common Definitions and Variables)/A 389 0 R /Parent 374 0 R /Next 387 0 R >> endobj379 0 obj<< /Title (I.6. Subroutine to Compute Synchronization Distance)/A 380 0 R /Prev 381 0 R /Parent 374 0 R >> endobj380 0 obj<< /S /GoTo /D [ 356 0 R /XYZ -5 797 1 ] >> endobj381 0 obj<< /Title (I.5. Clock\205Combining Procedure)/A 382 0 R ! | | | |
| /Next 379 0 R /Prev 383 0 R /Parent 374 0 R >> endobj382 0 obj<< /S /GoTo /D [ 353 0 R /XYZ -5 503 1 ] >> endobj383 0 obj<< /Title (I.4. Clock\205Selection Algorithm)/A 384 0 R /Next 381 0 R /Prev 385 0 R /Parent 374 0 R >> endobj384 0 obj<< /S /GoTo /D [ 350 0 R /XYZ -5 503 1 ] >> endobj385 0 obj<< /Title (I.3. Interval Intersection Algorithm)/A 386 0 R /Next 383 0 R /Prev 387 0 R /Parent 374 0 R >> endobj386 0 obj<< /S /GoTo /D [ 347 0 R /XYZ -5 797 1 ] >> endobj387 0 obj<< /Title (I.2. Clock\205Filter Algorithm)/A 388 0 R /Next 385 0 R /Prev 378 0 R /Parent 374 0 R >> endobj388 0 obj<< /S /GoTo /D [ 344 0 R /XYZ -5 797 1 ] >> endobj389 0 obj<< /S /GoTo /D [ 341 0 R /XYZ -5 797 1 ] >> endobj390 0 obj<< /Title (Appendix G. Computer Clock Modelling and Analysis)/Next 376 0 R /Prev 404 0 R /Parent 369 0 R /A 405 0 R /First 406 0 R /Last 407 0 R /Count -6 >> endobj391 0 obj<< /S /GoTo /D [ 314 0 R /XYZ! | | | |
| -5 797 1 ] >> endobj392 0 obj<< /Title (H.1. Introduction)/A 403 0 R /Parent 376 0 R /Next 401 0 R >> endobj393 0 obj<< /Title (H.6. Correctness Principles)/A 394 0 R /Prev 395 0 R /Parent 376 0 R >> endobj394 0 obj<< /S /GoTo /D [ 332 0 R /XYZ -5 503 1 ] >> endobj395 0 obj<< /Title (H.5. Inherited Errors)/A 396 0 R /Next 393 0 R /Prev 397 0 R /Parent 376 0 R >> endobj396 0 obj<< /S /GoTo /D [ 326 0 R /XYZ -5 797 1 ] >> endobj397 0 obj<< /Title (H.4. Network Errors)/A 398 0 R /Next 395 0 R /Prev 399 0 R /Parent 376 0 R >> endobj398 0 obj<< /S /GoTo /D [ 323 0 R /XYZ -5 797 1 ] >> endobj399 0 obj<< /Title (H.3. Measurement Errors)/A 400 0 R /Next 397 0 R /Prev 401 0 R /Parent 376 0 R >> endobj400 0 obj<< /S /GoTo /D [ 320 0 R /XYZ -5 797 1 ] >> endobj401 0 obj<< /Title (H.2. Timestamp Errors)/A 402 0 R /Next 399 0 R /Prev 392 0 R /Parent 376 0 R >> endobj402 0 obj<< /S /GoTo /D [ 314 0 R /XYZ -5 ! | | | |
| 797 1 ] >> endobj403 0 obj<< /S /GoTo /D [ 314 0 R /XYZ -5 797 1 ] >> endobj404 0 obj<< /Title (Appendix F. The NTP Clock-Combining Algorithm)/Next 390 0 R /Prev 422 0 R /Parent 369 0 R /A 423 0 R /First 424 0 R /Last 425 0 R /Count -6 >> endobj405 0 obj<< /S /GoTo /D [ 278 0 R /XYZ -5 797 1 ] >> endobj406 0 obj<< /Title (G.1. Computer Clock Models)/A 417 0 R /Parent 390 0 R /Next 415 0 R /First 418 0 R /Last 419 0 R /Count -2 >> endobj407 0 obj<< /Title (G.6. The NTP Clock Model)/A 408 0 R /Prev 409 0 R /Parent 390 0 R >> endobj408 0 obj<< /S /GoTo /D [ 305 0 R /XYZ -5 503 1 ] >> endobj409 0 obj<< /Title (G.5. Adjusting PLL Bandwidth)/A 410 0 R /Next 407 0 R /Prev 411 0 R /Parent 390 0 R >> endobj410 0 obj<< /S /GoTo /D [ 302 0 R /XYZ -5 503 1 ] >> endobj411 0 obj<< /Title (G.4. Adjusting VCO Gain)/A 412 0 R /Next 409 0 R /Prev 413 0 R /Parent 390 0 R >> endobj412 0 obj<< /S /GoTo /D [ 302 0 R /XYZ! | | | |
| -5 797 1 ] >> endobj413 0 obj<< /Title (G.3. Parameter Management)/A 414 0 R /Next 411 0 R /Prev 415 0 R /Parent 390 0 R >> endobj414 0 obj<< /S /GoTo /D [ 299 0 R /XYZ -5 503 1 ] >> endobj415 0 obj<< /Title (G.2. Mathematical Model of the NTP Logical Clock)/A 416 0 R /Next 413 0 R /Prev 406 0 R /Parent 390 0 R >> endobj416 0 obj<< /S /GoTo /D [ 293 0 R /XYZ -5 503 1 ] >> endobj417 0 obj<< /S /GoTo /D [ 278 0 R /XYZ -5 797 1 ] >> endobj418 0 obj<< /Title (G.1.1. The Fuzzball Clock Model)/A 421 0 R /Parent 406 0 R /Next 419 0 R >> endobj419 0 obj<< /Title (G.1.2. The Unix Clock Model)/A 420 0 R /Prev 418 0 R /Parent 406 0 R >> endobj420 0 obj<< /S /GoTo /D [ 287 0 R /XYZ -5 797 1 ] >> endobj421 0 obj<< /S /GoTo /D [ 284 0 R /XYZ -5 797 1 ] >> endobj422 0 obj<< /Title (Appendix E. The NTP Timescale and its Chronometry)/Next 404 0 R /Prev 436 0 R /Parent 369 0 R /A 437 0 R /First 438 0 R /Last 439 0 R /C! | | | |
| ount -8 >> endobj423 0 obj<< /S /GoTo /D [ 260 0 R /XYZ -5 797 1 ] >> endobj424 0 obj<< /Title (F.1. Introduction)/A 435 0 R /Parent 404 0 R /Next 433 0 R >> endobj425 0 obj<< /Title (F.6. Clock-Combining Procedure)/A 426 0 R /Prev 427 0 R /Parent 404 0 R >> endobj426 0 obj<< /S /GoTo /D [ 272 0 R /XYZ -5 503 1 ] >> endobj427 0 obj<< /Title (F.5. Application to NTP)/A 428 0 R /Next 425 0 R /Prev 429 0 R /Parent 404 0 R >> endobj428 0 obj<< /S /GoTo /D [ 272 0 R /XYZ -5 797 1 ] >> endobj429 0 obj<< /Title (F.4. Development of a Composite Timescale)/A 430 0 R /Next 427 0 R /Prev 431 0 R /Parent 404 0 R >> endobj430 0 obj<< /S /GoTo /D [ 263 0 R /XYZ -5 503 1 ] >> endobj431 0 obj<< /Title (F.3. Clock Modelling)/A 432 0 R /Next 429 0 R /Prev 433 0 R /Parent 404 0 R >> endobj432 0 obj<< /S /GoTo /D [ 263 0 R /XYZ -5 797 1 ] >> endobj433 0 obj<< /Title (F.2. Determining Time and Frequency)/A 434 0 R /Nex! | | | |
| t 431 0 R /Prev 424 0 R /Parent 404 0 R >> endobj434 0 obj<< /S /GoTo /D [ 260 0 R /XYZ -5 797 1 ] >> endobj435 0 obj<< /S /GoTo /D [ 260 0 R /XYZ -5 797 1 ] >> endobj436 0 obj<< /Title (Appendix D. Differences from Previous Versions)/Next 422 0 R /Prev 454 0 R /Parent 369 0 R /A 455 0 R >> endobj437 0 obj<< /S /GoTo /D [ 230 0 R /XYZ -5 797 1 ] >> endobj438 0 obj<< /Title (E.1. Introduction)/A 453 0 R /Parent 422 0 R /Next 451 0 R >> endobj439 0 obj<< /Title (E.8. The NTP Timescale and Reckoning with UTC)/A 440 0 R /Prev 441 0 R /Parent 422 0 R >> endobj440 0 obj<< /S /GoTo /D [ 254 0 R /XYZ -5 797 1 ] >> endobj441 0 obj<< /Title (E.7. Determination of Time and Leap Seconds)/A 442 0 R /Next 439 0 R /Prev 443 0 R /Parent 422 0 R >> endobj442 0 obj<< /S /GoTo /D [ 248 0 R /XYZ -5 503 1 ] >> endobj443 0 obj<< /Title (E.6. Determination of Frequency)/A 444 0 R /Next 441 0 R /Prev 445 0 R /Parent 422 0 R >! | | | |
| > endobj444 0 obj<< /S /GoTo /D [ 248 0 R /XYZ -5 797 1 ] >> endobj445 0 obj<< /Title (E.5. The Modified Julian Day System)/A 446 0 R /Next 443 0 R /Prev 447 0 R /Parent 422 0 R >> endobj446 0 obj<< /S /GoTo /D [ 245 0 R /XYZ -5 503 1 ] >> endobj447 0 obj<< /Title (E.4. Calendar Systems)/A 448 0 R /Next 445 0 R /Prev 449 0 R /Parent 422 0 R >> endobj448 0 obj<< /S /GoTo /D [ 242 0 R /XYZ -5 797 1 ] >> endobj449 0 obj<< /Title (E.3. Time and Frequency Dissemination)/A 450 0 R /Next 447 0 R /Prev 451 0 R /Parent 422 0 R >> endobj450 0 obj<< /S /GoTo /D [ 236 0 R /XYZ -5 797 1 ] >> endobj451 0 obj<< /Title (E.2. Primary Frequency and Time Standards)/A 452 0 R /Next 449 0 R /Prev 438 0 R /Parent 422 0 R >> endobj452 0 obj<< /S /GoTo /D [ 230 0 R /XYZ -5 503 1 ] >> endobj453 0 obj<< /S /GoTo /D [ 230 0 R /XYZ -5 797 1 ] >> endobj454 0 obj<< /Title (Appendix C. Authentication Issues)/Next 436 0 R /Prev 456! | | | |
| 0 R /Parent 369 0 R /A 457 0 R /First 458 0 R /Last 459 0 R /Count -2 >> endobj455 0 obj<< /S /GoTo /D [ 216 0 R /XYZ -5 797 1 ] >> endobj456 0 obj<< /Title (Appendix B. NTP Control Messages)/Next 454 0 R /Prev 468 0 R /Parent 369 0 R /A 469 0 R /First 470 0 R /Last 471 0 R /Count -3 >> endobj457 0 obj<< /S /GoTo /D [ 201 0 R /XYZ -5 797 1 ] >> endobj458 0 obj<< /Title (C.1. NTP Authentication Mechanism)/A 467 0 R /Parent 454 0 R /Next 459 0 R >> endobj459 0 obj<< /Title (C.2. NTP Authentication Procedures)/Count -3 /Last 460 0 R /First 461 0 R /A 462 0 R /Prev 458 0 R /Parent 454 0 R >> endobj460 0 obj<< /Title (C.2.3. Control-Message Procedures)/A 466 0 R /Prev 464 0 R /Parent 459 0 R >> endobj461 0 obj<< /Title (C.2.1. Encrypt Procedure)/A 463 0 R /Parent 459 0 R /Next 464 0 R >> endobj462 0 obj<< /S /GoTo /D [ 207 0 R /XYZ -5 503 1 ] >> endobj463 0 obj<< /S /GoTo /D [ 207 0 R /XYZ -5 503 1 ] >> ! | | | |
| endobj464 0 obj<< /Title (C.2.2. Decrypt Procedure)/A 465 0 R /Next 460 0 R /Prev 461 0 R /Parent 459 0 R >> endobj465 0 obj<< /S /GoTo /D [ 210 0 R /XYZ -5 797 1 ] >> endobj466 0 obj<< /S /GoTo /D [ 213 0 R /XYZ -5 797 1 ] >> endobj467 0 obj<< /S /GoTo /D [ 204 0 R /XYZ -5 797 1 ] >> endobj468 0 obj<< /Title (Appendix A. NTP Data Format - Version 3)/Next 456 0 R /Prev 484 0 R /Parent 369 0 R /A 485 0 R >> endobj469 0 obj<< /S /GoTo /D [ 177 0 R /XYZ -4 796 1.25 ] >> endobj470 0 obj<< /Title (B.1. NTP Control Message Format)/A 483 0 R /Parent 456 0 R /Next 473 0 R >> endobj471 0 obj<< /Title (B.3. Commands)/A 472 0 R /Prev 473 0 R /Parent 456 0 R >> endobj472 0 obj<< /S /GoTo /D [ 195 0 R /XYZ -4 796 1.25 ] >> endobj473 0 obj<< /Title (B.2. Status Words)/Count -4 /Last 474 0 R /First 475 0 R /A 476 0 R /Next 471 0 R /Prev 470 0 R /Parent 456 0 R >> endobj474 0 obj<< /Title (B.2.4. Error Status Word)! | | | |
| /A 482 0 R /Prev 480 0 R /Parent 473 0 R >> endobj475 0 obj<< /Title (B.2.1. System Status Word)/A 477 0 R /Parent 473 0 R /Next 478 0 R >> endobj476 0 obj<< /S /GoTo /D [ 186 0 R /XYZ -4 796 1.25 ] >> endobj477 0 obj<< /S /GoTo /D [ 186 0 R /XYZ -4 796 1.25 ] >> endobj478 0 obj<< /Title (B.2.2. Peer Status Word)/A 479 0 R /Next 480 0 R /Prev 475 0 R /Parent 473 0 R >> endobj479 0 obj<< /S /GoTo /D [ 189 0 R /XYZ -4 796 1.25 ] >> endobj480 0 obj<< /Title (B.2.3. Clock Status Word)/A 481 0 R /Next 474 0 R /Prev 478 0 R /Parent 473 0 R >> endobj481 0 obj<< /S /GoTo /D [ 192 0 R /XYZ -4 796 1.25 ] >> endobj482 0 obj<< /S /GoTo /D [ 192 0 R /XYZ -4 402 1.25 ] >> endobj483 0 obj<< /S /GoTo /D [ 180 0 R /XYZ -4 402 1.25 ] >> endobj484 0 obj<< /Title (7. References)/Next 468 0 R /Prev 486 0 R /Parent 369 0 R /A 487 0 R >> endobj485 0 obj<< /S /GoTo /D [ 168 0 R /XYZ -4 796 1.25 ] >> endobj486 0 obj<< ! | | | |
| /Title (6. Acknowledgments)/Next 484 0 R /Prev 488 0 R /Parent 369 0 R /A 489 0 R >> endobj487 0 obj<< /S /GoTo /D [ 156 0 R /XYZ -4 796 1.25 ] >> endobj488 0 obj<< /Title (5. Local Clocks)/Next 486 0 R /Prev 490 0 R /Parent 369 0 R /A 491 0 R /First 492 0 R /Last 493 0 R /Count -4 >> endobj489 0 obj<< /S /GoTo /D [ 153 0 R /XYZ -4 402 1.25 ] >> endobj490 0 obj<< /Title (4. Filtering and Selection Algorithms)/Next 488 0 R /Prev 500 0 R /Parent 369 0 R /A 501 0 R /First 502 0 R /Last 503 0 R /Count -2 >> endobj491 0 obj<< /S /GoTo /D [ 138 0 R /XYZ -4 402 1.25 ] >> endobj492 0 obj<< /Title (5.1. Fuzzball Implementation)/A 499 0 R /Parent 488 0 R /Next 497 0 R >> endobj493 0 obj<< /Title (5.4. Implementation Issues)/A 494 0 R /Prev 495 0 R /Parent 488 0 R >> endobj494 0 obj<< /S /GoTo /D [ 150 0 R /XYZ -4 402 1.25 ] >> endobj495 0 obj<< /Title (5.3. Step Phase Adjustments)/A 496 0 R /Next 493 0 R /Prev ! | | | |
| 497 0 R /Parent 488 0 R >> endobj496 0 obj<< /S /GoTo /D [ 147 0 R /XYZ -4 402 1.25 ] >> endobj497 0 obj<< /Title (5.2. Gradual Phase Adjustments)/A 498 0 R /Next 495 0 R /Prev 492 0 R /Parent 488 0 R >> endobj498 0 obj<< /S /GoTo /D [ 144 0 R /XYZ -4 796 1.25 ] >> endobj499 0 obj<< /S /GoTo /D [ 141 0 R /XYZ -4 796 1.25 ] >> endobj500 0 obj<< /Title (3. Network Time Protocol)/Next 490 0 R /Prev 510 0 R /Parent 369 0 R /A 511 0 R /First 512 0 R /Last 513 0 R /Count -6 >> endobj501 0 obj<< /S /GoTo /D [ 120 0 R /XYZ -4 796 1.25 ] >> endobj502 0 obj<< /Title (4.1. Clock-Filter Procedure)/A 509 0 R /Parent 490 0 R /Next 503 0 R >> endobj503 0 obj<< /Title (4.2. Clock-Selection Procedure)/A 504 0 R /Prev 502 0 R /Parent 490 0 R /First 505 0 R /Last 506 0 R /Count -2 >> endobj504 0 obj<< /S /GoTo /D [ 126 0 R /XYZ -4 402 1.25 ] >> endobj505 0 obj<< /Title (4.2.1. Intersection Algorithm)/A 508 0 R /Parent ! | | | |
| 503 0 R /Next 506 0 R >> endobj506 0 obj<< /Title (4.2.2. Clustering Algorithm)/A 507 0 R /Prev 505 0 R /Parent 503 0 R >> endobj507 0 obj<< /S /GoTo /D [ 132 0 R /XYZ -4 796 1.25 ] >> endobj508 0 obj<< /S /GoTo /D [ 126 0 R /XYZ -4 402 1.25 ] >> endobj509 0 obj<< /S /GoTo /D [ 123 0 R /XYZ -4 796 1.25 ] >> endobj510 0 obj<< /Title (2. System Architecture)/Next 500 0 R /Prev 564 0 R /Parent 369 0 R /A 565 0 R /First 566 0 R /Last 567 0 R /Count -2 >> endobj511 0 obj<< /S /GoTo /D [ 42 0 R /XYZ -4 406 1.25 ] >> endobj512 0 obj<< /Title (3.1. Data Formats)/A 563 0 R /Parent 500 0 R /Next 547 0 R >> endobj513 0 obj<< /Title (3.6. Access Control Issues)/A 514 0 R /Prev 515 0 R /Parent 500 0 R >> endobj514 0 obj<< /S /GoTo /D [ 117 0 R /XYZ -4 796 1.25 ] >> endobj515 0 obj<< /Title (3.5. Synchronization Distance Procedure)/A 516 0 R /Count 0 /Next 513 0 R /Prev 517 0 R /Parent 500 0 R >> endobj516 0 obj! | | | |
| << /S /GoTo /D [ 114 0 R /XYZ -4 402 1.25 ] >> endobj517 0 obj<< /Title (3.4. Event Processing)/A 518 0 R /Next 515 0 R /Prev 519 0 R /Parent 500 0 R /First 520 0 R /Last 521 0 R /Count -9 >> endobj518 0 obj<< /S /GoTo /D [ 75 0 R /XYZ -4 796 1.25 ] >> endobj519 0 obj<< /Title (3.3. Modes of Operation)/A 546 0 R /Next 517 0 R /Prev 547 0 R /Parent 500 0 R >> endobj520 0 obj<< /Title (3.4.1. Notation Conventions)/A 545 0 R /Next 543 0 R /Parent 517 0 R >> endobj521 0 obj<< /Title (3.4.9. Poll-Update Procedure)/A 522 0 R /Prev 523 0 R /Parent 517 0 R >> endobj522 0 obj<< /S /GoTo /D [ 114 0 R /XYZ -4 796 1.25 ] >> endobj523 0 obj<< /Title (3.4.8. Clear Procedure)/A 524 0 R /Next 521 0 R /Prev 525 0 R /Parent 517 0 R >> endobj524 0 obj<< /S /GoTo /D [ 111 0 R /XYZ -4 402 1.25 ] >> endobj525 0 obj<< /Title (3.4.7. Initialization Procedures)/A 526 0 R /Next 523 0 R /Prev 527 0 R /Parent 517 0 R /First 528 ! | | | |
| 0 R /Last 529 0 R /Count -4 >> endobj526 0 obj<< /S /GoTo /D [ 102 0 R /XYZ -4 402 1.25 ] >> endobj527 0 obj<< /Title (3.4.6. Primary-Clock Procedure)/A 536 0 R /Next 525 0 R /Prev 537 0 R /Parent 517 0 R >> endobj528 0 obj<< /Title (3.4.7.1. Initialization Procedure)/A 535 0 R /Parent 525 0 R /Count 0 /Next 533 0 R >> endobj529 0 obj<< /Title (3.4.7.4. Primary Clock-Instantiation Procedure)/A 530 0 R /Prev 531 0 R /Parent 525 0 R >> endobj530 0 obj<< /S /GoTo /D [ 111 0 R /XYZ -4 796 1.25 ] >> endobj531 0 obj<< /Title (3.4.7.3. Receive-Instantiation Procedure)/A 532 0 R /Next 529 0 R /Prev 533 0 R /Parent 525 0 R >> endobj532 0 obj<< /S /GoTo /D [ 108 0 R /XYZ -4 796 1.25 ] >> endobj533 0 obj<< /Title (3.4.7.2. Initialization-Instantiation Procedure)/A 534 0 R /Next 531 0 R /Prev 528 0 R /Parent 525 0 R >> endobj534 0 obj<< /S /GoTo /D [ 105 0 R /XYZ -4 402 1.25 ] >> endobj535 0 obj<< /S /GoTo /D [ 10! | | | |
| 5 0 R /XYZ -4 796 1.25 ] >> endobj536 0 obj<< /S /GoTo /D [ 102 0 R /XYZ -4 796 1.25 ] >> endobj537 0 obj<< /Title (3.4.5. Clock-Update Procedure)/A 538 0 R /Next 527 0 R /Prev 539 0 R /Parent 517 0 R >> endobj538 0 obj<< /S /GoTo /D [ 99 0 R /XYZ -4 796 1.25 ] >> endobj539 0 obj<< /Title (3.4.4. Packet Procedure)/A 540 0 R /Next 537 0 R /Prev 541 0 R /Parent 517 0 R >> endobj540 0 obj<< /S /GoTo /D [ 90 0 R /XYZ -4 402 1.25 ] >> endobj541 0 obj<< /Title (3.4.3. Receive Procedure)/A 542 0 R /Next 539 0 R /Prev 543 0 R /Parent 517 0 R >> endobj542 0 obj<< /S /GoTo /D [ 84 0 R /XYZ -4 402 1.25 ] >> endobj543 0 obj<< /Title (3.4.2. Transmit Procedure)/A 544 0 R /Next 541 0 R /Prev 520 0 R /Parent 517 0 R >> endobj544 0 obj<< /S /GoTo /D [ 78 0 R /XYZ -4 402 1.25 ] >> endobj545 0 obj<< /S /GoTo /D [ 75 0 R /XYZ -4 796 1.25 ] >> endobj546 0 obj<< /S /GoTo /D [ 69 0 R /XYZ -4 402 1.25 ] >> endobj547 0 o! | | | |
| bj<< /Title (3.2. State Variables and Parameters)/Count -7 /Last 548 0 R /First 549 0 R /A 550 0 R /Next 519 0 R /Prev 512 0 R /Parent 500 0 R >> endobj548 0 obj<< /Title (3.2.7. Parameters)/A 562 0 R /Prev 560 0 R /Parent 547 0 R >> endobj549 0 obj<< /Title (3.2.1. Common Variables)/A 551 0 R /Parent 547 0 R /Next 552 0 R >> endobj550 0 obj<< /S /GoTo /D [ 45 0 R /XYZ -4 402 1.25 ] >> endobj551 0 obj<< /S /GoTo /D [ 45 0 R /XYZ -4 402 1.25 ] >> endobj552 0 obj<< /Title (3.2.2. System Variables)/A 553 0 R /Next 554 0 R /Prev 549 0 R /Parent 547 0 R >> endobj553 0 obj<< /S /GoTo /D [ 54 0 R /XYZ -4 402 1.25 ] >> endobj554 0 obj<< /Title (3.2.3. Peer Variables)/A 555 0 R /Next 556 0 R /Prev 552 0 R /Parent 547 0 R >> endobj555 0 obj<< /S /GoTo /D [ 54 0 R /XYZ -4 402 1.25 ] >> endobj556 0 obj<< /Title (3.2.4. Packet Variables)/A 557 0 R /Next 558 0 R /Prev 554 0 R /Parent 547 0 R >> endobj557 0 obj<<! | | | |
| /S /GoTo /D [ 60 0 R /XYZ -4 402 1.25 ] >> endobj558 0 obj<< /Title (3.2.5. Clock-Filter Variables)/A 559 0 R /Next 560 0 R /Prev 556 0 R /Parent 547 0 R >> endobj559 0 obj<< /S /GoTo /D [ 60 0 R /XYZ -4 402 1.25 ] >> endobj560 0 obj<< /Title (3.2.6. Authentication Variables)/A 561 0 R /Next 548 0 R /Prev 558 0 R /Parent 547 0 R >> endobj561 0 obj<< /S /GoTo /D [ 63 0 R /XYZ -4 454 1.25 ] >> endobj562 0 obj<< /S /GoTo /D [ 63 0 R /XYZ -4 454 1.25 ] >> endobj563 0 obj<< /S /GoTo /D [ 42 0 R /XYZ -4 402 1.25 ] >> endobj564 0 obj<< /Title (1. Introduction)/Next 510 0 R /Prev 570 0 R /Parent 369 0 R /A 571 0 R /First 572 0 R /Last 572 0 R /Count -1 >> endobj565 0 obj<< /S /GoTo /D [ 30 0 R /XYZ -4 406 1.25 ] >> endobj566 0 obj<< /Title (2.1. Implementation Model)/A 569 0 R /Parent 510 0 R /Count 0 /Next 567 0 R >> endobj567 0 obj<< /Title (2.2. Network Configurations)/A 568 0 R /Prev 566 0 R /Parent 51! | | | |
| 0 0 R >> endobj568 0 obj<< /S /GoTo /D [ 39 0 R /XYZ -4 796 1.25 ] >> endobj569 0 obj<< /S /GoTo /D [ 36 0 R /XYZ -4 796 1.25 ] >> endobj570 0 obj<< /Title (List of Tables)/Next 564 0 R /Prev 574 0 R /Parent 369 0 R /A 575 0 R >> endobj571 0 obj<< /S /GoTo /D [ 21 0 R /XYZ -4 796 1.25 ] >> endobj572 0 obj<< /Title (1.1. Related Technology)/A 573 0 R /Parent 564 0 R >> endobj573 0 obj<< /S /GoTo /D [ 24 0 R /XYZ -4 796 1.25 ] >> endobj574 0 obj<< /Title (Table of Contents)/Next 570 0 R /Prev 576 0 R /Parent 369 0 R /A 577 0 R >> endobj575 0 obj<< /S /GoTo /D [ 15 0 R /XYZ -4 406 1.25 ] >> endobj576 0 obj<< /Title (Preface)/Next 574 0 R /Prev 578 0 R /Parent 369 0 R /A 579 0 R >> endobj577 0 obj<< /S /GoTo /D [ 9 0 R /XYZ -4 796 1.25 ] >> endobj578 0 obj<< /Title (Status of this Memo)/Next 576 0 R /Prev 370 0 R /Parent 369 0 R /A 580 0 R >> endobj579 0 obj<< /S /GoTo /D [ 1 0 R /XYZ -4 796 1.25 ! | | | |
| ] >> endobj580 0 obj<< /S /GoTo /D [ 613 0 R /XYZ -4 406 1.25 ] >> endobj581 0 obj<< /S /GoTo /D [ 613 0 R /XYZ -4 694 1.25 ] >> endobj582 0 obj<< /Type /Pages /Kids [ 595 0 R 594 0 R 602 0 R 608 0 R ] /Count 120 >> endobj583 0 obj<< /CreationDate (D:19980506142422)/Producer (Acrobat Distiller 3.0 for Power Macintosh)/ModDate (D:19980506173035)>> endobj584 0 obj<< /Type /Pages /Kids [ 15 0 R 18 0 R 21 0 R 24 0 R 27 0 R 30 0 R ] /Count 6 /Parent 595 0 R >> endobj585 0 obj<< /Type /Pages /Kids [ 613 0 R 1 0 R 4 0 R 9 0 R 12 0 R ] /Count 5 /Parent 595 0 R >> endobj586 0 obj<< /Type /Pages /Kids [ 153 0 R 156 0 R 159 0 R 162 0 R 165 0 R ] /Count 5 /Parent 594 0 R >> endobj587 0 obj<< /Type /Pages /Kids [ 138 0 R 141 0 R 144 0 R 147 0 R 150 0 R ] /Count 5 /Parent 594 0 R >> endobj588 0 obj<< /Type /Pages /Kids [ 123 0 R 126 0 R 129 0 R 132 0 R 135 0 R ] /Count 5 /Parent 594 0 R >> endobj589 0 obj<< /Type /Pages ! | | | |
| /Kids [ 108 0 R 111 0 R 114 0 R 117 0 R 120 0 R ] /Count 5 /Parent 594 0 R >> endobj590 0 obj<< /Type /Pages /Kids [ 93 0 R 96 0 R 99 0 R 102 0 R 105 0 R ] /Count 5 /Parent 594 0 R >> endobj591 0 obj<< /Type /Pages /Kids [ 78 0 R 81 0 R 84 0 R 87 0 R 90 0 R ] /Count 5 /Parent 595 0 R >> endobj592 0 obj<< /Type /Pages /Kids [ 63 0 R 66 0 R 69 0 R 72 0 R 75 0 R ] /Count 5 /Parent 595 0 R >> endobj593 0 obj<< /Type /Pages /Kids [ 48 0 R 51 0 R 54 0 R 57 0 R 60 0 R ] /Count 5 /Parent 595 0 R >> endobj594 0 obj<< /Type /Pages /Kids [ 590 0 R 589 0 R 588 0 R 587 0 R 586 0 R ] /Count 25 /Parent 582 0 R >> endobj595 0 obj<< /Type /Pages /Kids [ 585 0 R 584 0 R 596 0 R 593 0 R 592 0 R 591 0 R ] /Count 31 /Parent 582 0 R >> endobj596 0 obj<< /Type /Pages /Kids [ 33 0 R 36 0 R 39 0 R 42 0 R 45 0 R ] /Count 5 /Parent 595 0 R >> endobj597 0 obj<< /Type /Pages /Kids [ 168 0 R 171 0 R 174 0 R 177 0 R 180 0 R 183 0 R 186 0 R 189! | | | |
| 0 R 192 0 R ] /Count 9 /Parent 602 0 R >> endobj598 0 obj<< /Type /Pages /Kids [ 347 0 R 350 0 R 353 0 R 356 0 R 359 0 R ] /Count 5 /Parent 608 0 R >> endobj599 0 obj<< /Type /Pages /Kids [ 332 0 R 335 0 R 338 0 R 341 0 R 344 0 R ] /Count 5 /Parent 608 0 R >> endobj600 0 obj<< /Type /Pages /Kids [ 317 0 R 320 0 R 323 0 R 326 0 R 329 0 R ] /Count 5 /Parent 608 0 R >> endobj601 0 obj<< /Type /Pages /Kids [ 302 0 R 305 0 R 308 0 R 311 0 R 314 0 R ] /Count 5 /Parent 608 0 R >> endobj602 0 obj<< /Type /Pages /Kids [ 597 0 R 610 0 R 609 0 R 607 0 R 606 0 R 605 0 R 604 0 R ] /Count 39 /Parent 582 0 R >> endobj603 0 obj<< /Type /Pages /Kids [ 287 0 R 290 0 R 293 0 R 296 0 R 299 0 R ] /Count 5 /Parent 608 0 R >> endobj604 0 obj<< /Type /Pages /Kids [ 272 0 R 275 0 R 278 0 R 281 0 R 284 0 R ] /Count 5 /Parent 602 0 R >> endobj605 0 obj<< /Type /Pages /Kids [ 257 0 R 260 0 R 263 0 R 266 0 R 269 0 R ] /Count 5 /Parent 602! | | | |
| 0 R >> endobj606 0 obj<< /Type /Pages /Kids [ 242 0 R 245 0 R 248 0 R 251 0 R 254 0 R ] /Count 5 /Parent 602 0 R >> endobj607 0 obj<< /Type /Pages /Kids [ 225 0 R 230 0 R 233 0 R 236 0 R 239 0 R ] /Count 5 /Parent 602 0 R >> endobj608 0 obj<< /Type /Pages /Kids [ 603 0 R 601 0 R 600 0 R 599 0 R 598 0 R ] /Count 25 /Parent 582 0 R >> endobj609 0 obj<< /Type /Pages /Kids [ 210 0 R 213 0 R 216 0 R 219 0 R 222 0 R ] /Count 5 /Parent 602 0 R >> endobj610 0 obj<< /Type /Pages /Kids [ 195 0 R 198 0 R 201 0 R 204 0 R 207 0 R ] /Count 5 /Parent 602 0 R >> endobjxref0 611 0000000000 65535 f 0000005209 00000 n 0000005361 00000 n 0000005489 00000 n 0000008659 00000 n 0000008811 00000 n 0000008927 00000 n 0000008962 00000 n 0000008982 00000 n 0000009977 00000 n 0000010131 00000 n 0000010260 00000 n 0000011824 00000 n 0000011979 00000 n 0000012108 00000 n 0000014108 00000 n 0000014263 00000 n 0000014404 00000 n 0000016353 00000! | | | |
| n 0000016508 00000 n 0000016625 00000 n 0000017176 00000 n 0000017331 00000 n 0000017460 00000 n 0000021029 00000 n 0000021184 00000 n 0000021313 00000 n 0000024833 00000 n 0000024988 00000 n 0000025117 00000 n 0000028899 00000 n 0000029054 00000 n 0000029183 00000 n 0000032622 00000 n 0000032777 00000 n 0000032906 00000 n 0000036687 00000 n 0000036842 00000 n 0000036983 00000 n 0000040012 00000 n 0000040167 00000 n 0000040308 00000 n 0000043617 00000 n 0000043772 00000 n 0000043913 00000 n 0000047355 00000 n 0000047510 00000 n 0000047639 00000 n 0000051136 00000 n 0000051291 00000 n 0000051408 00000 n 0000053618 00000 n 0000053773 00000 n 0000053890 00000 n 0000056592 00000 n 0000056747 00000 n 0000056876 00000 n 0000059237 00000 n 0000059392 00000 n 0000059509 00000 n 0000061327 00000 n 0000061482 00000 n 0000061611 00000 n 0000063817 00000 n 0000063972 00000 n 0000064101 00000 n 0000066757 00000 n 0000066912 00000 n 0000067! | | | |
| 041 00000 n 0000069264 00000 n 0000069419 00000 n 0000069548 00000 n 0000072010 00000 n 0000072165 00000 n 0000072282 00000 n 0000075553 00000 n 0000075708 00000 n 0000075849 00000 n 0000079442 00000 n 0000079597 00000 n 0000079750 00000 n 0000082862 00000 n 0000083017 00000 n 0000083158 00000 n 0000086031 00000 n 0000086186 00000 n 0000086339 00000 n 0000089278 00000 n 0000089433 00000 n 0000089586 00000 n 0000091937 00000 n 0000092092 00000 n 0000092245 00000 n 0000094670 00000 n 0000094825 00000 n 0000094978 00000 n 0000098235 00000 n 0000098390 00000 n 0000098556 00000 n 0000102316 00000 n 0000102473 00000 n 0000102627 00000 n 0000105591 00000 n 0000105749 00000 n 0000105891 00000 n 0000109232 00000 n 0000109390 00000 n 0000109532 00000 n 0000112340 00000 n 0000112498 00000 n 0000112640 00000 n 0000114852 00000 n 0000115010 00000 n 0000115164 00000 n 0000118203 00000 n 0000118361 00000 n 0000118515 00000 n 0000121410 00000 n! | | | |
| 0000121568 00000 n 0000121710 00000 n 0000125190 00000 n 0000125348 00000 n 0000125502 00000 n 0000129592 00000 n 0000129750 00000 n 0000129904 00000 n 0000134315 00000 n 0000134473 00000 n 0000134627 00000 n 0000138619 00000 n 0000138777 00000 n 0000138931 00000 n 0000142760 00000 n 0000142918 00000 n 0000143072 00000 n 0000146737 00000 n 0000146895 00000 n 0000147049 00000 n 0000150709 00000 n 0000150867 00000 n 0000151021 00000 n 0000154069 00000 n 0000154227 00000 n 0000154381 00000 n 0000158273 00000 n 0000158431 00000 n 0000158585 00000 n 0000162040 00000 n 0000162198 00000 n 0000162352 00000 n 0000165746 00000 n 0000165904 00000 n 0000166034 00000 n 0000169598 00000 n 0000169756 00000 n 0000169886 00000 n 0000173358 00000 n 0000173516 00000 n 0000173658 00000 n 0000176995 00000 n 0000177153 00000 n 0000177283 00000 n 0000179935 00000 n 0000180093 00000 n 0000180223 00000 n 0000182911 00000 n 0000183069 00000 n 000018319! | | | |
| 9 00000 n 0000185078 00000 n 0000185236 00000 n 0000185366 00000 n 0000187503 00000 n 0000187661 00000 n 0000187779 00000 n 0000190001 00000 n 0000190159 00000 n 0000190277 00000 n 0000191024 00000 n 0000191182 00000 n 0000191312 00000 n 0000194731 00000 n 0000194889 00000 n 0000195019 00000 n 0000197861 00000 n 0000198019 00000 n 0000198137 00000 n 0000200068 00000 n 0000200226 00000 n 0000200356 00000 n 0000202725 00000 n 0000202883 00000 n 0000203025 00000 n 0000205046 00000 n 0000205204 00000 n 0000205334 00000 n 0000207525 00000 n 0000207683 00000 n 0000207813 00000 n 0000210511 00000 n 0000210669 00000 n 0000210787 00000 n 0000213452 00000 n 0000213610 00000 n 0000213740 00000 n 0000217215 00000 n 0000217373 00000 n 0000217503 00000 n 0000220703 00000 n 0000220861 00000 n 0000220991 00000 n 0000224064 00000 n 0000224222 00000 n 0000224364 00000 n 0000226883 00000 n 0000227041 00000 n 0000227183 00000 n 0000228479 00000 n ! | | | |
| 0000228738 00000 n 0000235208 00000 n 0000235231 00000 n 0000235389 00000 n 0000235519 00000 n 0000238905 00000 n 0000239063 00000 n 0000239181 00000 n 0000242414 00000 n 0000242572 00000 n 0000242690 00000 n 0000242729 00000 n 0000242751 00000 n 0000243753 00000 n 0000243911 00000 n 0000244053 00000 n 0000247884 00000 n 0000248042 00000 n 0000248172 00000 n 0000251458 00000 n 0000251616 00000 n 0000251746 00000 n 0000255254 00000 n 0000255412 00000 n 0000255542 00000 n 0000259095 00000 n 0000259253 00000 n 0000259383 00000 n 0000262864 00000 n 0000263022 00000 n 0000263152 00000 n 0000266585 00000 n 0000266743 00000 n 0000266885 00000 n 0000270795 00000 n 0000270953 00000 n 0000271071 00000 n 0000273673 00000 n 0000273831 00000 n 0000273961 00000 n 0000277654 00000 n 0000277812 00000 n 0000277930 00000 n 0000279990 00000 n 0000280148 00000 n 0000280290 00000 n 0000284222 00000 n 0000284380 00000 n 0000284534 00000 n 0000289532 ! | | | |
| 00000 n 0000289690 00000 n 0000289832 00000 n 0000295153 00000 n 0000295311 00000 n 0000295453 00000 n 0000299704 00000 n 0000299862 00000 n 0000300016 00000 n 0000303525 00000 n 0000303683 00000 n 0000303825 00000 n 0000305686 00000 n 0000305844 00000 n 0000305986 00000 n 0000309547 00000 n 0000309705 00000 n 0000309847 00000 n 0000313522 00000 n 0000313680 00000 n 0000313822 00000 n 0000317399 00000 n 0000317557 00000 n 0000317711 00000 n 0000321976 00000 n 0000322134 00000 n 0000322276 00000 n 0000325624 00000 n 0000325782 00000 n 0000325936 00000 n 0000328585 00000 n 0000328743 00000 n 0000328885 00000 n 0000333820 00000 n 0000333978 00000 n 0000334132 00000 n 0000338170 00000 n 0000338328 00000 n 0000338482 00000 n 0000342713 00000 n 0000342871 00000 n 0000343025 00000 n 0000346152 00000 n 0000346310 00000 n 0000346452 00000 n 0000351664 00000 n 0000351822 00000 n 0000351964 00000 n 0000354045 00000 n 0000354203 00000 n 00! | | | |
| 00354357 00000 n 0000357896 00000 n 0000358054 00000 n 0000358196 00000 n 0000363105 00000 n 0000363263 00000 n 0000363417 00000 n 0000368771 00000 n 0000368929 00000 n 0000369083 00000 n 0000373990 00000 n 0000374148 00000 n 0000374302 00000 n 0000378214 00000 n 0000378372 00000 n 0000378514 00000 n 0000383639 00000 n 0000383797 00000 n 0000383951 00000 n 0000388115 00000 n 0000388273 00000 n 0000388415 00000 n 0000392233 00000 n 0000392391 00000 n 0000392533 00000 n 0000395200 00000 n 0000395358 00000 n 0000395488 00000 n 0000397331 00000 n 0000397489 00000 n 0000397619 00000 n 0000399014 00000 n 0000399172 00000 n 0000399290 00000 n 0000400364 00000 n 0000400522 00000 n 0000400640 00000 n 0000401889 00000 n 0000402047 00000 n 0000402165 00000 n 0000403313 00000 n 0000403471 00000 n 0000403589 00000 n 0000404444 00000 n 0000404602 00000 n 0000404720 00000 n 0000405248 00000 n 0000405333 00000 n 0000406001 00000 n 0000406080 00! | | | |
| 000 n 0000406190 00000 n 0000406299 00000 n 0000406378 00000 n 0000406400 00000 n 0000406484 00000 n 0000406571 00000 n 0000406669 00000 n 0000406786 00000 n 0000406851 00000 n 0000407035 00000 n 0000407100 00000 n 0000407293 00000 n 0000407358 00000 n 0000407474 00000 n 0000407604 00000 n 0000407669 00000 n 0000407796 00000 n 0000407861 00000 n 0000407988 00000 n 0000408053 00000 n 0000408183 00000 n 0000408248 00000 n 0000408372 00000 n 0000408437 00000 n 0000408502 00000 n 0000408687 00000 n 0000408752 00000 n 0000408848 00000 n 0000408954 00000 n 0000409019 00000 n 0000409134 00000 n 0000409199 00000 n 0000409312 00000 n 0000409377 00000 n 0000409494 00000 n 0000409559 00000 n 0000409674 00000 n 0000409739 00000 n 0000409804 00000 n 0000409985 00000 n 0000410050 00000 n 0000410197 00000 n 0000410300 00000 n 0000410365 00000 n 0000410487 00000 n 0000410552 00000 n 0000410669 00000 n 0000410734 00000 n 0000410853 00000 n 0000! | | | |
| 410918 00000 n 0000411060 00000 n 0000411125 00000 n 0000411190 00000 n 0000411300 00000 n 0000411406 00000 n 0000411471 00000 n 0000411536 00000 n 0000411721 00000 n 0000411786 00000 n 0000411882 00000 n 0000411991 00000 n 0000412056 00000 n 0000412173 00000 n 0000412238 00000 n 0000412373 00000 n 0000412438 00000 n 0000412552 00000 n 0000412617 00000 n 0000412746 00000 n 0000412811 00000 n 0000412876 00000 n 0000413016 00000 n 0000413081 00000 n 0000413177 00000 n 0000413301 00000 n 0000413366 00000 n 0000413503 00000 n 0000413568 00000 n 0000413693 00000 n 0000413758 00000 n 0000413887 00000 n 0000413952 00000 n 0000414067 00000 n 0000414132 00000 n 0000414263 00000 n 0000414328 00000 n 0000414463 00000 n 0000414528 00000 n 0000414593 00000 n 0000414762 00000 n 0000414827 00000 n 0000414995 00000 n 0000415060 00000 n 0000415172 00000 n 0000415327 00000 n 0000415439 00000 n 0000415542 00000 n 0000415607 00000 n 0000415672 0000! | | | |
| 0 n 0000415790 00000 n 0000415855 00000 n 0000415920 00000 n 0000415985 00000 n 0000416118 00000 n 0000416186 00000 n 0000416296 00000 n 0000416388 00000 n 0000416456 00000 n 0000416609 00000 n 0000416712 00000 n 0000416816 00000 n 0000416884 00000 n 0000416952 00000 n 0000417069 00000 n 0000417137 00000 n 0000417255 00000 n 0000417323 00000 n 0000417391 00000 n 0000417459 00000 n 0000417566 00000 n 0000417634 00000 n 0000417746 00000 n 0000417814 00000 n 0000417965 00000 n 0000418033 00000 n 0000418206 00000 n 0000418274 00000 n 0000418381 00000 n 0000418486 00000 n 0000418554 00000 n 0000418675 00000 n 0000418743 00000 n 0000418867 00000 n 0000418935 00000 n 0000419003 00000 n 0000419163 00000 n 0000419231 00000 n 0000419337 00000 n 0000419488 00000 n 0000419556 00000 n 0000419664 00000 n 0000419770 00000 n 0000419838 00000 n 0000419906 00000 n 0000419974 00000 n 0000420132 00000 n 0000420199 00000 n 0000420295 00000 n 000042! | | | |
| 0400 00000 n 0000420468 00000 n 0000420611 00000 n 0000420679 00000 n 0000420836 00000 n 0000420903 00000 n 0000421020 00000 n 0000421126 00000 n 0000421233 00000 n 0000421301 00000 n 0000421417 00000 n 0000421485 00000 n 0000421653 00000 n 0000421721 00000 n 0000421845 00000 n 0000421967 00000 n 0000422092 00000 n 0000422160 00000 n 0000422294 00000 n 0000422362 00000 n 0000422503 00000 n 0000422571 00000 n 0000422639 00000 n 0000422707 00000 n 0000422830 00000 n 0000422897 00000 n 0000423014 00000 n 0000423081 00000 n 0000423199 00000 n 0000423266 00000 n 0000423385 00000 n 0000423452 00000 n 0000423519 00000 n 0000423586 00000 n 0000423757 00000 n 0000423853 00000 n 0000423955 00000 n 0000424022 00000 n 0000424089 00000 n 0000424206 00000 n 0000424273 00000 n 0000424388 00000 n 0000424455 00000 n 0000424572 00000 n 0000424639 00000 n 0000424762 00000 n 0000424829 00000 n 0000424954 00000 n 0000425021 00000 n 0000425088 00000 ! | | | |
| n 0000425155 00000 n 0000425306 00000 n 0000425373 00000 n 0000425487 00000 n 0000425593 00000 n 0000425660 00000 n 0000425727 00000 n 0000425835 00000 n 0000425902 00000 n 0000425989 00000 n 0000426056 00000 n 0000426167 00000 n 0000426234 00000 n 0000426335 00000 n 0000426401 00000 n 0000426514 00000 n 0000426580 00000 n 0000426648 00000 n 0000426716 00000 n 0000426810 00000 n 0000426950 00000 n 0000427069 00000 n 0000427179 00000 n 0000427296 00000 n 0000427413 00000 n 0000427530 00000 n 0000427647 00000 n 0000427761 00000 n 0000427873 00000 n 0000427985 00000 n 0000428097 00000 n 0000428215 00000 n 0000428341 00000 n 0000428453 00000 n 0000428603 00000 n 0000428720 00000 n 0000428837 00000 n 0000428954 00000 n 0000429071 00000 n 0000429205 00000 n 0000429322 00000 n 0000429439 00000 n 0000429556 00000 n 0000429673 00000 n 0000429790 00000 n 0000429908 00000 n 0000430025 00000 n trailer<</Size 611/ID[<a03dfa95deed8e70ade803! | | | |
| 2c3646cf9d><a03dfa95deed8e70ade8032c3646cf9d>]>>startxref173%%EOFÿ | | | |
| | | | |
| +=+=+=+=+= File rfc1305.tar +=+=+=+=+= | | | |
| | | | |
| century found at line 95652: | | | |
| 95649: 890 844 13 ( ) SB | | | |
| 95650: -3 1 SJ | | | |
| 95651: 900 844 163 (century ) SB | | | |
| 95652: -3 1 SJ | | | |
| 95653: 1060 844 132 (began ) SB | | | |
| | | | |
| 1900 found at line 1108: | | | |
| 1105: 1849 1260 52 (ty ) SB | | | |
| 1106: -2 1 SJ | | | |
| 1107: 1900 1260 85 (and ) SB | | | |
| 1108: 1983 1260 130 (accura) SB | | | |
| 1109: 2113 1260 59 (cy.) SB | | | |
| | | | |
| 1900 found at line 1648: | | | |
| 1645: 1826 2319 74 (rect) SB | | | |
| 1646: 2 1 SJ | | | |
| 1647: 1900 2319 60 (ed ) SB | | | |
| 1648: 1962 2319 13 (i) SB | | | |
| 1649: 2 1 SJ | | | |
| | | | |
| 1900 found at line 20389: | | | |
| 20386: 1847 2417 52 (to ) SB | | | |
| 20387: 1 1 SJ | | | |
| 20388: 1900 2417 74 (the ) SB | | | |
| 20389: 1975 2417 67 (ord) SB | | | |
| 20390: 2042 2417 38 (er) SB | | | |
| | | | |
| 1900 found at line 24494: | | | |
| 24491: 1532 822 38 (y ) SB | | | |
| 24492: -2 1 SJ | | | |
| 24493: 1568 822 126 (1900. ) SB | | | |
| 24494: 1692 822 30 (T) SB | | | |
| 24495: -2 1 SJ | | | |
| | | | |
| 1900 found at line 24919: | | | |
| 24916: -2 1 SJ | | | |
| 24917: 1851 1505 51 (o, ) SB | | | |
| 24918: 1900 1505 64 (ind) SB | | | |
| 24919: 1964 1505 85 (icati) SB | | | |
| 24920: -1 1 SJ | | | |
| | | | |
| 1900 found at line 25051: | | | |
| 25048: 1239 1780 52 (to ) SB | | | |
| 25049: 7 1 SJ | | | |
| 25050: 1297 1780 113 (1900 ) SB | | | |
| 25051: 6 1 SJ | | | |
| 25052: 1417 1780 85 (and ) SB | | | |
| | | | |
| 1900 found at line 34713: | | | |
| 34710: -3 1 SJ | | | |
| 34711: 1857 1862 46 (is ) SB | | | |
| 34712: 1900 1862 13 (t) SB | | | |
| 34713: -3 1 SJ | | | |
| 34714: 1913 1862 60 (he ) SB | | | |
| | | | |
| 1900 found at line 37218: | | | |
| 37215: 1771 1412 132 (called ) SB | | | |
| 37216: -2 1 SJ | | | |
| 37217: 1900 1412 52 (to ) SB | | | |
| 37218: 1950 1412 16 (r) SB | | | |
| 37219: -3 1 SJ | | | |
| | | | |
| 1900 found at line 38508: | | | |
| 38505: 1613 1805 13 (/) SB | | | |
| 38506: 32 0 0 50 50 0 0 45 /Times-Roman /font32 ANSIFont font | | | |
| 38507: 222 1900 33 (If) SB | | | |
| 38508: -2 1 SJ | | | |
| 38509: 255 1900 13 ( ) SB | | | |
| | | | |
| 1900 found at line 38510: | | | |
| 38507: 222 1900 33 (If) SB | | | |
| 38508: -2 1 SJ | | | |
| 38509: 255 1900 13 ( ) SB | | | |
| 38510: 32 0 0 51 51 0 0 47 /Times-Italic /font31 ANSIFont font | | | |
| 38511: 266 1898 22 (e) SB | | | |
| | | | |
| 1900 found at line 38518: | | | |
| 38515: 32 0 0 50 50 0 0 45 /Times-Roman /font32 ANSIFont font | | | |
| 38516: -2 1 SJ | | | |
| 38517: 371 1900 13 ( ) SB | | | |
| 38518: -2 1 SJ | | | |
| 38519: 382 1900 74 (the ) SB | | | |
| | | | |
| 1900 found at line 38520: | | | |
| 38517: 371 1900 13 ( ) SB | | | |
| 38518: -2 1 SJ | | | |
| 38519: 382 1900 74 (the ) SB | | | |
| 38520: -2 1 SJ | | | |
| 38521: 454 1900 143 (packet ) SB | | | |
| | | | |
| 1900 found at line 38522: | | | |
| 38519: 382 1900 74 (the ) SB | | | |
| 38520: -2 1 SJ | | | |
| 38521: 454 1900 143 (packet ) SB | | | |
| 38522: -2 1 SJ | | | |
| 38523: 595 1900 46 (is ) SB | | | |
| | | | |
| 1900 found at line 38524: | | | |
| 38521: 454 1900 143 (packet ) SB | | | |
| 38522: -2 1 SJ | | | |
| 38523: 595 1900 46 (is ) SB | | | |
| 38524: 639 1900 20 (s) SB | | | |
| 38525: 659 1900 13 (i) SB | | | |
| | | | |
| 1900 found at line 38525: | | | |
| 38522: -2 1 SJ | | | |
| 38523: 595 1900 46 (is ) SB | | | |
| 38524: 639 1900 20 (s) SB | | | |
| 38525: 659 1900 13 (i) SB | | | |
| 38526: -2 1 SJ | | | |
| | | | |
| 1900 found at line 38526: | | | |
| 38523: 595 1900 46 (is ) SB | | | |
| 38524: 639 1900 20 (s) SB | | | |
| 38525: 659 1900 13 (i) SB | | | |
| 38526: -2 1 SJ | | | |
| 38527: 672 1900 116 (mply ) SB | | | |
| | | | |
| 1900 found at line 38528: | | | |
| 38525: 659 1900 13 (i) SB | | | |
| 38526: -2 1 SJ | | | |
| 38527: 672 1900 116 (mply ) SB | | | |
| 38528: 786 1900 105 (ignor) SB | | | |
| 38529: -1 1 SJ | | | |
| | | | |
| 1900 found at line 38529: | | | |
| 38526: -2 1 SJ | | | |
| 38527: 672 1900 116 (mply ) SB | | | |
| 38528: 786 1900 105 (ignor) SB | | | |
| 38529: -1 1 SJ | | | |
| 38530: 891 1900 60 (ed ) SB | | | |
| | | | |
| 1900 found at line 38531: | | | |
| 38528: 786 1900 105 (ignor) SB | | | |
| 38529: -1 1 SJ | | | |
| 38530: 891 1900 60 (ed ) SB | | | |
| 38531: -2 1 SJ | | | |
| 38532: 950 1900 85 (and ) SB | | | |
| | | | |
| 1900 found at line 38533: | | | |
| 38530: 891 1900 60 (ed ) SB | | | |
| 38531: -2 1 SJ | | | |
| 38532: 950 1900 85 (and ) SB | | | |
| 38533: -2 1 SJ | | | |
| 38534: 1033 1900 74 (the ) SB | | | |
| | | | |
| 1900 found at line 38535: | | | |
| 38532: 950 1900 85 (and ) SB | | | |
| 38533: -2 1 SJ | | | |
| 38534: 1033 1900 74 (the ) SB | | | |
| 38535: -2 1 SJ | | | |
| 38536: 1105 1900 234 (association ) SB | | | |
| | | | |
| 1900 found at line 38537: | | | |
| 38534: 1033 1900 74 (the ) SB | | | |
| 38535: -2 1 SJ | | | |
| 38536: 1105 1900 234 (association ) SB | | | |
| 38537: 1337 1900 149 (demobi) SB | | | |
| 38538: 1486 1900 109 (lized,) SB | | | |
| | | | |
| 1900 found at line 38538: | | | |
| 38535: -2 1 SJ | | | |
| 38536: 1105 1900 234 (association ) SB | | | |
| 38537: 1337 1900 149 (demobi) SB | | | |
| 38538: 1486 1900 109 (lized,) SB | | | |
| 38539: -1 1 SJ | | | |
| | | | |
| 1900 found at line 38539: | | | |
| 38536: 1105 1900 234 (association ) SB | | | |
| 38537: 1337 1900 149 (demobi) SB | | | |
| 38538: 1486 1900 109 (lized,) SB | | | |
| 38539: -1 1 SJ | | | |
| 38540: 1595 1900 13 ( ) SB | | | |
| | | | |
| 1900 found at line 38541: | | | |
| 38538: 1486 1900 109 (lized,) SB | | | |
| 38539: -1 1 SJ | | | |
| 38540: 1595 1900 13 ( ) SB | | | |
| 38541: 1607 1900 13 (i) SB | | | |
| 38542: -2 1 SJ | | | |
| | | | |
| 1900 found at line 38542: | | | |
| 38539: -1 1 SJ | | | |
| 38540: 1595 1900 13 ( ) SB | | | |
| 38541: 1607 1900 13 (i) SB | | | |
| 38542: -2 1 SJ | | | |
| 38543: 1620 1900 30 (f ) SB | | | |
| | | | |
| 1900 found at line 38544: | | | |
| 38541: 1607 1900 13 (i) SB | | | |
| 38542: -2 1 SJ | | | |
| 38543: 1620 1900 30 (f ) SB | | | |
| 38544: -2 1 SJ | | | |
| 38545: 1648 1900 77 (not ) SB | | | |
| | | | |
| 1900 found at line 38546: | | | |
| 38543: 1620 1900 30 (f ) SB | | | |
| 38544: -2 1 SJ | | | |
| 38545: 1648 1900 77 (not ) SB | | | |
| 38546: 1723 1900 41 (pr) SB | | | |
| 38547: -2 1 SJ | | | |
| | | | |
| 1900 found at line 38547: | | | |
| 38544: -2 1 SJ | | | |
| 38545: 1648 1900 77 (not ) SB | | | |
| 38546: 1723 1900 41 (pr) SB | | | |
| 38547: -2 1 SJ | | | |
| 38548: 1764 1900 182 (eviously ) SB | | | |
| | | | |
| 1900 found at line 38549: | | | |
| 38546: 1723 1900 41 (pr) SB | | | |
| 38547: -2 1 SJ | | | |
| 38548: 1764 1900 182 (eviously ) SB | | | |
| 38549: 1944 1900 88 (conf) SB | | | |
| 38550: 2032 1900 81 (igur) SB | | | |
| | | | |
| 1900 found at line 38550: | | | |
| 38547: -2 1 SJ | | | |
| 38548: 1764 1900 182 (eviously ) SB | | | |
| 38549: 1944 1900 88 (conf) SB | | | |
| 38550: 2032 1900 81 (igur) SB | | | |
| 38551: 2113 1900 59 (ed.) SB | | | |
| | | | |
| 1900 found at line 38551: | | | |
| 38548: 1764 1900 182 (eviously ) SB | | | |
| 38549: 1944 1900 88 (conf) SB | | | |
| 38550: 2032 1900 81 (igur) SB | | | |
| 38551: 2113 1900 59 (ed.) SB | | | |
| 38552: 32 0 0 50 50 0 0 47 /Helvetica /font12 ANSIFont font | | | |
| | | | |
| 1900 found at line 38552: | | | |
| 38549: 1944 1900 88 (conf) SB | | | |
| 38550: 2032 1900 81 (igur) SB | | | |
| 38551: 2113 1900 59 (ed.) SB | | | |
| 38552: 32 0 0 50 50 0 0 47 /Helvetica /font12 ANSIFont font | | | |
| 38553: 222 1991 44 (er) SB | | | |
| | | | |
| 1900 found at line 39994: | | | |
| 39991: -1 2 SJ | | | |
| 39992: 1786 1566 115 ( both ) SB | | | |
| 39993: 1900 1566 55 (dir) SB | | | |
| 39994: 1955 1566 22 (e) SB | | | |
| 39995: 1977 1566 132 (ctions.) SB | | | |
| | | | |
| 1900 found at line 40238: | | | |
| 40235: 1815 1933 85 (elati) SB | | | |
| 40236: 1 1 SJ | | | |
| 40237: 1900 1933 60 (ve ) SB | | | |
| 40238: 1961 1933 13 (t) SB | | | |
| 40239: 1 1 SJ | | | |
| | | | |
| 1900 found at line 43495: | | | |
| 43492: 4 1 SJ | | | |
| 43493: 1747 1315 149 (weight ) SB | | | |
| 43494: 1900 1315 20 (s) SB | | | |
| 43495: 1920 1315 110 (panni) SB | | | |
| 43496: 5 1 SJ | | | |
| | | | |
| 1900 found at line 49132: | | | |
| 49129: 1850 378 55 (or ) SB | | | |
| 49130: -5 1 SJ | | | |
| 49131: 1900 378 74 (net ) SB | | | |
| 49132: 1969 378 191 (addresses) SB | | | |
| 49133: 2160 378 12 (,) SB | | | |
| | | | |
| 1900 found at line 51234: | | | |
| 51231: 7 1 SJ | | | |
| 51232: 1880 1208 13 ( ) SB | | | |
| 51233: 1900 1208 63 (var) SB | | | |
| 51234: 6 1 SJ | | | |
| 51235: 1963 1208 142 (iables, ) SB | | | |
| | | | |
| 1900 found at line 53976: | | | |
| 53973: 1799 1812 101 (ue of) SB | | | |
| 53974: -1 1 SJ | | | |
| 53975: 1900 1812 13 ( ) SB | | | |
| 53976: 32 0 0 51 51 0 0 47 /Times-Italic /font31 ANSIFont font | | | |
| 53977: 1912 1810 36 (ty) SB | | | |
| | | | |
| 1900 found at line 61061: | | | |
| 61058: 1785 1706 118 (noise ) SB | | | |
| 61059: -2 1 SJ | | | |
| 61060: 1900 1706 46 (is ) SB | | | |
| 61061: -3 1 SJ | | | |
| 61062: 1944 1706 88 (low ) SB | | | |
| | | | |
| 1900 found at line 64093: | | | |
| 64090: 1843 2034 60 (de ) SB | | | |
| 64091: -4 1 SJ | | | |
| 64092: 1900 2034 74 (the ) SB | | | |
| 64093: 1970 2034 61 (ma) SB | | | |
| 64094: 2031 2034 77 (xim) SB | | | |
| | | | |
| 1900 found at line 65359: | | | |
| 65356: 1795 2116 105 (Mess) SB | | | |
| 65357: 9 1 SJ | | | |
| 65358: 1900 2116 82 (age ) SB | | | |
| 65359: 1991 2116 44 (Pr) SB | | | |
| 65360: 2035 2116 137 (otocol.) SB | | | |
| | | | |
| 1900 found at line 70999: | | | |
| 70996: 1887 1970 13 (t) SB | | | |
| 70997: -2 1 SJ | | | |
| 70998: 1900 1970 60 (he ) SB | | | |
| 70999: -3 1 SJ | | | |
| 71000: 1958 1970 126 (status ) SB | | | |
| | | | |
| 1900 found at line 71744: | | | |
| 71741: 1811 1631 52 (ol ) SB | | | |
| 71742: 1859 1631 41 (pr) SB | | | |
| 71743: 1900 1631 158 (ocedure) SB | | | |
| 71744: -4 1 SJ | | | |
| 71745: 2058 1631 32 (s ) SB | | | |
| | | | |
| 1900 found at line 76632: | | | |
| 76629: 1885 589 13 ( ) SB | | | |
| 76630: 3 1 SJ | | | |
| 76631: 1900 589 85 (and ) SB | | | |
| 76632: 3 1 SJ | | | |
| 76633: 1988 589 140 (values ) SB | | | |
| | | | |
| 1900 found at line 77833: | | | |
| 77830: 1784 701 116 (monit) SB | | | |
| 77831: -4 1 SJ | | | |
| 77832: 1900 701 119 (oring ) SB | | | |
| 77833: 2015 701 19 (s) SB | | | |
| 77834: 2034 701 138 (ystems) SB | | | |
| | | | |
| 1900 found at line 85690: | | | |
| 85687: 1849 1028 52 (ty ) SB | | | |
| 85688: -2 1 SJ | | | |
| 85689: 1900 1028 85 (and ) SB | | | |
| 85690: 1983 1028 130 (accura) SB | | | |
| 85691: 2113 1028 59 (cy.) SB | | | |
| | | | |
| 1900 found at line 86366: | | | |
| 86363: 1826 2320 74 (rect) SB | | | |
| 86364: 2 1 SJ | | | |
| 86365: 1900 2320 60 (ed ) SB | | | |
| 86366: 1962 2320 13 (i) SB | | | |
| 86367: 2 1 SJ | | | |
| | | | |
| 1900 found at line 90454: | | | |
| 90451: 1724 1454 171 (purpose ) SB | | | |
| 90452: 5 1 SJ | | | |
| 90453: 1900 1454 55 (of ) SB | | | |
| 90454: 1960 1454 57 (cal) SB | | | |
| 90455: 2017 1454 91 (ibrat) SB | | | |
| | | | |
| 1900 found at line 93592: | | | |
| 93589: 1761 2118 55 (or ) SB | | | |
| 93590: 1815 2118 85 (twel) SB | | | |
| 93591: 1900 2118 95 (ve al) SB | | | |
| 93592: 1995 2118 78 (tern) SB | | | |
| 93593: 2073 2118 35 (at) SB | | | |
| | | | |
| 1900 found at line 95670: | | | |
| 95667: -3 1 SJ | | | |
| 95668: 1386 844 168 (January ) SB | | | |
| 95669: 1551 844 112 (1900,) SB | | | |
| 95670: -2 1 SJ | | | |
| 95671: 1663 844 13 ( ) SB | | | |
| | | | |
| 1900 found at line 98592: | | | |
| 98589: 1896 1468 38 (y ) SB | | | |
| 98590: 4 1 SJ | | | |
| 98591: 1939 1468 113 (1900 ) SB | | | |
| 98592: 2056 1468 116 (\(MJD) SB | | | |
| 98593: 222 1527 150 (15,020.) SB | | | |
| | | | |
| 1900 found at line 102257: | | | |
| 102254: 1883 1481 17 (\() SB | | | |
| 102255: 32 0 0 51 51 0 0 47 /Times-Italic /font31 ANSIFont font | | | |
| 102256: 1900 1485 13 (t) SB | | | |
| 102257: 32 0 0 44 44 0 0 39 /Times-Roman /font32 ANSIFont font | | | |
| 102258: 1913 1498 22 (0) SB | | | |
| | | | |
| 1900 found at line 113010: | | | |
| 113007: 1890 2171 13 ( ) SB | | | |
| 113008: -4 1 SJ | | | |
| 113009: 1900 2171 74 (the ) SB | | | |
| 113010: 1970 2171 138 (maxim) SB | | | |
| 113011: 2108 2171 64 (um) SB | | | |
| | | | |
| 1900 found at line 115757: | | | |
| 115754: 1784 938 116 (functi) SB | | | |
| 115755: -1 1 SJ | | | |
| 115756: 1900 938 63 (on ) SB | | | |
| 115757: 32 0 0 52 52 0 0 48 /Times-Italic /font31 ANSIFont font | | | |
| 115758: 1962 935 37 (G) SB | | | |
| | | | |
| 1900 found at line 116627: | | | |
| 116624: 32 0 0 50 50 0 0 45 /Times-Roman /font32 ANSIFont font | | | |
| 116625: -4 1 SJ | | | |
| 116626: 1900 2392 13 ( ) SB | | | |
| 116627: 1909 2392 13 (i) SB | | | |
| 116628: 1922 2392 20 (s) SB | | | |
| | | | |
| 1900 found at line 120169: | | | |
| 120166: -2 1 SJ | | | |
| 120167: 1817 2703 85 (and ) SB | | | |
| 120168: 1900 2703 45 (us) SB | | | |
| 120169: -2 1 SJ | | | |
| 120170: 1945 2703 60 (ed ) SB | | | |
| | | | |
| 1900 found at line 123319: | | | |
| 123316: -1 1 SJ | | | |
| 123317: 1888 985 13 ( ) SB | | | |
| 123318: 1900 985 17 ([) SB | | | |
| 123319: 32 0 0 51 51 0 0 47 /Times-Italic /font31 ANSIFont font | | | |
| 123320: 1917 983 25 (u) SB | | | |
| | | | |
| 1900 found at line 126910: | | | |
| 126907: 1694 2453 107 (insic ) SB | | | |
| 126908: 1807 2453 93 (oscil) SB | | | |
| 126909: 1900 2453 91 (lator) SB | | | |
| 126910: 6 1 SJ | | | |
| 126911: 1991 2453 13 ( ) SB | | | |
| | | | |
| 2000 found at line 1732: | | | |
| 1729: -5 1 SJ | | | |
| 1730: 1796 2494 209 (suggested ) SB | | | |
| 1731: 2000 2494 16 (f) SB | | | |
| 1732: -6 1 SJ | | | |
| 1733: 2016 2494 55 (or ) SB | | | |
| | | | |
| 2000 found at line 14274: | | | |
| 14271: 1844 1851 85 (and ) SB | | | |
| 14272: 1931 1851 69 (esti) SB | | | |
| 14273: 2000 1851 38 (m) SB | | | |
| 14274: 2 1 SJ | | | |
| 14275: 2038 1851 71 (ate ) SB | | | |
| | | | |
| 2000 found at line 16912: | | | |
| 16909: 2 1 SJ | | | |
| 16910: 1944 1551 54 (as ) SB | | | |
| 16911: 2000 1551 66 (NT) SB | | | |
| 16912: 2 1 SJ | | | |
| 16913: 2066 1551 41 (P ) SB | | | |
| | | | |
| 2000 found at line 19493: | | | |
| 19490: -4 1 SJ | | | |
| 19491: 1941 961 63 (all ) SB | | | |
| 19492: 2000 961 41 (of) SB | | | |
| 19493: -4 1 SJ | | | |
| 19494: 2041 961 13 ( ) SB | | | |
| | | | |
| 2000 found at line 19894: | | | |
| 19891: 1775 1543 128 (me as ) SB | | | |
| 19892: 1902 1543 98 (well.) SB | | | |
| 19893: 2000 1543 13 ( ) SB | | | |
| 19894: 222 1631 94 (Ther) SB | | | |
| 19895: 3 1 SJ | | | |
| | | | |
| 2000 found at line 20031: | | | |
| 20028: 1987 1806 13 (l) SB | | | |
| 20029: -4 1 SJ | | | |
| 20030: 2000 1806 27 (l ) SB | | | |
| 20031: 2023 1806 60 (am) SB | | | |
| 20032: 2083 1806 89 (ount) SB | | | |
| | | | |
| 2000 found at line 20137: | | | |
| 20134: 1825 1980 168 (manage ) SB | | | |
| 20135: 7 1 SJ | | | |
| 20136: 2000 1980 74 (the ) SB | | | |
| 20137: 2081 1980 20 (s) SB | | | |
| 20138: 2101 1980 13 (t) SB | | | |
| | | | |
| 2000 found at line 31060: | | | |
| 31057: 3 1 SJ | | | |
| 31058: 1984 2329 13 ( ) SB | | | |
| 31059: 2000 2329 13 (t) SB | | | |
| 31060: 3 1 SJ | | | |
| 31061: 2013 2329 60 (he ) SB | | | |
| | | | |
| 2000 found at line 33165: | | | |
| 33162: 1988 1362 12 (.) SB | | | |
| 33163: 1 1 SJ | | | |
| 33164: 2000 1362 13 ( ) SB | | | |
| 33165: 1 1 SJ | | | |
| 33166: 2014 1362 55 (In ) SB | | | |
| | | | |
| 2000 found at line 41584: | | | |
| 41581: 2133 1941 39 (id) SB | | | |
| 41582: 8 1 SJ | | | |
| 41583: 222 2000 146 (header ) SB | | | |
| 41584: 8 1 SJ | | | |
| 41585: 376 2000 44 (if ) SB | | | |
| | | | |
| 2000 found at line 41586: | | | |
| 41583: 222 2000 146 (header ) SB | | | |
| 41584: 8 1 SJ | | | |
| 41585: 376 2000 44 (if ) SB | | | |
| 41586: 9 1 SJ | | | |
| 41587: 428 2000 101 (tests ) SB | | | |
| | | | |
| 2000 found at line 41588: | | | |
| 41585: 376 2000 44 (if ) SB | | | |
| 41586: 9 1 SJ | | | |
| 41587: 428 2000 101 (tests ) SB | | | |
| 41588: 538 2000 30 (fi) SB | | | |
| 41589: 9 1 SJ | | | |
| | | | |
| 2000 found at line 41589: | | | |
| 41586: 9 1 SJ | | | |
| 41587: 428 2000 101 (tests ) SB | | | |
| 41588: 538 2000 30 (fi) SB | | | |
| 41589: 9 1 SJ | | | |
| 41590: 568 2000 60 (ve ) SB | | | |
| | | | |
| 2000 found at line 41591: | | | |
| 41588: 538 2000 30 (fi) SB | | | |
| 41589: 9 1 SJ | | | |
| 41590: 568 2000 60 (ve ) SB | | | |
| 41591: 637 2000 55 (thr) SB | | | |
| 41592: 9 1 SJ | | | |
| | | | |
| 2000 found at line 41592: | | | |
| 41589: 9 1 SJ | | | |
| 41590: 568 2000 60 (ve ) SB | | | |
| 41591: 637 2000 55 (thr) SB | | | |
| 41592: 9 1 SJ | | | |
| 41593: 692 2000 113 (ough ) SB | | | |
| | | | |
| 2000 found at line 41594: | | | |
| 41591: 637 2000 55 (thr) SB | | | |
| 41592: 9 1 SJ | | | |
| 41593: 692 2000 113 (ough ) SB | | | |
| 41594: 8 1 SJ | | | |
| 41595: 814 2000 113 (eight ) SB | | | |
| | | | |
| 2000 found at line 41596: | | | |
| 41593: 692 2000 113 (ough ) SB | | | |
| 41594: 8 1 SJ | | | |
| 41595: 814 2000 113 (eight ) SB | | | |
| 41596: 935 2000 20 (s) SB | | | |
| 41597: 8 1 SJ | | | |
| | | | |
| 2000 found at line 41597: | | | |
| 41594: 8 1 SJ | | | |
| 41595: 814 2000 113 (eight ) SB | | | |
| 41596: 935 2000 20 (s) SB | | | |
| 41597: 8 1 SJ | | | |
| 41598: 955 2000 151 (ucceed ) SB | | | |
| | | | |
| 2000 found at line 41599: | | | |
| 41596: 935 2000 20 (s) SB | | | |
| 41597: 8 1 SJ | | | |
| 41598: 955 2000 151 (ucceed ) SB | | | |
| 41599: 32 0 0 50 50 0 0 51 /Symbol font | | | |
| 41600: 1114 1994 17 (\() SB | | | |
| | | | |
| 2000 found at line 41607: | | | |
| 41604: 1186 1998 14 (t) SB | | | |
| 41605: 32 0 0 50 50 0 0 45 /Times-Roman /font32 ANSIFont font | | | |
| 41606: 1200 2000 25 (5) SB | | | |
| 41607: -1 1 SJ | | | |
| 41608: 1225 2000 13 ( ) SB | | | |
| | | | |
| 2000 found at line 41609: | | | |
| 41606: 1200 2000 25 (5) SB | | | |
| 41607: -1 1 SJ | | | |
| 41608: 1225 2000 13 ( ) SB | | | |
| 41609: 1237 2000 39 (&) SB | | | |
| 41610: -1 1 SJ | | | |
| | | | |
| 2000 found at line 41610: | | | |
| 41607: -1 1 SJ | | | |
| 41608: 1225 2000 13 ( ) SB | | | |
| 41609: 1237 2000 39 (&) SB | | | |
| 41610: -1 1 SJ | | | |
| 41611: 1276 2000 13 ( ) SB | | | |
| | | | |
| 2000 found at line 41612: | | | |
| 41609: 1237 2000 39 (&) SB | | | |
| 41610: -1 1 SJ | | | |
| 41611: 1276 2000 13 ( ) SB | | | |
| 41612: 32 0 0 51 51 0 0 47 /Times-Italic /font31 ANSIFont font | | | |
| 41613: 1288 1998 36 (te) SB | | | |
| | | | |
| 2000 found at line 41618: | | | |
| 41615: 1343 1998 14 (t) SB | | | |
| 41616: 32 0 0 50 50 0 0 45 /Times-Roman /font32 ANSIFont font | | | |
| 41617: 1357 2000 25 (6) SB | | | |
| 41618: 32 0 0 52 52 0 0 47 /Times-Roman /font32 ANSIFont font | | | |
| 41619: 1382 1998 13 ( ) SB | | | |
| | | | |
| 2000 found at line 41622: | | | |
| 41619: 1382 1998 13 ( ) SB | | | |
| 41620: 32 0 0 50 50 0 0 45 /Times-Roman /font32 ANSIFont font | | | |
| 41621: 1395 2000 38 (&) SB | | | |
| 41622: 1433 2000 13 ( ) SB | | | |
| 41623: 32 0 0 51 51 0 0 47 /Times-Italic /font31 ANSIFont font | | | |
| | | | |
| 2000 found at line 41623: | | | |
| 41620: 32 0 0 50 50 0 0 45 /Times-Roman /font32 ANSIFont font | | | |
| 41621: 1395 2000 38 (&) SB | | | |
| 41622: 1433 2000 13 ( ) SB | | | |
| 41623: 32 0 0 51 51 0 0 47 /Times-Italic /font31 ANSIFont font | | | |
| 41624: 1446 1998 36 (te) SB | | | |
| | | | |
| 2000 found at line 41629: | | | |
| 41626: 1501 1998 14 (t) SB | | | |
| 41627: 32 0 0 50 50 0 0 45 /Times-Roman /font32 ANSIFont font | | | |
| 41628: 1515 2000 25 (7) SB | | | |
| 41629: -1 1 SJ | | | |
| 41630: 1540 2000 13 ( ) SB | | | |
| | | | |
| 2000 found at line 41631: | | | |
| 41628: 1515 2000 25 (7) SB | | | |
| 41629: -1 1 SJ | | | |
| 41630: 1540 2000 13 ( ) SB | | | |
| 41631: 1552 2000 39 (&) SB | | | |
| 41632: -1 1 SJ | | | |
| | | | |
| 2000 found at line 41632: | | | |
| 41629: -1 1 SJ | | | |
| 41630: 1540 2000 13 ( ) SB | | | |
| 41631: 1552 2000 39 (&) SB | | | |
| 41632: -1 1 SJ | | | |
| 41633: 1591 2000 13 ( ) SB | | | |
| | | | |
| 2000 found at line 41634: | | | |
| 41631: 1552 2000 39 (&) SB | | | |
| 41632: -1 1 SJ | | | |
| 41633: 1591 2000 13 ( ) SB | | | |
| 41634: 32 0 0 51 51 0 0 47 /Times-Italic /font31 ANSIFont font | | | |
| 41635: 1603 1998 36 (te) SB | | | |
| | | | |
| 2000 found at line 41640: | | | |
| 41637: 1658 1998 14 (t) SB | | | |
| 41638: 32 0 0 50 50 0 0 45 /Times-Roman /font32 ANSIFont font | | | |
| 41639: 1672 2000 25 (8) SB | | | |
| 41640: 1697 2000 13 ( ) SB | | | |
| 41641: 32 0 0 50 50 0 0 51 /Symbol font | | | |
| | | | |
| 2000 found at line 41641: | | | |
| 41638: 32 0 0 50 50 0 0 45 /Times-Roman /font32 ANSIFont font | | | |
| 41639: 1672 2000 25 (8) SB | | | |
| 41640: 1697 2000 13 ( ) SB | | | |
| 41641: 32 0 0 50 50 0 0 51 /Symbol font | | | |
| 41642: 1710 1994 27 (=) SB | | | |
| | | | |
| 2000 found at line 41646: | | | |
| 41643: 32 0 0 50 50 0 0 45 /Times-Roman /font32 ANSIFont font | | | |
| 41644: -1 1 SJ | | | |
| 41645: 1737 2000 13 ( ) SB | | | |
| 41646: 1749 2000 25 (1) SB | | | |
| 41647: 32 0 0 52 52 0 0 53 /Symbol font | | | |
| | | | |
| 2000 found at line 41647: | | | |
| 41644: -1 1 SJ | | | |
| 41645: 1737 2000 13 ( ) SB | | | |
| 41646: 1749 2000 25 (1) SB | | | |
| 41647: 32 0 0 52 52 0 0 53 /Symbol font | | | |
| 41648: 1774 1992 18 (\)) SB | | | |
| | | | |
| 2000 found at line 41651: | | | |
| 41648: 1774 1992 18 (\)) SB | | | |
| 41649: 32 0 0 50 50 0 0 45 /Times-Roman /font32 ANSIFont font | | | |
| 41650: 1791 2000 12 (,) SB | | | |
| 41651: 9 1 SJ | | | |
| 41652: 1803 2000 13 ( ) SB | | | |
| | | | |
| 2000 found at line 41653: | | | |
| 41650: 1791 2000 12 (,) SB | | | |
| 41651: 9 1 SJ | | | |
| 41652: 1803 2000 13 ( ) SB | | | |
| 41653: 1825 2000 102 (regar) SB | | | |
| 41654: 9 1 SJ | | | |
| | | | |
| 2000 found at line 41654: | | | |
| 41651: 9 1 SJ | | | |
| 41652: 1803 2000 13 ( ) SB | | | |
| 41653: 1825 2000 102 (regar) SB | | | |
| 41654: 9 1 SJ | | | |
| 41655: 1927 2000 112 (dless ) SB | | | |
| | | | |
| 2000 found at line 41656: | | | |
| 41653: 1825 2000 102 (regar) SB | | | |
| 41654: 9 1 SJ | | | |
| 41655: 1927 2000 112 (dless ) SB | | | |
| 41656: 8 1 SJ | | | |
| 41657: 2048 2000 55 (of ) SB | | | |
| | | | |
| 2000 found at line 41658: | | | |
| 41655: 1927 2000 112 (dless ) SB | | | |
| 41656: 8 1 SJ | | | |
| 41657: 2048 2000 55 (of ) SB | | | |
| 41658: 2111 2000 61 (the) SB | | | |
| 41659: 222 2058 77 (rem) SB | | | |
| | | | |
| 2000 found at line 41659: | | | |
| 41656: 8 1 SJ | | | |
| 41657: 2048 2000 55 (of ) SB | | | |
| 41658: 2111 2000 61 (the) SB | | | |
| 41659: 222 2058 77 (rem) SB | | | |
| 41660: 1 1 SJ | | | |
| | | | |
| 2000 found at line 49571: | | | |
| 49568: -2 1 SJ | | | |
| 49569: 1818 1222 184 (dispense ) SB | | | |
| 49570: 2000 1222 64 (wit) SB | | | |
| 49571: -2 1 SJ | | | |
| 49572: 2064 1222 38 (h ) SB | | | |
| | | | |
| 2000 found at line 50317: | | | |
| 50314: 5 1 SJ | | | |
| 50315: 1982 2464 13 ( ) SB | | | |
| 50316: 2000 2464 58 (for) SB | | | |
| 50317: 5 1 SJ | | | |
| 50318: 2058 2464 13 ( ) SB | | | |
| | | | |
| 2000 found at line 56671: | | | |
| 56668: 2 1 SJ | | | |
| 56669: 1846 1450 152 (immed ) SB | | | |
| 56670: 2000 1450 16 (f) SB | | | |
| 56671: 2016 1450 80 (rom) SB | | | |
| 56672: 2 1 SJ | | | |
| | | | |
| 2000 found at line 59589: | | | |
| 59586: 1934 995 66 (tim) SB | | | |
| 59587: 4 1 SJ | | | |
| 59588: 2000 995 129 (ecode ) SB | | | |
| 59589: 2133 995 14 (t) SB | | | |
| 59590: 2147 995 25 (o) SB | | | |
| | | | |
| 2000 found at line 60669: | | | |
| 60666: 1920 794 80 (orm) SB | | | |
| 60667: 1 1 SJ | | | |
| 60668: 2000 794 13 ( ) SB | | | |
| 60669: 1 1 SJ | | | |
| 60670: 2014 794 74 (the ) SB | | | |
| | | | |
| 2000 found at line 63279: | | | |
| 63276: -1 1 SJ | | | |
| 63277: 1966 553 35 (e ) SB | | | |
| 63278: 2000 553 63 (var) SB | | | |
| 63279: 2063 553 109 (iable.) SB | | | |
| 63280: 4 1 SJ | | | |
| | | | |
| 2000 found at line 64763: | | | |
| 64760: 1846 820 113 (ional ) SB | | | |
| 64761: 1966 820 34 (B) SB | | | |
| 64762: 2000 820 41 (ur) SB | | | |
| 64763: 8 1 SJ | | | |
| 64764: 2041 820 82 (eau ) SB | | | |
| | | | |
| 2000 found at line 65124: | | | |
| 65121: 1846 1526 113 (ional ) SB | | | |
| 65122: 1966 1526 34 (B) SB | | | |
| 65123: 2000 1526 41 (ur) SB | | | |
| 65124: 8 1 SJ | | | |
| 65125: 2041 1526 82 (eau ) SB | | | |
| | | | |
| 2000 found at line 76406: | | | |
| 76403: -3 1 SJ | | | |
| 76404: 1951 2608 52 (in ) SB | | | |
| 76405: 2000 2608 13 (t) SB | | | |
| 76406: -3 1 SJ | | | |
| 76407: 2013 2608 60 (he ) SB | | | |
| | | | |
| 2000 found at line 86450: | | | |
| 86447: -5 1 SJ | | | |
| 86448: 1796 2494 209 (suggested ) SB | | | |
| 86449: 2000 2494 16 (f) SB | | | |
| 86450: -6 1 SJ | | | |
| 86451: 2016 2494 55 (or ) SB | | | |
| | | | |
| 2000 found at line 92513: | | | |
| 92510: -5 1 SJ | | | |
| 92511: 1706 2529 63 (on ) SB | | | |
| 92512: 1764 2529 112 (2000,) SB | | | |
| 92513: -5 1 SJ | | | |
| 92514: 1876 2529 13 ( ) SB | | | |
| | | | |
| 2000 found at line 93025: | | | |
| 93022: 1712 903 185 (intended ) SB | | | |
| 93023: 1906 903 94 (prim) SB | | | |
| 93024: 2000 903 66 (aril) SB | | | |
| 93025: 10 1 SJ | | | |
| 93026: 2066 903 38 (y ) SB | | | |
| | | | |
| 2000 found at line 98707: | | | |
| 98704: 1868 1643 128 (vices, ) SB | | | |
| 98705: 4 1 SJ | | | |
| 98706: 2000 1643 74 (the ) SB | | | |
| 98707: 2078 1643 66 (NT) SB | | | |
| 98708: 2144 1643 28 (P) SB | | | |
| | | | |
| 2000 found at line 102336: | | | |
| 102333: 1986 1605 14 (t) SB | | | |
| 102334: 32 0 0 52 52 0 0 53 /Symbol font | | | |
| 102335: 2000 1599 17 (\)) SB | | | |
| 102336: 32 0 0 50 50 0 0 45 /Times-Roman /font32 ANSIFont font | | | |
| 102337: 2017 1607 12 (,) SB | | | |
| | | | |
| 2000 found at line 108271: | | | |
| 108268: -4 1 SJ | | | |
| 108269: 1991 1430 13 ( ) SB | | | |
| 108270: 2000 1430 63 (var) SB | | | |
| 108271: 2063 1430 109 (iable.) SB | | | |
| 108272: 222 1533 69 (Thi) SB | | | |
| | | | |
| 2000 found at line 112347: | | | |
| 112344: 32 0 0 50 50 0 0 45 /Times-Roman /font32 ANSIFont font | | | |
| 112345: 1903 1172 97 ( call.) SB | | | |
| 112346: 2000 1172 29 ( I) SB | | | |
| 112347: 2029 1172 143 (n order) SB | | | |
| 112348: 1 3 SJ | | | |
| | | | |
| 2000 found at line 112512: | | | |
| 112509: 1910 1495 85 (han ) SB | | | |
| 112510: 5 1 SJ | | | |
| 112511: 2000 1495 35 (a ) SB | | | |
| 112512: 2040 1495 38 (cr) SB | | | |
| 112513: 2078 1495 45 (ys) SB | | | |
| | | | |
| 2000 found at line 113852: | | | |
| 113849: 2081 1941 91 (slew) SB | | | |
| 113850: -1 1 SJ | | | |
| 113851: 222 2000 110 (must ) SB | | | |
| 113852: 331 2000 184 (be compl) SB | | | |
| 113853: 515 2000 106 (ete at) SB | | | |
| | | | |
| 2000 found at line 113853: | | | |
| 113850: -1 1 SJ | | | |
| 113851: 222 2000 110 (must ) SB | | | |
| 113852: 331 2000 184 (be compl) SB | | | |
| 113853: 515 2000 106 (ete at) SB | | | |
| 113854: -1 2 SJ | | | |
| | | | |
| 2000 found at line 113854: | | | |
| 113851: 222 2000 110 (must ) SB | | | |
| 113852: 331 2000 184 (be compl) SB | | | |
| 113853: 515 2000 106 (ete at) SB | | | |
| 113854: -1 2 SJ | | | |
| 113855: 621 2000 87 ( the ) SB | | | |
| | | | |
| 2000 found at line 113856: | | | |
| 113853: 515 2000 106 (ete at) SB | | | |
| 113854: -1 2 SJ | | | |
| 113855: 621 2000 87 ( the ) SB | | | |
| 113856: 707 2000 126 (end of) SB | | | |
| 113857: 833 2000 26 ( t) SB | | | |
| | | | |
| 2000 found at line 113857: | | | |
| 113854: -1 2 SJ | | | |
| 113855: 621 2000 87 ( the ) SB | | | |
| 113856: 707 2000 126 (end of) SB | | | |
| 113857: 833 2000 26 ( t) SB | | | |
| 113858: 859 2000 217 (he adjustm) SB | | | |
| | | | |
| 2000 found at line 113858: | | | |
| 113855: 621 2000 87 ( the ) SB | | | |
| 113856: 707 2000 126 (end of) SB | | | |
| 113857: 833 2000 26 ( t) SB | | | |
| 113858: 859 2000 217 (he adjustm) SB | | | |
| 113859: 1076 2000 87 (ent i) SB | | | |
| | | | |
| 2000 found at line 113859: | | | |
| 113856: 707 2000 126 (end of) SB | | | |
| 113857: 833 2000 26 ( t) SB | | | |
| 113858: 859 2000 217 (he adjustm) SB | | | |
| 113859: 1076 2000 87 (ent i) SB | | | |
| 113860: 1163 2000 138 (nterval) SB | | | |
| | | | |
| 2000 found at line 113860: | | | |
| 113857: 833 2000 26 ( t) SB | | | |
| 113858: 859 2000 217 (he adjustm) SB | | | |
| 113859: 1076 2000 87 (ent i) SB | | | |
| 113860: 1163 2000 138 (nterval) SB | | | |
| 113861: 1301 2000 13 (,) SB | | | |
| | | | |
| 2000 found at line 113861: | | | |
| 113858: 859 2000 217 (he adjustm) SB | | | |
| 113859: 1076 2000 87 (ent i) SB | | | |
| 113860: 1163 2000 138 (nterval) SB | | | |
| 113861: 1301 2000 13 (,) SB | | | |
| 113862: 32 0 0 51 51 0 0 47 /Times-Italic /font31 ANSIFont font | | | |
| | | | |
| 2000 found at line 113862: | | | |
| 113859: 1076 2000 87 (ent i) SB | | | |
| 113860: 1163 2000 138 (nterval) SB | | | |
| 113861: 1301 2000 13 (,) SB | | | |
| 113862: 32 0 0 51 51 0 0 47 /Times-Italic /font31 ANSIFont font | | | |
| 113863: 1038 2145 25 (a) SB | | | |
| | | | |
| 2000 found at line 118698: | | | |
| 118695: 1984 1460 16 (r) SB | | | |
| 118696: 1 1 SJ | | | |
| 118697: 2000 1460 110 (etain ) SB | | | |
| 118698: 2111 1460 61 (the) SB | | | |
| 118699: -1 2 SJ | | | |
| | | | |
| 2000 found at line 119113: | | | |
| 119110: 1898 2314 63 (per) SB | | | |
| 119111: 1961 2314 39 (io) SB | | | |
| 119112: 2000 2314 37 (d.) SB | | | |
| 119113: 3 1 SJ | | | |
| 119114: 2037 2314 13 ( ) SB | | | |
| | | | |
| 2000 found at line 121601: | | | |
| 121598: 1942 2281 58 (off) SB | | | |
| 121599: 5 1 SJ | | | |
| 121600: 2000 2281 81 (set, ) SB | | | |
| 121601: 32 0 0 52 52 0 0 53 /Symbol font | | | |
| 121602: 2086 2273 23 (t) SB | | | |
| | | | |
| 2000 found at line 121701: | | | |
| 121698: -4 1 SJ | | | |
| 121699: 1952 2398 52 (m ) SB | | | |
| 121700: 2000 2398 93 (stabi) SB | | | |
| 121701: 2093 2398 79 (lity,) SB | | | |
| 121702: -1 1 SJ | | | |
| | | | |
| 2000 found at line 124143: | | | |
| 124140: 1899 378 49 (at ) SB | | | |
| 124141: 1947 378 53 (int) SB | | | |
| 124142: 2000 378 38 (er) SB | | | |
| 124143: 2038 378 134 (vals of) SB | | | |
| 124144: 32 0 0 51 51 0 0 47 /Times-Italic /font31 ANSIFont font | | | |
| | | | |
| 2000 found at line 129858: | | | |
| 129855: 1920 2221 80 (rom) SB | | | |
| 129856: 1 1 SJ | | | |
| 129857: 2000 2221 13 ( ) SB | | | |
| 129858: 1 1 SJ | | | |
| 129859: 2014 2221 74 (the ) SB | | | |
| | | | |
| 2000 found at line 136634: | | | |
| 136631: 1783 1558 69 (][0]) SB | | | |
| 136632: 1852 1558 148 ( = disp) SB | | | |
| 136633: 2000 1558 14 (;) SB | | | |
| 136634: -1 2 SJ | | | |
| 136635: 372 1617 99 (m = ) SB | | | |
| | | | |
| +=+=+=+=+= File rfc1305.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1305.txt +=+=+=+=+= | |
|
| | | | |
| century found at line 428: | | century found at line 428: | |
|
| 425: mechanisms to synchronize time in principle to precisions in the order | | 426: mechanisms to synchronize time in principle to precisions in the order | |
| 426: of nanoseconds while preserving a non-ambiguous date well into the next | | 427: of nanoseconds while preserving a non-ambiguous date well into the next | |
| 427: century. The protocol includes provisions to specify the characteristics | | 428: century. The protocol includes provisions to specify the characteristics | |
| 428: and estimate the error of the local clock and the time server to which | | 429: and estimate the error of the local clock and the time server to which | |
| 429: it may be synchronized. It also includes provisions for operation with a | | 430: it may be synchronized. It also includes provisions for operation with a | |
| | | | |
| century found at line 4529: | | century found at line 4529: | |
|
| 4526: political and ritual needs characteristic of the societies in which they | | 4527: political and ritual needs characteristic of the societies in which they | |
| 4527: flourished. Astronomical observations to establish the winter and summer | | 4528: flourished. Astronomical observations to establish the winter and summer | |
| 4528: solstices were in use three to four millennia ago. By the 14th century | | 4529: solstices were in use three to four millennia ago. By the 14th century | |
| 4529: BC the Shang Chinese had established the solar year as 365.25 days and | | 4530: BC the Shang Chinese had established the solar year as 365.25 days and | |
| 4530: the lunar month as 29.5 days. The lunisolar calendar, in which the | | 4531: the lunar month as 29.5 days. The lunisolar calendar, in which the | |
| | | | |
| century found at line 4548: | | century found at line 4548: | |
|
| 4545: with the Shang Chinese, the ancient Egyptians had thus established the | | 4546: with the Shang Chinese, the ancient Egyptians had thus established the | |
| 4546: solar year at 365.25 days, or within about 11 minutes of the present | | 4547: solar year at 365.25 days, or within about 11 minutes of the present | |
| 4547: measured value. In 432 BC, about a century after the Chinese had done | | 4548: measured value. In 432 BC, about a century after the Chinese had done | |
| 4548: so, the Greek astronomer Meton calculated there were 110 lunar months of | | 4549: so, the Greek astronomer Meton calculated there were 110 lunar months of | |
| 4549: 29 days and 125 lunar months of 30 days for a total of 235 lunar months | | 4550: 29 days and 125 lunar months of 30 days for a total of 235 lunar months | |
| | | | |
| century found at line 4565: | | century found at line 4565: | |
|
| 4562: not complete until 8 AD. | | 4563: not complete until 8 AD. | |
| 4563: | | 4564: | |
| 4564: The seven-day Sumerian week was introduced only in the fourth century AD | | 4565: The seven-day Sumerian week was introduced only in the fourth century AD | |
| 4565: by Emperor Constantine I. During the Roman era a 15-year census cycle, | | 4566: by Emperor Constantine I. During the Roman era a 15-year census cycle, | |
| 4566: called the Indiction cycle, was instituted for taxation purposes. The | | 4567: called the Indiction cycle, was instituted for taxation purposes. The | |
| | | | |
| century found at line 4588: | | century found at line 4588: | |
|
| 4585: but 14 of these were removed in the Gregorian calendar. While the | | 4586: but 14 of these were removed in the Gregorian calendar. While the | |
| 4586: Gregorian calendar is in use throughout most of the world today, some | | 4587: Gregorian calendar is in use throughout most of the world today, some | |
| 4587: countries did not adopt it until early in the twentieth century. | | 4588: countries did not adopt it until early in the twentieth century. | |
| 4588: While it remains a fascinating field for time historians, the above | | 4589: While it remains a fascinating field for time historians, the above | |
| 4589: narrative provides conclusive evidence that conjugating calendar dates | | 4590: narrative provides conclusive evidence that conjugating calendar dates | |
| | | | |
| century found at line 4620: | | century found at line 4620: | |
|
| 4617: sometimes used to represent dates near our own era in conventional time | | 4618: sometimes used to represent dates near our own era in conventional time | |
| 4618: and with fewer digits, is defined as MJD = JD <196> 2,400,000.5. | | 4619: and with fewer digits, is defined as MJD = JD <196> 2,400,000.5. | |
| 4619: Following the convention that our century began at 0h on 1 January 1900, | | 4620: Following the convention that our century began at 0h on 1 January 1900, | |
| 4620: at which time the tropical year was already 12h old, that eclectic | | 4621: at which time the tropical year was already 12h old, that eclectic | |
| 4621: instant corresponds to MJD 15,020.0. Thus, the Julian timescale ticks in | | 4622: instant corresponds to MJD 15,020.0. Thus, the Julian timescale ticks in | |
| | | | |
| century found at line 4640: | | century found at line 4640: | |
|
| 4637: through observations of the Sun, Moon and planets. In 1958 the standard | | 4638: through observations of the Sun, Moon and planets. In 1958 the standard | |
| 4638: second was defined as 1/31,556,925.9747 of the tropical year that began | | 4639: second was defined as 1/31,556,925.9747 of the tropical year that began | |
| 4639: this century. On this scale the tropical year is 365.2421987 days and | | 4640: this century. On this scale the tropical year is 365.2421987 days and | |
| 4640: the lunar month - one complete revolution of the Moon around the Earth - | | 4641: the lunar month - one complete revolution of the Moon around the Earth - | |
| 4641: is 29.53059 days; however, the actual tropical year can be determined | | 4642: is 29.53059 days; however, the actual tropical year can be determined | |
| | | | |
| 1900 found at line 851: | | 1900 found at line 851: | |
|
| 848: product of the protocol, a special timestamp format has been | | 849: product of the protocol, a special timestamp format has been | |
| 849: established. NTP timestamps are represented as a 64-bit unsigned fixed- | | 850: established. NTP timestamps are represented as a 64-bit unsigned fixed- | |
| 850: point number, in seconds relative to 0h on 1 January 1900. The integer | | 851: point number, in seconds relative to 0h on 1 January 1900. The integer | |
| 851: part is in the first 32 bits and the fraction part in the last 32 bits. | | 852: part is in the first 32 bits and the fraction part in the last 32 bits. | |
| 852: This format allows convenient multiple-precision arithmetic and | | 853: This format allows convenient multiple-precision arithmetic and | |
| | | | |
| 1900 found at line 873: | | 1900 found at line 873: | |
|
| 870: integer part) has been set and that the 64-bit field will overflow some | | 871: integer part) has been set and that the 64-bit field will overflow some | |
| 871: time in 2036. Should NTP be in use in 2036, some external means will be | | 872: time in 2036. Should NTP be in use in 2036, some external means will be | |
| 872: necessary to qualify time relative to 1900 and time relative to 2036 | | 873: necessary to qualify time relative to 1900 and time relative to 2036 | |
| 873: (and other multiples of 136 years). Timestamped data requiring such | | 874: (and other multiples of 136 years). Timestamped data requiring such | |
| 874: qualification will be so precious that appropriate means should be | | 875: qualification will be so precious that appropriate means should be | |
| | | | |
| 1900 found at line 4620: | | 1900 found at line 4620: | |
|
| 4617: sometimes used to represent dates near our own era in conventional time | | 4618: sometimes used to represent dates near our own era in conventional time | |
| 4618: and with fewer digits, is defined as MJD = JD <196> 2,400,000.5. | | 4619: and with fewer digits, is defined as MJD = JD <196> 2,400,000.5. | |
| 4619: Following the convention that our century began at 0h on 1 January 1900, | | 4620: Following the convention that our century began at 0h on 1 January 1900, | |
| 4620: at which time the tropical year was already 12h old, that eclectic | | 4621: at which time the tropical year was already 12h old, that eclectic | |
| 4621: instant corresponds to MJD 15,020.0. Thus, the Julian timescale ticks in | | 4622: instant corresponds to MJD 15,020.0. Thus, the Julian timescale ticks in | |
| | | | |
| 1900 found at line 4724: | | 1900 found at line 4724: | |
|
| 4721: always coincident with it. At 0h on 1 January 1972 (MJD 41,317.0), the | | 4722: always coincident with it. At 0h on 1 January 1972 (MJD 41,317.0), the | |
| 4722: first tick of the UTC Era, the NTP clock was set to 2,272,060,800, | | 4723: first tick of the UTC Era, the NTP clock was set to 2,272,060,800, | |
| 4723: representing the number of standard seconds since 0h on 1 January 1900 | | 4724: representing the number of standard seconds since 0h on 1 January 1900 | |
| 4724: (MJD 15,020.0). The insertion of leap seconds in UTC and subsequently | | 4725: (MJD 15,020.0). The insertion of leap seconds in UTC and subsequently | |
| 4725: into NTP does not affect the UTC or NTP oscillator, only the conversion | | 4726: into NTP does not affect the UTC or NTP oscillator, only the conversion | |
| | | | |
| 2000 found at line 4489: | | 2000 found at line 4489: | |
|
| 4486: the Mid-Continent Chain, the deployment of LORAN-C transmitters now | | 4487: the Mid-Continent Chain, the deployment of LORAN-C transmitters now | |
| 4487: provides complete coverage of the U.S. LORAN-C timing receivers, such as | | 4488: provides complete coverage of the U.S. LORAN-C timing receivers, such as | |
| 4488: the Austron 2000, are specialized and extremely expensive (up to | | 4489: the Austron 2000, are specialized and extremely expensive (up to | |
| 4489: $20,000). They are used primarily to monitor local cesium clocks and are | | 4490: $20,000). They are used primarily to monitor local cesium clocks and are | |
| 4490: not suited for unattended, automatic operation. While the LORAN-C system | | 4491: not suited for unattended, automatic operation. While the LORAN-C system | |
| | | | |
| +=+=+=+=+= File rfc1309.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1309.txt +=+=+=+=+= | |
|
| | | | |
| century found at line 48: | | century found at line 48: | |
|
| 45: | | 46: | |
| 46: As the pace of industry, science, and technological development | | 47: As the pace of industry, science, and technological development | |
| 47: quickened over the past century, it became increasingly probable that | | 48: quickened over the past century, it became increasingly probable that | |
| 48: someone in a geographically distant location would be trying to solve | | 49: someone in a geographically distant location would be trying to solve | |
| 49: the same problems you were trying to solve, or that someone in a | | 50: the same problems you were trying to solve, or that someone in a | |
| | | | |
| +=+=+=+=+= File rfc1314.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1314.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 1109: | | 2000 found at line 1109: | |
|
| 1106: 00DE YPosition 011F 0005 00000001 0000016C | | 1107: 00DE YPosition 011F 0005 00000001 0000016C | |
| 1107: 00EA Group4Options 0125 0004 00000001 00000002 | | 1108: 00EA Group4Options 0125 0004 00000001 00000002 | |
| 1108: 00F6 ResolutionUnit 0128 0003 00000001 00020000 | | 1109: 00F6 ResolutionUnit 0128 0003 00000001 00020000 | |
| 1109: 0102 Software 0131 0002 00000008 00000174 | | 1110: 0102 Software 0131 0002 00000008 00000174 | |
| 1110: 010E DateTime 0132 0002 00000014 0000017C | | 1111: 010E DateTime 0132 0002 00000014 0000017C | |
| | | | |
| +=+=+=+=+= File rfc1323.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1323.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 320: | | 2000 found at line 320: | |
|
| 317: 1.1MBps, no matter how high the theoretical transfer rate of the | | 318: 1.1MBps, no matter how high the theoretical transfer rate of the | |
| 318: path. This corresponds to cycling the sequence number space in | | 319: path. This corresponds to cycling the sequence number space in | |
| 319: Twrap= 2000 secs, which is safe in today's Internet. | | 320: Twrap= 2000 secs, which is safe in today's Internet. | |
| 320: | | 321: | |
| 321: It is important to understand that the culprit is not the larger | | 322: It is important to understand that the culprit is not the larger | |
| | | | |
| +=+=+=+=+= File rfc1325.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1325.txt +=+=+=+=+= | |
|
| | | | |
| 'yy' on a line without 'yyyy' found at line 611: | | 'yy' on a line without 'yyyy' found at line 611: | |
|
| 608: In addition, back issues of the Report are available for anonymous | | 609: In addition, back issues of the Report are available for anonymous | |
| 609: FTP from the host NIS.NSF.NET in the 'imr' directory with the file | | 610: FTP from the host NIS.NSF.NET in the 'imr' directory with the file | |
| 610: names in the form IMRYY-MM.TXT, where YY is the last two digits of | | 611: names in the form IMRYY-MM.TXT, where YY is the last two digits of | |
| 611: the year and MM two digits for the month. For example, the June | | 612: the year and MM two digits for the month. For example, the June | |
| 612: 1991 Report is in the file IMR91-06.TXT. | | 613: 1991 Report is in the file IMR91-06.TXT. | |
| | | | |
| +=+=+=+=+= File rfc1327.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1327.txt +=+=+=+=+= | |
|
| | | | |
| 'yy' on a line without 'yyyy' found at line 2618: | | 'yy' on a line without 'yyyy' found at line 2618: | |
|
| 2615: attributes remaining in the O/R address shall be encoded on | | 2616: attributes remaining in the O/R address shall be encoded on | |
| 2616: the LHS. This is to ensure a reversible mapping. For | | 2617: the LHS. This is to ensure a reversible mapping. For | |
| 2617: example, if the is an addres /S=XX/O=YY/ADMD=A/C=NN/ and a | | 2618: example, if the is an addres /S=XX/O=YY/ADMD=A/C=NN/ and a | |
| 2618: mapping for /ADMD=A/C=NN/ is used, then /S=XX/O=YY/ is | | 2619: mapping for /ADMD=A/C=NN/ is used, then /S=XX/O=YY/ is | |
| 2619: encoded on the LHS. | | 2620: encoded on the LHS. | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 2619: | | 'yy' on a line without 'yyyy' found at line 2619: | |
|
| 2616: the LHS. This is to ensure a reversible mapping. For | | 2617: the LHS. This is to ensure a reversible mapping. For | |
| 2617: example, if the is an addres /S=XX/O=YY/ADMD=A/C=NN/ and a | | 2618: example, if the is an addres /S=XX/O=YY/ADMD=A/C=NN/ and a | |
| 2618: mapping for /ADMD=A/C=NN/ is used, then /S=XX/O=YY/ is | | 2619: mapping for /ADMD=A/C=NN/ is used, then /S=XX/O=YY/ is | |
| 2619: encoded on the LHS. | | 2620: encoded on the LHS. | |
| 2620: | | 2621: | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 2665: | | 'yy' on a line without 'yyyy' found at line 2665: | |
|
| 2662: | | 2663: | |
| 2663: C = "XX" | | 2664: C = "XX" | |
| 2664: ADMD = "YY" | | 2665: ADMD = "YY" | |
| 2665: O = "ZZ" | | 2666: O = "ZZ" | |
| 2666: "RFC-822" = "Smith(a)ZZ.YY.XX" | | 2667: "RFC-822" = "Smith(a)ZZ.YY.XX" | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 2667: | | 'yy' on a line without 'yyyy' found at line 2667: | |
|
| 2664: ADMD = "YY" | | 2665: ADMD = "YY" | |
| 2665: O = "ZZ" | | 2666: O = "ZZ" | |
| 2666: "RFC-822" = "Smith(a)ZZ.YY.XX" | | 2667: "RFC-822" = "Smith(a)ZZ.YY.XX" | |
| 2667: | | 2668: | |
| 2668: This is mapped first to an RFC 822 address, and then back to the | | 2669: This is mapped first to an RFC 822 address, and then back to the | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 2673: | | 'yy' on a line without 'yyyy' found at line 2673: | |
|
| 2670: | | 2671: | |
| 2671: C = "XX" | | 2672: C = "XX" | |
| 2672: ADMD = "YY" | | 2673: ADMD = "YY" | |
| 2673: O = "ZZ" | | 2674: O = "ZZ" | |
| 2674: Surname = "Smith" | | 2675: Surname = "Smith" | |
| | | | |
| UTCTime found at line 1483: | | UTCTime found at line 1483: | |
|
| 1480: the full BNF easier to parse. | | 1481: the full BNF easier to parse. | |
| 1481: | | 1482: | |
| 1482: 3.3.5. UTCTime | | 1483: 3.3.5. UTCTime | |
| 1483: | | 1484: | |
| 1484: Both UTCTime and the RFC 822 822.date-time syntax contain: Year | | 1485: Both UTCTime and the RFC 822 822.date-time syntax contain: Year | |
| | | | |
| UTCTime found at line 1485: | | UTCTime found at line 1485: | |
|
| 1482: 3.3.5. UTCTime | | 1483: 3.3.5. UTCTime | |
| 1483: | | 1484: | |
| 1484: Both UTCTime and the RFC 822 822.date-time syntax contain: Year | | 1485: Both UTCTime and the RFC 822 822.date-time syntax contain: Year | |
| 1485: (lowest two digits), Month, Day of Month, hour, minute, second | | 1486: (lowest two digits), Month, Day of Month, hour, minute, second | |
| 1486: (optional), and Timezone. 822.date-time also contains an optional | | 1487: (optional), and Timezone. 822.date-time also contains an optional | |
| | | | |
| UTCTime found at line 1494: | | UTCTime found at line 1494: | |
|
| 1491: In practice, a gateway will need to parse various illegal | | 1492: In practice, a gateway will need to parse various illegal | |
| 1492: variants on 822.date-time. In cases where 822.date-time | | 1493: variants on 822.date-time. In cases where 822.date-time | |
| 1493: cannot be parsed, it is recommended that the derived UTCTime | | 1494: cannot be parsed, it is recommended that the derived UTCTime | |
| 1494: is set to the value at the time of translation. | | 1495: is set to the value at the time of translation. | |
| 1495: | | 1496: | |
| | | | |
| UTCTime found at line 1497: | | UTCTime found at line 1497: | |
|
| 1494: is set to the value at the time of translation. | | 1495: is set to the value at the time of translation. | |
| 1495: | | 1496: | |
| 1496: When mapping to X.400, the UTCTime format which specifies the | | 1497: When mapping to X.400, the UTCTime format which specifies the | |
| 1497: timezone offset shall be used. | | 1498: timezone offset shall be used. | |
| 1498: | | 1499: | |
| | | | |
| UTCTime found at line 5143: | | UTCTime found at line 5143: | |
|
| 5140: | | 5141: | |
| 5141: The extended syntax of zone defined in the JNT Mail Protocol shall | | 5142: The extended syntax of zone defined in the JNT Mail Protocol shall | |
| 5142: be used in the mapping of UTCTime defined in Chapter 3. | | 5143: be used in the mapping of UTCTime defined in Chapter 3. | |
| 5143: | | 5144: | |
| 5144: 7. Lack of 822-MTS originator specification | | 5145: 7. Lack of 822-MTS originator specification | |
| | | | |
| +=+=+=+=+= File rfc1330.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1330.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 1770: | | 2000 found at line 1770: | |
|
| 1767: While ESnet will provide X.400 routing service for systems, it cannot | | 1768: While ESnet will provide X.400 routing service for systems, it cannot | |
| 1768: provide routing via commercial X.400 carriers at this time. The | | 1769: provide routing via commercial X.400 carriers at this time. The | |
| 1769: FTS-2000 charge for routing X.400 messages is $.45 (US) plus X.25 | | 1770: FTS-2000 charge for routing X.400 messages is $.45 (US) plus X.25 | |
| 1770: packet charges. This could result in a charge of several dollars for | | 1771: packet charges. This could result in a charge of several dollars for | |
| 1771: large messages, a real possibility with the multi-media capacity of | | 1772: large messages, a real possibility with the multi-media capacity of | |
| | | | |
| +=+=+=+=+= File rfc1336.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1336.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 378: | | 2000 found at line 378: | |
|
| 375: where growing above 100 network numbers seemed excessive. | | 376: where growing above 100 network numbers seemed excessive. | |
| 376: Todays number of networks in the global infrastructure | | 377: Todays number of networks in the global infrastructure | |
| 377: exceeds 2000 connected networks, and many more if isolated | | 378: exceeds 2000 connected networks, and many more if isolated | |
| 378: network islands get included. | | 379: network islands get included. | |
| 379: | | 380: | |
| | | | |
| +=+=+=+=+= File rfc1338.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1338.txt +=+=+=+=+= | |
|
| | | | |
| 'yy' on a line without 'yyyy' found at line 401: | | 'yy' on a line without 'yyyy' found at line 401: | |
|
| 398: 3.2. Historic growth rates | | 399: 3.2. Historic growth rates | |
| 399: | | 400: | |
| 400: MM/YY ROUTES MM/YY ROUTES | | 401: MM/YY ROUTES MM/YY ROUTES | |
| 401: ADVERTISED ADVERTISED | | 402: ADVERTISED ADVERTISED | |
| 402: ------------------------ ----------------------- | | 403: ------------------------ ----------------------- | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 1060: | | 'yy' on a line without 'yyyy' found at line 1060: | |
|
| 1057: 1071 Beal Ave. | | 1058: 1071 Beal Ave. | |
| 1058: Ann Arbor, MI 48109 | | 1059: Ann Arbor, MI 48109 | |
| 1059: email: jyy@merit.edu | | 1060: email: jyy@merit.edu | |
| 1060: | | | |
| 1061: | | 1061: | |
|
| | | 1062: | |
| | | | |
| +=+=+=+=+= File rfc1340.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1340.txt +=+=+=+=+= | |
|
| | | | |
| 'yy' on a line without 'yyyy' found at line 3390: | | 'yy' on a line without 'yyyy' found at line 3390: | |
|
| 3387: AB-00-03-00-00-00 6004 DEC Local Area Transport (LAT) - old | | 3388: AB-00-03-00-00-00 6004 DEC Local Area Transport (LAT) - old | |
| 3388: AB-00-04-00-xx-xx ???? Reserved DEC customer private use | | 3389: AB-00-04-00-xx-xx ???? Reserved DEC customer private use | |
| 3389: AB-00-04-01-xx-yy 6007 DEC Local Area VAX Cluster groups | | 3390: AB-00-04-01-xx-yy 6007 DEC Local Area VAX Cluster groups | |
| 3390: Sys. Communication Architecture (SCA) | | 3391: Sys. Communication Architecture (SCA) | |
| 3391: CF-00-00-00-00-00 9000 Ethernet Configuration Test protocol | | 3392: CF-00-00-00-00-00 9000 Ethernet Configuration Test protocol | |
| | | | |
| 1900 found at line 4066: | | 1900 found at line 4066: | |
|
| 4063: 014.000.000.063 2422-650-23500 00 Tollpost-Globe AS [OXG] | | 4064: 014.000.000.063 2422-650-23500 00 Tollpost-Globe AS [OXG] | |
| 4064: 014.000.000.064 2422-330-02500 00 Tollpost-Globe AS [OXG] | | 4065: 014.000.000.064 2422-330-02500 00 Tollpost-Globe AS [OXG] | |
| 4065: 014.000.000.065 2422-350-01900 00 Tollpost-Globe AS [OXG] | | 4066: 014.000.000.065 2422-350-01900 00 Tollpost-Globe AS [OXG] | |
| 4066: 014.000.000.066 2422-410-00700 00 Tollpost-Globe AS [OXG] | | 4067: 014.000.000.066 2422-410-00700 00 Tollpost-Globe AS [OXG] | |
| 4067: 014.000.000.067 2422-539-06200 00 Tollpost-Globe AS [OXG] | | 4068: 014.000.000.067 2422-539-06200 00 Tollpost-Globe AS [OXG] | |
| | | | |
| 2000 found at line 1300: | | 2000 found at line 1300: | |
|
| 1297: nkd 1650/tcp | | 1298: nkd 1650/tcp | |
| 1298: nkd 1650/udp | | 1299: nkd 1650/udp | |
| 1299: callbook 2000/tcp | | 1300: callbook 2000/tcp | |
| 1300: callbook 2000/udp | | 1301: callbook 2000/udp | |
| 1301: dc 2001/tcp | | 1302: dc 2001/tcp | |
| | | | |
| 2000 found at line 1301: | | 2000 found at line 1301: | |
|
| 1298: nkd 1650/udp | | 1299: nkd 1650/udp | |
| 1299: callbook 2000/tcp | | 1300: callbook 2000/tcp | |
| 1300: callbook 2000/udp | | 1301: callbook 2000/udp | |
| 1301: dc 2001/tcp | | 1302: dc 2001/tcp | |
| 1302: wizard 2001/udp curry | | 1303: wizard 2001/udp curry | |
| | | | |
| 2000 found at line 4013: | | 2000 found at line 4013: | |
|
| 4010: 014.000.000.018 2624-522-80900 52 FGAN-SIEMENS-X25 [GB7] | | 4011: 014.000.000.018 2624-522-80900 52 FGAN-SIEMENS-X25 [GB7] | |
| 4011: 014.000.000.019 2041-170-10000 00 SHAPE-X25 [JFW] | | 4012: 014.000.000.019 2041-170-10000 00 SHAPE-X25 [JFW] | |
| 4012: 014.000.000.020 5052-737-20000 50 UQNET [AXH] | | 4013: 014.000.000.020 5052-737-20000 50 UQNET [AXH] | |
| 4013: 014.000.000.021 3020-801-00057 50 DMC-CRC1 [VXT] | | 4014: 014.000.000.021 3020-801-00057 50 DMC-CRC1 [VXT] | |
| 4014: 014.000.000.022 2624-522-80329 02 FGAN-FGANFFMVAX-X25 [GB7] | | 4015: 014.000.000.022 2624-522-80329 02 FGAN-FGANFFMVAX-X25 [GB7] | |
| | | | |
| 2000 found at line 4838: | | 2000 found at line 4838: | |
|
| 4835: AIX/370 LOCUS SWIFT | | 4836: AIX/370 LOCUS SWIFT | |
| 4836: AIX-PS/2 MACOS TAC | | 4837: AIX-PS/2 MACOS TAC | |
| 4837: BS-2000 MINOS TANDEM | | 4838: BS-2000 MINOS TANDEM | |
| 4838: CEDAR MOS TENEX | | 4839: CEDAR MOS TENEX | |
| 4839: CGW MPE5 TOPS10 | | 4840: CGW MPE5 TOPS10 | |
| | | | |
| 2000 found at line 5188: | | 2000 found at line 5188: | |
|
| 5185: HAZELTINE-1520 IBM-3278-3 | | 5186: HAZELTINE-1520 IBM-3278-3 | |
| 5186: HAZELTINE-1552 IBM-3278-4 | | 5187: HAZELTINE-1552 IBM-3278-4 | |
| 5187: HAZELTINE-2000 IBM-3278-5 | | 5188: HAZELTINE-2000 IBM-3278-5 | |
| 5188: HAZELTINE-ESPRIT IBM-3279-2 | | 5189: HAZELTINE-ESPRIT IBM-3279-2 | |
| 5189: HITACHI-5601 IBM-3279-3 | | 5190: HITACHI-5601 IBM-3279-3 | |
| | | | |
| +=+=+=+=+= File rfc1348.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1348.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 143: | | 2000 found at line 143: | |
|
| 140: Or in net 11110031f67293.nsap-in-addr.arpa: | | 141: Or in net 11110031f67293.nsap-in-addr.arpa: | |
| 141: | | 142: | |
| 142: 67894444333322220000 NSAP-PTR host.school.de. | | 143: 67894444333322220000 NSAP-PTR host.school.de. | |
| 143: | | 144: | |
| 144: The RR data is the ASCII representation of the digits. It is encoded | | 145: The RR data is the ASCII representation of the digits. It is encoded | |
| | | | |
| +=+=+=+=+= File rfc1357.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1357.txt +=+=+=+=+= | |
|
| | | | |
| 'yy' on a line without 'yyyy' found at line 260: | | 'yy' on a line without 'yyyy' found at line 260: | |
|
| 257: | | 258: | |
| 258: ID (M) -- This is the second field of any record. It is also a | | 259: ID (M) -- This is the second field of any record. It is also a | |
| 259: mandatory field. Its format is "ID:: XXX//YYY", where XXX is | | 260: mandatory field. Its format is "ID:: XXX//YYY", where XXX is | |
| 260: the publisher-ID (the controlled symbol of the publisher) | | 261: the publisher-ID (the controlled symbol of the publisher) | |
| 261: and YYY is the ID (e.g., report number) of the publication as | | 262: and YYY is the ID (e.g., report number) of the publication as | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 262: | | 'yy' on a line without 'yyyy' found at line 262: | |
|
| 259: mandatory field. Its format is "ID:: XXX//YYY", where XXX is | | 260: mandatory field. Its format is "ID:: XXX//YYY", where XXX is | |
| 260: the publisher-ID (the controlled symbol of the publisher) | | 261: the publisher-ID (the controlled symbol of the publisher) | |
| 261: and YYY is the ID (e.g., report number) of the publication as | | 262: and YYY is the ID (e.g., report number) of the publication as | |
| 262: assigned by the publisher. This ID is typically printed on | | 263: assigned by the publisher. This ID is typically printed on | |
| 263: the cover, and may contain slashes. | | 264: the cover, and may contain slashes. | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 682: | | 'yy' on a line without 'yyyy' found at line 682: | |
|
| 679: | | 680: | |
| 680: In order to avoid conflicts among the symbols of the publishing | | 681: In order to avoid conflicts among the symbols of the publishing | |
| 681: organizations (the XXX part of the "ID:: XXX//YYY") it is suggested | | 682: organizations (the XXX part of the "ID:: XXX//YYY") it is suggested | |
| 682: that the various organizations that publish reports (such as | | 683: that the various organizations that publish reports (such as | |
| 683: universities, departments, and laboratories) register their | | 684: universities, departments, and laboratories) register their | |
| | | | |
| 2-digit found at line 291: | | 2-digit found at line 291: | |
|
| 288: | | 289: | |
| 289: The format for ENTRY date is "Month Day, Year". The month must | | 290: The format for ENTRY date is "Month Day, Year". The month must | |
| 290: be alphabetic (spelled out). The "Day" is a 1- or 2-digit | | 291: be alphabetic (spelled out). The "Day" is a 1- or 2-digit | |
| 291: number. The "Year" is a 4-digit number. | | 292: number. The "Year" is a 4-digit number. | |
| 292: | | 293: | |
| | | | |
| 2-digit found at line 457: | | 2-digit found at line 457: | |
|
| 454: DATE (O) -- The publication date. The formats are "Month Year" and | | 455: DATE (O) -- The publication date. The formats are "Month Year" and | |
| 455: "Month Day, Year". The month must be alphabetic (spelled out). | | 456: "Month Day, Year". The month must be alphabetic (spelled out). | |
| 456: The "Day" is a 1- or 2-digit number. The "Year" is a 4-digit | | 457: The "Day" is a 1- or 2-digit number. The "Year" is a 4-digit | |
| 457: number. | | 458: number. | |
| 458: | | 459: | |
| | | | |
| +=+=+=+=+= File rfc1361.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1361.txt +=+=+=+=+= | |
|
| | | | |
| 1900 found at line 132: | | 1900 found at line 132: | |
|
| 129: main product of the protocol, a special timestamp format has been | | 130: main product of the protocol, a special timestamp format has been | |
| 130: established. NTP timestamps are represented as a 64-bit unsigned | | 131: established. NTP timestamps are represented as a 64-bit unsigned | |
| 131: fixed-point number, in seconds relative to 0h on 1 January 1900. The | | 132: fixed-point number, in seconds relative to 0h on 1 January 1900. The | |
| 132: integer part is in the first 32 bits and the fraction part in the | | 133: integer part is in the first 32 bits and the fraction part in the | |
| 133: last 32 bits. This format allows convenient multiple-precision | | 134: last 32 bits. This format allows convenient multiple-precision | |
| | | | |
| 1900 found at line 145: | | 1900 found at line 145: | |
|
| 142: overflow some time in 2036. Should NTP or SNTP be in use in 2036, | | 143: overflow some time in 2036. Should NTP or SNTP be in use in 2036, | |
| 143: some external means will be necessary to qualify time relative to | | 144: some external means will be necessary to qualify time relative to | |
| 144: 1900 and time relative to 2036 (and other multiples of 136 years). | | 145: 1900 and time relative to 2036 (and other multiples of 136 years). | |
| 145: Timestamped data requiring such qualification will be so precious | | 146: Timestamped data requiring such qualification will be so precious | |
| 146: that appropriate means should be readily available. There will exist | | 147: that appropriate means should be readily available. There will exist | |
| | | | |
| +=+=+=+=+= File rfc1379.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1379.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 847: | | 2000 found at line 847: | |
|
| 844: | | | |
| 845: | | 845: | |
|
| 846: objective an MSL of at least 2000 seconds. If there were no TIME- | | 846: | |
| 847: WAIT delay, the ultimate limit on transaction rate would be set by | | 847: objective an MSL of at least 2000 seconds. If there were no TIME- | |
| 848: speed-of-light delays in the network and by the latency of host | | 848: WAIT delay, the ultimate limit on transaction rate would be set by | |
| | | 849: speed-of-light delays in the network and by the latency of host | |
| | | | |
| 2000 found at line 988: | | 2000 found at line 988: | |
|
| 985: the official delay of 240 seconds, formula [1] implies a upper | | 986: the official delay of 240 seconds, formula [1] implies a upper | |
| 986: bound (as RTT -> 0) of TRmax = 268 Tps; with our target MSL of | | 987: bound (as RTT -> 0) of TRmax = 268 Tps; with our target MSL of | |
| 987: 2000 sec, TRmax = 32 Tps. These values are unacceptably low. | | 988: 2000 sec, TRmax = 32 Tps. These values are unacceptably low. | |
| 988: | | 989: | |
| 989: To improve this transaction rate, we could use TCP timestamps to | | 990: To improve this transaction rate, we could use TCP timestamps to | |
| | | | |
| 2000 found at line 1079: | | 2000 found at line 1079: | |
|
| 1076: segment lifetime MSL. For reasonable limiting values of R, Ts, | | 1077: segment lifetime MSL. For reasonable limiting values of R, Ts, | |
| 1077: and MSL, formula [6] leads to a very low value of TRmax. For | | 1078: and MSL, formula [6] leads to a very low value of TRmax. For | |
| 1078: example, with MSL= 2000 secs, R=10**9 Bps, and Ts = 0.5 sec, TRmax | | 1079: example, with MSL= 2000 secs, R=10**9 Bps, and Ts = 0.5 sec, TRmax | |
| 1079: < 2*10**-3 Tps. | | 1080: < 2*10**-3 Tps. | |
| 1080: | | 1081: | |
| | | | |
| 2000 found at line 1136: | | 2000 found at line 1136: | |
|
| 1133: TRmax * MSL < 2**31 | | 1134: TRmax * MSL < 2**31 | |
| 1134: | | 1135: | |
| 1135: For example, if MSL = 2000 seconds then TRmax < 10**6 Tp. These | | 1136: For example, if MSL = 2000 seconds then TRmax < 10**6 Tp. These | |
| 1136: are acceptable limits for transaction processing. However, if | | 1137: are acceptable limits for transaction processing. However, if | |
| 1137: they are not, we could augment CC with TCP timestamps to obtain | | 1138: they are not, we could augment CC with TCP timestamps to obtain | |
| | | | |
| 2000 found at line 1276: | | 2000 found at line 1276: | |
|
| 1273: | | 1274: | |
| 1274: (a) no timestamps 2**31/MSL MSL 3rd sequence | | 1275: (a) no timestamps 2**31/MSL MSL 3rd sequence | |
| 1275: e.g., MSL=2000 sec space | | 1276: e.g., MSL=2000 sec space | |
| 1276: TRmax = 10**6 | | 1277: TRmax = 10**6 | |
| 1277: | | 1278: | |
| | | | |
| +=+=+=+=+= File rfc1405.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1405.txt +=+=+=+=+= | |
|
| | | | |
| 'yy' on a line without 'yyyy' found at line 378: | | 'yy' on a line without 'yyyy' found at line 378: | |
|
| 375: maps into | | 376: maps into | |
| 376: | | 377: | |
| 377: C=xx; ADMD=yyy; PRMD=zzz; O=ooo; OU=uuu; DD.Dnet=net; | | 378: C=xx; ADMD=yyy; PRMD=zzz; O=ooo; OU=uuu; DD.Dnet=net; | |
| 378: DD.Mail-11=route::node::localpart; | | 379: DD.Mail-11=route::node::localpart; | |
| 379: | | 380: | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 384: | | 'yy' on a line without 'yyyy' found at line 384: | |
|
| 381: | | 382: | |
| 382: xx = country code of the gateway performing the conversion | | 383: xx = country code of the gateway performing the conversion | |
| 383: yyy = Admd of the gateway performing the conversion | | 384: yyy = Admd of the gateway performing the conversion | |
| 384: zzz = Prmd of the gateway performing the conversion | | 385: zzz = Prmd of the gateway performing the conversion | |
| 385: ooo = Organisation of the gateway performing the conversion | | 386: ooo = Organisation of the gateway performing the conversion | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 474: | | 'yy' on a line without 'yyyy' found at line 474: | |
|
| 471: it is connected to. In this case the mapping is trivial: | | 472: it is connected to. In this case the mapping is trivial: | |
| 472: | | 473: | |
| 473: C=xx; ADMD=yyy; PRMD=zzz; O=ooo; OU=uuu; DD.Dnet=net; | | 474: C=xx; ADMD=yyy; PRMD=zzz; O=ooo; OU=uuu; DD.Dnet=net; | |
| 474: DD.Mail-11=route::node::localpart; | | 475: DD.Mail-11=route::node::localpart; | |
| 475: | | 476: | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 477: | | 'yy' on a line without 'yyyy' found at line 477: | |
|
| 474: DD.Mail-11=route::node::localpart; | | 475: DD.Mail-11=route::node::localpart; | |
| 475: | | 476: | |
| 476: (see sect. 5.2 for explication of 'xx','yyy','zzz','ooo','uuu','net') | | 477: (see sect. 5.2 for explication of 'xx','yyy','zzz','ooo','uuu','net') | |
| 477: | | 478: | |
| 478: maps into | | 479: maps into | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 487: | | 'yy' on a line without 'yyyy' found at line 487: | |
|
| 484: described into section 5.4 apply: | | 485: described into section 5.4 apply: | |
| 485: | | 486: | |
| 486: C=xx; ADMD=yyy; PRMD=www; DD.Dnet=net; | | 487: C=xx; ADMD=yyy; PRMD=www; DD.Dnet=net; | |
| 487: DD.Mail-11=route::node::localpart; | | 488: DD.Mail-11=route::node::localpart; | |
| 488: | | 489: | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 492: | | 'yy' on a line without 'yyyy' found at line 492: | |
|
| 489: maps into | | 490: maps into | |
| 490: | | 491: | |
| 491: gwnode::gw%"C=xx;ADMD=yyy;PRMD=www;DD.Dnet=net; | | 492: gwnode::gw%"C=xx;ADMD=yyy;PRMD=www;DD.Dnet=net; | |
| 492: DD.Mail-11=route::node::localpart;" | | 493: DD.Mail-11=route::node::localpart;" | |
| 493: | | 494: | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 595: | | 'yy' on a line without 'yyyy' found at line 595: | |
|
| 592: maps into | | 593: maps into | |
| 593: | | 594: | |
| 594: C=xx; ADMD=yyy; DD.Dnet=net; | | 595: C=xx; ADMD=yyy; DD.Dnet=net; | |
| 595: DD.Mail-11=route::gwnode::gw(p)(q)x400-text-address(q); | | 596: DD.Mail-11=route::gwnode::gw(p)(q)x400-text-address(q); | |
| 596: | | 597: | |
| | | | |
| +=+=+=+=+= File rfc1409.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1409.txt +=+=+=+=+= | |
|
| | | | |
| 'yy' on a line without 'yyyy' found at line 311: | | 'yy' on a line without 'yyyy' found at line 311: | |
|
| 308: IAC SB AUTHENTICATION REPLY | | 309: IAC SB AUTHENTICATION REPLY | |
| 309: KERBEROS_V4 CLIENT|MUTUAL | | 310: KERBEROS_V4 CLIENT|MUTUAL | |
| 310: RESPONSE yy yy yy yy yy yy yy yy | | 311: RESPONSE yy yy yy yy yy yy yy yy | |
| 311: IAC SE | | 312: IAC SE | |
| 312: | | 313: | |
| | | | |
| +=+=+=+=+= File rfc1411.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1411.txt +=+=+=+=+= | |
|
| | | | |
| 'yy' on a line without 'yyyy' found at line 163: | | 'yy' on a line without 'yyyy' found at line 163: | |
|
| 160: IAC SB AUTHENTICATION REPLY | | 161: IAC SB AUTHENTICATION REPLY | |
| 161: KERBEROS_V4 CLIENT|MUTUAL | | 162: KERBEROS_V4 CLIENT|MUTUAL | |
| 162: RESPONSE yy yy yy yy yy yy yy yy | | 163: RESPONSE yy yy yy yy yy yy yy yy | |
| 163: IAC SE | | 164: IAC SE | |
| 164: | | 165: | |
| | | | |
| +=+=+=+=+= File rfc1415.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1415.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 2814: | | 2000 found at line 2814: | |
|
| 2811: 2 1016 Grouping threshold violation | 503 | | 2812: 2 1016 Grouping threshold violation | 503 | |
| 2812: 2 1017 Inconsistent PDU request | 503 | | 2813: 2 1017 Inconsistent PDU request | 503 | |
| 2813: 2 2000 Association with user not allowed | 532 | | 2814: 2 2000 Association with user not allowed | 532 | |
| 2814: 2 2002 Unsupported service class | 504 | | 2815: 2 2002 Unsupported service class | 504 | |
| 2815: 0 2003 Unsupported functional unit | 211 | | 2816: 0 2003 Unsupported functional unit | 211 | |
| | | | |
| +=+=+=+=+= File rfc1416.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1416.txt +=+=+=+=+= | |
|
| | | | |
| 'yy' on a line without 'yyyy' found at line 318: | | 'yy' on a line without 'yyyy' found at line 318: | |
|
| 315: IAC SB AUTHENTICATION REPLY | | 316: IAC SB AUTHENTICATION REPLY | |
| 316: KERBEROS_V4 CLIENT|MUTUAL | | 317: KERBEROS_V4 CLIENT|MUTUAL | |
| 317: RESPONSE yy yy yy yy yy yy yy yy | | 318: RESPONSE yy yy yy yy yy yy yy yy | |
| 318: IAC SE | | 319: IAC SE | |
| 319: | | 320: | |
| | | | |
| +=+=+=+=+= File rfc1417.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1417.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 156: | | 2000 found at line 156: | |
|
| 153: c/o Rapport Communication | | 154: c/o Rapport Communication | |
| 154: 3055 Q Street NW | | 155: 3055 Q Street NW | |
| 155: Washington, DC 20007 | | 156: Washington, DC 20007 | |
| 156: US | | 157: US | |
| 157: | | 158: | |
| | | | |
| 2000 found at line 198: | | 2000 found at line 198: | |
|
| 195: Rapport Communication | | 196: Rapport Communication | |
| 196: 3055 Q Street NW | | 197: 3055 Q Street NW | |
| 197: Washington, DC 20007 | | 198: Washington, DC 20007 | |
| 198: | | 199: | |
| 199: Phone: +1 202-342-2727 | | 200: Phone: +1 202-342-2727 | |
| | | | |
| +=+=+=+=+= File rfc1421.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1421.txt +=+=+=+=+= | |
|
| | | | |
| 'yy' on a line without 'yyyy' found at line 1148: | | 'yy' on a line without 'yyyy' found at line 1148: | |
|
| 1145: BAoTF1JTQSBEYXRhIFNlY3VyaXR5LCBJbmMuMQ8wDQYDVQQLEwZCZXRhIDExDTAL | | 1146: BAoTF1JTQSBEYXRhIFNlY3VyaXR5LCBJbmMuMQ8wDQYDVQQLEwZCZXRhIDExDTAL | |
| 1146: BgNVBAsTBFRMQ0EwHhcNOTEwOTAxMDgwMDAwWhcNOTIwOTAxMDc1OTU5WjBRMQsw | | 1147: BgNVBAsTBFRMQ0EwHhcNOTEwOTAxMDgwMDAwWhcNOTIwOTAxMDc1OTU5WjBRMQsw | |
| 1147: CQYDVQQGEwJVUzEgMB4GA1UEChMXUlNBIERhdGEgU2VjdXJpdHksIEluYy4xDzAN | | 1148: CQYDVQQGEwJVUzEgMB4GA1UEChMXUlNBIERhdGEgU2VjdXJpdHksIEluYy4xDzAN | |
| 1148: BgNVBAsTBkJldGEgMTEPMA0GA1UECxMGTk9UQVJZMHAwCgYEVQgBAQICArwDYgAw | | 1149: BgNVBAsTBkJldGEgMTEPMA0GA1UECxMGTk9UQVJZMHAwCgYEVQgBAQICArwDYgAw | |
| 1149: XwJYCsnp6lQCxYykNlODwutF/jMJ3kL+3PjYyHOwk+/9rLg6X65B/LD4bJHtO5XW | | 1150: XwJYCsnp6lQCxYykNlODwutF/jMJ3kL+3PjYyHOwk+/9rLg6X65B/LD4bJHtO5XW | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 1150: | | 'yy' on a line without 'yyyy' found at line 1150: | |
|
| 1147: CQYDVQQGEwJVUzEgMB4GA1UEChMXUlNBIERhdGEgU2VjdXJpdHksIEluYy4xDzAN | | 1148: CQYDVQQGEwJVUzEgMB4GA1UEChMXUlNBIERhdGEgU2VjdXJpdHksIEluYy4xDzAN | |
| 1148: BgNVBAsTBkJldGEgMTEPMA0GA1UECxMGTk9UQVJZMHAwCgYEVQgBAQICArwDYgAw | | 1149: BgNVBAsTBkJldGEgMTEPMA0GA1UECxMGTk9UQVJZMHAwCgYEVQgBAQICArwDYgAw | |
| 1149: XwJYCsnp6lQCxYykNlODwutF/jMJ3kL+3PjYyHOwk+/9rLg6X65B/LD4bJHtO5XW | | 1150: XwJYCsnp6lQCxYykNlODwutF/jMJ3kL+3PjYyHOwk+/9rLg6X65B/LD4bJHtO5XW | |
| 1150: cqAz/7R7XhjYCm0PcqbdzoACZtIlETrKrcJiDYoP+DkZ8k1gCk7hQHpbIwIDAQAB | | 1151: cqAz/7R7XhjYCm0PcqbdzoACZtIlETrKrcJiDYoP+DkZ8k1gCk7hQHpbIwIDAQAB | |
| 1151: MA0GCSqGSIb3DQEBAgUAA38AAICPv4f9Gx/tY4+p+4DB7MV+tKZnvBoy8zgoMGOx | | 1152: MA0GCSqGSIb3DQEBAgUAA38AAICPv4f9Gx/tY4+p+4DB7MV+tKZnvBoy8zgoMGOx | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 1256: | | 'yy' on a line without 'yyyy' found at line 1256: | |
|
| 1253: BAoTF1JTQSBEYXRhIFNlY3VyaXR5LCBJbmMuMQ8wDQYDVQQLEwZCZXRhIDExDTAL | | 1254: BAoTF1JTQSBEYXRhIFNlY3VyaXR5LCBJbmMuMQ8wDQYDVQQLEwZCZXRhIDExDTAL | |
| 1254: BgNVBAsTBFRMQ0EwHhcNOTEwOTAxMDgwMDAwWhcNOTIwOTAxMDc1OTU5WjBRMQsw | | 1255: BgNVBAsTBFRMQ0EwHhcNOTEwOTAxMDgwMDAwWhcNOTIwOTAxMDc1OTU5WjBRMQsw | |
| 1255: CQYDVQQGEwJVUzEgMB4GA1UEChMXUlNBIERhdGEgU2VjdXJpdHksIEluYy4xDzAN | | 1256: CQYDVQQGEwJVUzEgMB4GA1UEChMXUlNBIERhdGEgU2VjdXJpdHksIEluYy4xDzAN | |
| 1256: BgNVBAsTBkJldGEgMTEPMA0GA1UECxMGTk9UQVJZMHAwCgYEVQgBAQICArwDYgAw | | 1257: BgNVBAsTBkJldGEgMTEPMA0GA1UECxMGTk9UQVJZMHAwCgYEVQgBAQICArwDYgAw | |
| 1257: XwJYCsnp6lQCxYykNlODwutF/jMJ3kL+3PjYyHOwk+/9rLg6X65B/LD4bJHtO5XW | | 1258: XwJYCsnp6lQCxYykNlODwutF/jMJ3kL+3PjYyHOwk+/9rLg6X65B/LD4bJHtO5XW | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 1258: | | 'yy' on a line without 'yyyy' found at line 1258: | |
|
| 1255: CQYDVQQGEwJVUzEgMB4GA1UEChMXUlNBIERhdGEgU2VjdXJpdHksIEluYy4xDzAN | | 1256: CQYDVQQGEwJVUzEgMB4GA1UEChMXUlNBIERhdGEgU2VjdXJpdHksIEluYy4xDzAN | |
| 1256: BgNVBAsTBkJldGEgMTEPMA0GA1UECxMGTk9UQVJZMHAwCgYEVQgBAQICArwDYgAw | | 1257: BgNVBAsTBkJldGEgMTEPMA0GA1UECxMGTk9UQVJZMHAwCgYEVQgBAQICArwDYgAw | |
| 1257: XwJYCsnp6lQCxYykNlODwutF/jMJ3kL+3PjYyHOwk+/9rLg6X65B/LD4bJHtO5XW | | 1258: XwJYCsnp6lQCxYykNlODwutF/jMJ3kL+3PjYyHOwk+/9rLg6X65B/LD4bJHtO5XW | |
| 1258: cqAz/7R7XhjYCm0PcqbdzoACZtIlETrKrcJiDYoP+DkZ8k1gCk7hQHpbIwIDAQAB | | 1259: cqAz/7R7XhjYCm0PcqbdzoACZtIlETrKrcJiDYoP+DkZ8k1gCk7hQHpbIwIDAQAB | |
| 1259: MA0GCSqGSIb3DQEBAgUAA38AAICPv4f9Gx/tY4+p+4DB7MV+tKZnvBoy8zgoMGOx | | 1260: MA0GCSqGSIb3DQEBAgUAA38AAICPv4f9Gx/tY4+p+4DB7MV+tKZnvBoy8zgoMGOx | |
| | | | |
| +=+=+=+=+= File rfc1422.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1422.txt +=+=+=+=+= | |
|
| | | | |
| UTCTime found at line 1596: | | UTCTime found at line 1596: | |
|
| 1593: | | 1594: | |
| 1594: Validity ::= SEQUENCE{ | | 1595: Validity ::= SEQUENCE{ | |
| 1595: notBefore UTCTime, | | 1596: notBefore UTCTime, | |
| 1596: notAfter UTCTime} | | 1597: notAfter UTCTime} | |
| 1597: | | 1598: | |
| | | | |
| UTCTime found at line 1597: | | UTCTime found at line 1597: | |
|
| 1594: Validity ::= SEQUENCE{ | | 1595: Validity ::= SEQUENCE{ | |
| 1595: notBefore UTCTime, | | 1596: notBefore UTCTime, | |
| 1596: notAfter UTCTime} | | 1597: notAfter UTCTime} | |
| 1597: | | 1598: | |
| 1598: SubjectPublicKeyInfo ::= SEQUENCE{ | | 1599: SubjectPublicKeyInfo ::= SEQUENCE{ | |
| | | | |
| UTCTime found at line 1640: | | UTCTime found at line 1640: | |
|
| 1637: signature AlgorithmIdentifier, | | 1638: signature AlgorithmIdentifier, | |
| 1638: issuer Name, | | 1639: issuer Name, | |
| 1639: lastUpdate UTCTime, | | 1640: lastUpdate UTCTime, | |
| 1640: nextUpdate UTCTime, | | 1641: nextUpdate UTCTime, | |
| 1641: revokedCertificates | | 1642: revokedCertificates | |
| | | | |
| UTCTime found at line 1641: | | UTCTime found at line 1641: | |
|
| 1638: issuer Name, | | 1639: issuer Name, | |
| 1639: lastUpdate UTCTime, | | 1640: lastUpdate UTCTime, | |
| 1640: nextUpdate UTCTime, | | 1641: nextUpdate UTCTime, | |
| 1641: revokedCertificates | | 1642: revokedCertificates | |
| 1642: SEQUENCE OF CRLEntry OPTIONAL} | | 1643: SEQUENCE OF CRLEntry OPTIONAL} | |
| | | | |
| UTCTime found at line 1647: | | UTCTime found at line 1647: | |
|
| 1644: CRLEntry ::= SEQUENCE{ | | 1645: CRLEntry ::= SEQUENCE{ | |
| 1645: userCertificate SerialNumber, | | 1646: userCertificate SerialNumber, | |
| 1646: revocationDate UTCTime} | | 1647: revocationDate UTCTime} | |
| 1647: | | 1648: | |
| 1648: References | | 1649: References | |
| | | | |
| century found at line 463: | | century found at line 463: | |
|
| 460: confusion relating to daylight savings time. Note that UTCT | | 461: confusion relating to daylight savings time. Note that UTCT | |
| 461: expresses the value of a year modulo 100 (with no indication of | | 462: expresses the value of a year modulo 100 (with no indication of | |
| 462: century), hence comparisons involving dates in different centuries | | 463: century), hence comparisons involving dates in different centuries | |
| 463: must be performed with care. | | 464: must be performed with care. | |
| 464: | | 465: | |
| | | | |
| +=+=+=+=+= File rfc1432.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1432.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 711: | | 2000 found at line 711: | |
|
| 708: Digital Press | | 709: Digital Press | |
| 709: buddenhagen@cecv01.enet.dec.com McGraw-Hill | | 710: buddenhagen@cecv01.enet.dec.com McGraw-Hill | |
| 710: 617-276-1498 212-512-2000 | | 711: 617-276-1498 212-512-2000 | |
| 711: fax: 617-276-4314 1221 Ave. of the Americas | | 712: fax: 617-276-4314 1221 Ave. of the Americas | |
| 712: Digital Equipment Corporation New York, NY 10020 | | 713: Digital Equipment Corporation New York, NY 10020 | |
| | | | |
| +=+=+=+=+= File rfc1437.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1437.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 185: | | 2000 found at line 185: | |
|
| 182: generation of the X.400 specification, X.400-1996. This will give | | 183: generation of the X.400 specification, X.400-1996. This will give | |
| 183: the community ample time to define a more complete specification for | | 184: the community ample time to define a more complete specification for | |
| 184: matter transport as part of X.400-2000, and possibly even a readily- | | 185: matter transport as part of X.400-2000, and possibly even a readily- | |
| 185: implementable specification as part of X.400-2004, although some will | | 186: implementable specification as part of X.400-2004, although some will | |
| 186: no doubt argue that this would be too strong a break with tradition. | | 187: no doubt argue that this would be too strong a break with tradition. | |
| | | | |
| +=+=+=+=+= File rfc1440.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1440.txt +=+=+=+=+= | |
|
| | | | |
| 'yy' on a line without 'yyyy' found at line 332: | | 'yy' on a line without 'yyyy' found at line 332: | |
|
| 329: The time stamp on the file as it appears at the sending site may be | | 330: The time stamp on the file as it appears at the sending site may be | |
| 330: sent and applied to the copy at the receiving site. The form is US | | 331: sent and applied to the copy at the receiving site. The form is US | |
| 331: mm/dd/yy and hh:mm:ss. A time zone is optional. If the time zone is | | 332: mm/dd/yy and hh:mm:ss. A time zone is optional. If the time zone is | |
| 332: omitted, local time is assumed. If the DATE command is omitted, time | | 333: omitted, local time is assumed. If the DATE command is omitted, time | |
| 333: and date of arrival are assumed. | | 334: and date of arrival are assumed. | |
| | | | |
| +=+=+=+=+= File rfc1442.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1442.txt +=+=+=+=+= | |
|
| | | | |
| UTCTime found at line 362: | | UTCTime found at line 362: | |
|
| 359: BEGIN | | 360: BEGIN | |
| 360: TYPE NOTATION ::= | | 361: TYPE NOTATION ::= | |
| 361: "LAST-UPDATED" value(Update UTCTime) | | 362: "LAST-UPDATED" value(Update UTCTime) | |
| 362: "ORGANIZATION" Text | | 363: "ORGANIZATION" Text | |
| 363: "CONTACT-INFO" Text | | 364: "CONTACT-INFO" Text | |
| | | | |
| UTCTime found at line 378: | | UTCTime found at line 378: | |
|
| 375: | Revisions Revision | | 376: | Revisions Revision | |
| 376: Revision ::= | | 377: Revision ::= | |
| 377: "REVISION" value(Update UTCTime) | | 378: "REVISION" value(Update UTCTime) | |
| 378: "DESCRIPTION" Text | | 379: "DESCRIPTION" Text | |
| 379: | | 380: | |
| | | | |
| +=+=+=+=+= File rfc1453.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1453.txt +=+=+=+=+= | |
|
| | | | |
| 1900 found at line 516: | | 1900 found at line 516: | |
|
| 513: | | 514: | |
| 514: [XTP92] Xpress Transfer Protocol, version 3.6, XTP Forum, | | 515: [XTP92] Xpress Transfer Protocol, version 3.6, XTP Forum, | |
| 515: 1900 State Street, Suite D, Santa Barbara, California | | 516: 1900 State Street, Suite D, Santa Barbara, California | |
| 516: 93101 USA, January 11, 1992. | | 517: 93101 USA, January 11, 1992. | |
| 517: | | 518: | |
| | | | |
| +=+=+=+=+= File rfc1458.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1458.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 1026: | | 2000 found at line 1026: | |
|
| 1023: Reading, MA 01867 | | 1024: Reading, MA 01867 | |
| 1024: | | 1025: | |
| 1025: Phone: (617) 942-2000 | | 1026: Phone: (617) 942-2000 | |
| 1026: EMail: rebraudes@tasc.com | | 1027: EMail: rebraudes@tasc.com | |
| 1027: | | 1028: | |
| | | | |
| 2000 found at line 1035: | | 2000 found at line 1035: | |
|
| 1032: Reading, MA 01867 | | 1033: Reading, MA 01867 | |
| 1033: | | 1034: | |
| 1034: Phone: (617) 942-2000 | | 1035: Phone: (617) 942-2000 | |
| 1035: EMail: gszabele@tasc.com | | 1036: EMail: gszabele@tasc.com | |
| 1036: | | 1037: | |
| | | | |
| +=+=+=+=+= File rfc1465.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1465.txt +=+=+=+=+= | |
|
| | | | |
| 'yy' on a line without 'yyyy' found at line 499: | | 'yy' on a line without 'yyyy' found at line 499: | |
|
| 496: Switzerland | | 497: Switzerland | |
| 497: | | 498: | |
| 498: <Update-info> ::= "Update: FORMAT=V3; DATE=" 'yymmdd' \ | | 499: <Update-info> ::= "Update: FORMAT=V3; DATE=" 'yymmdd' \ | |
| 499: "; START=" 'yymmdd' \ | | 500: "; START=" 'yymmdd' \ | |
| 500: ["; END=" 'yymmdd'] <CR> | | 501: ["; END=" 'yymmdd'] <CR> | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 500: | | 'yy' on a line without 'yyyy' found at line 500: | |
|
| 497: | | 498: | |
| 498: <Update-info> ::= "Update: FORMAT=V3; DATE=" 'yymmdd' \ | | 499: <Update-info> ::= "Update: FORMAT=V3; DATE=" 'yymmdd' \ | |
| 499: "; START=" 'yymmdd' \ | | 500: "; START=" 'yymmdd' \ | |
| 500: ["; END=" 'yymmdd'] <CR> | | 501: ["; END=" 'yymmdd'] <CR> | |
| 501: The <Update-info> contains also the format identifier. | | 502: The <Update-info> contains also the format identifier. | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 501: | | 'yy' on a line without 'yyyy' found at line 501: | |
|
| 498: <Update-info> ::= "Update: FORMAT=V3; DATE=" 'yymmdd' \ | | 499: <Update-info> ::= "Update: FORMAT=V3; DATE=" 'yymmdd' \ | |
| 499: "; START=" 'yymmdd' \ | | 500: "; START=" 'yymmdd' \ | |
| 500: ["; END=" 'yymmdd'] <CR> | | 501: ["; END=" 'yymmdd'] <CR> | |
| 501: The <Update-info> contains also the format identifier. | | 502: The <Update-info> contains also the format identifier. | |
| 502: | | 503: | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 512: | | 'yy' on a line without 'yyyy' found at line 512: | |
|
| 509: | | 510: | |
| 510: The date of the last update of a document is given in | | 511: The date of the last update of a document is given in | |
| 511: the form 'yymmdd'. | | 512: the form 'yymmdd'. | |
| 512: A start date must be set. A document can be published | | 513: A start date must be set. A document can be published | |
| 513: this way before the information in it is valid. (This | | 514: this way before the information in it is valid. (This | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 1673: | | 'yy' on a line without 'yyyy' found at line 1673: | |
|
| 1670: | <DirectoryName> ) | | 1671: | <DirectoryName> ) | |
| 1671: | | 1672: | |
| 1672: <Update-info> ::= "Update: FORMAT=V3; DATE=" 'yymmdd' \ | | 1673: <Update-info> ::= "Update: FORMAT=V3; DATE=" 'yymmdd' \ | |
| 1673: "; START=" 'yymmdd' \ | | 1674: "; START=" 'yymmdd' \ | |
| 1674: ["; END=" 'yymmdd'] <CR> | | 1675: ["; END=" 'yymmdd'] <CR> | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 1674: | | 'yy' on a line without 'yyyy' found at line 1674: | |
|
| 1671: | | 1672: | |
| 1672: <Update-info> ::= "Update: FORMAT=V3; DATE=" 'yymmdd' \ | | 1673: <Update-info> ::= "Update: FORMAT=V3; DATE=" 'yymmdd' \ | |
| 1673: "; START=" 'yymmdd' \ | | 1674: "; START=" 'yymmdd' \ | |
| 1674: ["; END=" 'yymmdd'] <CR> | | 1675: ["; END=" 'yymmdd'] <CR> | |
| 1675: | | 1676: | |
| | | | |
| 'yy' on a line without 'yyyy' found at line 1675: | | 'yy' on a line without 'yyyy' found at line 1675: | |
|
| 1672: <Update-info> ::= "Update: FORMAT=V3; DATE=" 'yymmdd' \ | | 1673: <Update-info> ::= "Update: FORMAT=V3; DATE=" 'yymmdd' \ | |
| 1673: "; START=" 'yymmdd' \ | | 1674: "; START=" 'yymmdd' \ | |
| 1674: ["; END=" 'yymmdd'] <CR> | | 1675: ["; END=" 'yymmdd'] <CR> | |
| 1675: | | 1676: | |
| 1676: <window-size> ::= "RTS-window-size: " \ | | 1677: <window-size> ::= "RTS-window-size: " \ | |
| | | | |
| +=+=+=+=+= File rfc1467.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1467.txt +=+=+=+=+= | |
|
| | | | |
| 'yy' on a line without 'yyyy' found at line 408: | | 'yy' on a line without 'yyyy' found at line 408: | |
|
| 405: | | 406: | |
| 406: [6] Solensky, F., Internet Growth Charts, "big-internet" mailing | | 407: [6] Solensky, F., Internet Growth Charts, "big-internet" mailing | |
| 407: list, munnari.oz.au:big-internet/nsf-netnumbers-<yymm>.ps | | 408: list, munnari.oz.au:big-internet/nsf-netnumbers-<yymm>.ps | |
| 408: | | 409: | |
| 409: 9. Other relevant documents | | 410: 9. Other relevant documents | |
| | | | |
| +=+=+=+=+= File rfc1470.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1470.txt +=+=+=+=+= | |
|
| | | | |
| 'yy' on a line without 'yyyy' found at line 247: | | 'yy' on a line without 'yyyy' found at line 247: | |
|
| 244: | | 245: | |
| 245: DATE OF MOST RECENT UPDATE TO THIS CATALOG ENTRY | | 246: DATE OF MOST RECENT UPDATE TO THIS CATALOG ENTRY | |
| 246: <YYMMDD> | | 247: <YYMMDD> | |
| 247: | | 248: | |
| 248: Keywords | | 249: Keywords | |
| | | | |
| 2000 found at line 4696: | | 2000 found at line 4696: | |
|
| 4693: libraries), but this has not been done. Curses is very | | 4694: libraries), but this has not been done. Curses is very | |
| 4694: slow and cpu intensive on VMS, but the tool has been | | 4695: slow and cpu intensive on VMS, but the tool has been | |
| 4695: run in a window on a VAXstation 2000. Just don't try | | 4696: run in a window on a VAXstation 2000. Just don't try | |
| 4696: to run it on a terminal connected to a 11/750. | | 4697: to run it on a terminal connected to a 11/750. | |
| 4697: | | 4698: | |
| | | | |
| +=+=+=+=+= File rfc1479.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1479.txt +=+=+=+=+= | |
|
| | | | |
| century found at line 752: | | century found at line 752: | |
|
| 749: We note that none of the IDPR protocols contain explicit provisions | | 750: We note that none of the IDPR protocols contain explicit provisions | |
| 750: for dealing with an exhausted timestamp space. As timestamp space | | 751: for dealing with an exhausted timestamp space. As timestamp space | |
| 751: exhaustion will not occur until well into the next century, we expect | | 752: exhaustion will not occur until well into the next century, we expect | |
| 752: timestamp space viability to outlast the IDPR protocols. | | 753: timestamp space viability to outlast the IDPR protocols. | |
| 753: | | 754: | |
| | | | |
| +=+=+=+=+= File rfc1486.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1486.txt +=+=+=+=+= | |
|
| | | | |
| 2000 found at line 745: | | 2000 found at line 745: | |
|
| 742: Date: Sun, 11 Apr 1993 20:34:12 -0800 | | 743: Date: Sun, 11 Apr 1993 20:34:12 -0800 | |
| 743: Subject: Comments on "An Experiment in Remote Printing" | | 744: Subject: Comments on "An Experiment in Remote Printing" | |
| 744: Message-ID: <19930411203412000.123@tpd.org> | | 745: Message-ID: <19930411203412000.123@tpd.org> | |
| 745: MIME-Version: 1.0 | | 746: MIME-Version: 1.0 | |
| 746: Content-Type: text/plain; charset=us-ascii | | 747: Content-Type: text/plain; charset=us-ascii | |
| | | | |
| +=+=+=+=+= File rfc1488.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1488.txt +=+=+=+=+= | |
|
| | | | |
| UTCTime found at line 302: | | UTCTime found at line 302: | |
|
| 299: 2.21. UTC Time | | 300: 2.21. UTC Time | |
| 300: | | 301: | |
| 301: Values of type uTCTimeSyntax are encoded as if they were Printable | | 302: Values of type uTCTimeSyntax are encoded as if they were Printable | |
| 302: Strings with the strings containing a UTCTime value. | | 303: Strings with the strings containing a UTCTime value. | |
| 303: | | 304: | |
| | | | |
| UTCTime found at line 303: | | UTCTime found at line 303: | |
|
| 300: | | 301: | |
| 301: Values of type uTCTimeSyntax are encoded as if they were Printable | | 302: Values of type uTCTimeSyntax are encoded as if they were Printable | |
| 302: Strings with the strings containing a UTCTime value. | | 303: Strings with the strings containing a UTCTime value. | |
| 303: | | 304: | |
| 304: 2.22. Guide (search guide) | | 305: 2.22. Guide (search guide) | |
| | | | |
| UTCTime found at line 377: | | UTCTime found at line 377: | |
|
| 374: <algorithm-id> ::= <oid> '#' <algorithm-parameters> | | 375: <algorithm-id> ::= <oid> '#' <algorithm-parameters> | |
| 375: | | 376: | |
| 376: <utc-time> ::= an encoded UTCTime value | | 377: <utc-time> ::= an encoded UTCTime value | |
| 377: | | 378: | |
| 378: <hex-string> ::= <hex-digit> | <hex-digit> <hex-string> | | 379: <hex-string> ::= <hex-digit> | <hex-digit> <hex-string> | |
| | | | |
| +=+=+=+=+= File rfc1500.txt +=+=+=+=+= | | +=+=+=+=+= File rfc1500.txt +=+=+=+=+= | |
|
| |