blob: e7e37a395eb5798f65a28f9e5aff0ecab02f554a [file] [log] [blame]
Elliott Hughes4e19c8e2022-04-15 15:11:02 -07001.TH PCRE2UNICODE 3 "22 December 2021" "PCRE2 10.40"
Janis Danisevskis53e448c2016-03-31 13:35:25 +01002.SH NAME
3PCRE - Perl-compatible regular expressions (revised API)
4.SH "UNICODE AND UTF SUPPORT"
5.rs
6.sp
Elliott Hughes2dbd7d22020-06-03 14:32:37 -07007PCRE2 is normally built with Unicode support, though if you do not need it, you
8can build it without, in which case the library will be smaller. With Unicode
9support, PCRE2 has knowledge of Unicode character properties and can process
10strings of text in UTF-8, UTF-16, and UTF-32 format (depending on the code unit
11width), but this is not the default. Unless specifically requested, PCRE2
12treats each code unit in a string as one character.
13.P
14There are two ways of telling PCRE2 to switch to UTF mode, where characters may
15consist of more than one code unit and the range of values is constrained. The
16program can call
Janis Danisevskis53e448c2016-03-31 13:35:25 +010017.\" HREF
18\fBpcre2_compile()\fP
19.\"
Elliott Hughes2dbd7d22020-06-03 14:32:37 -070020with the PCRE2_UTF option, or the pattern may start with the sequence (*UTF).
21However, the latter facility can be locked out by the PCRE2_NEVER_UTF option.
22That is, the programmer can prevent the supplier of the pattern from switching
23to UTF mode.
Janis Danisevskis53e448c2016-03-31 13:35:25 +010024.P
Elliott Hughes2dbd7d22020-06-03 14:32:37 -070025Note that the PCRE2_MATCH_INVALID_UTF option (see
26.\" HTML <a href="#matchinvalid">
27.\" </a>
28below)
29.\"
30forces PCRE2_UTF to be set.
31.P
32In UTF mode, both the pattern and any subject strings that are matched against
33it are treated as UTF strings instead of strings of individual one-code-unit
34characters. There are also some other changes to the way characters are
35handled, as documented below.
Janis Danisevskis53e448c2016-03-31 13:35:25 +010036.
37.
38.SH "UNICODE PROPERTY SUPPORT"
39.rs
40.sp
41When PCRE2 is built with Unicode support, the escape sequences \ep{..},
Elliott Hughes0c26e192019-08-07 12:24:46 -070042\eP{..}, and \eX can be used. This is not dependent on the PCRE2_UTF setting.
Elliott Hughes4e19c8e2022-04-15 15:11:02 -070043The Unicode properties that can be tested are a subset of those that Perl
44supports. Currently they are limited to the general category properties such as
45Lu for an upper case letter or Nd for a decimal number, the Unicode script
46names such as Arabic or Han, Bidi_Class, Bidi_Control, and the derived
47properties Any and LC (synonym L&). Full lists are given in the
Janis Danisevskis53e448c2016-03-31 13:35:25 +010048.\" HREF
49\fBpcre2pattern\fP
50.\"
51and
52.\" HREF
53\fBpcre2syntax\fP
54.\"
Elliott Hughes4e19c8e2022-04-15 15:11:02 -070055documentation. In general, only the short names for properties are supported.
56For example, \ep{L} matches a letter. Its longer synonym, \ep{Letter}, is not
57supported. Furthermore, in Perl, many properties may optionally be prefixed by
58"Is", for compatibility with Perl 5.6. PCRE2 does not support this.
Janis Danisevskis53e448c2016-03-31 13:35:25 +010059.
60.
61.SH "WIDE CHARACTERS AND UTF MODES"
62.rs
63.sp
Elliott Hughes653c2102019-01-09 15:41:36 -080064Code points less than 256 can be specified in patterns by either braced or
Janis Danisevskis53e448c2016-03-31 13:35:25 +010065unbraced hexadecimal escape sequences (for example, \ex{b3} or \exb3). Larger
66values have to use braced sequences. Unbraced octal code points up to \e777 are
67also recognized; larger ones can be coded using \eo{...}.
68.P
Elliott Hughes653c2102019-01-09 15:41:36 -080069The escape sequence \eN{U+<hex digits>} is recognized as another way of
70specifying a Unicode character by code point in a UTF mode. It is not allowed
Elliott Hughes2dbd7d22020-06-03 14:32:37 -070071in non-UTF mode.
Elliott Hughes653c2102019-01-09 15:41:36 -080072.P
Elliott Hughes2dbd7d22020-06-03 14:32:37 -070073In UTF mode, repeat quantifiers apply to complete UTF characters, not to
Janis Danisevskis53e448c2016-03-31 13:35:25 +010074individual code units.
75.P
Elliott Hughes2dbd7d22020-06-03 14:32:37 -070076In UTF mode, the dot metacharacter matches one UTF character instead of a
Janis Danisevskis53e448c2016-03-31 13:35:25 +010077single code unit.
78.P
Elliott Hughes2dbd7d22020-06-03 14:32:37 -070079In UTF mode, capture group names are not restricted to ASCII, and may contain
Elliott Hughes0c26e192019-08-07 12:24:46 -070080any Unicode letters and decimal digits, as well as underscore.
81.P
Elliott Hughes2dbd7d22020-06-03 14:32:37 -070082The escape sequence \eC can be used to match a single code unit in UTF mode,
Janis Danisevskis53e448c2016-03-31 13:35:25 +010083but its use can lead to some strange effects because it breaks up multi-unit
84characters (see the description of \eC in the
85.\" HREF
86\fBpcre2pattern\fP
87.\"
Elliott Hughes0c26e192019-08-07 12:24:46 -070088documentation). For this reason, there is a build-time option that disables
89support for \eC completely. There is also a less draconian compile-time option
90for locking out the use of \eC when a pattern is compiled.
Janis Danisevskis8b979b22016-08-15 16:09:16 +010091.P
92The use of \eC is not supported by the alternative matching function
93\fBpcre2_dfa_match()\fP when in UTF-8 or UTF-16 mode, that is, when a character
94may consist of more than one code unit. The use of \eC in these modes provokes
95a match-time error. Also, the JIT optimization does not support \eC in these
96modes. If JIT optimization is requested for a UTF-8 or UTF-16 pattern that
97contains \eC, it will not succeed, and so when \fBpcre2_match()\fP is called,
Elliott Hughes2dbd7d22020-06-03 14:32:37 -070098the matching will be carried out by the interpretive function.
Janis Danisevskis53e448c2016-03-31 13:35:25 +010099.P
100The character escapes \eb, \eB, \ed, \eD, \es, \eS, \ew, and \eW correctly test
101characters of any code value, but, by default, the characters that PCRE2
102recognizes as digits, spaces, or word characters remain the same set as in
103non-UTF mode, all with code points less than 256. This remains true even when
104PCRE2 is built to include Unicode support, because to do otherwise would slow
105down matching in many common cases. Note that this also applies to \eb
106and \eB, because they are defined in terms of \ew and \eW. If you want
107to test for a wider sense of, say, "digit", you can use explicit Unicode
108property tests such as \ep{Nd}. Alternatively, if you set the PCRE2_UCP option,
109the way that the character escapes work is changed so that Unicode properties
110are used to determine which characters match. There are more details in the
111section on
112.\" HTML <a href="pcre2pattern.html#genericchartypes">
113.\" </a>
114generic character types
115.\"
116in the
117.\" HREF
118\fBpcre2pattern\fP
119.\"
120documentation.
121.P
122Similarly, characters that match the POSIX named character classes are all
123low-valued characters, unless the PCRE2_UCP option is set.
124.P
125However, the special horizontal and vertical white space matching escapes (\eh,
126\eH, \ev, and \eV) do match all the appropriate Unicode characters, whether or
127not PCRE2_UCP is set.
Elliott Hughes9bc971b2018-07-27 13:23:14 -0700128.
129.
Elliott Hughes2dbd7d22020-06-03 14:32:37 -0700130.SH "UNICODE CASE-EQUIVALENCE"
Elliott Hughes9bc971b2018-07-27 13:23:14 -0700131.rs
132.sp
Elliott Hughes2dbd7d22020-06-03 14:32:37 -0700133If either PCRE2_UTF or PCRE2_UCP is set, upper/lower case processing makes use
134of Unicode properties except for characters whose code points are less than 128
135and that have at most two case-equivalent values. For these, a direct table
136lookup is used for speed. A few Unicode characters such as Greek sigma have
137more than two code points that are case-equivalent, and these are treated
138specially. Setting PCRE2_UCP without PCRE2_UTF allows Unicode-style case
139processing for non-UTF character encodings such as UCS-2.
Janis Danisevskis53e448c2016-03-31 13:35:25 +0100140.
141.
Elliott Hughes0c26e192019-08-07 12:24:46 -0700142.\" HTML <a name="scriptruns"></a>
143.SH "SCRIPT RUNS"
144.rs
145.sp
146The pattern constructs (*script_run:...) and (*atomic_script_run:...), with
147synonyms (*sr:...) and (*asr:...), verify that the string matched within the
148parentheses is a script run. In concept, a script run is a sequence of
149characters that are all from the same Unicode script. However, because some
150scripts are commonly used together, and because some diacritical and other
151marks are used with multiple scripts, it is not that simple.
152.P
153Every Unicode character has a Script property, mostly with a value
154corresponding to the name of a script, such as Latin, Greek, or Cyrillic. There
155are also three special values:
156.P
157"Unknown" is used for code points that have not been assigned, and also for the
158surrogate code points. In the PCRE2 32-bit library, characters whose code
159points are greater than the Unicode maximum (U+10FFFF), which are accessible
160only in non-UTF mode, are assigned the Unknown script.
161.P
162"Common" is used for characters that are used with many scripts. These include
163punctuation, emoji, mathematical, musical, and currency symbols, and the ASCII
164digits 0 to 9.
165.P
166"Inherited" is used for characters such as diacritical marks that modify a
167previous character. These are considered to take on the script of the character
168that they modify.
169.P
170Some Inherited characters are used with many scripts, but many of them are only
171normally used with a small number of scripts. For example, U+102E0 (Coptic
172Epact thousands mark) is used only with Arabic and Coptic. In order to make it
173possible to check this, a Unicode property called Script Extension exists. Its
174value is a list of scripts that apply to the character. For the majority of
175characters, the list contains just one script, the same one as the Script
176property. However, for characters such as U+102E0 more than one Script is
177listed. There are also some Common characters that have a single, non-Common
178script in their Script Extension list.
179.P
180The next section describes the basic rules for deciding whether a given string
181of characters is a script run. Note, however, that there are some special cases
182involving the Chinese Han script, and an additional constraint for decimal
183digits. These are covered in subsequent sections.
184.
185.
186.SS "Basic script run rules"
187.rs
188.sp
189A string that is less than two characters long is a script run. This is the
190only case in which an Unknown character can be part of a script run. Longer
191strings are checked using only the Script Extensions property, not the basic
192Script property.
193.P
194If a character's Script Extension property is the single value "Inherited", it
195is always accepted as part of a script run. This is also true for the property
196"Common", subject to the checking of decimal digits described below. All the
197remaining characters in a script run must have at least one script in common in
198their Script Extension lists. In set-theoretic terminology, the intersection of
199all the sets of scripts must not be empty.
200.P
201A simple example is an Internet name such as "google.com". The letters are all
202in the Latin script, and the dot is Common, so this string is a script run.
203However, the Cyrillic letter "o" looks exactly the same as the Latin "o"; a
204string that looks the same, but with Cyrillic "o"s is not a script run.
205.P
206More interesting examples involve characters with more than one script in their
207Script Extension. Consider the following characters:
208.sp
209 U+060C Arabic comma
210 U+06D4 Arabic full stop
211.sp
212The first has the Script Extension list Arabic, Hanifi Rohingya, Syriac, and
213Thaana; the second has just Arabic and Hanifi Rohingya. Both of them could
214appear in script runs of either Arabic or Hanifi Rohingya. The first could also
215appear in Syriac or Thaana script runs, but the second could not.
216.
217.
218.SS "The Chinese Han script"
219.rs
220.sp
221The Chinese Han script is commonly used in conjunction with other scripts for
222writing certain languages. Japanese uses the Hiragana and Katakana scripts
223together with Han; Korean uses Hangul and Han; Taiwanese Mandarin uses Bopomofo
224and Han. These three combinations are treated as special cases when checking
225script runs and are, in effect, "virtual scripts". Thus, a script run may
226contain a mixture of Hiragana, Katakana, and Han, or a mixture of Hangul and
227Han, or a mixture of Bopomofo and Han, but not, for example, a mixture of
228Hangul and Bopomofo and Han. PCRE2 (like Perl) follows Unicode's Technical
229Standard 39 ("Unicode Security Mechanisms", http://unicode.org/reports/tr39/)
230in allowing such mixtures.
231.
232.
233.SS "Decimal digits"
234.rs
235.sp
236Unicode contains many sets of 10 decimal digits in different scripts, and some
237scripts (including the Common script) contain more than one set. Some of these
238decimal digits them are visually indistinguishable from the common ASCII
239digits. In addition to the script checking described above, if a script run
240contains any decimal digits, they must all come from the same set of 10
241adjacent characters.
242.
243.
Janis Danisevskis53e448c2016-03-31 13:35:25 +0100244.SH "VALIDITY OF UTF STRINGS"
245.rs
246.sp
247When the PCRE2_UTF option is set, the strings passed as patterns and subjects
Elliott Hughes0c26e192019-08-07 12:24:46 -0700248are (by default) checked for validity on entry to the relevant functions. If an
Elliott Hughes2dbd7d22020-06-03 14:32:37 -0700249invalid UTF string is passed, a negative error code is returned. The code unit
Elliott Hughes0c26e192019-08-07 12:24:46 -0700250offset to the offending character can be extracted from the match data block by
251calling \fBpcre2_get_startchar()\fP, which is used for this purpose after a UTF
252error.
253.P
254In some situations, you may already know that your strings are valid, and
255therefore want to skip these checks in order to improve performance, for
256example in the case of a long subject string that is being scanned repeatedly.
257If you set the PCRE2_NO_UTF_CHECK option at compile time or at match time,
258PCRE2 assumes that the pattern or subject it is given (respectively) contains
259only valid UTF code unit sequences.
260.P
261If you pass an invalid UTF string when PCRE2_NO_UTF_CHECK is set, the result
Elliott Hughes2dbd7d22020-06-03 14:32:37 -0700262is undefined and your program may crash or loop indefinitely or give incorrect
263results. There is, however, one mode of matching that can handle invalid UTF
264subject strings. This is enabled by passing PCRE2_MATCH_INVALID_UTF to
265\fBpcre2_compile()\fP and is discussed below in the next section. The rest of
266this section covers the case when PCRE2_MATCH_INVALID_UTF is not set.
Elliott Hughes0c26e192019-08-07 12:24:46 -0700267.P
Elliott Hughes2dbd7d22020-06-03 14:32:37 -0700268Passing PCRE2_NO_UTF_CHECK to \fBpcre2_compile()\fP just disables the UTF check
269for the pattern; it does not also apply to subject strings. If you want to
270disable the check for a subject string you must pass this same option to
Elliott Hughes0c26e192019-08-07 12:24:46 -0700271\fBpcre2_match()\fP or \fBpcre2_dfa_match()\fP.
Janis Danisevskis53e448c2016-03-31 13:35:25 +0100272.P
273UTF-16 and UTF-32 strings can indicate their endianness by special code knows
274as a byte-order mark (BOM). The PCRE2 functions do not handle this, expecting
275strings to be in host byte order.
276.P
Elliott Hughes0c26e192019-08-07 12:24:46 -0700277Unless PCRE2_NO_UTF_CHECK is set, a UTF string is checked before any other
278processing takes place. In the case of \fBpcre2_match()\fP and
279\fBpcre2_dfa_match()\fP calls with a non-zero starting offset, the check is
280applied only to that part of the subject that could be inspected during
281matching, and there is a check that the starting offset points to the first
282code unit of a character or to the end of the subject. If there are no
283lookbehind assertions in the pattern, the check starts at the starting offset.
284Otherwise, it starts at the length of the longest lookbehind before the
Janis Danisevskis53e448c2016-03-31 13:35:25 +0100285starting offset, or at the start of the subject if there are not that many
286characters before the starting offset. Note that the sequences \eb and \eB are
287one-character lookbehinds.
288.P
289In addition to checking the format of the string, there is a check to ensure
290that all code points lie in the range U+0 to U+10FFFF, excluding the surrogate
291area. The so-called "non-character" code points are not excluded because
292Unicode corrigendum #9 makes it clear that they should not be.
293.P
294Characters in the "Surrogate Area" of Unicode are reserved for use by UTF-16,
295where they are used in pairs to encode code points with values greater than
2960xFFFF. The code points that are encoded by UTF-16 pairs are available
297independently in the UTF-8 and UTF-32 encodings. (In other words, the whole
298surrogate thing is a fudge for UTF-16 which unfortunately messes up UTF-8 and
299UTF-32.)
300.P
Elliott Hughes0c26e192019-08-07 12:24:46 -0700301Setting PCRE2_NO_UTF_CHECK at compile time does not disable the error that is
302given if an escape sequence for an invalid Unicode code point is encountered in
303the pattern. If you want to allow escape sequences such as \ex{d800} (a
304surrogate code point) you can set the PCRE2_EXTRA_ALLOW_SURROGATE_ESCAPES extra
305option. However, this is possible only in UTF-8 and UTF-32 modes, because these
306values are not representable in UTF-16.
Janis Danisevskis53e448c2016-03-31 13:35:25 +0100307.
308.
309.\" HTML <a name="utf8strings"></a>
310.SS "Errors in UTF-8 strings"
311.rs
312.sp
313The following negative error codes are given for invalid UTF-8 strings:
314.sp
315 PCRE2_ERROR_UTF8_ERR1
316 PCRE2_ERROR_UTF8_ERR2
317 PCRE2_ERROR_UTF8_ERR3
318 PCRE2_ERROR_UTF8_ERR4
319 PCRE2_ERROR_UTF8_ERR5
320.sp
321The string ends with a truncated UTF-8 character; the code specifies how many
322bytes are missing (1 to 5). Although RFC 3629 restricts UTF-8 characters to be
323no longer than 4 bytes, the encoding scheme (originally defined by RFC 2279)
324allows for up to 6 bytes, and this is checked first; hence the possibility of
3254 or 5 missing bytes.
326.sp
327 PCRE2_ERROR_UTF8_ERR6
328 PCRE2_ERROR_UTF8_ERR7
329 PCRE2_ERROR_UTF8_ERR8
330 PCRE2_ERROR_UTF8_ERR9
331 PCRE2_ERROR_UTF8_ERR10
332.sp
333The two most significant bits of the 2nd, 3rd, 4th, 5th, or 6th byte of the
334character do not have the binary value 0b10 (that is, either the most
335significant bit is 0, or the next bit is 1).
336.sp
337 PCRE2_ERROR_UTF8_ERR11
338 PCRE2_ERROR_UTF8_ERR12
339.sp
340A character that is valid by the RFC 2279 rules is either 5 or 6 bytes long;
341these code points are excluded by RFC 3629.
342.sp
343 PCRE2_ERROR_UTF8_ERR13
344.sp
Elliott Hughes2dbd7d22020-06-03 14:32:37 -0700345A 4-byte character has a value greater than 0x10ffff; these code points are
Janis Danisevskis53e448c2016-03-31 13:35:25 +0100346excluded by RFC 3629.
347.sp
348 PCRE2_ERROR_UTF8_ERR14
349.sp
350A 3-byte character has a value in the range 0xd800 to 0xdfff; this range of
351code points are reserved by RFC 3629 for use with UTF-16, and so are excluded
352from UTF-8.
353.sp
354 PCRE2_ERROR_UTF8_ERR15
355 PCRE2_ERROR_UTF8_ERR16
356 PCRE2_ERROR_UTF8_ERR17
357 PCRE2_ERROR_UTF8_ERR18
358 PCRE2_ERROR_UTF8_ERR19
359.sp
360A 2-, 3-, 4-, 5-, or 6-byte character is "overlong", that is, it codes for a
361value that can be represented by fewer bytes, which is invalid. For example,
362the two bytes 0xc0, 0xae give the value 0x2e, whose correct coding uses just
363one byte.
364.sp
365 PCRE2_ERROR_UTF8_ERR20
366.sp
367The two most significant bits of the first byte of a character have the binary
368value 0b10 (that is, the most significant bit is 1 and the second is 0). Such a
369byte can only validly occur as the second or subsequent byte of a multi-byte
370character.
371.sp
372 PCRE2_ERROR_UTF8_ERR21
373.sp
374The first byte of a character has the value 0xfe or 0xff. These values can
375never occur in a valid UTF-8 string.
376.
377.
378.\" HTML <a name="utf16strings"></a>
379.SS "Errors in UTF-16 strings"
380.rs
381.sp
382The following negative error codes are given for invalid UTF-16 strings:
383.sp
Janis Danisevskis8b979b22016-08-15 16:09:16 +0100384 PCRE2_ERROR_UTF16_ERR1 Missing low surrogate at end of string
385 PCRE2_ERROR_UTF16_ERR2 Invalid low surrogate follows high surrogate
386 PCRE2_ERROR_UTF16_ERR3 Isolated low surrogate
Janis Danisevskis53e448c2016-03-31 13:35:25 +0100387.sp
388.
389.
390.\" HTML <a name="utf32strings"></a>
391.SS "Errors in UTF-32 strings"
392.rs
393.sp
394The following negative error codes are given for invalid UTF-32 strings:
395.sp
Janis Danisevskis8b979b22016-08-15 16:09:16 +0100396 PCRE2_ERROR_UTF32_ERR1 Surrogate character (0xd800 to 0xdfff)
397 PCRE2_ERROR_UTF32_ERR2 Code point is greater than 0x10ffff
Janis Danisevskis53e448c2016-03-31 13:35:25 +0100398.sp
399.
400.
Elliott Hughes2dbd7d22020-06-03 14:32:37 -0700401.\" HTML <a name="matchinvalid"></a>
402.SH "MATCHING IN INVALID UTF STRINGS"
403.rs
404.sp
405You can run pattern matches on subject strings that may contain invalid UTF
406sequences if you call \fBpcre2_compile()\fP with the PCRE2_MATCH_INVALID_UTF
407option. This is supported by \fBpcre2_match()\fP, including JIT matching, but
408not by \fBpcre2_dfa_match()\fP. When PCRE2_MATCH_INVALID_UTF is set, it forces
409PCRE2_UTF to be set as well. Note, however, that the pattern itself must be a
410valid UTF string.
411.P
412Setting PCRE2_MATCH_INVALID_UTF does not affect what \fBpcre2_compile()\fP
413generates, but if \fBpcre2_jit_compile()\fP is subsequently called, it does
414generate different code. If JIT is not used, the option affects the behaviour
415of the interpretive code in \fBpcre2_match()\fP. When PCRE2_MATCH_INVALID_UTF
416is set at compile time, PCRE2_NO_UTF_CHECK is ignored at match time.
417.P
418In this mode, an invalid code unit sequence in the subject never matches any
419pattern item. It does not match dot, it does not match \ep{Any}, it does not
420even match negative items such as [^X]. A lookbehind assertion fails if it
421encounters an invalid sequence while moving the current point backwards. In
422other words, an invalid UTF code unit sequence acts as a barrier which no match
423can cross.
424.P
425You can also think of this as the subject being split up into fragments of
426valid UTF, delimited internally by invalid code unit sequences. The pattern is
427matched fragment by fragment. The result of a successful match, however, is
428given as code unit offsets in the entire subject string in the usual way. There
429are a few points to consider:
430.P
431The internal boundaries are not interpreted as the beginnings or ends of lines
432and so do not match circumflex or dollar characters in the pattern.
433.P
434If \fBpcre2_match()\fP is called with an offset that points to an invalid
435UTF-sequence, that sequence is skipped, and the match starts at the next valid
436UTF character, or the end of the subject.
437.P
438At internal fragment boundaries, \eb and \eB behave in the same way as at the
439beginning and end of the subject. For example, a sequence such as \ebWORD\eb
440would match an instance of WORD that is surrounded by invalid UTF code units.
441.P
442Using PCRE2_MATCH_INVALID_UTF, an application can run matches on arbitrary
443data, knowing that any matched strings that are returned are valid UTF. This
444can be useful when searching for UTF text in executable or other binary files.
445.
446.
Janis Danisevskis53e448c2016-03-31 13:35:25 +0100447.SH AUTHOR
448.rs
449.sp
450.nf
451Philip Hazel
Elliott Hughes4e19c8e2022-04-15 15:11:02 -0700452Retired from University Computing Service
Janis Danisevskis53e448c2016-03-31 13:35:25 +0100453Cambridge, England.
454.fi
455.
456.
457.SH REVISION
458.rs
459.sp
460.nf
Elliott Hughes4e19c8e2022-04-15 15:11:02 -0700461Last updated: 22 December 2021
462Copyright (c) 1997-2021 University of Cambridge.
Janis Danisevskis53e448c2016-03-31 13:35:25 +0100463.fi