diff --git a/src/Acornima/EcmaVersion.cs b/src/Acornima/EcmaVersion.cs index c4bc8a0..fb2828b 100644 --- a/src/Acornima/EcmaVersion.cs +++ b/src/Acornima/EcmaVersion.cs @@ -15,6 +15,7 @@ public enum EcmaVersion ES12 = 12, ES13 = 13, ES14 = 14, + ES15 = 15, ES2015 = ES6, ES2016 = ES7, @@ -25,9 +26,10 @@ public enum EcmaVersion ES2021 = ES12, ES2022 = ES13, ES2023 = ES14, + ES2024 = ES15, /// - /// The latest version which is fully supported (). + /// The latest version which is fully supported (). /// - Latest = ES2023, + Latest = ES2024, } diff --git a/src/Acornima/Helpers/StackGuard.cs b/src/Acornima/Helpers/StackGuard.cs index 143b4d0..1c00841 100644 --- a/src/Acornima/Helpers/StackGuard.cs +++ b/src/Acornima/Helpers/StackGuard.cs @@ -25,4 +25,9 @@ public static void EnsureSufficientExecutionStack(int recursionDepth) RuntimeHelpers.EnsureSufficientExecutionStack(); } } + + public interface IRecursionDepthProvider + { + ref int CurrentDepth { get; } + } } diff --git a/src/Acornima/Parser.cs b/src/Acornima/Parser.cs index f85ea35..4a545c9 100644 --- a/src/Acornima/Parser.cs +++ b/src/Acornima/Parser.cs @@ -10,7 +10,7 @@ namespace Acornima; // https://github.com/acornjs/acorn/blob/8.11.3/acorn/src/index.js -public sealed partial class Parser : IParser +public sealed partial class Parser : IParser, StackGuard.IRecursionDepthProvider { private readonly ParserOptions _options; private readonly TokenizerOptions _tokenizerOptions; @@ -28,12 +28,15 @@ internal Parser(ParserOptions options, IExtension? extension) _tokenizer = extension is null ? new Tokenizer(options.GetTokenizerOptions(), extension: null) : extension.CreateTokenizer(options.GetTokenizerOptions()); + _tokenizer._recursionDepthProvider = this; _tokenizerOptions = _tokenizer.Options; _isReservedWord = _isReservedWordBind = null!; } public ParserOptions Options => _options; + ref int StackGuard.IRecursionDepthProvider.CurrentDepth => ref _recursionDepth; + public Script ParseScript(string input, string? sourceFile = null, bool strict = false) => ParseScript(input ?? ThrowArgumentNullException(nameof(input)), 0, input.Length, sourceFile, strict); diff --git a/src/Acornima/Properties/RegExpConversionErrorMessages.Designer.cs b/src/Acornima/Properties/RegExpConversionErrorMessages.Designer.cs index 235fbd9..d3687cb 100644 --- a/src/Acornima/Properties/RegExpConversionErrorMessages.Designer.cs +++ b/src/Acornima/Properties/RegExpConversionErrorMessages.Designer.cs @@ -19,7 +19,7 @@ namespace Acornima { // class via a tool like ResGen or Visual Studio. // To add or remove a member, edit your .ResX file then rerun ResGen // with the /str option, or rebuild your VS project. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "18.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] internal class RegExpConversionErrorMessages { @@ -115,7 +115,7 @@ internal static string RegExpInconvertibleUnicodePropertyEscape { } /// - /// Looks up a localized string similar to Unicode sets mode (flag v) is not supported currently. + /// Looks up a localized string similar to Conversion of Unicode sets mode (flag v) regular expressions to .NET Regex is not supported. /// internal static string RegExpUnicodeSetsModeNotSupported { get { diff --git a/src/Acornima/Properties/RegExpConversionErrorMessages.resx b/src/Acornima/Properties/RegExpConversionErrorMessages.resx index 48de12e..b87866b 100644 --- a/src/Acornima/Properties/RegExpConversionErrorMessages.resx +++ b/src/Acornima/Properties/RegExpConversionErrorMessages.resx @@ -136,7 +136,7 @@ Inconvertible Unicode property escape - Unicode sets mode (flag v) is not supported currently + Conversion of Unicode sets mode (flag v) regular expressions to .NET Regex is not supported Cannot map group name '{0}' to a unique group name in the adapted regex diff --git a/src/Acornima/Properties/SyntaxErrorMessages.Designer.cs b/src/Acornima/Properties/SyntaxErrorMessages.Designer.cs index 22612b9..7f0eabd 100644 --- a/src/Acornima/Properties/SyntaxErrorMessages.Designer.cs +++ b/src/Acornima/Properties/SyntaxErrorMessages.Designer.cs @@ -699,6 +699,15 @@ internal static string RegExpInvalidCharacterClass { } } + /// + /// Looks up a localized string similar to Invalid regular expression: /{0}/{1}: Invalid character in character class. + /// + internal static string RegExpInvalidCharacterInClass { + get { + return ResourceManager.GetString("RegExpInvalidCharacterInClass", resourceCulture); + } + } + /// /// Looks up a localized string similar to Invalid regular expression: /{0}/{1}: Invalid property name in character class. /// @@ -708,6 +717,15 @@ internal static string RegExpInvalidClassPropertyName { } } + /// + /// Looks up a localized string similar to Invalid regular expression: /{0}/{1}: Invalid set operation in character class. + /// + internal static string RegExpInvalidClassSetOperation { + get { + return ResourceManager.GetString("RegExpInvalidClassSetOperation", resourceCulture); + } + } + /// /// Looks up a localized string similar to Invalid regular expression: /{0}/{1}: Invalid decimal escape. /// @@ -807,6 +825,15 @@ internal static string RegExpMultipleFlagDashes { } } + /// + /// Looks up a localized string similar to Invalid regular expression: /{0}/{1}: Negated character class may contain strings. + /// + internal static string RegExpNegatedCharacterClassWithStrings { + get { + return ResourceManager.GetString("RegExpNegatedCharacterClassWithStrings", resourceCulture); + } + } + /// /// Looks up a localized string similar to Invalid regular expression: /{0}/{1}: Nothing to repeat. /// diff --git a/src/Acornima/Properties/SyntaxErrorMessages.resx b/src/Acornima/Properties/SyntaxErrorMessages.resx index e679baf..1b01722 100644 --- a/src/Acornima/Properties/SyntaxErrorMessages.resx +++ b/src/Acornima/Properties/SyntaxErrorMessages.resx @@ -398,10 +398,18 @@ Invalid regular expression: /{0}/{1}: Invalid character class https://github.com/v8/v8/blob/14.8.3/src/regexp/regexp-error.h + + Invalid regular expression: /{0}/{1}: Invalid character in character class + https://github.com/v8/v8/blob/14.8.3/src/regexp/regexp-error.h + Invalid regular expression: /{0}/{1}: Invalid property name in character class https://github.com/v8/v8/blob/14.8.3/src/regexp/regexp-error.h + + Invalid regular expression: /{0}/{1}: Invalid set operation in character class + https://github.com/v8/v8/blob/14.8.3/src/regexp/regexp-error.h + Invalid regular expression: /{0}/{1}: Invalid decimal escape https://github.com/v8/v8/blob/14.8.3/src/regexp/regexp-error.h @@ -446,6 +454,10 @@ Invalid regular expression: /{0}/{1}: Multiple dashes in flag group https://github.com/v8/v8/blob/14.8.3/src/regexp/regexp-error.h + + Invalid regular expression: /{0}/{1}: Negated character class may contain strings + https://github.com/v8/v8/blob/14.8.3/src/regexp/regexp-error.h + Invalid regular expression: /{0}/{1}: Nothing to repeat https://github.com/v8/v8/blob/14.8.3/src/regexp/regexp-error.h diff --git a/src/Acornima/Tokenizer.RegExpParser.Legacy.cs b/src/Acornima/Tokenizer.RegExpParser.Legacy.cs index b156464..2424527 100644 --- a/src/Acornima/Tokenizer.RegExpParser.Legacy.cs +++ b/src/Acornima/Tokenizer.RegExpParser.Legacy.cs @@ -19,13 +19,13 @@ private LegacyMode() { } public void ProcessChar(char ch, Action? appender, RegExpParser parser) { - ref readonly var sb = ref parser._stringBuilder; + var sb = parser._stringBuilder; appender?.Invoke(sb!, ch); } public void ProcessSetSpecialChar(char ch, RegExpParser parser) { - ref readonly var sb = ref parser._stringBuilder; + var sb = parser._stringBuilder; sb?.Append(ch); } @@ -37,7 +37,7 @@ public void ProcessSetChar(char ch, Action? appender, RegEx private static void ProcessSetChar(char ch, int charCode, Action? appender, RegExpParser parser, int startIndex) { - ref readonly var sb = ref parser._stringBuilder; + var sb = parser._stringBuilder; if (parser._setRangeStart >= 0) { @@ -71,14 +71,31 @@ private static void ProcessSetChar(char ch, int charCode, Action/ --> @"k", /[\k]/ --> @"[k]"). sb?.Append(ch); - parser.ClearFollowingQuantifierError(); + + if (!parser.WithinSet) + { + parser.ClearFollowingQuantifierError(); + } break; } diff --git a/src/Acornima/Tokenizer.RegExpParser.Unicode.cs b/src/Acornima/Tokenizer.RegExpParser.Unicode.cs index 374c21b..5a0cc3a 100644 --- a/src/Acornima/Tokenizer.RegExpParser.Unicode.cs +++ b/src/Acornima/Tokenizer.RegExpParser.Unicode.cs @@ -13,21 +13,21 @@ public partial class Tokenizer { internal partial class RegExpParser { - private const string MatchSurrogatePairRegex = "[\uD800-\uDBFF][\uDC00-\uDFFF]"; - private const string MatchLoneSurrogateRegex = "[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?? appender, RegExpParser parser) { - ref readonly var sb = ref parser._stringBuilder; - ref readonly var pattern = ref parser._pattern; + var sb = parser._stringBuilder; + var pattern = parser._pattern; ref var i = ref parser._index; if (!ch.IsSurrogate()) @@ -95,7 +95,7 @@ public void ProcessSetSpecialChar(char ch, RegExpParser parser) { } public void ProcessSetChar(char ch, Action? appender, RegExpParser parser, int startIndex) { - ref readonly var pattern = ref parser._pattern; + var pattern = parser._pattern; ref var i = ref parser._index; if (ch.IsHighSurrogate() && ((char)pattern.CharCodeAt(i + 1)).IsLowSurrogate()) @@ -110,6 +110,23 @@ public void ProcessSetChar(char ch, Action? appender, RegEx } } + public void ProcessSetStart(char ch, RegExpParser parser) + { + var pattern = parser._pattern; + ref var i = ref parser._index; + + parser._setStartIndex = i; + parser._setRangeStart = SetRangeNotStarted; + + ProcessSetSpecialChar(ch, parser); + + if ((ch = (char)pattern.CharCodeAt(i + 1)) == '^') + { + ProcessSetSpecialChar(ch, parser); + i++; + } + } + private static void AddSetCodePoint(int cp, RegExpParser parser, int startIndex) { Debug.Assert(cp is >= 0 and <= UnicodeHelper.LastCodePoint, "Invalid end code point."); @@ -153,8 +170,8 @@ private static void AddSetCodePoint(int cp, RegExpParser parser, int startIndex) public bool RewriteSet(RegExpParser parser) { - ref readonly var sb = ref parser._stringBuilder; - ref readonly var pattern = ref parser._pattern; + var sb = parser._stringBuilder; + var pattern = parser._pattern; if (sb is not null) { @@ -534,7 +551,7 @@ private static void AddStandardCharClass(ref ArrayList set, char set.AddRange(ranges); } - private static bool ValidateUnicodeProperty(ReadOnlyMemory expression, bool translateToRanges, RegExpParser parser, out CodePointRange[]? codePointRanges) + internal static bool ValidateUnicodeProperty(ReadOnlyMemory expression, bool translateToRanges, RegExpParser parser, out CodePointRange[]? codePointRanges) { var index = expression.Span.IndexOf('='); if (index >= 0) @@ -591,7 +608,7 @@ private static bool ValidateUnicodeProperty(ReadOnlyMemory expression, boo public void RewriteDot(RegExpParser parser) { - ref readonly var sb = ref parser._stringBuilder; + var sb = parser._stringBuilder; if (sb is not null) { // '.' has to be adjusted to also match all surrogate pairs. @@ -624,11 +641,16 @@ public void HandleInvalidRangeQuantifier(RegExpParser parser, int startIndex) } public bool AdjustEscapeSequence(RegExpParser parser, out RegExpConversionError? conversionError) + { + return AdjustEscapeSequence(allowStringProperties: false, parser, out conversionError); + } + + internal static bool AdjustEscapeSequence(bool allowStringProperties, RegExpParser parser, out RegExpConversionError? conversionError) { // https://tc39.es/ecma262/#prod-AtomEscape - ref readonly var sb = ref parser._stringBuilder; - ref readonly var pattern = ref parser._pattern; + var sb = parser._stringBuilder; + var pattern = parser._pattern; ref var i = ref parser._index; ushort charCode, charCode2; @@ -645,11 +667,10 @@ public bool AdjustEscapeSequence(RegExpParser parser, out RegExpConversionError? // * /\u{FFFF}/u --> "\uFFFF" (+ negative lookahead/lookbehind in the case of lone surrogates) // * /\u{1F4A9}/u --> "\uD83D\uDCA9" - if (parser._tokenizer._options._ecmaVersion < EcmaVersion.ES6 - || !TryReadCodePoint(pattern, ref i, endIndex: pattern.Length, out cp)) + if (!TryReadCodePoint(pattern, ref i, endIndex: pattern.Length, out cp)) { parser.ReportSyntaxError(startIndex, RegExpInvalidUnicodeEscape); - cp = default; // keeps the compiler happy + cp = default; // unreachable, just to keep the compiler happy } if (!parser.WithinSet) @@ -727,23 +748,22 @@ public bool AdjustEscapeSequence(RegExpParser parser, out RegExpConversionError? // CharacterEscape -> c ControlLetter case 'c': - if (i + 1 < pattern.Length) + cp = pattern.CharCodeAt(i + 1); + if (((char)cp).IsBasicLatinLetter()) { - if (pattern[i + 1].IsBasicLatinLetter()) - { - charCode = (ushort)(char.ToUpperInvariant(pattern[++i]) - '@'); + i++; + charCode = (ushort)(cp & 0x1F); // value is equal to the character code modulo 32 - if (!parser.WithinSet) - { - parser._appendCharSafe?.Invoke(sb!, (char)charCode); - parser.ClearFollowingQuantifierError(); - } - else - { - AddSetCodePoint(charCode, parser, startIndex); - } - break; + if (!parser.WithinSet) + { + parser._appendCharSafe?.Invoke(sb!, (char)charCode); + parser.ClearFollowingQuantifierError(); } + else + { + AddSetCodePoint(charCode, parser, startIndex); + } + break; } parser.ReportSyntaxError(startIndex, RegExpInvalidUnicodeEscape); @@ -871,10 +891,13 @@ public bool AdjustEscapeSequence(RegExpParser parser, out RegExpConversionError? if (pattern.CharCodeAt(i + 1) == '{') { CodePointRange[]? codePointRanges = null; + ReadOnlyMemory expression; endIndex = pattern.IndexOf('}', i + 2); + if (endIndex < 0 - || !ValidateUnicodeProperty(pattern.AsMemory(i + 2, endIndex - (i + 2)), translateToRanges: sb is not null, parser, out codePointRanges)) + || !ValidateUnicodeProperty(expression = pattern.AsMemory(i + 2, endIndex - (i + 2)), translateToRanges: sb is not null, parser, out codePointRanges) + && (!allowStringProperties || ch == 'P' || !UnicodeProperties.IsAllowedBinaryOfStringsValue(expression, parser._tokenizer._options._ecmaVersion))) { if (!parser.WithinSet) { diff --git a/src/Acornima/Tokenizer.RegExpParser.UnicodeSets.cs b/src/Acornima/Tokenizer.RegExpParser.UnicodeSets.cs new file mode 100644 index 0000000..bb61228 --- /dev/null +++ b/src/Acornima/Tokenizer.RegExpParser.UnicodeSets.cs @@ -0,0 +1,666 @@ +using System; +using System.Runtime.CompilerServices; +using System.Text; +using Acornima.Helpers; + +namespace Acornima; + +using static SyntaxErrorMessages; + +public partial class Tokenizer +{ + internal sealed partial class RegExpParser + { + private sealed class UnicodeSetsMode : IMode + { + // Return values for class set parsing methods. + // Indicates whether the parsed construct can match multi-code-point strings. + private const int CharSetNone = 0; // Nothing parsed + private const int CharSetOk = 1; // Parsed, cannot contain strings + private const int CharSetString = 2; // Parsed, can contain strings + + public static readonly UnicodeSetsMode Instance = new(); + + private UnicodeSetsMode() { } + + // Outside character classes, flag 'v' behaves like flag 'u'. + // Since only validation is currently supported for flag 'v', parser._stringBuilder is always null. + + public void ProcessChar(char ch, Action? appender, RegExpParser parser) + { + var pattern = parser._pattern; + ref var i = ref parser._index; + + if (ch.IsHighSurrogate() && ((char)pattern.CharCodeAt(i + 1)).IsLowSurrogate()) + { + i++; + } + } + + public void ProcessSetSpecialChar(char ch, RegExpParser parser) + { + // Not called for this mode, ProcessSetStart handles all set logic. + throw new InvalidOperationException(); + } + + public void ProcessSetChar(char ch, Action? appender, RegExpParser parser, int startIndex) + { + // Not called for this mode, ProcessSetStart handles all set logic. + throw new InvalidOperationException(); + } + + public bool RewriteSet(RegExpParser parser) + { + // Not called for this mode as it's validation only. + throw new InvalidOperationException(); + } + + public void RewriteDot(RegExpParser parser) + { + // No-op for this mode as it's validation only. + } + + public bool AllowsQuantifierAfterGroup(RegExpGroupType groupType) + { + // Same as flag 'u'. + return groupType is RegExpGroupType.Capturing or RegExpGroupType.NamedCapturing or RegExpGroupType.NonCapturing; + } + + public void HandleInvalidRangeQuantifier(RegExpParser parser, int startIndex) + { + // Same as flag 'u'. + parser.ReportSyntaxError(startIndex, RegExpIncompleteQuantifier); + } + + public bool AdjustEscapeSequence(RegExpParser parser, out RegExpConversionError? conversionError) + { + return UnicodeMode.AdjustEscapeSequence(allowStringProperties: true, parser, out conversionError); + } + + #region Character class parsing + + // Based on: https://github.com/acornjs/acorn/blob/8.16.0/acorn/src/regexp.js + + public void ProcessSetStart(char ch, RegExpParser parser) + { + // Parse the entire [...] block recursively. + + var pattern = parser._pattern; + ref var i = ref parser._index; + var start = i; + + // We're positioned at '['. Advance past it. + i++; + + var negate = Eat('^', pattern, ref i); + + var result = ClassSetExpression(parser); + + // i is now at ']', the main loop will advance past it. + + if (negate && result == CharSetString) + { + parser.ReportSyntaxError(start, RegExpNegatedCharacterClassWithStrings); + } + + parser.ClearFollowingQuantifierError(); + } + + // https://tc39.es/ecma262/#prod-ClassSetExpression + // https://tc39.es/ecma262/#prod-ClassUnion + // https://tc39.es/ecma262/#prod-ClassIntersection + // https://tc39.es/ecma262/#prod-ClassSubtraction + private static int ClassSetExpression(RegExpParser parser) + { + // NOTE: `regexp_classContents` and `regexp_classSetExpression` was merged into this method + // to keep the call stack shallow. Common error checking was moved here from call sites. + // `regexp_eatClassSetRange` and a call to `regexp_eatClassSetOperand` were also merged into this method + // to match the error reporting behavior of V8 and to avoid reparsing of escape sequences. + + var pattern = parser._pattern; + ref var i = ref parser._index; + int start; + int left, right; + + int result = CharSetOk, subResult; + + for (var isSetOperationAllowed = true; ; isSetOperationAllowed = false) + { + // https://tc39.es/ecma262/#prod-ClassUnion + if (pattern.CharCodeAt(i) == ']') + { + return result; + } + else if (EatClassSetCharacter(parser, out left)) + { + // https://tc39.es/ecma262/#prod-ClassSetRange + if (Eat('-', pattern, ref i)) + { + start = i; + if (Eat('-', pattern, ref i)) + { + goto ClassSubtraction; + } + else if (EatClassSetCharacter(parser, out right)) + { + if (left > right) + { + parser.ReportSyntaxError(start, RegExpRangeOutOfOrderCharacterClass); + } + + isSetOperationAllowed = false; + + if (Eat('-', pattern, ref i)) + { + if (Eat('-', pattern, ref i)) + { + goto ClassSubtraction; + } + else + { + parser.ReportSyntaxError(i, RegExpInvalidCharacterClass); + } + } + } + else if (EatNestedClassOrClassStringDisjunction(parser) != CharSetNone) + { + parser.ReportSyntaxError(start, RegExpInvalidCharacterClass); + } + else + { + goto UnexpectedCharacter; + } + } + } + else if ((subResult = EatNestedClassOrClassStringDisjunction(parser)) != CharSetNone) + { + if (subResult == CharSetString) + { + result = CharSetString; + } + + if (Eat('-', pattern, ref i)) + { + if (Eat('-', pattern, ref i)) + { + goto ClassSubtraction; + } + else + { + parser.ReportSyntaxError(i, RegExpInvalidCharacterClass); + } + } + } + else + { + goto UnexpectedCharacter; + } + + // https://tc39.es/ecma262/#prod-ClassIntersection + if (!EatChars('&', '&', pattern, ref i)) + { + goto MaybeClassSubtraction; + } + + if (!isSetOperationAllowed) + { + parser.ReportSyntaxError(i - 2, RegExpInvalidClassSetOperation); + } + + do + { + if (pattern.CharCodeAt(i) != '&') + { + // https://tc39.es/ecma262/#prod-ClassSetOperand + if (EatClassSetCharacter(parser, out right)) + { + continue; + } + else if ((subResult = EatNestedClassOrClassStringDisjunction(parser)) != CharSetNone) + { + if (subResult != CharSetString) + { + result = CharSetOk; + } + + continue; + } + } + + goto UnexpectedCharacter; + } + while (EatChars('&', '&', pattern, ref i)); + + right = pattern.CharCodeAt(i); + if (right == ']') + { + return result; + } + else if (right >= 0) + { + parser.ReportSyntaxError(i, RegExpInvalidClassSetOperation); + } + else + { + goto Unterminated; + } + + MaybeClassSubtraction: + // https://tc39.es/ecma262/#prod-ClassSubtraction + if (!EatChars('-', '-', pattern, ref i)) + { + continue; + } + + ClassSubtraction: + if (!isSetOperationAllowed) + { + parser.ReportSyntaxError(i - 2, RegExpInvalidClassSetOperation); + } + + do + { + // https://tc39.es/ecma262/#prod-ClassSetOperand + if (EatClassSetCharacter(parser, out right) + || EatNestedClassOrClassStringDisjunction(parser) != CharSetNone) + { + continue; + } + + goto UnexpectedCharacter; + } + while (EatChars('-', '-', pattern, ref i)); + + right = pattern.CharCodeAt(i); + if (right == ']') + { + return result; + } + else if (right >= 0) + { + parser.ReportSyntaxError(i, RegExpInvalidClassSetOperation); + } + else + { + goto Unterminated; + } + } + + UnexpectedCharacter: + if (pattern.CharCodeAt(i) == '\\') + { + parser.ReportSyntaxError(i, RegExpInvalidEscape); + } + else if (pattern.CharCodeAt(i) >= 0) + { + parser.ReportSyntaxError(i, RegExpInvalidCharacterInClass); + } + + Unterminated: + parser.ReportSyntaxError(i, RegExpUnterminatedCharacterClass); + return CharSetNone; // unreachable, just to keep the compiler happy + } + + // https://tc39.es/ecma262/#prod-NestedClass + // https://tc39.es/ecma262/#prod-ClassStringDisjunction + private static int EatNestedClassOrClassStringDisjunction(RegExpParser parser) + { + // NOTE: `regexp_eatNestedClass` and `regexp_eatClassStringDisjunction ` was merged into this single method. + + var pattern = parser._pattern; + ref var i = ref parser._index; + var start = i; + + if (pattern.CharCodeAt(i) == '\\') + { + var result = EatCharacterClassEscape(parser); + if (result != CharSetNone) + { + i++; + return result; + } + + // \q{...} + if (pattern.CharCodeAt(i + 1) == 'q') + { + i += 2; + + if (!Eat('{', pattern, ref i)) + { + parser.ReportSyntaxError(start, RegExpInvalidEscape); + } + + result = ClassStringDisjunctionContents(parser); + + if (!Eat('}', pattern, ref i)) + { + if (pattern.CharCodeAt(i) == '\\') + { + parser.ReportSyntaxError(i, RegExpInvalidEscape); + } + else + { + parser.ReportSyntaxError(i, RegExpInvalidCharacterInClass); + } + } + + return result; + } + } + + if (Eat('[', pattern, ref i)) + { + var negate = Eat('^', pattern, ref i); + + ref var recursionDepth = ref parser._recursionDepthProvider.CurrentDepth; + StackGuard.EnsureSufficientExecutionStack(++recursionDepth); + + var result = ClassSetExpression(parser); + + recursionDepth--; + + if (negate && result == CharSetString) + { + parser.ReportSyntaxError(start, RegExpNegatedCharacterClassWithStrings); + } + + i++; + return result; + } + + return CharSetNone; + } + + // https://tc39.es/ecma262/#prod-ClassStringDisjunctionContents + private static int ClassStringDisjunctionContents(RegExpParser parser) + { + var pattern = parser._pattern; + ref var i = ref parser._index; + + var result = ClassString(parser); + while (Eat('|', pattern, ref i)) + { + if (ClassString(parser) == CharSetString) + { + result = CharSetString; + } + } + + return result; + } + + // https://tc39.es/ecma262/#prod-ClassString + // https://tc39.es/ecma262/#prod-NonEmptyClassString + private static int ClassString(RegExpParser parser) + { + var count = 0; + while (EatClassSetCharacter(parser, out _)) + { + count++; + } + + return count == 1 ? CharSetOk : CharSetString; + } + + // https://tc39.es/ecma262/#prod-ClassSetCharacter + private static bool EatClassSetCharacter(RegExpParser parser, out int cp) + { + var pattern = parser._pattern; + ref var i = ref parser._index; + + if (pattern.CharCodeAt(i) == '\\') + { + if (EatCharacterEscape(parser, out cp)) + { + i++; + return true; + } + + return false; + } + + cp = pattern.CodePointAt(i, pattern.Length); + if (cp <= char.MaxValue) + { + if (cp < 0 || IsClassSetSyntaxCharacter((char)cp)) + { + return false; + } + + if (cp == pattern.CharCodeAt(i + 1) && IsClassSetReservedDoublePunctuatorCharacter((char)cp)) + { + parser.ReportSyntaxError(i, RegExpInvalidClassSetOperation); + } + } + + i += UnicodeHelper.GetCodePointLength((uint)cp); + return true; + } + + private static bool EatCharacterEscape(RegExpParser parser, out int cp) + { + var pattern = parser._pattern; + ref var i = ref parser._index; + + ushort charCode, charCode2; + var startIndex = i++; + int endIndex; + var ch = pattern[i]; + switch (ch) + { + // CharacterEscape -> RegExpUnicodeEscapeSequence -> u{ CodePoint } + case 'u' when pattern.CharCodeAt(i + 1) == '{': + if (TryReadCodePoint(pattern, ref i, endIndex: pattern.Length, out cp)) + { + return true; + } + + parser.ReportSyntaxError(startIndex, RegExpInvalidUnicodeEscape); + break; + + // CharacterEscape -> RegExpUnicodeEscapeSequence + case 'u': + if (TryReadHexEscape(pattern, ref i, endIndex: pattern.Length, charCodeLength: 4, out charCode)) + { + if (((char)charCode).IsHighSurrogate() && i + 2 < pattern.Length && pattern[i + 1] == '\\' && pattern[i + 2] == 'u') + { + endIndex = i + 2; + if (TryReadHexEscape(pattern, ref endIndex, endIndex: pattern.Length, charCodeLength: 4, out charCode2) && ((char)charCode2).IsLowSurrogate()) + { + i = endIndex; + cp = (int)UnicodeHelper.GetCodePoint((char)charCode, (char)charCode2); + return true; + } + } + + cp = charCode; + return true; + } + + parser.ReportSyntaxError(startIndex, RegExpInvalidUnicodeEscape); + break; + + // CharacterEscape -> HexEscapeSequence + case 'x': + if (TryReadHexEscape(pattern, ref i, endIndex: pattern.Length, charCodeLength: 2, out charCode)) + { + cp = charCode; + return true; + } + + parser.ReportSyntaxError(startIndex, RegExpInvalidEscape); + break; + + // CharacterEscape -> c ControlLetter + case 'c': + cp = pattern.CharCodeAt(i + 1); + if (((char)cp).IsBasicLatinLetter()) + { + i++; + cp = (ushort)(cp & 0x1F); // value is equal to the character code modulo 32 + return true; + } + + parser.ReportSyntaxError(startIndex, RegExpInvalidUnicodeEscape); + break; + + // CharacterEscape -> 0 [lookahead ∉ DecimalDigit] + case '0': + if (!((char)pattern.CharCodeAt(i + 1)).IsDecimalDigit()) + { + cp = 0; + return true; + } + + parser.ReportSyntaxError(startIndex, RegExpInvalidDecimalEscape); + break; + + // DecimalEscape + case >= '1' and <= '9': + if (ch >= '8') + { + parser.ReportSyntaxError(startIndex, RegExpInvalidEscape); + } + else + { + parser.ReportSyntaxError(startIndex, RegExpInvalidDecimalEscape); + } + + break; + + default: + if (TryGetSimpleEscapeCharCode(ch, withinSet: true, out charCode) + || IsClassSetReservedPunctuator(ch)) + { + cp = charCode; + return true; + } + + break; + } + + i = startIndex; + cp = default; + return false; + } + + private static int EatCharacterClassEscape(RegExpParser parser) + { + var pattern = parser._pattern; + ref var i = ref parser._index; + var startIndex = i++; + int endIndex; + + var ch = pattern.CharCodeAt(i); + switch (ch) + { + case 'd' or 'D' or 's' or 'S' or 'w' or 'W': + return CharSetOk; + + case 'p' or 'P': + if (pattern.CharCodeAt(i + 1) == '{') + { + endIndex = pattern.IndexOf('}', i + 2); + if (endIndex >= 0) + { + var expression = pattern.AsMemory(i + 2, endIndex - (i + 2)); + + // First check if it's a valid unicode property (non-string). + if (UnicodeMode.ValidateUnicodeProperty(expression, translateToRanges: false, parser, out _)) + { + i = endIndex; + return CharSetOk; + } + + // In flag 'v' mode, check binary properties of strings (e.g. Basic_Emoji). + if (UnicodeProperties.IsAllowedBinaryOfStringsValue(expression, parser._tokenizer._options._ecmaVersion)) + { + if (ch == 'P') + { + parser.ReportSyntaxError(startIndex, RegExpInvalidClassPropertyName); + } + + i = endIndex; + return CharSetString; + } + } + } + + parser.ReportSyntaxError(startIndex, RegExpInvalidClassPropertyName); + break; + } + + i = startIndex; + return CharSetNone; + } + + // https://tc39.es/ecma262/#prod-ClassSetReservedDoublePunctuator + [MethodImpl(MethodImplOptions.AggressiveInlining)] + private static bool IsClassSetReservedDoublePunctuatorCharacter(char ch) + { + return ch == '!' + || ch.IsInRange('#', '&') // # $ % & + || ch.IsInRange('*', ',') // * + , + || ch == '.' + || ch.IsInRange(':', '@') // : ; < = > ? @ + || ch == '^' + || ch == '`' + || ch == '~'; + } + + // https://tc39.es/ecma262/#prod-ClassSetSyntaxCharacter + [MethodImpl(MethodImplOptions.AggressiveInlining)] + private static bool IsClassSetSyntaxCharacter(char ch) + { + return ch == '(' || ch == ')' + || ch == '-' || ch == '/' + || ch.IsInRange('[', ']') // [ \ ] + || ch.IsInRange('{', '}'); // { | } + } + + // https://tc39.es/ecma262/#prod-ClassSetReservedPunctuator + // ! # % & , - : ; < = > @ ` ~ + [MethodImpl(MethodImplOptions.AggressiveInlining)] + private static bool IsClassSetReservedPunctuator(char ch) + { + return ch == '!' + || ch == '#' + || ch == '%' + || ch == '&' + || ch == ',' + || ch == '-' + || ch.IsInRange(':', '>') // : ; < = > + || ch == '@' + || ch == '`' + || ch == '~'; + } + + [MethodImpl(MethodImplOptions.AggressiveInlining)] + private static bool Eat(char ch, string pattern, ref int i) + { + if (pattern.CharCodeAt(i) == ch) + { + i++; + return true; + } + + return false; + } + + // Try to eat a two-character sequence (e.g. '&&' or '--'). + [MethodImpl(MethodImplOptions.AggressiveInlining)] + private static bool EatChars(char ch1, char ch2, string pattern, ref int i) + { + if (pattern.CharCodeAt(i) == ch1 && pattern.CharCodeAt(i + 1) == ch2) + { + i += 2; + return true; + } + + return false; + } + + #endregion + } + } +} diff --git a/src/Acornima/Tokenizer.RegExpParser.cs b/src/Acornima/Tokenizer.RegExpParser.cs index e6e97e8..cd12090 100644 --- a/src/Acornima/Tokenizer.RegExpParser.cs +++ b/src/Acornima/Tokenizer.RegExpParser.cs @@ -29,7 +29,7 @@ internal enum RegExpFlags : byte UnicodeSets = 1 << 7 } - internal sealed partial class RegExpParser + internal sealed partial class RegExpParser : StackGuard.IRecursionDepthProvider { private const string MatchAnyRegex = @"[\s\S]"; // .NET equivalent of /[^]/ private const string MatchNoneRegex = @"[^\s\S]"; // .NET equivalent of /[]/ @@ -119,6 +119,7 @@ private static RegexOptions FlagsToOptions(RegExpFlags flags, bool compiled) } private readonly Tokenizer _tokenizer; + private readonly StackGuard.IRecursionDepthProvider _recursionDepthProvider; private string _pattern; private int _patternStartIndex; @@ -128,6 +129,8 @@ private static RegexOptions FlagsToOptions(RegExpFlags flags, bool compiled) internal RegExpParser(Tokenizer tokenizer) { _tokenizer = tokenizer; + _recursionDepthProvider = tokenizer._recursionDepthProvider ?? this; + _pattern = null!; _flagsOriginal = null!; } @@ -141,7 +144,7 @@ internal void Reset(string pattern, int patternStartIndex, string flags, int fla } private RegExpConversionError ReportConversionFailure(int index, string reason, - [CallerArgumentExpression(nameof(reason))] string code = Tokenizer.UnknownError) + [CallerArgumentExpression(nameof(reason))] string code = UnknownError) { return (RegExpConversionError)_tokenizer.RaiseRecoverable(_patternStartIndex + index, string.Format(null, RegExpConversionFailed, typeof(Regex), _pattern, _flagsOriginal, reason), @@ -149,14 +152,14 @@ private RegExpConversionError ReportConversionFailure(int index, string reason, } private RegExpConversionError ReportConversionFailure(int index, string reasonFormat, object?[] args, - [CallerArgumentExpression(nameof(reasonFormat))] string code = Tokenizer.UnknownError) + [CallerArgumentExpression(nameof(reasonFormat))] string code = UnknownError) { return ReportConversionFailure(index, string.Format(null, reasonFormat, args), code); } [DoesNotReturn] private void ReportSyntaxError(int index, string messageFormat, - [CallerArgumentExpression(nameof(messageFormat))] string code = Tokenizer.UnknownError) + [CallerArgumentExpression(nameof(messageFormat))] string code = UnknownError) { _tokenizer.Raise(_patternStartIndex + index, string.Format(null, messageFormat, _pattern, _flagsOriginal), code: code); } @@ -165,20 +168,21 @@ public RegExpParseResult Parse() { RegExpConversionError? conversionError; - if ((_flags & RegExpFlags.UnicodeSets) != 0) + if ((_flags & RegExpFlags.UnicodeSets) != 0 + && _tokenizer._options._regExpParseMode != RegExpParseMode.Validate) { - if (_tokenizer._options._regExpParseMode == RegExpParseMode.Validate) - { - _tokenizer.Raise(_patternStartIndex, RegExpUnicodeSetsModeNotSupported, RegExpConversionError.s_factory); - } - else - { - conversionError = ReportConversionFailure(0, RegExpUnicodeSetsModeNotSupported); - return new RegExpParseResult(conversionError); - } + // Validate syntax first so callers get proper syntax errors (e.g. unterminated class) + // before the conversion-not-supported error. Uses validateOnly to force a null + // StringBuilder without mutating the shared TokenizerOptions. + ParseCore(validateOnly: true, out _, out _, out _); + + conversionError = ReportConversionFailure(0, RegExpUnicodeSetsModeNotSupported); + return new RegExpParseResult(conversionError); } - var adaptedPattern = ParseCore(out var capturingGroups, out conversionError, out var canCompile); + var adaptedPattern = ParseCore(validateOnly: _tokenizer._options._regExpParseMode == RegExpParseMode.Validate, + out var capturingGroups, out conversionError, out var canCompile); + if (adaptedPattern is null) { // NOTE: ParseCore should return null @@ -205,13 +209,13 @@ public RegExpParseResult Parse() } } - internal string? ParseCore(out ArrayList capturingGroups, out RegExpConversionError? conversionError, out bool canCompile) + internal string? ParseCore(bool validateOnly, out ArrayList capturingGroups, out RegExpConversionError? conversionError, out bool canCompile) { _tokenizer.AcquireStringBuilder(out var sb); try { StringBuilder? adaptedPatternBuilder; - if (_tokenizer._options._regExpParseMode == RegExpParseMode.Validate) + if (validateOnly) { _auxiliaryStringBuilder = sb; adaptedPatternBuilder = null; @@ -229,9 +233,11 @@ public RegExpParseResult Parse() ResetParseContext(adaptedPatternBuilder); - var adaptedPattern = (_flags & RegExpFlags.Unicode) != 0 - ? ParsePattern(UnicodeMode.Instance, out conversionError) + var adaptedPattern = + (_flags & RegExpFlags.UnicodeSets) != 0 ? ParsePattern(UnicodeSetsMode.Instance, out conversionError) + : (_flags & RegExpFlags.Unicode) != 0 ? ParsePattern(UnicodeMode.Instance, out conversionError) : ParsePattern(LegacyMode.Instance, out conversionError); + capturingGroups = _capturingGroups; canCompile = _canCompile; return adaptedPattern; @@ -251,10 +257,11 @@ private void CheckBracesBalance() _capturingGroups = default; _capturingGroupNames?.Clear(); - var isUnicode = (_flags & RegExpFlags.Unicode) != 0; + var isUnicodeSets = (_flags & RegExpFlags.UnicodeSets) != 0; + var isUnicode = isUnicodeSets || (_flags & RegExpFlags.Unicode) != 0; var inGroup = 0; var inQuantifier = false; - var inSet = false; + var setDepth = 0; // Potential problematic constructs: // * Escaped opening/closing brackets (\(, \), \[, \], \{, \}, \<, \>) --> These are handled (see below). @@ -277,7 +284,7 @@ private void CheckBracesBalance() switch (ch) { case '(': - if (inSet) + if (setDepth > 0) { break; } @@ -314,7 +321,7 @@ private void CheckBracesBalance() break; case ')': - if (inSet) + if (setDepth > 0) { break; } @@ -328,7 +335,7 @@ private void CheckBracesBalance() break; case '{': - if (inSet) + if (setDepth > 0) { break; } @@ -345,7 +352,7 @@ private void CheckBracesBalance() break; case '}': - if (inSet) + if (setDepth > 0) { break; } @@ -362,18 +369,18 @@ private void CheckBracesBalance() break; case '[': - if (inSet) + if (setDepth > 0 && !isUnicodeSets) { break; } - inSet = true; + setDepth++; break; case ']': - if (inSet) + if (setDepth > 0) { - inSet = false; + setDepth--; } else if (isUnicode) { @@ -392,7 +399,7 @@ private void CheckBracesBalance() ReportSyntaxError(_pattern.Length, RegExpUnterminatedGroup); } - if (inSet) + if (setDepth > 0) { ReportSyntaxError(_pattern.Length, RegExpUnterminatedCharacterClass); } @@ -426,16 +433,7 @@ private void CheckBracesBalance() switch (ch) { case '[' when !WithinSet: - _setStartIndex = i; - _setRangeStart = SetRangeNotStarted; - - mode.ProcessSetSpecialChar(ch, this); - - if ((ch = (char)_pattern.CharCodeAt(i + 1)) == '^') - { - mode.ProcessSetSpecialChar(ch, this); - i++; - } + mode.ProcessSetStart(ch, this); break; case '-' when WithinSet: @@ -784,8 +782,8 @@ private static bool TryGetSimpleEscapeCharCode(char ch, bool withinSet, out usho // CharacterEscape -> ControlEscape case 'f': charCode = '\f'; return true; case 'n': charCode = '\n'; return true; - case 't': charCode = '\t'; return true; case 'r': charCode = '\r'; return true; + case 't': charCode = '\t'; return true; case 'v': charCode = '\v'; return true; // CharacterEscape -> IdentityEscape -> '/' @@ -1345,9 +1343,13 @@ private void SetFollowingQuantifierError(string message, [CallerArgumentExpressi // from the global _flags due to inline modifier groups like (?s:...) or (?-m:...). private RegExpFlags _effectiveFlags; + private int _recursionDepth; + + ref int StackGuard.IRecursionDepthProvider.CurrentDepth => ref _recursionDepth; + private void ResetParseContext(StringBuilder? sb) { - // _auxiliaryStringBuilder, _index and _capturingGroupNames are reset externally. + // _auxiliaryStringBuilder, _index, _capturingGroupNames, _setRangeStart are reset externally. // _capturingGroups is not reused. _stringBuilder = sb; @@ -1370,7 +1372,6 @@ private void ResetParseContext(StringBuilder? sb) } _setStartIndex = -1; - _setRangeStart = 0; SetFollowingQuantifierError(RegExpNothingToRepeat); @@ -1379,6 +1380,8 @@ private void ResetParseContext(StringBuilder? sb) _canCompile = true; _effectiveFlags = _flags; + + _recursionDepth = 0; } internal void ReleaseReferencesAndLargeBuffers() @@ -1414,6 +1417,8 @@ private interface IMode void ProcessSetChar(char ch, Action? appender, RegExpParser parser, int startIndex); + void ProcessSetStart(char ch, RegExpParser parser); + bool RewriteSet(RegExpParser parser); void RewriteDot(RegExpParser parser); diff --git a/src/Acornima/Tokenizer.cs b/src/Acornima/Tokenizer.cs index 9875b50..034ddf1 100644 --- a/src/Acornima/Tokenizer.cs +++ b/src/Acornima/Tokenizer.cs @@ -22,6 +22,7 @@ public sealed partial class Tokenizer : ITokenizer private readonly TokenizerOptions _options; private readonly IExtension? _extension; + internal StackGuard.IRecursionDepthProvider? _recursionDepthProvider; internal RegExpParser? _regExpParser; internal Tokenizer(TokenizerOptions options, IExtension? extension) @@ -142,7 +143,7 @@ internal bool TryReadToken(int cp) { // https://github.com/acornjs/acorn/blob/8.11.3/acorn/src/tokenize.js > `pp.readToken = function`, `pp.getTokenFromCode = function` - // NOTE: `getTokenFromCode` and `readToken` was merged into a single method (`TryReadToken`). + // NOTE: `getTokenFromCode` and `readToken` were merged into a single method (`TryReadToken`). // The merged method was also changed to return success instead of throwing on invalid token. // Identifier or keyword. '\uXXXX' sequences are allowed in diff --git a/src/Acornima/UnicodeProperties.cs b/src/Acornima/UnicodeProperties.cs index 91aa612..a2e1ff3 100644 --- a/src/Acornima/UnicodeProperties.cs +++ b/src/Acornima/UnicodeProperties.cs @@ -12,6 +12,7 @@ internal static class UnicodeProperties private static readonly Dictionary, KeyValuePair> s_generalCategoryLookup = new(StringSliceEqualityComparer.Instance); private static readonly Dictionary, EcmaVersion> s_scriptValueLookup = new(StringSliceEqualityComparer.Instance); private static readonly Dictionary, EcmaVersion> s_binaryValueLookup = new(StringSliceEqualityComparer.Instance); + private static readonly Dictionary, EcmaVersion> s_binaryOfStringsValueLookup = new(StringSliceEqualityComparer.Instance); static UnicodeProperties() { @@ -76,7 +77,7 @@ static void PopulateVersionLookup(Dictionary, EcmaVersion> } PopulateVersionLookup(s_scriptValueLookup, EcmaVersion.ES14, - "Hrkt", "Katakana_Or_Hiragana", "Kawi", "Nag_Mundari", "Nagm", "Unknown", "Zzzz"); + "Berf", "Beria_Erfe", "Gara", "Garay", "Gukh", "Gurung_Khema", "Hrkt", "Katakana_Or_Hiragana", "Kawi", "Kirat_Rai", "Krai", "Nag_Mundari", "Nagm", "Ol_Onal", "Onao", "Sidetic", "Sidt", "Sunu", "Sunuwar", "Tai_Yo", "Tayo", "Todhri", "Todr", "Tolong_Siki", "Tols", "Tulu_Tigalari", "Tutg", "Unknown", "Zzzz"); PopulateVersionLookup(s_scriptValueLookup, EcmaVersion.ES13, "Cypro_Minoan", "Cpmn", "Old_Uyghur", "Ougr", "Tangsa", "Tnsa", "Toto", "Vithkuqi", "Vith"); @@ -93,6 +94,7 @@ static void PopulateVersionLookup(Dictionary, EcmaVersion> PopulateVersionLookup(s_scriptValueLookup, EcmaVersion.ES9, "Adlam", "Adlm", "Ahom", "Anatolian_Hieroglyphs", "Hluw", "Arabic", "Arab", "Armenian", "Armn", "Avestan", "Avst", "Balinese", "Bali", "Bamum", "Bamu", "Bassa_Vah", "Bass", "Batak", "Batk", "Bengali", "Beng", "Bhaiksuki", "Bhks", "Bopomofo", "Bopo", "Brahmi", "Brah", "Braille", "Brai", "Buginese", "Bugi", "Buhid", "Buhd", "Canadian_Aboriginal", "Cans", "Carian", "Cari", "Caucasian_Albanian", "Aghb", "Chakma", "Cakm", "Cham", "Cham", "Cherokee", "Cher", "Common", "Zyyy", "Coptic", "Copt", "Qaac", "Cuneiform", "Xsux", "Cypriot", "Cprt", "Cyrillic", "Cyrl", "Deseret", "Dsrt", "Devanagari", "Deva", "Duployan", "Dupl", "Egyptian_Hieroglyphs", "Egyp", "Elbasan", "Elba", "Ethiopic", "Ethi", "Georgian", "Geor", "Glagolitic", "Glag", "Gothic", "Goth", "Grantha", "Gran", "Greek", "Grek", "Gujarati", "Gujr", "Gurmukhi", "Guru", "Han", "Hani", "Hangul", "Hang", "Hanunoo", "Hano", "Hatran", "Hatr", "Hebrew", "Hebr", "Hiragana", "Hira", "Imperial_Aramaic", "Armi", "Inherited", "Zinh", "Qaai", "Inscriptional_Pahlavi", "Phli", "Inscriptional_Parthian", "Prti", "Javanese", "Java", "Kaithi", "Kthi", "Kannada", "Knda", "Katakana", "Kana", "Kayah_Li", "Kali", "Kharoshthi", "Khar", "Khmer", "Khmr", "Khojki", "Khoj", "Khudawadi", "Sind", "Lao", "Laoo", "Latin", "Latn", "Lepcha", "Lepc", "Limbu", "Limb", "Linear_A", "Lina", "Linear_B", "Linb", "Lisu", "Lisu", "Lycian", "Lyci", "Lydian", "Lydi", "Mahajani", "Mahj", "Malayalam", "Mlym", "Mandaic", "Mand", "Manichaean", "Mani", "Marchen", "Marc", "Masaram_Gondi", "Gonm", "Meetei_Mayek", "Mtei", "Mende_Kikakui", "Mend", "Meroitic_Cursive", "Merc", "Meroitic_Hieroglyphs", "Mero", "Miao", "Plrd", "Modi", "Mongolian", "Mong", "Mro", "Mroo", "Multani", "Mult", "Myanmar", "Mymr", "Nabataean", "Nbat", "New_Tai_Lue", "Talu", "Newa", "Newa", "Nko", "Nkoo", "Nushu", "Nshu", "Ogham", "Ogam", "Ol_Chiki", "Olck", "Old_Hungarian", "Hung", "Old_Italic", "Ital", "Old_North_Arabian", "Narb", "Old_Permic", "Perm", "Old_Persian", "Xpeo", "Old_South_Arabian", "Sarb", "Old_Turkic", "Orkh", "Oriya", "Orya", "Osage", "Osge", "Osmanya", "Osma", "Pahawh_Hmong", "Hmng", "Palmyrene", "Palm", "Pau_Cin_Hau", "Pauc", "Phags_Pa", "Phag", "Phoenician", "Phnx", "Psalter_Pahlavi", "Phlp", "Rejang", "Rjng", "Runic", "Runr", "Samaritan", "Samr", "Saurashtra", "Saur", "Sharada", "Shrd", "Shavian", "Shaw", "Siddham", "Sidd", "SignWriting", "Sgnw", "Sinhala", "Sinh", "Sora_Sompeng", "Sora", "Soyombo", "Soyo", "Sundanese", "Sund", "Syloti_Nagri", "Sylo", "Syriac", "Syrc", "Tagalog", "Tglg", "Tagbanwa", "Tagb", "Tai_Le", "Tale", "Tai_Tham", "Lana", "Tai_Viet", "Tavt", "Takri", "Takr", "Tamil", "Taml", "Tangut", "Tang", "Telugu", "Telu", "Thaana", "Thaa", "Thai", "Tibetan", "Tibt", "Tifinagh", "Tfng", "Tirhuta", "Tirh", "Ugaritic", "Ugar", "Vai", "Vaii", "Warang_Citi", "Wara", "Yi", "Yiii", "Zanabazar_Square", "Zanb"); + // https://tc39.es/ecma262/#table-binary-unicode-properties PopulateVersionLookup(s_binaryValueLookup, EcmaVersion.ES12, "EBase", "EComp", "EMod", "EPres", "ExtPict"); @@ -101,6 +103,10 @@ static void PopulateVersionLookup(Dictionary, EcmaVersion> PopulateVersionLookup(s_binaryValueLookup, EcmaVersion.ES9, "ASCII", "ASCII_Hex_Digit", "AHex", "Alphabetic", "Alpha", "Any", "Assigned", "Bidi_Control", "Bidi_C", "Bidi_Mirrored", "Bidi_M", "Case_Ignorable", "CI", "Cased", "Changes_When_Casefolded", "CWCF", "Changes_When_Casemapped", "CWCM", "Changes_When_Lowercased", "CWL", "Changes_When_NFKC_Casefolded", "CWKCF", "Changes_When_Titlecased", "CWT", "Changes_When_Uppercased", "CWU", "Dash", "Default_Ignorable_Code_Point", "DI", "Deprecated", "Dep", "Diacritic", "Dia", "Emoji", "Emoji_Component", "Emoji_Modifier", "Emoji_Modifier_Base", "Emoji_Presentation", "Extender", "Ext", "Grapheme_Base", "Gr_Base", "Grapheme_Extend", "Gr_Ext", "Hex_Digit", "Hex", "IDS_Binary_Operator", "IDSB", "IDS_Trinary_Operator", "IDST", "ID_Continue", "IDC", "ID_Start", "IDS", "Ideographic", "Ideo", "Join_Control", "Join_C", "Logical_Order_Exception", "LOE", "Lowercase", "Lower", "Math", "Noncharacter_Code_Point", "NChar", "Pattern_Syntax", "Pat_Syn", "Pattern_White_Space", "Pat_WS", "Quotation_Mark", "QMark", "Radical", "Regional_Indicator", "RI", "Sentence_Terminal", "STerm", "Soft_Dotted", "SD", "Terminal_Punctuation", "Term", "Unified_Ideograph", "UIdeo", "Uppercase", "Upper", "Variation_Selector", "VS", "White_Space", "space", "XID_Continue", "XIDC", "XID_Start", "XIDS"); + + // https://tc39.es/ecma262/#table-binary-unicode-properties-of-strings + PopulateVersionLookup(s_binaryOfStringsValueLookup, EcmaVersion.ES15, + "Basic_Emoji", "Emoji_Keycap_Sequence", "RGI_Emoji_Modifier_Sequence", "RGI_Emoji_Flag_Sequence", "RGI_Emoji_Tag_Sequence", "RGI_Emoji_ZWJ_Sequence", "RGI_Emoji"); } public static bool IsAllowedGeneralCategoryValue(ReadOnlyMemory propertyValue) @@ -125,4 +131,9 @@ public static bool IsAllowedBinaryValue(ReadOnlyMemory propertyValue, Ecma { return s_binaryValueLookup.TryGetValue(propertyValue, out var version) && ecmaVersion >= version; } + + public static bool IsAllowedBinaryOfStringsValue(ReadOnlyMemory propertyValue, EcmaVersion ecmaVersion) + { + return s_binaryOfStringsValueLookup.TryGetValue(propertyValue, out var version) && ecmaVersion >= version; + } } diff --git a/test/Acornima.Tests.Test262/Test262Harness.settings.json b/test/Acornima.Tests.Test262/Test262Harness.settings.json index e0f94e1..4ae12cd 100644 --- a/test/Acornima.Tests.Test262/Test262Harness.settings.json +++ b/test/Acornima.Tests.Test262/Test262Harness.settings.json @@ -8,7 +8,6 @@ "import-assertions", "import-defer", "json-modules", - "regexp-v-flag", "source-phase-imports" ], "ExcludedFlags": [], diff --git a/test/Acornima.Tests/Fixtures.RegExp/Generator/Program.cs b/test/Acornima.Tests/Fixtures.RegExp/Generator/Program.cs index c58d4bb..8905050 100644 --- a/test/Acornima.Tests/Fixtures.RegExp/Generator/Program.cs +++ b/test/Acornima.Tests/Fixtures.RegExp/Generator/Program.cs @@ -47,6 +47,9 @@ static string DecodeStringIfEscaped(string value) => JavaScriptString.IsStringLi : value; var tokenizerOptions = new TokenizerOptions { ExperimentalESFeatures = ExperimentalESFeatures.RegExpModifiers, RegExpParseMode = RegExpParseMode.AdaptToInterpreted, Tolerant = true }; +var tokenizer = new Tokenizer(string.Empty, tokenizerOptions); +var regexParser = new Tokenizer.RegExpParser(tokenizer); + var output = new List(); var lineNumber = 0; var testCaseCount = 0; @@ -72,9 +75,11 @@ static string DecodeStringIfEscaped(string value) => JavaScriptString.IsStringLi var pattern = DecodeStringIfEscaped(parts[0]); var flags = DecodeStringIfEscaped(parts[1]); + var validateOnly = flags.Contains('v'); + + regexParser.Reset(pattern, patternStartIndex: 0, flags, flagsStartIndex: 0); - var regexParser = new Tokenizer.RegExpParser(pattern, flags, tokenizerOptions); - try { adaptedPattern = regexParser.ParseCore(out _, out _, out _) ?? ")inconvertible("; } + try { adaptedPattern = regexParser.ParseCore(validateOnly, out _, out _, out _) ?? ")inconvertible("; } catch (SyntaxErrorException) { adaptedPattern = ")syntax-error("; } var encodedDotnetPattern = JavaScriptString.Encode(adaptedPattern, addDoubleQuotes: false); if (adaptedPattern != encodedDotnetPattern) diff --git a/test/Acornima.Tests/Fixtures.RegExp/testcases.template.txt b/test/Acornima.Tests/Fixtures.RegExp/testcases.template.txt index 89493f0..5f25967 100644 --- a/test/Acornima.Tests/Fixtures.RegExp/testcases.template.txt +++ b/test/Acornima.Tests/Fixtures.RegExp/testcases.template.txt @@ -1,4 +1,4 @@ -# This file defines test cases for regular expression conversion testing (see RegExpTests.ExecuteTestCase). +# This file defines test cases for regular expression conversion testing (see RegExpTests.ExecuteTestCase). # Each uncommented, non-whitespace line specifies a test case in a tab-delimited format, with the following fields: # JS regexp pattern | JS regexp flags | expected .NET regexp pattern (*) | a string to test the regexp | expected matches in JSON format (*) | hints (optional) # (*) These fields are not specified in the template file but generated using the Generator tool. @@ -8,842 +8,1272 @@ ( ( ( u ( +( v ( ) ) ) u ) +) v ) [(] ( [(] u ( +[(] v ( [)] ) [)] u ) +[)] v ) { { { u { +{ v { } } } u } +} v } [{] { [{] u { +[{] v { [}] } [}] u } +[}] v } [{|}] {} [{|}] u {} +[{|}] v {} [ [ [ u [ +[ v [ ] ] ] u ] +] v ] [[] [ [[] u [ +[[] v [ []] ] []] u ] +[]] v ] \2(x)) x \2(x)) u x !ignore-error-message +\2(x)) v x !ignore-error-message \2(x))() x \2(x))() u x +\2(x))() v x # Empty pattern "x\ud83d💩\udca9X" u "x\ud83d💩\udca9X" + v "x\ud83d💩\udca9X" # Literal characters x "x\ud83d💩\udca9X" x u "x\ud83d💩\udca9X" +x v "x\ud83d💩\udca9X" x i "x\ud83d💩\udca9X" x ui "x\ud83d💩\udca9X" +x vi "x\ud83d💩\udca9X" X "x\ud83d💩\udca9X" X u "x\ud83d💩\udca9X" +X v "x\ud83d💩\udca9X" X i "x\ud83d💩\udca9X" X ui "x\ud83d💩\udca9X" +X vi "x\ud83d💩\udca9X" \x "x\ud83d💩\udca9X" \x u "x\ud83d💩\udca9X" +\x v "x\ud83d💩\udca9X" \x i "x\ud83d💩\udca9X" \x ui "x\ud83d💩\udca9X" +\x vi "x\ud83d💩\udca9X" \X "x\ud83d💩\udca9X" \X u "x\ud83d💩\udca9X" +\X v "x\ud83d💩\udca9X" \X i "x\ud83d💩\udca9X" \X ui "x\ud83d💩\udca9X" +\X vi "x\ud83d💩\udca9X" x* "x\ud83d💩\udca9X" x* u "x\ud83d💩\udca9X" +x* v "x\ud83d💩\udca9X" x* i "x\ud83d💩\udca9X" x* ui "x\ud83d💩\udca9X" +x* vi "x\ud83d💩\udca9X" X* "x\ud83d💩\udca9X" X* u "x\ud83d💩\udca9X" +X* v "x\ud83d💩\udca9X" X* i "x\ud83d💩\udca9X" X* ui "x\ud83d💩\udca9X" +X* vi "x\ud83d💩\udca9X" \x* "x\ud83d💩\udca9X" \x* u "x\ud83d💩\udca9X" +\x* v "x\ud83d💩\udca9X" \x* i "x\ud83d💩\udca9X" \x* ui "x\ud83d💩\udca9X" +\x* vi "x\ud83d💩\udca9X" \X* "x\ud83d💩\udca9X" \X* u "x\ud83d💩\udca9X" +\X* v "x\ud83d💩\udca9X" \X* i "x\ud83d💩\udca9X" \X* ui "x\ud83d💩\udca9X" +\X* vi "x\ud83d💩\udca9X" [x] "x\ud83d💩\udca9X" [x] u "x\ud83d💩\udca9X" +[x] v "x\ud83d💩\udca9X" [x] i "x\ud83d💩\udca9X" [x] ui "x\ud83d💩\udca9X" +[x] vi "x\ud83d💩\udca9X" [X] "x\ud83d💩\udca9X" [X] u "x\ud83d💩\udca9X" +[X] v "x\ud83d💩\udca9X" [X] i "x\ud83d💩\udca9X" [X] ui "x\ud83d💩\udca9X" +[X] vi "x\ud83d💩\udca9X" [\x] "x\ud83d💩\udca9X" [\x] u "x\ud83d💩\udca9X" +[\x] v "x\ud83d💩\udca9X" [\x] i "x\ud83d💩\udca9X" [\x] ui "x\ud83d💩\udca9X" +[\x] vi "x\ud83d💩\udca9X" [\X] "x\ud83d💩\udca9X" [\X] u "x\ud83d💩\udca9X" +[\X] v "x\ud83d💩\udca9X" [\X] i "x\ud83d💩\udca9X" [\X] ui "x\ud83d💩\udca9X" +[\X] vi "x\ud83d💩\udca9X" [^x] "x\ud83d💩\udca9X" [^x] u "x\ud83d💩\udca9X" +[^x] v "x\ud83d💩\udca9X" [^x] i "x\ud83d💩\udca9X" [^x] ui "x\ud83d💩\udca9X" +[^x] vi "x\ud83d💩\udca9X" [^X] "x\ud83d💩\udca9X" [^X] u "x\ud83d💩\udca9X" +[^X] v "x\ud83d💩\udca9X" [^X] i "x\ud83d💩\udca9X" [^X] ui "x\ud83d💩\udca9X" +[^X] vi "x\ud83d💩\udca9X" [^\x] "x\ud83d💩\udca9X" [^\x] u "x\ud83d💩\udca9X" +[^\x] v "x\ud83d💩\udca9X" [^\x] i "x\ud83d💩\udca9X" [^\x] ui "x\ud83d💩\udca9X" +[^\x] vi "x\ud83d💩\udca9X" [^\X] "x\ud83d💩\udca9X" [^\X] u "x\ud83d💩\udca9X" +[^\X] v "x\ud83d💩\udca9X" [^\X] i "x\ud83d💩\udca9X" [^\X] ui "x\ud83d💩\udca9X" +[^\X] vi "x\ud83d💩\udca9X" <.+?>
<.+?> u
+<.+?> v
victor jagt zwölf boxkämpfer quer über den großen sylter deich i VICTOR JAGT ZWÖLF BOXKÄMPFER QUER ÜBER DEN GROßEN SYLTER DEICH victor jagt zwölf boxkämpfer quer über den großen sylter deich ui VICTOR JAGT ZWÖLF BOXKÄMPFER QUER ÜBER DEN GROßEN SYLTER DEICH +victor jagt zwölf boxkämpfer quer über den großen sylter deich vi VICTOR JAGT ZWÖLF BOXKÄMPFER QUER ÜBER DEN GROßEN SYLTER DEICH VICTOR JAGT ZWÖLF BOXKÄMPFER QUER ÜBER DEN GROßEN SYLTER DEICH i victor jagt zwölf boxkämpfer quer über den großen sylter deich VICTOR JAGT ZWÖLF BOXKÄMPFER QUER ÜBER DEN GROßEN SYLTER DEICH ui victor jagt zwölf boxkämpfer quer über den großen sylter deich +VICTOR JAGT ZWÖLF BOXKÄMPFER QUER ÜBER DEN GROßEN SYLTER DEICH vi victor jagt zwölf boxkämpfer quer über den großen sylter deich høj bly gom vandt fræk sexquiz på wc i HØJ BLY GOM VANDT FRÆK SEXQUIZ PÅ WC høj bly gom vandt fræk sexquiz på wc ui HØJ BLY GOM VANDT FRÆK SEXQUIZ PÅ WC +høj bly gom vandt fræk sexquiz på wc vi HØJ BLY GOM VANDT FRÆK SEXQUIZ PÅ WC HØJ BLY GOM VANDT FRÆK SEXQUIZ PÅ WC i høj bly gom vandt fræk sexquiz på wc HØJ BLY GOM VANDT FRÆK SEXQUIZ PÅ WC ui høj bly gom vandt fræk sexquiz på wc +HØJ BLY GOM VANDT FRÆK SEXQUIZ PÅ WC vi høj bly gom vandt fræk sexquiz på wc törkylempijävongahdus i TÖRKYLEMPIJÄVONGAHDUS törkylempijävongahdus ui TÖRKYLEMPIJÄVONGAHDUS +törkylempijävongahdus vi TÖRKYLEMPIJÄVONGAHDUS TÖRKYLEMPIJÄVONGAHDUS i törkylempijävongahdus TÖRKYLEMPIJÄVONGAHDUS ui törkylempijävongahdus +TÖRKYLEMPIJÄVONGAHDUS vi törkylempijävongahdus kæmi ný öxi hér, ykist þjófum nú bæði víl og ádrepa i KÆMI NÝ ÖXI HÉR, YKIST ÞJÓFUM NÚ BÆÐI VÍL OG ÁDREPA kæmi ný öxi hér, ykist þjófum nú bæði víl og ádrepa ui KÆMI NÝ ÖXI HÉR, YKIST ÞJÓFUM NÚ BÆÐI VÍL OG ÁDREPA +kæmi ný öxi hér, ykist þjófum nú bæði víl og ádrepa vi KÆMI NÝ ÖXI HÉR, YKIST ÞJÓFUM NÚ BÆÐI VÍL OG ÁDREPA KÆMI NÝ ÖXI HÉR, YKIST ÞJÓFUM NÚ BÆÐI VÍL OG ÁDREPA i kæmi ný öxi hér, ykist þjófum nú bæði víl og ádrepa KÆMI NÝ ÖXI HÉR, YKIST ÞJÓFUM NÚ BÆÐI VÍL OG ÁDREPA ui kæmi ný öxi hér, ykist þjófum nú bæði víl og ádrepa +KÆMI NÝ ÖXI HÉR, YKIST ÞJÓFUM NÚ BÆÐI VÍL OG ÁDREPA vi kæmi ný öxi hér, ykist þjófum nú bæði víl og ádrepa flygande bäckasiner söka hwila på mjuka tuvor i FLYGANDE BÄCKASINER SÖKA HWILA PÅ MJUKA TUVOR flygande bäckasiner söka hwila på mjuka tuvor ui FLYGANDE BÄCKASINER SÖKA HWILA PÅ MJUKA TUVOR +flygande bäckasiner söka hwila på mjuka tuvor vi FLYGANDE BÄCKASINER SÖKA HWILA PÅ MJUKA TUVOR FLYGANDE BÄCKASINER SÖKA HWILA PÅ MJUKA TUVOR i flygande bäckasiner söka hwila på mjuka tuvor FLYGANDE BÄCKASINER SÖKA HWILA PÅ MJUKA TUVOR ui flygande bäckasiner söka hwila på mjuka tuvor +FLYGANDE BÄCKASINER SÖKA HWILA PÅ MJUKA TUVOR vi flygande bäckasiner söka hwila på mjuka tuvor à noite, vovô kowalsky vê o ímã cair no pé do pingüim queixoso e vovó põe açúcar no chá de tâmaras do jabuti feliz i À NOITE, VOVÔ KOWALSKY VÊ O ÍMà CAIR NO PÉ DO PINGÜIM QUEIXOSO E VOVÓ PÕE AÇÚCAR NO CHÁ DE TÂMARAS DO JABUTI FELIZ à noite, vovô kowalsky vê o ímã cair no pé do pingüim queixoso e vovó põe açúcar no chá de tâmaras do jabuti feliz ui À NOITE, VOVÔ KOWALSKY VÊ O ÍMà CAIR NO PÉ DO PINGÜIM QUEIXOSO E VOVÓ PÕE AÇÚCAR NO CHÁ DE TÂMARAS DO JABUTI FELIZ +à noite, vovô kowalsky vê o ímã cair no pé do pingüim queixoso e vovó põe açúcar no chá de tâmaras do jabuti feliz vi À NOITE, VOVÔ KOWALSKY VÊ O ÍMà CAIR NO PÉ DO PINGÜIM QUEIXOSO E VOVÓ PÕE AÇÚCAR NO CHÁ DE TÂMARAS DO JABUTI FELIZ À NOITE, VOVÔ KOWALSKY VÊ O ÍMà CAIR NO PÉ DO PINGÜIM QUEIXOSO E VOVÓ PÕE AÇÚCAR NO CHÁ DE TÂMARAS DO JABUTI FELIZ i à noite, vovô kowalsky vê o ímã cair no pé do pingüim queixoso e vovó põe açúcar no chá de tâmaras do jabuti feliz À NOITE, VOVÔ KOWALSKY VÊ O ÍMà CAIR NO PÉ DO PINGÜIM QUEIXOSO E VOVÓ PÕE AÇÚCAR NO CHÁ DE TÂMARAS DO JABUTI FELIZ ui à noite, vovô kowalsky vê o ímã cair no pé do pingüim queixoso e vovó põe açúcar no chá de tâmaras do jabuti feliz +À NOITE, VOVÔ KOWALSKY VÊ O ÍMà CAIR NO PÉ DO PINGÜIM QUEIXOSO E VOVÓ PÕE AÇÚCAR NO CHÁ DE TÂMARAS DO JABUTI FELIZ vi à noite, vovô kowalsky vê o ímã cair no pé do pingüim queixoso e vovó põe açúcar no chá de tâmaras do jabuti feliz benjamín pidió una bebida de kiwi y fresa noé, sin vergüenza, la más exquisita champaña del menú i BENJAMÍN PIDIÓ UNA BEBIDA DE KIWI Y FRESA NOÉ, SIN VERGÜENZA, LA MÁS EXQUISITA CHAMPAÑA DEL MENÚ benjamín pidió una bebida de kiwi y fresa noé, sin vergüenza, la más exquisita champaña del menú ui BENJAMÍN PIDIÓ UNA BEBIDA DE KIWI Y FRESA NOÉ, SIN VERGÜENZA, LA MÁS EXQUISITA CHAMPAÑA DEL MENÚ +benjamín pidió una bebida de kiwi y fresa noé, sin vergüenza, la más exquisita champaña del menú vi BENJAMÍN PIDIÓ UNA BEBIDA DE KIWI Y FRESA NOÉ, SIN VERGÜENZA, LA MÁS EXQUISITA CHAMPAÑA DEL MENÚ BENJAMÍN PIDIÓ UNA BEBIDA DE KIWI Y FRESA NOÉ, SIN VERGÜENZA, LA MÁS EXQUISITA CHAMPAÑA DEL MENÚ i benjamín pidió una bebida de kiwi y fresa noé, sin vergüenza, la más exquisita champaña del menú BENJAMÍN PIDIÓ UNA BEBIDA DE KIWI Y FRESA NOÉ, SIN VERGÜENZA, LA MÁS EXQUISITA CHAMPAÑA DEL MENÚ ui benjamín pidió una bebida de kiwi y fresa noé, sin vergüenza, la más exquisita champaña del menú +BENJAMÍN PIDIÓ UNA BEBIDA DE KIWI Y FRESA NOÉ, SIN VERGÜENZA, LA MÁS EXQUISITA CHAMPAÑA DEL MENÚ vi benjamín pidió una bebida de kiwi y fresa noé, sin vergüenza, la más exquisita champaña del menú příliš žluťoučký kůň úpěl ďábelské ódy i PŘÍLIŠ ŽLUŤOUČKÝ KŮŇ ÚPĚL ĎÁBELSKÉ ÓDY příliš žluťoučký kůň úpěl ďábelské ódy ui PŘÍLIŠ ŽLUŤOUČKÝ KŮŇ ÚPĚL ĎÁBELSKÉ ÓDY +příliš žluťoučký kůň úpěl ďábelské ódy vi PŘÍLIŠ ŽLUŤOUČKÝ KŮŇ ÚPĚL ĎÁBELSKÉ ÓDY PŘÍLIŠ ŽLUŤOUČKÝ KŮŇ ÚPĚL ĎÁBELSKÉ ÓDY i příliš žluťoučký kůň úpěl ďábelské ódy PŘÍLIŠ ŽLUŤOUČKÝ KŮŇ ÚPĚL ĎÁBELSKÉ ÓDY ui příliš žluťoučký kůň úpěl ďábelské ódy +PŘÍLIŠ ŽLUŤOUČKÝ KŮŇ ÚPĚL ĎÁBELSKÉ ÓDY vi příliš žluťoučký kůň úpěl ďábelské ódy kŕdeľ šťastných ďatľov učí pri ústí váhu mĺkveho koňa obhrýzať kôru a žrať čerstvé mäso i KŔDEĽ ŠŤASTNÝCH ĎATĽOV UČÍ PRI ÚSTÍ VÁHU MĹKVEHO KOŇA OBHRÝZAŤ KÔRU A ŽRAŤ ČERSTVÉ MÄSO kŕdeľ šťastných ďatľov učí pri ústí váhu mĺkveho koňa obhrýzať kôru a žrať čerstvé mäso ui KŔDEĽ ŠŤASTNÝCH ĎATĽOV UČÍ PRI ÚSTÍ VÁHU MĹKVEHO KOŇA OBHRÝZAŤ KÔRU A ŽRAŤ ČERSTVÉ MÄSO +kŕdeľ šťastných ďatľov učí pri ústí váhu mĺkveho koňa obhrýzať kôru a žrať čerstvé mäso vi KŔDEĽ ŠŤASTNÝCH ĎATĽOV UČÍ PRI ÚSTÍ VÁHU MĹKVEHO KOŇA OBHRÝZAŤ KÔRU A ŽRAŤ ČERSTVÉ MÄSO KŔDEĽ ŠŤASTNÝCH ĎATĽOV UČÍ PRI ÚSTÍ VÁHU MĹKVEHO KOŇA OBHRÝZAŤ KÔRU A ŽRAŤ ČERSTVÉ MÄSO i kŕdeľ šťastných ďatľov učí pri ústí váhu mĺkveho koňa obhrýzať kôru a žrať čerstvé mäso KŔDEĽ ŠŤASTNÝCH ĎATĽOV UČÍ PRI ÚSTÍ VÁHU MĹKVEHO KOŇA OBHRÝZAŤ KÔRU A ŽRAŤ ČERSTVÉ MÄSO ui kŕdeľ šťastných ďatľov učí pri ústí váhu mĺkveho koňa obhrýzať kôru a žrať čerstvé mäso +KŔDEĽ ŠŤASTNÝCH ĎATĽOV UČÍ PRI ÚSTÍ VÁHU MĹKVEHO KOŇA OBHRÝZAŤ KÔRU A ŽRAŤ ČERSTVÉ MÄSO vi kŕdeľ šťastných ďatľov učí pri ústí váhu mĺkveho koňa obhrýzať kôru a žrať čerstvé mäso stróż pchnął kość w quiz gędźb vel fax myjń i STRÓŻ PCHNĄŁ KOŚĆ W QUIZ GĘDŹB VEL FAX MYJŃ stróż pchnął kość w quiz gędźb vel fax myjń ui STRÓŻ PCHNĄŁ KOŚĆ W QUIZ GĘDŹB VEL FAX MYJŃ +stróż pchnął kość w quiz gędźb vel fax myjń vi STRÓŻ PCHNĄŁ KOŚĆ W QUIZ GĘDŹB VEL FAX MYJŃ STRÓŻ PCHNĄŁ KOŚĆ W QUIZ GĘDŹB VEL FAX MYJŃ i stróż pchnął kość w quiz gędźb vel fax myjń STRÓŻ PCHNĄŁ KOŚĆ W QUIZ GĘDŹB VEL FAX MYJŃ ui stróż pchnął kość w quiz gędźb vel fax myjń +STRÓŻ PCHNĄŁ KOŚĆ W QUIZ GĘDŹB VEL FAX MYJŃ vi stróż pchnął kość w quiz gędźb vel fax myjń árvíztűrő tükörfúrógép i ÁRVÍZTŰRŐ TÜKÖRFÚRÓGÉP árvíztűrő tükörfúrógép ui ÁRVÍZTŰRŐ TÜKÖRFÚRÓGÉP +árvíztűrő tükörfúrógép vi ÁRVÍZTŰRŐ TÜKÖRFÚRÓGÉP ÁRVÍZTŰRŐ TÜKÖRFÚRÓGÉP i árvíztűrő tükörfúrógép ÁRVÍZTŰRŐ TÜKÖRFÚRÓGÉP ui árvíztűrő tükörfúrógép +ÁRVÍZTŰRŐ TÜKÖRFÚRÓGÉP vi árvíztűrő tükörfúrógép zəfər, jaketini də papağını da götür, bu axşam hava çox soyuq olacaq i ZƏFƏR, JAKETINI DƏ PAPAĞıNı DA GÖTÜR, BU AXŞAM HAVA ÇOX SOYUQ OLACAQ zəfər, jaketini də papağını da götür, bu axşam hava çox soyuq olacaq ui ZƏFƏR, JAKETINI DƏ PAPAĞıNı DA GÖTÜR, BU AXŞAM HAVA ÇOX SOYUQ OLACAQ +zəfər, jaketini də papağını da götür, bu axşam hava çox soyuq olacaq vi ZƏFƏR, JAKETINI DƏ PAPAĞıNı DA GÖTÜR, BU AXŞAM HAVA ÇOX SOYUQ OLACAQ ZƏFƏR, JAKETINI DƏ PAPAĞıNı DA GÖTÜR, BU AXŞAM HAVA ÇOX SOYUQ OLACAQ i zəfər, jaketini də papağını da götür, bu axşam hava çox soyuq olacaq ZƏFƏR, JAKETINI DƏ PAPAĞıNı DA GÖTÜR, BU AXŞAM HAVA ÇOX SOYUQ OLACAQ ui zəfər, jaketini də papağını da götür, bu axşam hava çox soyuq olacaq +ZƏFƏR, JAKETINI DƏ PAPAĞıNı DA GÖTÜR, BU AXŞAM HAVA ÇOX SOYUQ OLACAQ vi zəfər, jaketini də papağını da götür, bu axşam hava çox soyuq olacaq cem vî feqoyê pîs zêdetir ji çar gulên xweşik hebûn i CEM VÎ FEQOYÊ PÎS ZÊDETIR JI ÇAR GULÊN XWEŞIK HEBÛN cem vî feqoyê pîs zêdetir ji çar gulên xweşik hebûn ui CEM VÎ FEQOYÊ PÎS ZÊDETIR JI ÇAR GULÊN XWEŞIK HEBÛN +cem vî feqoyê pîs zêdetir ji çar gulên xweşik hebûn vi CEM VÎ FEQOYÊ PÎS ZÊDETIR JI ÇAR GULÊN XWEŞIK HEBÛN CEM VÎ FEQOYÊ PÎS ZÊDETIR JI ÇAR GULÊN XWEŞIK HEBÛN i cem vî feqoyê pîs zêdetir ji çar gulên xweşik hebûn CEM VÎ FEQOYÊ PÎS ZÊDETIR JI ÇAR GULÊN XWEŞIK HEBÛN ui cem vî feqoyê pîs zêdetir ji çar gulên xweşik hebûn +CEM VÎ FEQOYÊ PÎS ZÊDETIR JI ÇAR GULÊN XWEŞIK HEBÛN vi cem vî feqoyê pîs zêdetir ji çar gulên xweşik hebûn pijamalı hasta yağız şoföre çabucak güvendi i PIJAMALı HASTA YAĞıZ ŞOFÖRE ÇABUCAK GÜVENDI pijamalı hasta yağız şoföre çabucak güvendi ui PIJAMALı HASTA YAĞıZ ŞOFÖRE ÇABUCAK GÜVENDI +pijamalı hasta yağız şoföre çabucak güvendi vi PIJAMALı HASTA YAĞıZ ŞOFÖRE ÇABUCAK GÜVENDI PIJAMALı HASTA YAĞıZ ŞOFÖRE ÇABUCAK GÜVENDI i pijamalı hasta yağız şoföre çabucak güvendi PIJAMALı HASTA YAĞıZ ŞOFÖRE ÇABUCAK GÜVENDI ui pijamalı hasta yağız şoföre çabucak güvendi +PIJAMALı HASTA YAĞıZ ŞOFÖRE ÇABUCAK GÜVENDI vi pijamalı hasta yağız şoföre çabucak güvendi [victor jagt zwölf boxkämpfer quer über den großen sylter deich] i VICTOR JAGT ZWÖLF BOXKÄMPFER QUER ÜBER DEN GROßEN SYLTER DEICH [victor jagt zwölf boxkämpfer quer über den großen sylter deich] ui VICTOR JAGT ZWÖLF BOXKÄMPFER QUER ÜBER DEN GROßEN SYLTER DEICH +[victor jagt zwölf boxkämpfer quer über den großen sylter deich] vi VICTOR JAGT ZWÖLF BOXKÄMPFER QUER ÜBER DEN GROßEN SYLTER DEICH [VICTOR JAGT ZWÖLF BOXKÄMPFER QUER ÜBER DEN GROßEN SYLTER DEICH] i victor jagt zwölf boxkämpfer quer über den großen sylter deich [VICTOR JAGT ZWÖLF BOXKÄMPFER QUER ÜBER DEN GROßEN SYLTER DEICH] ui victor jagt zwölf boxkämpfer quer über den großen sylter deich +[VICTOR JAGT ZWÖLF BOXKÄMPFER QUER ÜBER DEN GROßEN SYLTER DEICH] vi victor jagt zwölf boxkämpfer quer über den großen sylter deich [høj bly gom vandt fræk sexquiz på wc] i HØJ BLY GOM VANDT FRÆK SEXQUIZ PÅ WC [høj bly gom vandt fræk sexquiz på wc] ui HØJ BLY GOM VANDT FRÆK SEXQUIZ PÅ WC +[høj bly gom vandt fræk sexquiz på wc] vi HØJ BLY GOM VANDT FRÆK SEXQUIZ PÅ WC [HØJ BLY GOM VANDT FRÆK SEXQUIZ PÅ WC] i høj bly gom vandt fræk sexquiz på wc [HØJ BLY GOM VANDT FRÆK SEXQUIZ PÅ WC] ui høj bly gom vandt fræk sexquiz på wc +[HØJ BLY GOM VANDT FRÆK SEXQUIZ PÅ WC] vi høj bly gom vandt fræk sexquiz på wc [törkylempijävongahdus] i TÖRKYLEMPIJÄVONGAHDUS [törkylempijävongahdus] ui TÖRKYLEMPIJÄVONGAHDUS +[törkylempijävongahdus] vi TÖRKYLEMPIJÄVONGAHDUS [TÖRKYLEMPIJÄVONGAHDUS] i törkylempijävongahdus [TÖRKYLEMPIJÄVONGAHDUS] ui törkylempijävongahdus +[TÖRKYLEMPIJÄVONGAHDUS] vi törkylempijävongahdus [kæmi ný öxi hér, ykist þjófum nú bæði víl og ádrepa] i KÆMI NÝ ÖXI HÉR, YKIST ÞJÓFUM NÚ BÆÐI VÍL OG ÁDREPA [kæmi ný öxi hér, ykist þjófum nú bæði víl og ádrepa] ui KÆMI NÝ ÖXI HÉR, YKIST ÞJÓFUM NÚ BÆÐI VÍL OG ÁDREPA +[kæmi ný öxi hér, ykist þjófum nú bæði víl og ádrepa] vi KÆMI NÝ ÖXI HÉR, YKIST ÞJÓFUM NÚ BÆÐI VÍL OG ÁDREPA [KÆMI NÝ ÖXI HÉR, YKIST ÞJÓFUM NÚ BÆÐI VÍL OG ÁDREPA] i kæmi ný öxi hér, ykist þjófum nú bæði víl og ádrepa [KÆMI NÝ ÖXI HÉR, YKIST ÞJÓFUM NÚ BÆÐI VÍL OG ÁDREPA] ui kæmi ný öxi hér, ykist þjófum nú bæði víl og ádrepa +[KÆMI NÝ ÖXI HÉR, YKIST ÞJÓFUM NÚ BÆÐI VÍL OG ÁDREPA] vi kæmi ný öxi hér, ykist þjófum nú bæði víl og ádrepa [flygande bäckasiner söka hwila på mjuka tuvor] i FLYGANDE BÄCKASINER SÖKA HWILA PÅ MJUKA TUVOR [flygande bäckasiner söka hwila på mjuka tuvor] ui FLYGANDE BÄCKASINER SÖKA HWILA PÅ MJUKA TUVOR +[flygande bäckasiner söka hwila på mjuka tuvor] vi FLYGANDE BÄCKASINER SÖKA HWILA PÅ MJUKA TUVOR [FLYGANDE BÄCKASINER SÖKA HWILA PÅ MJUKA TUVOR] i flygande bäckasiner söka hwila på mjuka tuvor [FLYGANDE BÄCKASINER SÖKA HWILA PÅ MJUKA TUVOR] ui flygande bäckasiner söka hwila på mjuka tuvor +[FLYGANDE BÄCKASINER SÖKA HWILA PÅ MJUKA TUVOR] vi flygande bäckasiner söka hwila på mjuka tuvor [à noite, vovô kowalsky vê o ímã cair no pé do pingüim queixoso e vovó põe açúcar no chá de tâmaras do jabuti feliz] i À NOITE, VOVÔ KOWALSKY VÊ O ÍMà CAIR NO PÉ DO PINGÜIM QUEIXOSO E VOVÓ PÕE AÇÚCAR NO CHÁ DE TÂMARAS DO JABUTI FELIZ [à noite, vovô kowalsky vê o ímã cair no pé do pingüim queixoso e vovó põe açúcar no chá de tâmaras do jabuti feliz] ui À NOITE, VOVÔ KOWALSKY VÊ O ÍMà CAIR NO PÉ DO PINGÜIM QUEIXOSO E VOVÓ PÕE AÇÚCAR NO CHÁ DE TÂMARAS DO JABUTI FELIZ +[à noite, vovô kowalsky vê o ímã cair no pé do pingüim queixoso e vovó põe açúcar no chá de tâmaras do jabuti feliz] vi À NOITE, VOVÔ KOWALSKY VÊ O ÍMà CAIR NO PÉ DO PINGÜIM QUEIXOSO E VOVÓ PÕE AÇÚCAR NO CHÁ DE TÂMARAS DO JABUTI FELIZ [À NOITE, VOVÔ KOWALSKY VÊ O ÍMà CAIR NO PÉ DO PINGÜIM QUEIXOSO E VOVÓ PÕE AÇÚCAR NO CHÁ DE TÂMARAS DO JABUTI FELIZ] i à noite, vovô kowalsky vê o ímã cair no pé do pingüim queixoso e vovó põe açúcar no chá de tâmaras do jabuti feliz [À NOITE, VOVÔ KOWALSKY VÊ O ÍMà CAIR NO PÉ DO PINGÜIM QUEIXOSO E VOVÓ PÕE AÇÚCAR NO CHÁ DE TÂMARAS DO JABUTI FELIZ] ui à noite, vovô kowalsky vê o ímã cair no pé do pingüim queixoso e vovó põe açúcar no chá de tâmaras do jabuti feliz +[À NOITE, VOVÔ KOWALSKY VÊ O ÍMà CAIR NO PÉ DO PINGÜIM QUEIXOSO E VOVÓ PÕE AÇÚCAR NO CHÁ DE TÂMARAS DO JABUTI FELIZ] vi à noite, vovô kowalsky vê o ímã cair no pé do pingüim queixoso e vovó põe açúcar no chá de tâmaras do jabuti feliz [benjamín pidió una bebida de kiwi y fresa noé, sin vergüenza, la más exquisita champaña del menú] i BENJAMÍN PIDIÓ UNA BEBIDA DE KIWI Y FRESA NOÉ, SIN VERGÜENZA, LA MÁS EXQUISITA CHAMPAÑA DEL MENÚ [benjamín pidió una bebida de kiwi y fresa noé, sin vergüenza, la más exquisita champaña del menú] ui BENJAMÍN PIDIÓ UNA BEBIDA DE KIWI Y FRESA NOÉ, SIN VERGÜENZA, LA MÁS EXQUISITA CHAMPAÑA DEL MENÚ +[benjamín pidió una bebida de kiwi y fresa noé, sin vergüenza, la más exquisita champaña del menú] vi BENJAMÍN PIDIÓ UNA BEBIDA DE KIWI Y FRESA NOÉ, SIN VERGÜENZA, LA MÁS EXQUISITA CHAMPAÑA DEL MENÚ [BENJAMÍN PIDIÓ UNA BEBIDA DE KIWI Y FRESA NOÉ, SIN VERGÜENZA, LA MÁS EXQUISITA CHAMPAÑA DEL MENÚ] i benjamín pidió una bebida de kiwi y fresa noé, sin vergüenza, la más exquisita champaña del menú [BENJAMÍN PIDIÓ UNA BEBIDA DE KIWI Y FRESA NOÉ, SIN VERGÜENZA, LA MÁS EXQUISITA CHAMPAÑA DEL MENÚ] ui benjamín pidió una bebida de kiwi y fresa noé, sin vergüenza, la más exquisita champaña del menú +[BENJAMÍN PIDIÓ UNA BEBIDA DE KIWI Y FRESA NOÉ, SIN VERGÜENZA, LA MÁS EXQUISITA CHAMPAÑA DEL MENÚ] vi benjamín pidió una bebida de kiwi y fresa noé, sin vergüenza, la más exquisita champaña del menú [příliš žluťoučký kůň úpěl ďábelské ódy] i PŘÍLIŠ ŽLUŤOUČKÝ KŮŇ ÚPĚL ĎÁBELSKÉ ÓDY [příliš žluťoučký kůň úpěl ďábelské ódy] ui PŘÍLIŠ ŽLUŤOUČKÝ KŮŇ ÚPĚL ĎÁBELSKÉ ÓDY +[příliš žluťoučký kůň úpěl ďábelské ódy] vi PŘÍLIŠ ŽLUŤOUČKÝ KŮŇ ÚPĚL ĎÁBELSKÉ ÓDY [PŘÍLIŠ ŽLUŤOUČKÝ KŮŇ ÚPĚL ĎÁBELSKÉ ÓDY] i příliš žluťoučký kůň úpěl ďábelské ódy [PŘÍLIŠ ŽLUŤOUČKÝ KŮŇ ÚPĚL ĎÁBELSKÉ ÓDY] ui příliš žluťoučký kůň úpěl ďábelské ódy +[PŘÍLIŠ ŽLUŤOUČKÝ KŮŇ ÚPĚL ĎÁBELSKÉ ÓDY] vi příliš žluťoučký kůň úpěl ďábelské ódy [kŕdeľ šťastných ďatľov učí pri ústí váhu mĺkveho koňa obhrýzať kôru a žrať čerstvé mäso] i KŔDEĽ ŠŤASTNÝCH ĎATĽOV UČÍ PRI ÚSTÍ VÁHU MĹKVEHO KOŇA OBHRÝZAŤ KÔRU A ŽRAŤ ČERSTVÉ MÄSO [kŕdeľ šťastných ďatľov učí pri ústí váhu mĺkveho koňa obhrýzať kôru a žrať čerstvé mäso] ui KŔDEĽ ŠŤASTNÝCH ĎATĽOV UČÍ PRI ÚSTÍ VÁHU MĹKVEHO KOŇA OBHRÝZAŤ KÔRU A ŽRAŤ ČERSTVÉ MÄSO +[kŕdeľ šťastných ďatľov učí pri ústí váhu mĺkveho koňa obhrýzať kôru a žrať čerstvé mäso] vi KŔDEĽ ŠŤASTNÝCH ĎATĽOV UČÍ PRI ÚSTÍ VÁHU MĹKVEHO KOŇA OBHRÝZAŤ KÔRU A ŽRAŤ ČERSTVÉ MÄSO [KŔDEĽ ŠŤASTNÝCH ĎATĽOV UČÍ PRI ÚSTÍ VÁHU MĹKVEHO KOŇA OBHRÝZAŤ KÔRU A ŽRAŤ ČERSTVÉ MÄSO] i kŕdeľ šťastných ďatľov učí pri ústí váhu mĺkveho koňa obhrýzať kôru a žrať čerstvé mäso [KŔDEĽ ŠŤASTNÝCH ĎATĽOV UČÍ PRI ÚSTÍ VÁHU MĹKVEHO KOŇA OBHRÝZAŤ KÔRU A ŽRAŤ ČERSTVÉ MÄSO] ui kŕdeľ šťastných ďatľov učí pri ústí váhu mĺkveho koňa obhrýzať kôru a žrať čerstvé mäso +[KŔDEĽ ŠŤASTNÝCH ĎATĽOV UČÍ PRI ÚSTÍ VÁHU MĹKVEHO KOŇA OBHRÝZAŤ KÔRU A ŽRAŤ ČERSTVÉ MÄSO] vi kŕdeľ šťastných ďatľov učí pri ústí váhu mĺkveho koňa obhrýzať kôru a žrať čerstvé mäso [stróż pchnął kość w quiz gędźb vel fax myjń] i STRÓŻ PCHNĄŁ KOŚĆ W QUIZ GĘDŹB VEL FAX MYJŃ [stróż pchnął kość w quiz gędźb vel fax myjń] ui STRÓŻ PCHNĄŁ KOŚĆ W QUIZ GĘDŹB VEL FAX MYJŃ +[stróż pchnął kość w quiz gędźb vel fax myjń] vi STRÓŻ PCHNĄŁ KOŚĆ W QUIZ GĘDŹB VEL FAX MYJŃ [STRÓŻ PCHNĄŁ KOŚĆ W QUIZ GĘDŹB VEL FAX MYJŃ] i stróż pchnął kość w quiz gędźb vel fax myjń [STRÓŻ PCHNĄŁ KOŚĆ W QUIZ GĘDŹB VEL FAX MYJŃ] ui stróż pchnął kość w quiz gędźb vel fax myjń +[STRÓŻ PCHNĄŁ KOŚĆ W QUIZ GĘDŹB VEL FAX MYJŃ] vi stróż pchnął kość w quiz gędźb vel fax myjń [árvíztűrő tükörfúrógép] i ÁRVÍZTŰRŐ TÜKÖRFÚRÓGÉP [árvíztűrő tükörfúrógép] ui ÁRVÍZTŰRŐ TÜKÖRFÚRÓGÉP +[árvíztűrő tükörfúrógép] vi ÁRVÍZTŰRŐ TÜKÖRFÚRÓGÉP [ÁRVÍZTŰRŐ TÜKÖRFÚRÓGÉP] i árvíztűrő tükörfúrógép [ÁRVÍZTŰRŐ TÜKÖRFÚRÓGÉP] ui árvíztűrő tükörfúrógép +[ÁRVÍZTŰRŐ TÜKÖRFÚRÓGÉP] vi árvíztűrő tükörfúrógép [zəfər, jaketini də papağını da götür, bu axşam hava çox soyuq olacaq] i ZƏFƏR, JAKETINI DƏ PAPAĞıNı DA GÖTÜR, BU AXŞAM HAVA ÇOX SOYUQ OLACAQ [zəfər, jaketini də papağını da götür, bu axşam hava çox soyuq olacaq] ui ZƏFƏR, JAKETINI DƏ PAPAĞıNı DA GÖTÜR, BU AXŞAM HAVA ÇOX SOYUQ OLACAQ +[zəfər, jaketini də papağını da götür, bu axşam hava çox soyuq olacaq] vi ZƏFƏR, JAKETINI DƏ PAPAĞıNı DA GÖTÜR, BU AXŞAM HAVA ÇOX SOYUQ OLACAQ [ZƏFƏR, JAKETINI DƏ PAPAĞıNı DA GÖTÜR, BU AXŞAM HAVA ÇOX SOYUQ OLACAQ] i zəfər, jaketini də papağını da götür, bu axşam hava çox soyuq olacaq [ZƏFƏR, JAKETINI DƏ PAPAĞıNı DA GÖTÜR, BU AXŞAM HAVA ÇOX SOYUQ OLACAQ] ui zəfər, jaketini də papağını da götür, bu axşam hava çox soyuq olacaq +[ZƏFƏR, JAKETINI DƏ PAPAĞıNı DA GÖTÜR, BU AXŞAM HAVA ÇOX SOYUQ OLACAQ] vi zəfər, jaketini də papağını da götür, bu axşam hava çox soyuq olacaq [cem vî feqoyê pîs zêdetir ji çar gulên xweşik hebûn] i CEM VÎ FEQOYÊ PÎS ZÊDETIR JI ÇAR GULÊN XWEŞIK HEBÛN [cem vî feqoyê pîs zêdetir ji çar gulên xweşik hebûn] ui CEM VÎ FEQOYÊ PÎS ZÊDETIR JI ÇAR GULÊN XWEŞIK HEBÛN +[cem vî feqoyê pîs zêdetir ji çar gulên xweşik hebûn] vi CEM VÎ FEQOYÊ PÎS ZÊDETIR JI ÇAR GULÊN XWEŞIK HEBÛN [CEM VÎ FEQOYÊ PÎS ZÊDETIR JI ÇAR GULÊN XWEŞIK HEBÛN] i cem vî feqoyê pîs zêdetir ji çar gulên xweşik hebûn [CEM VÎ FEQOYÊ PÎS ZÊDETIR JI ÇAR GULÊN XWEŞIK HEBÛN] ui cem vî feqoyê pîs zêdetir ji çar gulên xweşik hebûn +[CEM VÎ FEQOYÊ PÎS ZÊDETIR JI ÇAR GULÊN XWEŞIK HEBÛN] vi cem vî feqoyê pîs zêdetir ji çar gulên xweşik hebûn [pijamalı hasta yağız şoföre çabucak güvendi] i PIJAMALı HASTA YAĞıZ ŞOFÖRE ÇABUCAK GÜVENDI [pijamalı hasta yağız şoföre çabucak güvendi] ui PIJAMALı HASTA YAĞıZ ŞOFÖRE ÇABUCAK GÜVENDI +[pijamalı hasta yağız şoföre çabucak güvendi] vi PIJAMALı HASTA YAĞıZ ŞOFÖRE ÇABUCAK GÜVENDI [PIJAMALı HASTA YAĞıZ ŞOFÖRE ÇABUCAK GÜVENDI] i pijamalı hasta yağız şoföre çabucak güvendi [PIJAMALı HASTA YAĞıZ ŞOFÖRE ÇABUCAK GÜVENDI] ui pijamalı hasta yağız şoföre çabucak güvendi +[PIJAMALı HASTA YAĞıZ ŞOFÖRE ÇABUCAK GÜVENDI] vi pijamalı hasta yağız şoföre çabucak güvendi # Escaped syntax characters \/\^\$\\\.\*\+\?\(\)\[\]\{\}\| x/^$\.*+?()[]{}|-X \/\^\$\\\.\*\+\?\(\)\[\]\{\}\| u x/^$\.*+?()[]{}|-X +\/\^\$\\\.\*\+\?\(\)\[\]\{\}\| v x/^$\.*+?()[]{}|-X \/?\^?\$?\\?\.?\**?\++?\???\(?\)?\[?\]?\{{1}?\}{1}?\|? x/^$\.*+?()[]{}|-X \/?\^?\$?\\?\.?\**?\++?\???\(?\)?\[?\]?\{{1}?\}{1}?\|? u x/^$\.*+?()[]{}|-X +\/?\^?\$?\\?\.?\**?\++?\???\(?\)?\[?\]?\{{1}?\}{1}?\|? v x/^$\.*+?()[]{}|-X [\/\^\$\\\.\*\+\?\(\)\[\]\{\}\|-] x/^$\.*+?()[]{}|-X [\/\^\$\\\.\*\+\?\(\)\[\]\{\}\|-] u x/^$\.*+?()[]{}|-X +[\/\^\$\\\.\*\+\?\(\)\[\]\{\}\|-] v x/^$\.*+?()[]{}|-X [/^$\\.*+?()[\]{}|-] x/^$\.*+?()[]{}|-X [/^$\\.*+?()[\]{}|-] u x/^$\.*+?()[]{}|-X +[/^$\\.*+?()[\]{}|-] v x/^$\.*+?()[]{}|-X !ignore-error-message [/^$\\.*+?()[\]{}|\-] x/^$\.*+?()[]{}|-X [/^$\\.*+?()[\]{}|\-] u x/^$\.*+?()[]{}|-X +[/^$\\.*+?()[\]{}|\-] v x/^$\.*+?()[]{}|-X !ignore-error-message [^\/\^\$\\\.\*\+\?\(\)\[\]\{\}\|-] x/^$\.*+?()[]{}|-X [^\/\^\$\\\.\*\+\?\(\)\[\]\{\}\|-] u x/^$\.*+?()[]{}|-X +[^\/\^\$\\\.\*\+\?\(\)\[\]\{\}\|-] v x/^$\.*+?()[]{}|-X [^/^$\\.*+?()[\]{}|-] x/^$\.*+?()[]{}|-X [^/^$\\.*+?()[\]{}|-] u x/^$\.*+?()[]{}|-X +[^/^$\\.*+?()[\]{}|-] v x/^$\.*+?()[]{}|-X !ignore-error-message [^/^$\\.*+?()[\]{}|\-] x/^$\.*+?()[]{}|-X [^/^$\\.*+?()[\]{}|\-] u x/^$\.*+?()[]{}|-X +[^/^$\\.*+?()[\]{}|\-] v x/^$\.*+?()[]{}|-X !ignore-error-message # Surrogate pairs . "\ud83d💩💫💩\udca9" . u "\ud83d💩💫💩\udca9" +. v "\ud83d💩💫💩\udca9" 💩 "\ud83d💩💫💩\udca9" 💩 u "\ud83d💩💫💩\udca9" +💩 v "\ud83d💩💫💩\udca9" 💩? "\ud83d💩💫💩\udca9" 💩? u "\ud83d💩💫💩\udca9" +💩? v "\ud83d💩💫💩\udca9" (💩|💫)+ "\ud83d💩💫💩\udca9" (💩|💫)+ u "\ud83d💩💫💩\udca9" +(💩|💫)+ v "\ud83d💩💫💩\udca9" \ud83d\udca9? "\ud83d💩💫💩\udca9" \ud83d\udca9? u "\ud83d💩💫💩\udca9" +\ud83d\udca9? v "\ud83d💩💫💩\udca9" \u{1F4A9}? u "\ud83d💩💫💩\udca9" +\u{1F4A9}? v "\ud83d💩💫💩\udca9" "\\ud83d\udca9" "\ud83d💩💫💩\udca9" "\\ud83d\udca9" u "\ud83d💩💫💩\udca9" +"\\ud83d\udca9" v "\ud83d💩💫💩\udca9" "\\u{d83d}\udca9" u "\ud83d💩💫💩\udca9" +"\\u{d83d}\udca9" v "\ud83d💩💫💩\udca9" "\\u{d83d}\\udca9" u "\ud83d💩💫💩\udca9" +"\\u{d83d}\\udca9" v "\ud83d💩💫💩\udca9" "\ud83d\\udca9" "\ud83d💩💫💩\udca9" "\ud83d\\udca9" u "\ud83d💩💫💩\udca9" +"\ud83d\\udca9" v "\ud83d💩💫💩\udca9" "\ud83d\\u{dca9}" u "\ud83d💩💫💩\udca9" +"\ud83d\\u{dca9}" v "\ud83d💩💫💩\udca9" "\\ud83d\\u{dca9}" u "\ud83d💩💫💩\udca9" +"\\ud83d\\u{dca9}" v "\ud83d💩💫💩\udca9" [💩] "\ud83d💩💫💩\udca9" [💩] u "\ud83d💩💫💩\udca9" +[💩] v "\ud83d💩💫💩\udca9" [\ud83d\udca9] "\ud83d💩💫💩\udca9" [\ud83d\udca9] u "\ud83d💩💫💩\udca9" +[\ud83d\udca9] v "\ud83d💩💫💩\udca9" [\u{1F4A9}] u "\ud83d💩💫💩\udca9" +[\u{1F4A9}] v "\ud83d💩💫💩\udca9" "[\\ud83d\udca9]" "\ud83d💩💫💩\udca9" "[\\ud83d\udca9]" u "\ud83d💩💫💩\udca9" +"[\\ud83d\udca9]" v "\ud83d💩💫💩\udca9" "[\\u{d83d}\udca9]" u "\ud83d💩💫💩\udca9" +"[\\u{d83d}\udca9]" v "\ud83d💩💫💩\udca9" "[\\u{d83d}\\udca9]" u "\ud83d💩💫💩\udca9" +"[\\u{d83d}\\udca9]" v "\ud83d💩💫💩\udca9" "[\ud83d\\udca9]" "\ud83d💩💫💩\udca9" "[\ud83d\\udca9]" u "\ud83d💩💫💩\udca9" +"[\ud83d\\udca9]" v "\ud83d💩💫💩\udca9" "[\ud83d\\u{dca9}]" u "\ud83d💩💫💩\udca9" +"[\ud83d\\u{dca9}]" v "\ud83d💩💫💩\udca9" "[\\ud83d\\u{dca9}]" u "\ud83d💩💫💩\udca9" +"[\\ud83d\\u{dca9}]" v "\ud83d💩💫💩\udca9" [💩-💫] "\ud83d💩💫💩\udca9" [💩-💫] u "\ud83d💩💫💩\udca9" +[💩-💫] v "\ud83d💩💫💩\udca9" [\ud83d\udca9-💫] "\ud83d💩💫💩\udca9" [\ud83d\udca9-💫] u "\ud83d💩💫💩\udca9" +[\ud83d\udca9-💫] v "\ud83d💩💫💩\udca9" [\u{1F4A9}-💫] "\ud83d💩💫💩\udca9" [\u{1F4A9}-💫] u "\ud83d💩💫💩\udca9" +[\u{1F4A9}-💫] v "\ud83d💩💫💩\udca9" "[\\ud83d\udca9-💫]" "\ud83d💩💫💩\udca9" "[\\ud83d\udca9-💫]" u "\ud83d💩💫💩\udca9" +"[\\ud83d\udca9-💫]" v "\ud83d💩💫💩\udca9" "[\\u{d83d}\udca9-💫]" u "\ud83d💩💫💩\udca9" +"[\\u{d83d}\udca9-💫]" v "\ud83d💩💫💩\udca9" "[\\u{d83d}\\udca9-💫]" u "\ud83d💩💫💩\udca9" +"[\\u{d83d}\\udca9-💫]" v "\ud83d💩💫💩\udca9" "[\ud83d\\udca9-💫]" "\ud83d💩💫💩\udca9" "[\ud83d\\udca9-💫]" u "\ud83d💩💫💩\udca9" +"[\ud83d\\udca9-💫]" v "\ud83d💩💫💩\udca9" "[\ud83d\\u{dca9}-💫]" u "\ud83d💩💫💩\udca9" +"[\ud83d\\u{dca9}-💫]" v "\ud83d💩💫💩\udca9" "[\\ud83d\\u{dca9}-💫]" u "\ud83d💩💫💩\udca9" +"[\\ud83d\\u{dca9}-💫]" v "\ud83d💩💫💩\udca9" [💩-\ud83d\udcab] "\ud83d💩💫💩\udcab" [💩-\ud83d\udcab] u "\ud83d💩💫💩\udcab" +[💩-\ud83d\udcab] v "\ud83d💩💫💩\udcab" [💩-\u{1F4AB}] u "\ud83d💩💫💩\udcab" +[💩-\u{1F4AB}] v "\ud83d💩💫💩\udcab" "[💩-\\ud83d\udcab]" "\ud83d💩💫💩\udcab" "[💩-\\ud83d\udcab]" u "\ud83d💩💫💩\udcab" +"[💩-\\ud83d\udcab]" v "\ud83d💩💫💩\udcab" "[💩-\\u{d83d}\udcab]" u "\ud83d💩💫💩\udcab" +"[💩-\\u{d83d}\udcab]" v "\ud83d💩💫💩\udcab" "[💩-\\u{d83d}\\udcab]" u "\ud83d💩💫💩\udcab" +"[💩-\\u{d83d}\\udcab]" v "\ud83d💩💫💩\udcab" "[💩-\ud83d\\udcab]" "\ud83d💩💫💩\udcab" "[💩-\ud83d\\udcab]" u "\ud83d💩💫💩\udcab" +"[💩-\ud83d\\udcab]" v "\ud83d💩💫💩\udcab" "[💩-\ud83d\\u{dcab}]" u "\ud83d💩💫💩\udcab" +"[💩-\ud83d\\u{dcab}]" v "\ud83d💩💫💩\udcab" "[💩-\\ud83d\\u{dcab}]" u "\ud83d💩💫💩\udcab" +"[💩-\\ud83d\\u{dcab}]" v "\ud83d💩💫💩\udcab" [\ud83d\udca9-\ud83d\udcab] "\ud83d💩💫💩\udcab" [\ud83d\udca9-\ud83d\udcab] u "\ud83d💩💫💩\udcab" +[\ud83d\udca9-\ud83d\udcab] v "\ud83d💩💫💩\udcab" [\u{1F4A9}-\ud83d\udcab] u "\ud83d💩💫💩\udcab" +[\u{1F4A9}-\ud83d\udcab] v "\ud83d💩💫💩\udcab" [\ud83d\udca9-\u{1F4AB}] u "\ud83d💩💫💩\udcab" +[\ud83d\udca9-\u{1F4AB}] v "\ud83d💩💫💩\udcab" [\u{1F4A9}-\u{1F4AB}] u "\ud83d💩💫💩\udcab" +[\u{1F4A9}-\u{1F4AB}] v "\ud83d💩💫💩\udcab" [💫-💩] "\ud83d💩💫💩\udca9" [💫-💩] u "\ud83d💩💫💩\udca9" +[💫-💩] v "\ud83d💩💫💩\udca9" [\ud83c\udc00-\ud83c\udfff] u "\ud83d💩💫💩\udca9" +[\ud83c\udc00-\ud83c\udfff] v "\ud83d💩💫💩\udca9" [\ud83c\udc00-\ud83d\udfff] u "\ud83d💩💫💩\udca9" +[\ud83c\udc00-\ud83d\udfff] v "\ud83d💩💫💩\udca9" [\ud83c\udc00-\ud83e\udfff] u "\ud83d💩💫💩\udca9" +[\ud83c\udc00-\ud83e\udfff] v "\ud83d💩💫💩\udca9" [\ud83c\udc01-\ud83c\udfff] u "\ud83d💩💫💩\udca9" +[\ud83c\udc01-\ud83c\udfff] v "\ud83d💩💫💩\udca9" [\ud83c\udc01-\ud83d\udfff] u "\ud83d💩💫💩\udca9" +[\ud83c\udc01-\ud83d\udfff] v "\ud83d💩💫💩\udca9" [\ud83c\udc01-\ud83e\udfff] u "\ud83d💩💫💩\udca9" +[\ud83c\udc01-\ud83e\udfff] v "\ud83d💩💫💩\udca9" [\ud83c\udc00-\ud83c\udffe] u "\ud83d💩💫💩\udca9" +[\ud83c\udc00-\ud83c\udffe] v "\ud83d💩💫💩\udca9" [\ud83c\udc00-\ud83d\udffe] u "\ud83d💩💫💩\udca9" +[\ud83c\udc00-\ud83d\udffe] v "\ud83d💩💫💩\udca9" [\ud83c\udc00-\ud83e\udffe] u "\ud83d💩💫💩\udca9" +[\ud83c\udc00-\ud83e\udffe] v "\ud83d💩💫💩\udca9" [\ud83c\udc01-\ud83c\udffe] u "\ud83d💩💫💩\udca9" +[\ud83c\udc01-\ud83c\udffe] v "\ud83d💩💫💩\udca9" [\ud83c\udc01-\ud83d\udffe] u "\ud83d💩💫💩\udca9" +[\ud83c\udc01-\ud83d\udffe] v "\ud83d💩💫💩\udca9" [\ud83c\udc01-\ud83e\udffe] u "\ud83d💩💫💩\udca9" +[\ud83c\udc01-\ud83e\udffe] v "\ud83d💩💫💩\udca9" [\uFFFE-\u{10001}] u "\uFFFD\uFFFE\uFFFF\u{10000}\u{10001}\u{10002}\udcab\ud83d" +[\uFFFE-\u{10001}] v "\uFFFD\uFFFE\uFFFF\u{10000}\u{10001}\u{10002}\udcab\ud83d" [^\uFFFE-\u{10001}] u "\uFFFD\uFFFE\uFFFF\u{10000}\u{10001}\u{10002}\udcab\ud83d" +[^\uFFFE-\u{10001}] v "\uFFFD\uFFFE\uFFFF\u{10000}\u{10001}\u{10002}\udcab\ud83d" # Lone surrogates "\ud83d" "\ud83d \ud83d\udca9 \udca9\ud83d \ud83d" "\ud83d" u "\ud83d \ud83d\udca9 \udca9\ud83d \ud83d" +"\ud83d" v "\ud83d \ud83d\udca9 \udca9\ud83d \ud83d" \ud83d "\ud83d \ud83d\udca9 \udca9\ud83d \ud83d" \ud83d u "\ud83d \ud83d\udca9 \udca9\ud83d \ud83d" +\ud83d v "\ud83d \ud83d\udca9 \udca9\ud83d \ud83d" \u{d83d} u "\ud83d \ud83d\udca9 \udca9\ud83d \ud83d" +\u{d83d} v "\ud83d \ud83d\udca9 \udca9\ud83d \ud83d" "\ud83d?" "\ud83d \ud83d\udca9 \udca9\ud83d \ud83d" "\ud83d?" u "\ud83d \ud83d\udca9 \udca9\ud83d \ud83d" +"\ud83d?" v "\ud83d \ud83d\udca9 \udca9\ud83d \ud83d" "[\ud83d]" "\ud83d \ud83d\udca9 \udca9\ud83d \ud83d" "[\ud83d]" u "\ud83d \ud83d\udca9 \udca9\ud83d \ud83d" +"[\ud83d]" v "\ud83d \ud83d\udca9 \udca9\ud83d \ud83d" [\ud83d] "\ud83d \ud83d\udca9 \udca9\ud83d \ud83d" [\ud83d] u "\ud83d \ud83d\udca9 \udca9\ud83d \ud83d" +[\ud83d] v "\ud83d \ud83d\udca9 \udca9\ud83d \ud83d" [\u{d83d}] u "\ud83d \ud83d\udca9 \udca9\ud83d \ud83d" +[\u{d83d}] v "\ud83d \ud83d\udca9 \udca9\ud83d \ud83d" "\udca9" "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" "\udca9" u "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" +"\udca9" v "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" \udca9 "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" \udca9 u "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" +\udca9 v "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" \u{dca9} u "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" +\u{dca9} v "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" "\udca9?" "\ud83d \ud83d\udca9 \udca9\ud83d \ud83d" "\udca9?" u "\ud83d \ud83d\udca9 \udca9\ud83d \ud83d" +"\udca9?" v "\ud83d \ud83d\udca9 \udca9\ud83d \ud83d" "[\udca9]" "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" "[\udca9]" u "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" +"[\udca9]" v "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" [\udca9] "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" [\udca9] u "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" +[\udca9] v "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" [\u{dca9}] u "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" +[\u{dca9}] v "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" "\\ud83d\udca9" "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" "\\ud83d\udca9" u "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" +"\\ud83d\udca9" v "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" "\ud83d\\udca9" "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" "\ud83d\\udca9" u "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" +"\ud83d\\udca9" v "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" "\\u{d83d}\udca9" "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" "\\u{d83d}\udca9" u "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" +"\\u{d83d}\udca9" v "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" "\ud83d\\u{dca9}" "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" "\ud83d\\u{dca9}" u "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" +"\ud83d\\u{dca9}" v "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" "\\u{d83d}\\udca9" "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" "\\u{d83d}\\udca9" u "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" +"\\u{d83d}\\udca9" v "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" "\\ud83d\\u{dca9}" "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" "\\ud83d\\u{dca9}" u "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" +"\\ud83d\\u{dca9}" v "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" "[\\ud83d\udca9]" "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" "[\\ud83d\udca9]" u "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" +"[\\ud83d\udca9]" v "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" "[\ud83d\\udca9]" "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" "[\ud83d\\udca9]" u "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" +"[\ud83d\\udca9]" v "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" "[\\u{d83d}\udca9]" "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" "[\\u{d83d}\udca9]" u "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" +"[\\u{d83d}\udca9]" v "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" "[\ud83d\\u{dca9}]" "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" "[\ud83d\\u{dca9}]" u "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" +"[\ud83d\\u{dca9}]" v "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" "[\\u{d83d}\\udca9]" "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" "[\\u{d83d}\\udca9]" u "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" +"[\\u{d83d}\\udca9]" v "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" "[\\ud83d\\u{dca9}]" "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" "[\\ud83d\\u{dca9}]" u "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" +"[\\ud83d\\u{dca9}]" v "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" \u{d83d}\u{dca9} u "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" +\u{d83d}\u{dca9} v "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" \u{d83d}|\u{dca9} u "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" +\u{d83d}|\u{dca9} v "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" [\u{d83d}\u{dca9}] u "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" +[\u{d83d}\u{dca9}] v "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" . u "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" +. v "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" . us "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" +. vs "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" [] u "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" +[] v "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" [^] u "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" +[^] v "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" \D u "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" +\D v "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" \S u "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" +\S v "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" \W u "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" +\W v "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" [\D] u "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" +[\D] v "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" [\S] u "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" +[\S] v "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" [\W] u "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" +[\W] v "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" [^\d] u "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" +[^\d] v "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" [^\s] u "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" +[^\s] v "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" [^\w] u "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" +[^\w] v "\udca9 \ud83d\udca9 \udca9\ud83d \udca9" [\u{d7fd}-\u{e002}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{d7fd}-\u{e002}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{d7fd}-\u{e000}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{d7fd}-\u{e000}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{d7fd}-\u{dfff}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{d7fd}-\u{dfff}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{d7fd}-\u{dffd}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{d7fd}-\u{dffd}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{d7fd}-\u{dc02}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{d7fd}-\u{dc02}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{d7fd}-\u{dc00}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{d7fd}-\u{dc00}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{d7fd}-\u{dbff}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{d7fd}-\u{dbff}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{d7fd}-\u{dbfd}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{d7fd}-\u{dbfd}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{d7fd}-\u{d802}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{d7fd}-\u{d802}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{d7fd}-\u{d800}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{d7fd}-\u{d800}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{d7fd}-\u{d7ff}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{d7fd}-\u{d7ff}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{d7ff}-\u{e002}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{d7ff}-\u{e002}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{d7ff}-\u{e000}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{d7ff}-\u{e000}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{d7ff}-\u{dfff}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{d7ff}-\u{dfff}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{d7ff}-\u{dffd}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{d7ff}-\u{dffd}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{d7ff}-\u{dc02}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{d7ff}-\u{dc02}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{d7ff}-\u{dc00}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{d7ff}-\u{dc00}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{d7ff}-\u{dbff}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{d7ff}-\u{dbff}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{d7ff}-\u{dbfd}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{d7ff}-\u{dbfd}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{d7ff}-\u{d802}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{d7ff}-\u{d802}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{d7ff}-\u{d800}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{d7ff}-\u{d800}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{d800}-\u{e002}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{d800}-\u{e002}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{d800}-\u{e000}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{d800}-\u{e000}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{d800}-\u{dfff}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{d800}-\u{dfff}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{d800}-\u{dffd}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{d800}-\u{dffd}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{d800}-\u{dc02}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{d800}-\u{dc02}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{d800}-\u{dc00}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{d800}-\u{dc00}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{d800}-\u{dbff}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{d800}-\u{dbff}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{d800}-\u{dbfd}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{d800}-\u{dbfd}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{d800}-\u{d802}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{d800}-\u{d802}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{d802}-\u{e002}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{d802}-\u{e002}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{d802}-\u{e000}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{d802}-\u{e000}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{d802}-\u{dfff}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{d802}-\u{dfff}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{d802}-\u{dffd}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{d802}-\u{dffd}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{d802}-\u{dc02}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{d802}-\u{dc02}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{d802}-\u{dc00}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{d802}-\u{dc00}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{d802}-\u{dbff}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{d802}-\u{dbff}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{d802}-\u{dbfd}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{d802}-\u{dbfd}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{dbfd}-\u{e002}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{dbfd}-\u{e002}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{dbfd}-\u{e000}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{dbfd}-\u{e000}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{dbfd}-\u{dfff}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{dbfd}-\u{dfff}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{dbfd}-\u{dffd}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{dbfd}-\u{dffd}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{dbfd}-\u{dc02}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{dbfd}-\u{dc02}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{dbfd}-\u{dc00}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{dbfd}-\u{dc00}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{dbfd}-\u{dbff}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{dbfd}-\u{dbff}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{dbff}-\u{e002}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{dbff}-\u{e002}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{dbff}-\u{e000}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{dbff}-\u{e000}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{dbff}-\u{dfff}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{dbff}-\u{dfff}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{dbff}-\u{dffd}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{dbff}-\u{dffd}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{dbff}-\u{dc02}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{dbff}-\u{dc02}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{dbff}-\u{dc00}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{dbff}-\u{dc00}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{dc00}-\u{e002}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{dc00}-\u{e002}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{dc00}-\u{e000}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{dc00}-\u{e000}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{dc00}-\u{dfff}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{dc00}-\u{dfff}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{dc00}-\u{dffd}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{dc00}-\u{dffd}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{dc00}-\u{dc02}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{dc00}-\u{dc02}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{dc02}-\u{e002}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{dc02}-\u{e002}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{dc02}-\u{e000}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{dc02}-\u{e000}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{dc02}-\u{dfff}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{dc02}-\u{dfff}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{dc02}-\u{dffd}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{dc02}-\u{dffd}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{dffd}-\u{e002}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{dffd}-\u{e002}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{dffd}-\u{e000}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{dffd}-\u{e000}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{dffd}-\u{dfff}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{dffd}-\u{dfff}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{dfff}-\u{e002}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{dfff}-\u{e002}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{dfff}-\u{e000}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{dfff}-\u{e000}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [\u{e000}-\u{e002}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[\u{e000}-\u{e002}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{d7fd}-\u{e002}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{d7fd}-\u{e002}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{d7fd}-\u{e000}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{d7fd}-\u{e000}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{d7fd}-\u{dfff}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{d7fd}-\u{dfff}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{d7fd}-\u{dffd}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{d7fd}-\u{dffd}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{d7fd}-\u{dc02}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{d7fd}-\u{dc02}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{d7fd}-\u{dc00}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{d7fd}-\u{dc00}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{d7fd}-\u{dbff}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{d7fd}-\u{dbff}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{d7fd}-\u{dbfd}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{d7fd}-\u{dbfd}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{d7fd}-\u{d802}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{d7fd}-\u{d802}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{d7fd}-\u{d800}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{d7fd}-\u{d800}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{d7fd}-\u{d7ff}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{d7fd}-\u{d7ff}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{d7ff}-\u{e002}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{d7ff}-\u{e002}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{d7ff}-\u{e000}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{d7ff}-\u{e000}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{d7ff}-\u{dfff}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{d7ff}-\u{dfff}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{d7ff}-\u{dffd}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{d7ff}-\u{dffd}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{d7ff}-\u{dc02}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{d7ff}-\u{dc02}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{d7ff}-\u{dc00}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{d7ff}-\u{dc00}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{d7ff}-\u{dbff}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{d7ff}-\u{dbff}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{d7ff}-\u{dbfd}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{d7ff}-\u{dbfd}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{d7ff}-\u{d802}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{d7ff}-\u{d802}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{d7ff}-\u{d800}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{d7ff}-\u{d800}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{d800}-\u{e002}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{d800}-\u{e002}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{d800}-\u{e000}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{d800}-\u{e000}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{d800}-\u{dfff}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{d800}-\u{dfff}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{d800}-\u{dffd}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{d800}-\u{dffd}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{d800}-\u{dc02}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{d800}-\u{dc02}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{d800}-\u{dc00}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{d800}-\u{dc00}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{d800}-\u{dbff}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{d800}-\u{dbff}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{d800}-\u{dbfd}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{d800}-\u{dbfd}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{d800}-\u{d802}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{d800}-\u{d802}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{d802}-\u{e002}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{d802}-\u{e002}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{d802}-\u{e000}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{d802}-\u{e000}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{d802}-\u{dfff}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{d802}-\u{dfff}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{d802}-\u{dffd}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{d802}-\u{dffd}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{d802}-\u{dc02}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{d802}-\u{dc02}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{d802}-\u{dc00}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{d802}-\u{dc00}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{d802}-\u{dbff}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{d802}-\u{dbff}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{d802}-\u{dbfd}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{d802}-\u{dbfd}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{dbfd}-\u{e002}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{dbfd}-\u{e002}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{dbfd}-\u{e000}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{dbfd}-\u{e000}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{dbfd}-\u{dfff}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{dbfd}-\u{dfff}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{dbfd}-\u{dffd}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{dbfd}-\u{dffd}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{dbfd}-\u{dc02}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{dbfd}-\u{dc02}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{dbfd}-\u{dc00}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{dbfd}-\u{dc00}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{dbfd}-\u{dbff}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{dbfd}-\u{dbff}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{dbff}-\u{e002}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{dbff}-\u{e002}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{dbff}-\u{e000}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{dbff}-\u{e000}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{dbff}-\u{dfff}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{dbff}-\u{dfff}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{dbff}-\u{dffd}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{dbff}-\u{dffd}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{dbff}-\u{dc02}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{dbff}-\u{dc02}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{dbff}-\u{dc00}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{dbff}-\u{dc00}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{dc00}-\u{e002}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{dc00}-\u{e002}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{dc00}-\u{e000}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{dc00}-\u{e000}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{dc00}-\u{dfff}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{dc00}-\u{dfff}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{dc00}-\u{dffd}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{dc00}-\u{dffd}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{dc00}-\u{dc02}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{dc00}-\u{dc02}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{dc02}-\u{e002}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{dc02}-\u{e002}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{dc02}-\u{e000}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{dc02}-\u{e000}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{dc02}-\u{dfff}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{dc02}-\u{dfff}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{dc02}-\u{dffd}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{dc02}-\u{dffd}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{dffd}-\u{e002}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{dffd}-\u{e002}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{dffd}-\u{e000}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{dffd}-\u{e000}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{dffd}-\u{dfff}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{dffd}-\u{dfff}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{dfff}-\u{e002}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{dfff}-\u{e002}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" [^\u{dfff}-\u{e000}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002"^ +[^\u{dfff}-\u{e000}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002"^ [^\u{e000}-\u{e002}] u "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" +[^\u{e000}-\u{e002}] v "\ud7fd \ud7ff \ud800 \ud802 \udbfd \udbff \udc00 \udc02 \udffd \udfff \ue000 \ue002" (.+).*\1 u "\ud800\udc00\ud800" +(.+).*\1 v "\ud800\udc00\ud800" (.+).*\1 u "\ud800\udc00\ud800\udc00" +(.+).*\1 v "\ud800\udc00\ud800\udc00" # Common character escape sequences \t\r\n\v\f "\0\t\r\n\v\f\b" \t\r\n\v\f u "\0\t\r\n\v\f\b" +\t\r\n\v\f v "\0\t\r\n\v\f\b" "\t\r\n\v\f" "\0\t\r\n\v\f\b" "\t\r\n\v\f" u "\0\t\r\n\v\f\b" +"\t\r\n\v\f" v "\0\t\r\n\v\f\b" \t?\r*\n+\v{1}\f{0,} "\0\t\r\n\v\f\b" \t?\r*\n+\v{1}\f{0,} u "\0\t\r\n\v\f\b" +\t?\r*\n+\v{1}\f{0,} v "\0\t\r\n\v\f\b" [\t\r\n\v\f\b] "\0\t\r\n\v\f\b" [\t\r\n\v\f\b] u "\0\t\r\n\v\f\b" +[\t\r\n\v\f\b] v "\0\t\r\n\v\f\b" "[\t\r\n\v\f\b]" "\0\t\r\n\v\f\b" "[\t\r\n\v\f\b]" u "\0\t\r\n\v\f\b" +"[\t\r\n\v\f\b]" v "\0\t\r\n\v\f\b" [^\t\r\n\v\f\b] "\0\t\r\n\v\f\b" [^\t\r\n\v\f\b] u "\0\t\r\n\v\f\b" +[^\t\r\n\v\f\b] v "\0\t\r\n\v\f\b" "[^\t\r\n\v\f\b]" "\0\t\r\n\v\f\b" "[^\t\r\n\v\f\b]" u "\0\t\r\n\v\f\b" +"[^\t\r\n\v\f\b]" v "\0\t\r\n\v\f\b" "[\\b-\t\n\-\\r]" "\0\t\r\n\v\f\b" "[\\b-\t\n\-\\r]" u "\0\t\r\n\v\f\b" +"[\\b-\t\n\-\\r]" v "\0\t\r\n\v\f\b" # Caret notation character escape sequences \c \c \c u \c +\c v \c \c\cA "\\c\x01" \c\cA u "\\c\x01" +\c\cA v "\\c\x01" \c$ \c \c$ u \c +\c$ v \c \c( \c( \c( u \c( !ignore-error-message +\c( v \c( !ignore-error-message \c) \c) \c) u \c) !ignore-error-message +\c) v \c) !ignore-error-message \c* \c \c* u \c +\c* v \c \c+ \c \c+ u \c +\c+ v \c \c. \cx \c. u \cx +\c. v \cx \c0 \c0 \c0 u \c0 +\c0 v \c0 \c9 \c9 \c9 u \c9 +\c9 v \c9 \c< \c< \c< u \c< +\c< v \c< \c> \c> \c> u \c> +\c> v \c> \c? \c \c? u \c +\c? v \c \c@ \c@ \c@ u \c@ +\c@ v \c@ \cA "\x01" \cA u "\x01" +\cA v "\x01" \cZ "\x1A" \cZ u "\x1A" +\cZ v "\x1A" \c[ \c[ \c[ u \c[ !ignore-error-message +\c[ v \c[ !ignore-error-message \c/ \c/ \c/ u \c/ +\c/ v \c/ \c] \c] \c] u \c] !ignore-error-message +\c] v \c] !ignore-error-message \c_ \c_ \c_ u \c_ +\c_ v \c_ \c^ \c^ \c^ u \c^ +\c^ v \c^ \ca "\x01" \ca u "\x01" +\ca v "\x01" \cz "\x1A" \cz u "\x1A" +\cz v "\x1A" \c{ \c{ \c{ u \c{ !ignore-error-message +\c{ v \c{ !ignore-error-message \c| \c \c| u \c +\c| v \c \c} \c} \c} u \c} !ignore-error-message +\c} v \c} !ignore-error-message \c(x) \cx \c(x) u \cx +\c(x) v \cx \c \c \c u \c +\c v \c \c[x] \cx \c[x] u \cx +\c[x] v \cx \c{2} \cc \c{2} u \cc +\c{2} v \cc \cI\cM\cJ\cK\cL\cH "\0\t\r\n\v\f\b" \cI\cM\cJ\cK\cL\cH u "\0\t\r\n\v\f\b" +\cI\cM\cJ\cK\cL\cH v "\0\t\r\n\v\f\b" \cI?\cM*\cJ+\cK{1}\cL{0,}\cH{1,2} "\0\t\r\n\v\f\b" \cI?\cM*\cJ+\cK{1}\cL{0,}\cH{1,2} u "\0\t\r\n\v\f\b" +\cI?\cM*\cJ+\cK{1}\cL{0,}\cH{1,2} v "\0\t\r\n\v\f\b" [\c] \c [\c] u \c +[\c] v \c [\c\cA] "\\c\x01" [\c\cA] u "\\c\x01" +[\c\cA] v "\\c\x01" [\c-d] [ac\dc] [\c-d] u [ac\dc] +[\c-d] v [ac\dc] [\c-b] [ac\dc] [\c-b] u [ac\dc] +[\c-b] v [ac\dc] [[-\c] [ac\dc] [[-\c] u [ac\dc] +[[-\c] v [ac\dc] !ignore-error-message [b-\c] [ac\dc] [b-\c] u [ac\dc] +[b-\c] v [ac\dc] [[-\c-d] [ac\dc] [[-\c-d] u [ac\dc] +[[-\c-d] v [ac\dc] !ignore-error-message [\c$] \c$ [\c$] u \c$ +[\c$] v \c$ [\c(] \c( [\c(] u \c( +[\c(] v \c( [\c)] \c) [\c)] u \c) +[\c)] v \c) [\c*] \c* [\c*] u \c* +[\c*] v \c* [\c+] \c+ [\c+] u \c+ +[\c+] v \c+ [\c.] \c. [\c.] u \c. +[\c.] v \c. [\c0] "\\c0\x10" [\c0] u "\\c0\x10" +[\c0] v "\\c0\x10" [\c9] "\\c9\x19" [\c9] u "\\c9\x19" +[\c9] v "\\c9\x19" [\c<] \c< [\c<] u \c< +[\c<] v \c< [\c>] \c> [\c>] u \c> +[\c>] v \c> [\c?] \c? [\c?] u \c? +[\c?] v \c? [\c@] \c@ [\c@] u \c@ +[\c@] v \c@ [\cA] "\\cA\x01" [\cA] u "\\cA\x01" +[\cA] v "\\cA\x01" [\cZ] "\\cZ\x1A" [\cZ] u "\\cZ\x1A" +[\cZ] v "\\cZ\x1A" [\c[] \c[ [\c[] u \c[ +[\c[] v \c[ !ignore-error-message [\c_] "\\c_\x1F" [\c_] u "\\c_\x1F" +[\c_] v "\\c_\x1F" [\c/] \c/ [\c/] u \c/ +[\c/] v \c/ [\c]] \c] [\c]] u \c] !ignore-error-message +[\c]] v \c] !ignore-error-message [\c^] \c^ [\c^] u \c^ +[\c^] v \c^ [\ca] "\\ca\x01" [\ca] u "\\ca\x01" +[\ca] v "\\ca\x01" [\cz] "\\cz\x1A" [\cz] u "\\cz\x1A" +[\cz] v "\\cz\x1A" [\c{] \c{ [\c{] u \c{ +[\c{] v \c{ [\c|] \c| [\c|] u \c| +[\c|] v \c| [\c}] \c} [\c}] u \c} +[\c}] v \c} [\cI\cM\cJ\cK\cL\cH] "\0\t\r\n\v\f\b" [\cI\cM\cJ\cK\cL\cH] u "\0\t\r\n\v\f\b" +[\cI\cM\cJ\cK\cL\cH] v "\0\t\r\n\v\f\b" [^\cI\cM\cJ\cK\cL\cH] "\0\t\r\n\v\f\b" [^\cI\cM\cJ\cK\cL\cH] u "\0\t\r\n\v\f\b" +[^\cI\cM\cJ\cK\cL\cH] v "\0\t\r\n\v\f\b" "[\\cH-\t\n\-\\cM]" "\0\t\r\n\v\f\b" "[\\cH-\t\n\-\\cM]" u "\0\t\r\n\v\f\b" +"[\\cH-\t\n\-\\cM]" v "\0\t\r\n\v\f\b" # Octal character escape sequences \0 "\0\t\r\n\v\f\b 0123456789" \0 u "\0\t\r\n\v\f\b 0123456789" +\0 v "\0\t\r\n\v\f\b 0123456789" \00 "\0\t\r\n\v\f\b 0123456789" \00 u "\0\t\r\n\v\f\b 0123456789" +\00 v "\0\t\r\n\v\f\b 0123456789" \000 "\0\t\r\n\v\f\b 0123456789" \0000 "\0\t\r\n\v\f\b 0123456789" \1 "\0\t\r\n\v\f\b 0123456789" \1 u "\0\t\r\n\v\f\b 0123456789" +\1 v "\0\t\r\n\v\f\b 0123456789" \01 "\0\t\r\n\v\f\b 0123456789" \01 u "\0\t\r\n\v\f\b 0123456789" +\01 v "\0\t\r\n\v\f\b 0123456789" \001 "\0\t\r\n\v\f\b 0123456789" \0001 "\0\t\r\n\v\f\b 0123456789" \7 "\0\t\r\n\v\f\b 0123456789" \7 u "\0\t\r\n\v\f\b 0123456789" +\7 v "\0\t\r\n\v\f\b 0123456789" \07 "\0\t\r\n\v\f\b 0123456789" \07 u "\0\t\r\n\v\f\b 0123456789" +\07 v "\0\t\r\n\v\f\b 0123456789" \007 "\0\t\r\n\v\f\b 0123456789" \0007 "\0\t\r\n\v\f\b 0123456789" \8 "\0\t\r\n\v\f\b 0123456789" \8 u "\0\t\r\n\v\f\b 0123456789" +\8 v "\0\t\r\n\v\f\b 0123456789" \08 "\0\t\r\n\v\f\b 0123456789" \08 u "\0\t\r\n\v\f\b 0123456789" +\08 v "\0\t\r\n\v\f\b 0123456789" \008 "\0\t\r\n\v\f\b 0123456789" \0008 "\0\t\r\n\v\f\b 0123456789" \9 "\0\t\r\n\v\f\b 0123456789" \9 u "\0\t\r\n\v\f\b 0123456789" +\9 v "\0\t\r\n\v\f\b 0123456789" \09 "\0\t\r\n\v\f\b 0123456789" \09 u "\0\t\r\n\v\f\b 0123456789" +\09 v "\0\t\r\n\v\f\b 0123456789" \009 "\0\t\r\n\v\f\b 0123456789" \0009 "\0\t\r\n\v\f\b 0123456789" @@ -864,36 +1294,46 @@ PIJAMALı HASTA YAĞıZ ŞOFÖRE ÇABUCAK GÜVENDI ui pijamalı hasta yağız ş [\0] "\0\t\r\n\v\f\b 0123456789" [\0] u "\0\t\r\n\v\f\b 0123456789" +[\0] v "\0\t\r\n\v\f\b 0123456789" [\00] "\0\t\r\n\v\f\b 0123456789" [\00] u "\0\t\r\n\v\f\b 0123456789" +[\00] v "\0\t\r\n\v\f\b 0123456789" [\000] "\0\t\r\n\v\f\b 0123456789" [\0000] "\0\t\r\n\v\f\b 0123456789" [\1] "\0\t\r\n\v\f\b 0123456789" [\1] u "\0\t\r\n\v\f\b 0123456789" +[\1] v "\0\t\r\n\v\f\b 0123456789" [\01] "\0\t\r\n\v\f\b 0123456789" [\01] u "\0\t\r\n\v\f\b 0123456789" +[\01] v "\0\t\r\n\v\f\b 0123456789" [\001] "\0\t\r\n\v\f\b 0123456789" [\0001] "\0\t\r\n\v\f\b 0123456789" [\7] "\0\t\r\n\v\f\b 0123456789" [\7] u "\0\t\r\n\v\f\b 0123456789" +[\7] v "\0\t\r\n\v\f\b 0123456789" [\07] "\0\t\r\n\v\f\b 0123456789" [\07] u "\0\t\r\n\v\f\b 0123456789" +[\07] v "\0\t\r\n\v\f\b 0123456789" [\007] "\0\t\r\n\v\f\b 0123456789" [\0007] "\0\t\r\n\v\f\b 0123456789" [\8] "\0\t\r\n\v\f\b 0123456789" [\8] u "\0\t\r\n\v\f\b 0123456789" +[\8] v "\0\t\r\n\v\f\b 0123456789" [\08] "\0\t\r\n\v\f\b 0123456789" [\08] u "\0\t\r\n\v\f\b 0123456789" +[\08] v "\0\t\r\n\v\f\b 0123456789" [\008] "\0\t\r\n\v\f\b 0123456789" [\0008] "\0\t\r\n\v\f\b 0123456789" [\9] "\0\t\r\n\v\f\b 0123456789" [\9] u "\0\t\r\n\v\f\b 0123456789" +[\9] v "\0\t\r\n\v\f\b 0123456789" [\09] "\0\t\r\n\v\f\b 0123456789" [\09] u "\0\t\r\n\v\f\b 0123456789" +[\09] v "\0\t\r\n\v\f\b 0123456789" [\009] "\0\t\r\n\v\f\b 0123456789" [\0009] "\0\t\r\n\v\f\b 0123456789" @@ -912,80 +1352,101 @@ PIJAMALı HASTA YAĞıZ ŞOFÖRE ÇABUCAK GÜVENDI ui pijamalı hasta yağız ş [\0-\b] "\0\x077\x1f7\x3f\x7f\xff 0123456789" [\0-\b] u "\0\x077\x1f7\x3f\x7f\xff 0123456789" +[\0-\b] v "\0\x077\x1f7\x3f\x7f\xff 0123456789" [\000-\b] "\0\x077\x1f7\x3f\x7f\xff 0123456789" [\0000-\b] "\0\x077\x1f7\x3f\x7f\xff 0123456789" "[\\0-\b]" "\0\x077\x1f7\x3f\x7f\xff 0123456789" "[\\0-\b]" u "\0\x077\x1f7\x3f\x7f\xff 0123456789" +"[\\0-\b]" v "\0\x077\x1f7\x3f\x7f\xff 0123456789" "[\\000-\b]" "\0\x077\x1f7\x3f\x7f\xff 0123456789" "[\\0000-\b]" "\0\x077\x1f7\x3f\x7f\xff 0123456789" [\7-\b] "\0\x077\x1f7\x3f\x7f\xff 0123456789" [\7-\b] u "\0\x077\x1f7\x3f\x7f\xff 0123456789" +[\7-\b] v "\0\x077\x1f7\x3f\x7f\xff 0123456789" [\007-\b] "\0\x077\x1f7\x3f\x7f\xff 0123456789" [\0007-\b] "\0\x077\x1f7\x3f\x7f\xff 0123456789" "[\\7-\b]" "\0\x077\x1f7\x3f\x7f\xff 0123456789" "[\\7-\b]" u "\0\x077\x1f7\x3f\x7f\xff 0123456789" +"[\\7-\b]" v "\0\x077\x1f7\x3f\x7f\xff 0123456789" "[\\007-\b]" "\0\x077\x1f7\x3f\x7f\xff 0123456789" "[\\0007-\b]" "\0\x077\x1f7\x3f\x7f\xff 0123456789" [6-\71] "\0\x077\x1f7\x3f\x7f\xff 0123456789" [6-\71] u "\0\x077\x1f7\x3f\x7f\xff 0123456789" +[6-\71] v "\0\x077\x1f7\x3f\x7f\xff 0123456789" [6-\071] "\0\x077\x1f7\x3f\x7f\xff 0123456789" [6-\0071] "\0\x077\x1f7\x3f\x7f\xff 0123456789" "[\x36-\\71]" "\0\x077\x1f7\x3f\x7f\xff 0123456789" "[\x36-\\71]" u "\0\x077\x1f7\x3f\x7f\xff 0123456789" +"[\x36-\\71]" v "\0\x077\x1f7\x3f\x7f\xff 0123456789" "[\x36-\\071]" "\0\x077\x1f7\x3f\x7f\xff 0123456789" "[\x36-\\0071]" "\0\x077\x1f7\x3f\x7f\xff 0123456789" [6-\8] "\0\x077\x1f7\x3f\x7f\xff 0123456789" [6-\8] u "\0\x077\x1f7\x3f\x7f\xff 0123456789" +[6-\8] v "\0\x077\x1f7\x3f\x7f\xff 0123456789" [6-\08] "\0\x077\x1f7\x3f\x7f\xff 0123456789" [6-\9] "\0\x077\x1f7\x3f\x7f\xff 0123456789" [6-\9] u "\0\x077\x1f7\x3f\x7f\xff 0123456789" +[6-\9] v "\0\x077\x1f7\x3f\x7f\xff 0123456789" [6-\09] "\0\x077\x1f7\x3f\x7f\xff 0123456789" [\0-\00] "\0\x077\x1f7\x3f\x7f\xff 0123456789" [\0-\00] u "\0\x077\x1f7\x3f\x7f\xff 0123456789" +[\0-\00] v "\0\x077\x1f7\x3f\x7f\xff 0123456789" \0(x)\1\x02 "\0xx\x02" \0(x)\1\x02 u "\0xx\x02" +\0(x)\1\x02 v "\0xx\x02" \0(?x)\1\x02 "\0xx\x02" \0(?x)\1\x02 u "\0xx\x02" +\0(?x)\1\x02 v "\0xx\x02" \0(?:x)\1\x02 "\0x\x01\x02" \0(?:x)\1\x02 u "\0x\x01\x02" +\0(?:x)\1\x02 v "\0x\x01\x02" (?=x)\1?\x02 "\0x\x01\x02" (?=x)\1?\x02 u "\0x\x01\x02" +(?=x)\1?\x02 v "\0x\x01\x02" (?!x)\1?\x02 "\0x\x01\x02" (?!x)\1?\x02 u "\0x\x01\x02" +(?!x)\1?\x02 v "\0x\x01\x02" (?<=x)\1\x02 "\0x\x01\x02" (?<=x)\1\x02 u "\0x\x01\x02" +(?<=x)\1\x02 v "\0x\x01\x02" (? x0> \x0> u x0> +\x0> v x0> \x0? x0 \x0? u x0 +\x0? v x0 \x0A "\x0A" \x0A u "\x0A" +\x0A v "\x0A" \x0F "\x0F" \x0F u "\x0F" +\x0F v "\x0F" \x0G x0G \x0G u x0G +\x0G v x0G \x0[ x0[ \x0[ u x0[ !ignore-error-message +\x0[ v x0[ !ignore-error-message \x0] x0] \x0] u x0] !ignore-error-message +\x0] v x0] !ignore-error-message \x0^ x0 \x0^ u x0 +\x0^ v x0 \x0a "\x0a" \x0a u "\x0a" +\x0a v "\x0a" \x0f "\x0f" \x0f u "\x0f" +\x0f v "\x0f" \x0g x0g \x0g u x0g +\x0g v x0g \x0{ x0{ \x0{ u x0{ !ignore-error-message +\x0{ v x0{ !ignore-error-message \x0| x0 \x0| u x0 +\x0| v x0 \x0} x0} \x0} u x0} !ignore-error-message +\x0} v x0} !ignore-error-message \xff "\xff" \xff u "\xff" +\xff v "\xff" \xgf xgf \xgf u xgf +\xgf v xgf \x3f0 ?0 \x3f0 u ?0 +\x3f0 v ?0 \x00\x09\x0d\x0a\x0b\x0C\x08 "\0\t\r\n\v\f\b" \x00\x09\x0d\x0a\x0b\x0C\x08 u "\0\t\r\n\v\f\b" +\x00\x09\x0d\x0a\x0b\x0C\x08 v "\0\t\r\n\v\f\b" \x00\x09?\x0d*\x0a+\x0b{1}\x0C{0,}\x08{1,2} "\0\t\r\n\v\f\b" \x00\x09?\x0d*\x0a+\x0b{1}\x0C{0,}\x08{1,2} u "\0\t\r\n\v\f\b" +\x00\x09?\x0d*\x0a+\x0b{1}\x0C{0,}\x08{1,2} v "\0\t\r\n\v\f\b" [\x] \x [\x] u \x +[\x] v \x [\x*] \x* [\x*] u \x* +[\x*] v \x* [\x0] \x0 [\x0] u \x0 +[\x0] v \x0 [\xA] \xA [\xA] u \xA +[\xA] v \xA [\xf] \xf [\xf] u \xf +[\xf] v \xf [\x0$] \x0$ [\x0$] u \x0$ +[\x0$] v \x0$ [\x0(] \x0( [\x0(] u \x0( +[\x0(] v \x0( [\x0)] \x0) [\x0)] u \x0) +[\x0)] v \x0) [\x0*] \x0* [\x0*] u \x0* +[\x0*] v \x0* [\x0+] \x0+ [\x0+] u \x0+ +[\x0+] v \x0+ [\x0.] \x0. [\x0.] u \x0. +[\x0.] v \x0. [\x00] "\\x00\x00" [\x00] u "\\x00\x00" +[\x00] v "\\x00\x00" [\x09] "\\x09\x09" [\x09] u "\\x09\x09" +[\x09] v "\\x09\x09" [\x0<] \x0< [\x0<] u \x0< +[\x0<] v \x0< [\x0>] \x0> [\x0>] u \x0> +[\x0>] v \x0> [\x0?] \x0? [\x0?] u \x0? +[\x0?] v \x0? [\x0A] "\\x0A\x0A" [\x0A] u "\\x0A\x0A" +[\x0A] v "\\x0A\x0A" [\x0F] "\\x0F\x0F" [\x0F] u "\\x0F\x0F" +[\x0F] v "\\x0F\x0F" [\x0G] \x0G [\x0G] u \x0G +[\x0G] v \x0G [\x0[] \x0[ [\x0[] u \x0[ +[\x0[] v \x0[ !ignore-error-message [\x0]] \x0] [\x0]] u \x0] !ignore-error-message +[\x0]] v \x0] !ignore-error-message [\x0^] \x0^ [\x0^] u \x0^ +[\x0^] v \x0^ [\x0a] "\\x0a\x0a" [\x0a] u "\\x0a\x0a" +[\x0a] v "\\x0a\x0a" [\x0f] "\\x0f\x0f" [\x0f] u "\\x0f\x0f" +[\x0f] v "\\x0f\x0f" [\x0g] \x0g [\x0g] u \x0g +[\x0g] v \x0g [\x0{] \x0{ [\x0{] u \x0{ +[\x0{] v \x0{ [\x0|] \x0| [\x0|] u \x0| +[\x0|] v \x0| [\x0}] \x0} [\x0}] u \x0} +[\x0}] v \x0} [\xff] "\\xff\xff" [\xff] u "\\xff\xff" +[\xff] v "\\xff\xff" [\xgf] \xgf [\xgf] u \xgf +[\xgf] v \xgf [\x3f0] ?0 [\x3f0] u ?0 +[\x3f0] v ?0 [\x00\x09\x0d\x0a\x0b\x0C\x08] "\0\t\r\n\v\f\b" [\x00\x09\x0d\x0a\x0b\x0C\x08] u "\0\t\r\n\v\f\b" +[\x00\x09\x0d\x0a\x0b\x0C\x08] v "\0\t\r\n\v\f\b" [^\x00\x09\x0d\x0a\x0b\x0C\x08] "\0\t\r\n\v\f\b" [^\x00\x09\x0d\x0a\x0b\x0C\x08] u "\0\t\r\n\v\f\b" +[^\x00\x09\x0d\x0a\x0b\x0C\x08] v "\0\t\r\n\v\f\b" "[\\x08-\t\n\-\\x0D]" "\0\t\r\n\v\f\b" "[\\x08-\t\n\-\\x0D]" u "\0\t\r\n\v\f\b" +"[\\x08-\t\n\-\\x0D]" v "\0\t\r\n\v\f\b" # Hexadecimal character escape sequences (4 digits) \u u \u u u +\u v u \u* u \u* u u +\u* v u \u0 u0 \u0 u u0 +\u0 v u0 \uA uA \uA u uA +\uA v uA \uf uf \uf u uf +\uf v uf \u00 u00 \u00 u u00 +\u00 v u00 \u0A u0A \u0A u u0A +\u0A v u0A \u0f u0f \u0f u u0f +\u0f v u0f \u000 u000 \u000 u u000 +\u000 v u000 \u00A u00A \u00A u u00A +\u00A v u00A \u00f u00f \u00f u u00f +\u00f v u00f \u000$ u000 \u000$ u u000 +\u000$ v u000 \u000( u000( \u000( u u000( !ignore-error-message +\u000( v u000( !ignore-error-message \u000) u000) \u000) u u000) !ignore-error-message +\u000) v u000) !ignore-error-message \u000* u000 \u000* u u000 +\u000* v u000 \u000+ u000 \u000+ u u000 +\u000+ v u000 \u000. u000y \u000. u u000y +\u000. v u000y \u0000 "\u0000" \u0000 u "\u0000" +\u0000 v "\u0000" \u0009 "\u0009" \u0009 u "\u0009" +\u0009 v "\u0009" \u000< u000< \u000< u u000< +\u000< v u000< \u000> u000> \u000> u u000> +\u000> v u000> \u000? u000 \u000? u u000 +\u000? v u000 \u000A "\u000A" \u000A u "\u000A" +\u000A v "\u000A" \u000F "\u000F" \u000F u "\u000F" +\u000F v "\u000F" \u000G u000G \u000G u u000G +\u000G v u000G \u000[ u000[ \u000[ u u000[ !ignore-error-message +\u000[ v u000[ !ignore-error-message \u000] u000] \u000] u u000] !ignore-error-message +\u000] v u000] !ignore-error-message \u000^ u000 \u000^ u u000 +\u000^ v u000 \u000a "\u000a" \u000a u "\u000a" +\u000a v "\u000a" \u000f "\u000f" \u000f u "\u000f" +\u000f v "\u000f" \u000g u000g \u000g u u000g +\u000g v u000g \u000{ u000{ \u000{ u u000{ !ignore-error-message +\u000{ v u000{ !ignore-error-message \u000| u000 \u000| u u000 +\u000| v u000 \u000} u000} \u000} u u000} !ignore-error-message +\u000} v u000} !ignore-error-message \uffff "\uffff" \uffff u "\uffff" +\uffff v "\uffff" \uffgf uffgf \uffgf u uffgf +\uffgf v uffgf \u003f0 ?0 \u003f0 u ?0 +\u003f0 v ?0 \u0000\u0009\u000d\u000a\u000b\u000C\u0008 "\0\t\r\n\v\f\b" \u0000\u0009\u000d\u000a\u000b\u000C\u0008 u "\0\t\r\n\v\f\b" +\u0000\u0009\u000d\u000a\u000b\u000C\u0008 v "\0\t\r\n\v\f\b" \u0000\u0009?\u000d*\u000a+\u000b{1}\u000C{0,}\u0008{1,2} "\0\t\r\n\v\f\b" \u0000\u0009?\u000d*\u000a+\u000b{1}\u000C{0,}\u0008{1,2} u "\0\t\r\n\v\f\b" +\u0000\u0009?\u000d*\u000a+\u000b{1}\u000C{0,}\u0008{1,2} v "\0\t\r\n\v\f\b" [\u] \u [\u] u \u +[\u] v \u [\u*] \u* [\u*] u \u* +[\u*] v \u* [\u0] \u0 [\u0] u \u0 +[\u0] v \u0 [\uA] \uA [\uA] u \uA +[\uA] v \uA [\uf] \uf [\uf] u \uf +[\uf] v \uf [\u00] \u00 [\u00] u \u00 +[\u00] v \u00 [\u0A] \u0A [\u0A] u \u0A +[\u0A] v \u0A [\u0f] \u0f [\u0f] u \u0f +[\u0f] v \u0f [\u000] \u000 [\u000] u \u000 +[\u000] v \u000 [\u00A] \u00A [\u00A] u \u00A +[\u00A] v \u00A [\u00f] \u00f [\u00f] u \u00f +[\u00f] v \u00f [\u000$] \u000$ [\u000$] u \u000$ +[\u000$] v \u000$ [\u000(] \u000( [\u000(] u \u000( +[\u000(] v \u000( [\u000)] \u000) [\u000)] u \u000) +[\u000)] v \u000) [\u000*] \u000* [\u000*] u \u000* +[\u000*] v \u000* [\u000+] \u000+ [\u000+] u \u000+ +[\u000+] v \u000+ [\u000.] \u000. [\u000.] u \u000. +[\u000.] v \u000. [\u0000] "\\u0000\u0000" [\u0000] u "\\u0000\u0000" +[\u0000] v "\\u0000\u0000" [\u0009] "\\u0009\u0009" [\u0009] u "\\u0009\u0009" +[\u0009] v "\\u0009\u0009" [\u000<] \u000< [\u000<] u \u000< +[\u000<] v \u000< [\u000>] \u000> [\u000>] u \u000> +[\u000>] v \u000> [\u000?] \u000? [\u000?] u \u000? +[\u000?] v \u000? [\u000A] "\\u000A\u000A" [\u000A] u "\\u000A\u000A" +[\u000A] v "\\u000A\u000A" [\u000F] "\\u000F\u000F" [\u000F] u "\\u000F\u000F" +[\u000F] v "\\u000F\u000F" [\u000G] \u000G [\u000G] u \u000G +[\u000G] v \u000G [\u000[] \u000[ [\u000[] u \u000[ +[\u000[] v \u000[ !ignore-error-message [\u000]] \u000] [\u000]] u \u000] !ignore-error-message +[\u000]] v \u000] !ignore-error-message [\u000^] \u000^ [\u000^] u \u000^ +[\u000^] v \u000^ [\u000a] "\\u000a\u000a" [\u000a] u "\\u000a\u000a" +[\u000a] v "\\u000a\u000a" [\u000f] "\\u000f\u000f" [\u000f] u "\\u000f\u000f" +[\u000f] v "\\u000f\u000f" [\u000g] \u000g [\u000g] u \u000g +[\u000g] v \u000g [\u000{] \u000{ [\u000{] u \u000{ +[\u000{] v \u000{ [\u000|] \u000| [\u000|] u \u000| +[\u000|] v \u000| [\u000}] \u000} [\u000}] u \u000} +[\u000}] v \u000} [\uffff] "\\uffff\uffff" [\uffff] u "\\uffff\uffff" +[\uffff] v "\\uffff\uffff" [\uffgf] \uffgf [\uffgf] u \uffgf +[\uffgf] v \uffgf [\u003f0] ?0 [\u003f0] u ?0 +[\u003f0] v ?0 [\u0000\u0009\u000d\u000a\u000b\u000C\u0008] "\0\t\r\n\v\f\b" [\u0000\u0009\u000d\u000a\u000b\u000C\u0008] u "\0\t\r\n\v\f\b" +[\u0000\u0009\u000d\u000a\u000b\u000C\u0008] v "\0\t\r\n\v\f\b" [^\u0000\u0009\u000d\u000a\u000b\u000C\u0008] "\0\t\r\n\v\f\b" [^\u0000\u0009\u000d\u000a\u000b\u000C\u0008] u "\0\t\r\n\v\f\b" +[^\u0000\u0009\u000d\u000a\u000b\u000C\u0008] v "\0\t\r\n\v\f\b" "[\\u0008-\t\n\-\\u000D]" "\0\t\r\n\v\f\b" "[\\u0008-\t\n\-\\u000D]" u "\0\t\r\n\v\f\b" +"[\\u0008-\t\n\-\\u000D]" v "\0\t\r\n\v\f\b" # Hexadecimal character escape sequences (Unicode code points) \u{ u{ \u{ u u{ !ignore-error-message +\u{ v u{ !ignore-error-message \u{} u{} \u{} u u{} +\u{} v u{} \u{?} u{} \u{?} u u{} +\u{?} v u{} \u{-1} u{-1} \u{-1} u u{-1} +\u{-1} v u{-1} \u{-0} u{-0} \u{-0} u u{-0} +\u{-0} v u{-0} \u{0} \u{0} u "\0" +\u{0} v "\0" \u{1} u \u{1} u "\x01" +\u{1} v "\x01" \u{10FFFF} u{10FFFF} \u{10FFFF} u "\udbff\udfff" +\u{10FFFF} v "\udbff\udfff" \u{110000} u{110000} !skip-on-netframework # (the adapted pattern is correct but makes the Regex ctor hang on .NET Framework) \u{110000} u u{110000} +\u{110000} v u{110000} \u{80000000} u{80000000} !skip-on-netframework # (the adapted pattern is correct but makes the Regex ctor hang on .NET Framework) \u{80000000} u u{80000000} +\u{80000000} v u{80000000} \u{1,} uu \u{1,} u uu +\u{1,} v uu \u{a} u{a} \u{a} u "\n" +\u{a} v "\n" \u{f} u{f} \u{f} u "\x0f" +\u{f} v "\x0f" \u{g} u{g} \u{g} u u{g} +\u{g} v u{g} \u{7F} u "\x7F" +\u{7F} v "\x7F" \u{d7ff} u "\ud7ff" +\u{d7ff} v "\ud7ff" \u{d800} u "\ud800" +\u{d800} v "\ud800" \u{dfff} u "\udfff" +\u{dfff} v "\udfff" \u{e000} u "\ue000" +\u{e000} v "\ue000" \u{1F4A9} u "\uD83D\uDCA9" +\u{1F4A9} v "\uD83D\uDCA9" \u{0}\u{9}\u{d}\u{a}\u{b}\u{C}\u{00000000000000008} u "\0\t\r\n\v\f\b" +\u{0}\u{9}\u{d}\u{a}\u{b}\u{C}\u{00000000000000008} v "\0\t\r\n\v\f\b" \u{0}\u{9}?\u{d}*\u{a}+\u{b}{1}\u{C}{0,}\u{00000000000000008}{1,2} u "\0\t\r\n\v\f\b" +\u{0}\u{9}?\u{d}*\u{a}+\u{b}{1}\u{C}{0,}\u{00000000000000008}{1,2} v "\0\t\r\n\v\f\b" [\u{] \u{ [\u{] u \u{ +[\u{] v \u{ [\u{}] \u{} [\u{}] u \u{} +[\u{}] v \u{} [\u{?}] \u{?} [\u{?}] u \u{?} +[\u{?}] v \u{?} [\u{-1}] \u{-1} [\u{-1}] u \u{-1} +[\u{-1}] v \u{-1} [\u{-0}] \u{-0} [\u{-0}] u \u{-0} +[\u{-0}] v \u{-0} [\u{0}] "\\u{0}\0" [\u{0}] u "\\u{0}\0" +[\u{0}] v "\\u{0}\0" [\u{1}] "\\u{1}\x01" [\u{1}] u "\\u{1}\x01" +[\u{1}] v "\\u{1}\x01" [\u{10FFFF}] "\\u{10FFFF}\udbff\udfff" [\u{10FFFF}] u "\\u{10FFFF}\udbff\udfff" +[\u{10FFFF}] v "\\u{10FFFF}\udbff\udfff" [\u{110000}] \u{110000} [\u{110000}] u \u{110000} +[\u{110000}] v \u{110000} [\u{80000000}] \u{80000000} [\u{80000000}] u \u{80000000} +[\u{80000000}] v \u{80000000} [\u{1,}] \u{1,} [\u{1,}] u \u{1,} +[\u{1,}] v \u{1,} [\u{a}] "\\u{a}\n" [\u{a}] u "\\u{a}\n" +[\u{a}] v "\\u{a}\n" [\u{f}] "\\u{f}\x0f" [\u{f}] u "\\u{f}\x0f" +[\u{f}] v "\\u{f}\x0f" [\u{g}] \u{g} [\u{g}] u \u{g} +[\u{g}] v \u{g} [\u{7F}] u "\x7F" +[\u{7F}] v "\x7F" [\u{d7ff}] u "\ud7ff" +[\u{d7ff}] v "\ud7ff" [\u{d800}] u "\ud800" +[\u{d800}] v "\ud800" [\u{dfff}] u "\udfff" +[\u{dfff}] v "\udfff" [\u{e000}] u "\ue000" +[\u{e000}] v "\ue000" [\u{1F4A9}] u "\uD83D\uDCA9" +[\u{1F4A9}] v "\uD83D\uDCA9" [^\u{7F}] u "\x7F" +[^\u{7F}] v "\x7F" [^\u{d7ff}] u "\ud7ff" +[^\u{d7ff}] v "\ud7ff" [^\u{d800}] u "\ud800" +[^\u{d800}] v "\ud800" [^\u{dfff}] u "\udfff" +[^\u{dfff}] v "\udfff" [^\u{e000}] u "\ue000" +[^\u{e000}] v "\ue000" [^\u{1F4A9}] u "\uD83D\uDCA9" +[^\u{1F4A9}] v "\uD83D\uDCA9" [\u{0}\u{9}\u{d}\u{a}\u{b}\u{C}\u{00000000000000008}] u "\0\t\r\n\v\f\b" +[\u{0}\u{9}\u{d}\u{a}\u{b}\u{C}\u{00000000000000008}] v "\0\t\r\n\v\f\b" [^\u{0}\u{9}\u{d}\u{a}\u{b}\u{C}\u{00000000000000008}] u "\0\t\r\n\v\f\b" +[^\u{0}\u{9}\u{d}\u{a}\u{b}\u{C}\u{00000000000000008}] v "\0\t\r\n\v\f\b" "[\\u{8}-\t\n\-\\u{D}]" u "\0\t\r\n\v\f\b" +"[\\u{8}-\t\n\-\\u{D}]" v "\0\t\r\n\v\f\b" # Identity character escape sequences (.NET-specific edge cases) \<\A\Z\z\G\a\e\> \<\A\Z\z\G\a\e\> u +\<\A\Z\z\G\a\e\> v \{1} \{1} u +\{1} v [\<\A\Z\z\G\a\e\>] [\<\A\Z\z\G\a\e\>] u +[\<\A\Z\z\G\a\e\>] v # Dot . "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" . u "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +. v "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" . s "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" . us "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +. vs "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" .* "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" .* u "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +.* v "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" .* s "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" .* us "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +.* vs "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" ^. m "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" ^. um "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +^. vm "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" ^. sm "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" ^. usm "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +^. vsm "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" .$ m "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" .$ um "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +.$ vm "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" .$ sm "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" .$ usm "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +.$ vsm "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" ^.$ m "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" ^.$ um "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +^.$ vm "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" ^.$ sm "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" ^.$ usm "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +^.$ vsm "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" . m \na\n\n\na\n . um \na\n\n\na\n +. vm \na\n\n\na\n . sm \na\n\n\na\n . usm \na\n\n\na\n +. vsm \na\n\n\na\n .* m \na\n\n\na\n .* um \na\n\n\na\n +.* vm \na\n\n\na\n .* sm \na\n\n\na\n .* usm \na\n\n\na\n +.* vsm \na\n\n\na\n [.] "abc.123" [.] u "abc.123" +[.] v "abc.123" [^.] "abc.123" [^.] u "abc.123" +[^.] v "abc.123" # Standard character classes \d "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" \d u "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +\d v "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" \d i "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" \d ui "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +\d vi "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" \D "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" \D u "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +\D v "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" \D i "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" \D ui "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +\D vi "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" \s "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" \s u "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +\s v "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" \s i "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" \s ui "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +\s vi "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" \S "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" \S u "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +\S v "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" \S i "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" \S ui "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +\S vi "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" \w "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" \w u "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +\w v "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" \w i "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" \w ui "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +\w vi "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" \W "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" \W u "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +\W v "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" \W i "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" \W ui "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +\W vi "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" \d* "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" \s* "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" @@ -1502,459 +2191,721 @@ PIJAMALı HASTA YAĞıZ ŞOFÖRE ÇABUCAK GÜVENDI ui pijamalı hasta yağız ş [\d] "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [\d] u "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +[\d] v "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [\d] i "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [\d] ui "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +[\d] vi "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [\D] "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [\D] u "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +[\D] v "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [\D] i "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [\D] ui "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +[\D] vi "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [\s] "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [\s] u "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +[\s] v "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [\s] i "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [\s] ui "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +[\s] vi "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [\S] "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [\S] u "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +[\S] v "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [\S] i "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [\S] ui "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +[\S] vi "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [\w] "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [\w] u "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +[\w] v "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [\w] i "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [\w] ui "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +[\w] vi "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [\W] "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [\W] u "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +[\W] v "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [\W] i "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [\W] ui "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +[\W] vi "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [^\d] "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [^\d] u "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +[^\d] v "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [^\d] i "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [^\d] ui "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +[^\d] vi "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [^\D] "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [^\D] u "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +[^\D] v "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [^\D] i "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [^\D] ui "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +[^\D] vi "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [^\s] "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [^\s] u "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +[^\s] v "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [^\s] i "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [^\s] ui "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +[^\s] vi "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [^\S] "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [^\S] u "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +[^\S] v "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [^\S] i "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [^\S] ui "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +[^\S] vi "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [^\w] "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [^\w] u "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +[^\w] v "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [^\w] i "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [^\w] ui "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +[^\w] vi "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [^\W] "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [^\W] u "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +[^\W] v "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [^\W] i "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [^\W] ui "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" +[^\W] vi "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" # Unicode property escapes \p p \p u p +\p v p \p{ p{ \p{ u p{ !ignore-error-message +\p{ v p{ !ignore-error-message \p{} p{} \p{} u p{} +\p{} v p{} \p{ } p{ } \p{ } u p{ } +\p{ } v p{ } \p{?} p{} \p{?} u p{} +\p{?} v p{} \p{1} p \p{1} u p +\p{1} v p \p{1,} pp \p{1,} u pp +\p{1,} v pp \p{Script=Latn} p{Script=Latn} -\p{Script=Latn} u p{Script=Latn} !ignore-error-message !skip-validation +\p{Script=Latn} u p{Script=Latn} +\p{Script=Latn} v p{Script=Latn} \p{General_Category=Currency_Symbol} u $€£𑿝¥ a0? !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{General_Category=Currency_Symbol} v $€£𑿝¥ a0? !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Basic_Emoji} u 💩x💫x💩 +\p{Basic_Emoji} v 💩x💫x💩 \P P \P u P +\P v P \P{ P{ \P{ u P{ !ignore-error-message +\P{ v P{ !ignore-error-message \P{} P{} \P{} u P{} +\P{} v P{} \P{ } P{ } \P{ } u P{ } +\P{ } v P{ } \P{?} P{} \P{?} u P{} +\P{?} v P{} \P{1} P \P{1} u P +\P{1} v P \P{1,} PP \P{1,} u PP +\P{1,} v PP \P{Script=Latn} P{Script=Latn} -\P{Script=Latn} u P{Script=Latn} !ignore-error-message !skip-validation +\P{Script=Latn} u P{Script=Latn} +\P{Script=Latn} v P{Script=Latn} \P{General_Category=Currency_Symbol} u $€£𑿝¥ a0? !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\P{General_Category=Currency_Symbol} v $€£𑿝¥ a0? !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\P{Basic_Emoji} u 💩x💫x💩 +\P{Basic_Emoji} v 💩x💫x💩 [\p] \p [\p] u \p +[\p] v \p [\p{] \p{ [\p{] u \p{ +[\p{] v \p{ [\p{}] \p{} [\p{}] u \p{} +[\p{}] v \p{} [\p{ }] \p{ } [\p{ }] u \p{ } +[\p{ }] v \p{ } [\p{?}] \p{?} [\p{?}] u \p{?} +[\p{?}] v \p{?} [\p{1}] \p{1} [\p{1}] u \p{1} +[\p{1}] v \p{1} [\p{1,}] \p{1,} [\p{1,}] u \p{1,} +[\p{1,}] v \p{1,} [\p{Script=Latn}] \p{Script=Latn} -[\p{Script=Latn}] u \p{Script=Latn} !ignore-error-message !skip-validation +[\p{Script=Latn}] u \p{Script=Latn} +[\p{Script=Latn}] v \p{Script=Latn} [\p{General_Category=Currency_Symbol}] u $€£𑿝¥ a0? !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +[\p{General_Category=Currency_Symbol}] v $€£𑿝¥ a0? !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +[\p{Basic_Emoji}] u 💩x💫x💩 +[\p{Basic_Emoji}] v 💩x💫x💩 +[^\p{Basic_Emoji}] u 💩x💫x💩 +[^\p{Basic_Emoji}] v 💩x💫x💩 [\P] \P [\P] u \P +[\P] v \P [\P{] \P{ [\P{] u \P{ +[\P{] v \P{ [\P{}] \P{} [\P{}] u \P{} +[\P{}] v \P{} [\P{ }] \P{ } [\P{ }] u \P{ } +[\P{ }] v \P{ } [\P{?}] \P{?} [\P{?}] u \P{?} +[\P{?}] v \P{?} [\P{1}] \P{1} [\P{1}] u \P{1} +[\P{1}] v \P{1} [\P{1,}] \P{1,} [\P{1,}] u \P{1,} +[\P{1,}] v \P{1,} [\P{Script=Latn}] \P{Script=Latn} -[\P{Script=Latn}] u \P{Script=Latn} !ignore-error-message !skip-validation +[\P{Script=Latn}] u \P{Script=Latn} +[\P{Script=Latn}] v \P{Script=Latn} [\P{General_Category=Currency_Symbol}] u $€£𑿝¥ a0? !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +[\P{General_Category=Currency_Symbol}] v $€£𑿝¥ a0? !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +[\P{Basic_Emoji}] u 💩x💫x💩] +[\P{Basic_Emoji}] v 💩x💫x💩] +[^\P{Basic_Emoji}] u 💩x💫x💩] +[^\P{Basic_Emoji}] v 💩x💫x💩] \p{General_Category=Sc} u $€£𑿝¥ a0? !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{General_Category=Sc} v $€£𑿝¥ a0? !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{gc=Currency_Symbol} u $€£𑿝¥ a0? !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{gc=Currency_Symbol} v $€£𑿝¥ a0? !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{gc=Sc} u $€£𑿝¥ a0? !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{gc=Sc} v $€£𑿝¥ a0? !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Currency_Symbol} u $€£𑿝¥ a0? !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Currency_Symbol} v $€£𑿝¥ a0? !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Sc} u $€£𑿝¥ a0? !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Sc} v $€£𑿝¥ a0? !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{General_Category} u $€£𑿝¥ a0? +\p{General_Category} v $€£𑿝¥ a0? \p{General_Category=} u $€£𑿝¥ a0? +\p{General_Category=} v $€£𑿝¥ a0? \p{=Currency_Symbol} u $€£𑿝¥ a0? +\p{=Currency_Symbol} v $€£𑿝¥ a0? \p{ General_Category=Currency_Symbol} u $€£𑿝¥ a0? +\p{ General_Category=Currency_Symbol} v $€£𑿝¥ a0? \p{General_Category=Currency_Symbol } u $€£𑿝¥ a0? +\p{General_Category=Currency_Symbol } v $€£𑿝¥ a0? \p{General_Category =Currency_Symbol} u $€£𑿝¥ a0? +\p{General_Category =Currency_Symbol} v $€£𑿝¥ a0? \p{General_Category= Currency_Symbol} u $€£𑿝¥ a0? +\p{General_Category= Currency_Symbol} v $€£𑿝¥ a0? \p{General_Category=CurrencySymbol} u $€£𑿝¥ a0? +\p{General_Category=CurrencySymbol} v $€£𑿝¥ a0? \p{General_Category=currency_Symbol} u $€£𑿝¥ a0? +\p{General_Category=currency_Symbol} v $€£𑿝¥ a0? \p{GeneralCategory=Currency_Symbol} u $€£𑿝¥ a0? +\p{GeneralCategory=Currency_Symbol} v $€£𑿝¥ a0? \p{general_Category=Currency_Symbol} u $€£𑿝¥ a0? +\p{general_Category=Currency_Symbol} v $€£𑿝¥ a0? \p{L} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{L} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Letter} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Letter} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{LC} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{LC} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Cased_Letter} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Cased_Letter} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Lu} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Lu} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Uppercase_Letter} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Uppercase_Letter} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Ll} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Ll} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Lowercase_Letter} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Lowercase_Letter} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Lt} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Lt} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Titlecase_Letter} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Titlecase_Letter} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Lm} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Lm} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Modifier_Letter} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Modifier_Letter} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Lo} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Lo} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Other_Letter} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Other_Letter} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{M} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{M} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Mark} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Mark} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Combining_Mark} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Combining_Mark} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Mn} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Mn} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Nonspacing_Mark} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Nonspacing_Mark} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Mc} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Mc} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Spacing_Mark} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Spacing_Mark} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Me} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Me} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Enclosing_Mark} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Enclosing_Mark} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{N} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{N} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Number} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Number} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Nd} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Nd} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Decimal_Number} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Decimal_Number} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{digit} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{digit} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Nl} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Nl} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Letter_Number} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Letter_Number} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{No} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{No} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Other_Number} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Other_Number} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{P} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{P} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Punctuation} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Punctuation} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{punct} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{punct} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Pc} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Pc} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Connector_Punctuation} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Connector_Punctuation} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Pd} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Pd} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Dash_Punctuation} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Dash_Punctuation} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Ps} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Ps} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Open_Punctuation} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Open_Punctuation} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Pe} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Pe} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Close_Punctuation} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Close_Punctuation} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Pi} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Pi} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Initial_Punctuation} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Initial_Punctuation} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Pf} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Pf} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Final_Punctuation} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Final_Punctuation} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Po} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Po} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Other_Punctuation} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Other_Punctuation} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{S} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{S} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Symbol} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Symbol} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Sm} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Sm} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Math_Symbol} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Math_Symbol} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Sc} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Sc} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Currency_Symbol} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Currency_Symbol} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Sk} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Sk} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Modifier_Symbol} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Modifier_Symbol} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{So} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{So} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Other_Symbol} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Other_Symbol} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Z} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Z} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Separator} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Separator} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Zs} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Zs} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Space_Separator} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Space_Separator} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Zl} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Zl} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Line_Separator} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Line_Separator} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Zp} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Zp} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Paragraph_Separator} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Paragraph_Separator} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{C} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{C} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Other} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Other} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Cc} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Cc} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Control} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Control} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{cntrl} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{cntrl} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Cf} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Cf} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Format} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Format} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Cs} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Cs} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Surrogate} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Surrogate} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Co} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Co} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Private_Use} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Private_Use} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Cn} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Cn} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Unassigned} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Unassigned} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Ll} ui "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Ll} vi "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \P{Ll} u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\P{Ll} v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \P{Ll} ui "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\P{Ll} vi "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \p{Ll}* u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\p{Ll}* v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \P{Ll}* u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +\P{Ll}* v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) [\p{Ll}] u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +[\p{Ll}] v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) [\p{Ll}] ui "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +[\p{Ll}] vi "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) [\P{Ll}] u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +[\P{Ll}] v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) [\P{Ll}] ui "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +[\P{Ll}] vi "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) [^\p{Ll}] u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +[^\p{Ll}] v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) [^\p{Ll}] ui "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +[^\p{Ll}] vi "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) [^\P{Ll}] u "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +[^\P{Ll}] v "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) [^\P{Ll}] ui "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) +[^\P{Ll}] vi "DϠeⱬDžLjʷჼªఎ͎︁ःඃ҉꙰7᱐ᛮ〩³㉒  \u2028\u2029\u000f­᠎\udf39\uda29_︳-⸺(﹝)⸥«‟»⸡!︓+⟶$؋^꜄¦⎗͹゘" !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) # Character sets (basic cases) [] "\udca9💩\ud83dbeard\udcab💫\ud83d" [] u "\udca9💩\ud83dbeard\udcab💫\ud83d" +[] v "\udca9💩\ud83dbeard\udcab💫\ud83d" [^] "\udca9💩\ud83dbeard\udcab💫\ud83d" [^] u "\udca9💩\ud83dbeard\udcab💫\ud83d" +[^] v "\udca9💩\ud83dbeard\udcab💫\ud83d" [^^] "\udca9💩\ud83dbeard\udcab💫\ud83d" [^^] u "\udca9💩\ud83dbeard\udcab💫\ud83d" +[^^] v "\udca9💩\ud83dbeard\udcab💫\ud83d" []* "\udca9💩\ud83dbeard\udcab💫\ud83d" []* u "\udca9💩\ud83dbeard\udcab💫\ud83d" +[]* v "\udca9💩\ud83dbeard\udcab💫\ud83d" [^]* "\udca9💩\ud83dbeard\udcab💫\ud83d" [^]* u "\udca9💩\ud83dbeard\udcab💫\ud83d" +[^]* v "\udca9💩\ud83dbeard\udcab💫\ud83d" [^^]* "\udca9💩\ud83dbeard\udcab💫\ud83d" [^^]* u "\udca9💩\ud83dbeard\udcab💫\ud83d" +[^^]* v "\udca9💩\ud83dbeard\udcab💫\ud83d" [\s\S] "\udca9💩\ud83dbeard\udcab💫\ud83d" [\s\S] u "\udca9💩\ud83dbeard\udcab💫\ud83d" +[\s\S] v "\udca9💩\ud83dbeard\udcab💫\ud83d" [^\s\S] "\udca9💩\ud83dbeard\udcab💫\ud83d" [^\s\S] u "\udca9💩\ud83dbeard\udcab💫\ud83d" +[^\s\S] v "\udca9💩\ud83dbeard\udcab💫\ud83d" [\s\S]* "\udca9💩\ud83dbeard\udcab💫\ud83d" [\s\S]* u "\udca9💩\ud83dbeard\udcab💫\ud83d" +[\s\S]* v "\udca9💩\ud83dbeard\udcab💫\ud83d" [^\s\S]* "\udca9💩\ud83dbeard\udcab💫\ud83d" [^\s\S]* u "\udca9💩\ud83dbeard\udcab💫\ud83d" +[^\s\S]* v "\udca9💩\ud83dbeard\udcab💫\ud83d" [abcd] "\udca9💩\ud83dbeard\udcab💫\ud83d" [abcd] u "\udca9💩\ud83dbeard\udcab💫\ud83d" +[abcd] v "\udca9💩\ud83dbeard\udcab💫\ud83d" [^abcd] "\udca9💩\ud83dbeard\udcab💫\ud83d" [^abcd] u "\udca9💩\ud83dbeard\udcab💫\ud83d" +[^abcd] v "\udca9💩\ud83dbeard\udcab💫\ud83d" [abcd]* "\udca9💩\ud83dbeard\udcab💫\ud83d" [abcd]* u "\udca9💩\ud83dbeard\udcab💫\ud83d" +[abcd]* v "\udca9💩\ud83dbeard\udcab💫\ud83d" [^abcd]* "\udca9💩\ud83dbeard\udcab💫\ud83d" [^abcd]* u "\udca9💩\ud83dbeard\udcab💫\ud83d" +[^abcd]* v "\udca9💩\ud83dbeard\udcab💫\ud83d" [a-d] "\udca9💩\ud83dbeard\udcab💫\ud83d" [a-d] u "\udca9💩\ud83dbeard\udcab💫\ud83d" +[a-d] v "\udca9💩\ud83dbeard\udcab💫\ud83d" [a-b] u "\udca9💩\ud83dbeard\udcab💫\ud83d" +[a-b] v "\udca9💩\ud83dbeard\udcab💫\ud83d" [^a-d] "\udca9💩\ud83dbeard\udcab💫\ud83d" [^a-d] u "\udca9💩\ud83dbeard\udcab💫\ud83d" +[^a-d] v "\udca9💩\ud83dbeard\udcab💫\ud83d" [^a-b] u "\udca9💩\ud83dbeard\udcab💫\ud83d" +[^a-b] v "\udca9💩\ud83dbeard\udcab💫\ud83d" [A-Za-z0-9_-] $_Foo-Bar.12 [A-Za-z0-9_-] u $_Foo-Bar.12 +[A-Za-z0-9_-] v $_Foo-Bar.12 [^A-Za-z0-9_-] $_Foo-Bar.12 [^A-Za-z0-9_-] u $_Foo-Bar.12 +[^A-Za-z0-9_-] v $_Foo-Bar.12 [A-Za-z0-9_-.] $_Foo-Bar.12 [A-Za-z0-9_-.] u $_Foo-Bar.12 +[A-Za-z0-9_-.] v $_Foo-Bar.12 [^A-Za-z0-9_-.] $_Foo-Bar.12 [^A-Za-z0-9_-.] u $_Foo-Bar.12 +[^A-Za-z0-9_-.] v $_Foo-Bar.12 [A-Za-z0-9_\-.] $_Foo-Bar.12 [A-Za-z0-9_\-.] u $_Foo-Bar.12 +[A-Za-z0-9_\-.] v $_Foo-Bar.12 [^A-Za-z0-9_\-.] $_Foo-Bar.12 [^A-Za-z0-9_\-.] u $_Foo-Bar.12 +[^A-Za-z0-9_\-.] v $_Foo-Bar.12 [a-z0-9_-] i $_Foo-Bar.12 [a-z0-9_-] ui $_Foo-Bar.12 +[a-z0-9_-] vi $_Foo-Bar.12 [^a-z0-9_-] i $_Foo-Bar.12 [^a-z0-9_-] ui $_Foo-Bar.12 +[^a-z0-9_-] vi $_Foo-Bar.12 # Character sets (special escapes) [/] /[+-]\ [/] u /[+-]\ +[/] v /[+-]\ [\/] /[+-]\ [\/] u /[+-]\ +[\/] v /[+-]\ [\]] /[+-]\ [\]] u /[+-]\ +[\]] v /[+-]\ [\\] /[+-]\ [\\] u /[+-]\ +[\\] v /[+-]\ [\-] /[+-]\ [\-] u /[+-]\ +[\-] v /[+-]\ [\\-\]] /[+-]\ [\\-\]] u /[+-]\ +[\\-\]] v /[+-]\ [\\\-\]] /[+-]\ [\\\-\]] u /[+-]\ +[\\\-\]] v /[+-]\ [\]-\\] /[+-]\ [\]-\\] u /[+-]\ +[\]-\\] v /[+-]\ [\]\-\\] /[+-]\ [\]\-\\] u /[+-]\ +[\]\-\\] v /[+-]\ [\b] "\bABCD\b" [\b] u "\bABCD\b" +[\b] v "\bABCD\b" [\b-C] "\bABCD\b" [\b-C] u "\bABCD\b" +[\b-C] v "\bABCD\b" [A-\b] "\bABCD\b" [A-\b] u "\bABCD\b" +[A-\b] v "\bABCD\b" [\B] "\bABCD\b" [\B] u "\bABCD\b" +[\B] v "\bABCD\b" [\B-C] "\bABCD\b" [\B-C] u "\bABCD\b" +[\B-C] v "\bABCD\b" [A-\B] "\bABCD\b" [A-\B] u "\bABCD\b" +[A-\B] v "\bABCD\b" # Character sets (range edge cases) [-] +,-./ aZ0 [-] u +,-./ aZ0 +[-] v +,-./ aZ0 [--] +,-./ aZ0 [--] u +,-./ aZ0 +[--] v +,-./ aZ0 [---] +,-./ aZ0 [---] u +,-./ aZ0 +[---] v +,-./ aZ0 [^-] +,-./ aZ0 [^-] u +,-./ aZ0 +[^-] v +,-./ aZ0 [^--] +,-./ aZ0 [^--] u +,-./ aZ0 +[^--] v +,-./ aZ0 [^---] +,-./ aZ0 [^---] u +,-./ aZ0 +[^---] v +,-./ aZ0 [+-] +,-./ aZ0 [+-] u +,-./ aZ0 +[+-] v +,-./ aZ0 [+--] +,-./ aZ0 [+--] u +,-./ aZ0 +[+--] v +,-./ aZ0 [+---] +,-./ aZ0 [+---] u +,-./ aZ0 +[+---] v +,-./ aZ0 [-+] +,-./ aZ0 [-+] u +,-./ aZ0 +[-+] v +,-./ aZ0 [--+] +,-./ aZ0 [--+] u +,-./ aZ0 +[--+] v +,-./ aZ0 [---+] +,-./ aZ0 [---+] u +,-./ aZ0 +[---+] v +,-./ aZ0 [a-z-] +,-./ aZ0 [a-z-] u +,-./ aZ0 +[a-z-] v +,-./ aZ0 [a-z--] +,-./ aZ0 [a-z--] u +,-./ aZ0 +[a-z--] v +,-./ aZ0 [a-z---] +,-./ aZ0 [a-z---] u +,-./ aZ0 +[a-z---] v +,-./ aZ0 [a-z+-] +,-./ aZ0 [a-z+-] u +,-./ aZ0 +[a-z+-] v +,-./ aZ0 [a-z+--] +,-./ aZ0 [a-z+--] u +,-./ aZ0 +[a-z+--] v +,-./ aZ0 [a-z+---] +,-./ aZ0 [a-z+---] u +,-./ aZ0 +[a-z+---] v +,-./ aZ0 [a-z-+] +,-./ aZ0 [a-z-+] u +,-./ aZ0 +[a-z-+] v +,-./ aZ0 [a-z--+] +,-./ aZ0 [a-z--+] u +,-./ aZ0 +[a-z--+] v +,-./ aZ0 [a-z---+] +,-./ aZ0 [a-z---+] u +,-./ aZ0 +[a-z---+] v +,-./ aZ0 [a-+] +,-./ aZ0 [a-+] u +,-./ aZ0 +[a-+] v +,-./ aZ0 [a--+] +,-./ aZ0 [a--+] u +,-./ aZ0 +[a--+] v +,-./ aZ0 [\--+] +,-./ aZ0 [\--+] u +,-./ aZ0 +[\--+] v +,-./ aZ0 [\---+] +,-./ aZ0 [\---+] u +,-./ aZ0 +[\---+] v +,-./ aZ0 [\--\/] +,-./ aZ0 [\--\/] u +,-./ aZ0 +[\--\/] v +,-./ aZ0 [\---\/] +,-./ aZ0 [\---\/] u +,-./ aZ0 +[\---\/] v +,-./ aZ0 [\d-] +,-./ aZ0 [\d-] u +,-./ aZ0 +[\d-] v +,-./ aZ0 [\d--] +,-./ aZ0 [\d--] u +,-./ aZ0 +[\d--] v +,-./ aZ0 [\d---] +,-./ aZ0 [\d---] u +,-./ aZ0 +[\d---] v +,-./ aZ0 [\d+-] +,-./ aZ0 [\d+-] u +,-./ aZ0 +[\d+-] v +,-./ aZ0 [\d+--] +,-./ aZ0 [\d+--] u +,-./ aZ0 +[\d+--] v +,-./ aZ0 [\d+---] +,-./ aZ0 [\d+---] u +,-./ aZ0 +[\d+---] v +,-./ aZ0 [\d-+] +,-./ aZ0 [\d-+] u +,-./ aZ0 +[\d-+] v +,-./ aZ0 [\d--+] +,-./ aZ0 [\d--+] u +,-./ aZ0 +[\d--+] v +,-./ aZ0 [\d---+] +,-./ aZ0 [\d---+] u +,-./ aZ0 +[\d---+] v +,-./ aZ0 [\d-\/] +,-./ aZ0 [\d-\/] u +,-./ aZ0 +[\d-\/] v +,-./ aZ0 [\d--\/] +,-./ aZ0 [\d--\/] u +,-./ aZ0 +[\d--\/] v +,-./ aZ0 [\d---\/] +,-./ aZ0 [\d---\/] u +,-./ aZ0 +[\d---\/] v +,-./ aZ0 [\d----\/] +,-./ aZ0 [\d----\/] u +,-./ aZ0 +[\d----\/] v +,-./ aZ0 [\S-] +,-./ aZ0 [\S--] +,-./ aZ0 @@ -1968,100 +2919,147 @@ PIJAMALı HASTA YAĞıZ ŞOFÖRE ÇABUCAK GÜVENDI ui pijamalı hasta yağız ş [--\S--\/] +,-./ aZ0 [\p{Zs}-] u +,-./ aZ0 +[\p{Zs}-] v +,-./ aZ0 [\p{Zs}--] u +,-./ aZ0 +[\p{Zs}--] v +,-./ aZ0 [\p{Zs}---] u +,-./ aZ0 +[\p{Zs}---] v +,-./ aZ0 [-\p{Zs}-] u +,-./ aZ0 +[-\p{Zs}-] v +,-./ aZ0 [-\p{Zs}--] u +,-./ aZ0 +[-\p{Zs}--] v +,-./ aZ0 [-\p{Zs}---] u +,-./ aZ0 +[-\p{Zs}---] v +,-./ aZ0 [--\p{Zs}-] u +,-./ aZ0 +[--\p{Zs}-] v +,-./ aZ0 [--\p{Zs}--] u +,-./ aZ0 +[--\p{Zs}--] v +,-./ aZ0 [--\p{Zs}---] u +,-./ aZ0 +[--\p{Zs}---] v +,-./ aZ0 [--\p{Zs}--\/] u +,-./ aZ0 +[--\p{Zs}--\/] v +,-./ aZ0 [\P{Zs}-] u +,-./ aZ0 +[\P{Zs}-] v +,-./ aZ0 [\P{Zs}--] u +,-./ aZ0 +[\P{Zs}--] v +,-./ aZ0 [\P{Zs}---] u +,-./ aZ0 +[\P{Zs}---] v +,-./ aZ0 [-\P{Zs}-] u +,-./ aZ0 +[-\P{Zs}-] v +,-./ aZ0 [-\P{Zs}--] u +,-./ aZ0 +[-\P{Zs}--] v +,-./ aZ0 [-\P{Zs}---] u +,-./ aZ0 +[-\P{Zs}---] v +,-./ aZ0 [--\P{Zs}-] u +,-./ aZ0 +[--\P{Zs}-] v +,-./ aZ0 [--\P{Zs}--] u +,-./ aZ0 +[--\P{Zs}--] v +,-./ aZ0 [--\P{Zs}---] u +,-./ aZ0 +[--\P{Zs}---] v +,-./ aZ0 [--\P{Zs}--\/] u +,-./ aZ0 +[--\P{Zs}--\/] v +,-./ aZ0 [e-f] i defg_DEFG [e-f] ui defg_DEFG +[e-f] vi defg_DEFG [e-F] i defg_DEFG [e-F] ui defg_DEFG +[e-F] vi defg_DEFG [F-e] i defg_DEFG [F-e] ui defg_DEFG +[F-e] vi defg_DEFG [E-F] i defg_DEFG [E-F] ui defg_DEFG +[E-F] vi defg_DEFG # Character sets (backrefence edge cases) (a)[\1] "a\x01a" (a)[\1] u "a\x01a" +(a)[\1] v "a\x01a" (?:a)[\1] "a\x01a" (?:a)[\1] u "a\x01a" +(?:a)[\1] v "a\x01a" [(a)\1] "a\x01a" [(a)\1] u "a\x01a" +[(a)\1] v "a\x01a" [(?:a)\1] "a\x01a" [(?:a)\1] u "a\x01a" +[(?:a)\1] v "a\x01a" [\1(a)] "a\x01a" [\1(a)] u "a\x01a" +[\1(a)] v "a\x01a" [\1(?:a)] "a\x01a" [\1(?:a)] u "a\x01a" +[\1(?:a)] v "a\x01a" [\1](a) "a\x01a" [\1](a) u "a\x01a" +[\1](a) v "a\x01a" [\1](?:a) "a\x01a" [\1](?:a) u "a\x01a" +[\1](?:a) v "a\x01a" # Character sets (.NET-specific edge cases) [A-[B]] A-[B] [A-[B]] u A-[B] +[A-[B]] v A-[B] [--[B]] A-[B] [--[B]] u A-[B] +[--[B]] v A-[B] [\D-[B]] A-[B] [\D-[B]] u A-[B] !ignore-error-message +[\D-[B]] v A-[B] [A-\[B\]] A-[B] [A-\[B\]] u A-[B] +[A-\[B\]] v A-[B] # Disjunctions a|ab abc a|ab u abc +a|ab v abc (?:(a)|(ab))(?:(c)|(bc)) abc (?:(a)|(ab))(?:(c)|(bc)) u abc +(?:(a)|(ab))(?:(c)|(bc)) v abc \.(?:png|jpe?g|webp|avif|gif)$ i image.jpg \.(?:png|jpe?g|webp|avif|gif)$ ui image.jpg +\.(?:png|jpe?g|webp|avif|gif)$ vi image.jpg \bgr(a|e)y\b The gray wolf blended in among the grey rocks. \bgr(a|e)y\b u The gray wolf blended in among the grey rocks. +\bgr(a|e)y\b v The gray wolf blended in among the grey rocks. \b(\d{2}-\d{7}|\d{3}-\d{2}-\d{4})\b 01-9999999 020-333333 777-88-9999 \b(\d{2}-\d{7}|\d{3}-\d{2}-\d{4})\b u 01-9999999 020-333333 777-88-9999 +\b(\d{2}-\d{7}|\d{3}-\d{2}-\d{4})\b v 01-9999999 020-333333 777-88-9999 ?x xxyx ?x u xxyx +?x v xxyx {1}x xxyx {1}x u xxyx +{1}x v xxyx ?x|y xxyx ?x|y u xxyx +?x|y v xxyx {1}x|y xxyx {1}x|y u xxyx +{1}x|y v xxyx y|+x xxyx y|+x u xxyx +y|+x v xxyx y|{1,2}x xxyx y|{1,2}x u xxyx +y|{1,2}x v xxyx # Invalid groups @@ -2127,212 +3125,295 @@ y|{1,2}x u xxyx (ab)|(cd) cd (ab)|(cd) u cd +(ab)|(cd) v cd ([ab])+ abc ([ab])+ u abc +([ab])+ v abc c(?=(ab)) cab c(?=(ab)) u cab +c(?=(ab)) v cab (?<=(a)(b))c abc (?<=(a)(b))c u abc +(?<=(a)(b))c v abc (?<=([ab])+)c abc (?<=([ab])+)c u abc +(?<=([ab])+)c v abc ((a+)?(b+)?(c))* aacbbbcac !ignore-undefined-captures ((a+)?(b+)?(c))* u aacbbbcac !ignore-undefined-captures +((a+)?(b+)?(c))* v aacbbbcac !ignore-undefined-captures ^(\d{4})-(\d{2})-(\d{2})$ 2019-01-01 ^(\d{4})-(\d{2})-(\d{2})$ u 2019-01-01 +^(\d{4})-(\d{2})-(\d{2})$ v 2019-01-01 (\w+)\s(\1)\W i He said that that was the the correct answer. (\w+)\s(\1)\W ui He said that that was the the correct answer. +(\w+)\s(\1)\W vi He said that that was the the correct answer. (*x) xxyx (*x) u xxyx +(*x) v xxyx ({1,}x) xxyx ({1,}x) u xxyx +({1,}x) v xxyx (y|+x) xxyx (y|+x) u xxyx +(y|+x) v xxyx (y|{1,2}x) xxyx (y|{1,2}x) u xxyx +(y|{1,2}x) v xxyx # Named capturing groups (?ab)|(?cd) cd (?ab)|(?cd) u cd +(?ab)|(?cd) v cd (?[ab])+ abc (?[ab])+ u abc +(?[ab])+ v abc c(?=(?<$ab>ab)) cab c(?=(?<$ab>ab)) u cab +c(?=(?<$ab>ab)) v cab c(?=(?<$ab>ab)(?<__utf8_246162>)) cab c(?=(?<$ab>ab)(?<__utf8_246162>)) u cab +c(?=(?<$ab>ab)(?<__utf8_246162>)) v cab (?<=(?<α>a)(?<β>b))c abc (?<=(?<α>a)(?<β>b))c u abc +(?<=(?<α>a)(?<β>b))c v abc (?<=(?<_1>[ab])+)c abc (?<=(?<_1>[ab])+)c u abc +(?<=(?<_1>[ab])+)c v abc ((?<\u{13000}>a+)?(?<\u{13001}>b+)?(?<\u{13002}>c))* aacbbbcac !ignore-undefined-captures ((?<\u{13000}>a+)?(?<\u{13001}>b+)?(?<\u{13002}>c))* u aacbbbcac !ignore-undefined-captures +((?<\u{13000}>a+)?(?<\u{13001}>b+)?(?<\u{13002}>c))* v aacbbbcac !ignore-undefined-captures ^(?\d{4})-(?\d{2})-(?\d{2})$ 2019-01-01 ^(?\d{4})-(?\d{2})-(?\d{2})$ u 2019-01-01 +^(?\d{4})-(?\d{2})-(?\d{2})$ v 2019-01-01 (?\d+),(?.+) 1560979912,Caroline (?\d+),(?.+) u 1560979912,Caroline +(?\d+),(?.+) v 1560979912,Caroline (?x)(?y) xy (?x)(?y) u xy +(?x)(?y) v xy ((?x))(?y) xy ((?x))(?y) u xy +((?x))(?y) v xy (x|(?x))(?y) xy (x|(?x))(?y) u xy +(x|(?x))(?y) v xy (((?x)))(?y) xy (((?x)))(?y) u xy +(((?x)))(?y) v xy (?:((?x)))(?y) xy (?:((?x)))(?y) u xy +(?:((?x)))(?y) v xy ((?:(?x)))(?y) xy ((?:(?x)))(?y) u xy +((?:(?x)))(?y) v xy (?x)))(?y) xy (?x)))(?y) u xy +(?x)))(?y) v xy (?x)((?y)) xy (?x)((?y)) u xy +(?x)((?y)) v xy (?x)(y|(?y)) xy (?x)(y|(?y)) u xy +(?x)(y|(?y)) v xy (?x)(((?y))) xy (?x)(((?y))) u xy +(?x)(((?y))) v xy (?x)(?:((?y))) xy (?x)(?:((?y))) u xy +(?x)(?:((?y))) v xy (?x)((?:(?y))) xy (?x)((?:(?y))) u xy +(?x)((?:(?y))) v xy (?x)(?!(?:(?y))) xy (?x)(?!(?:(?y))) u xy +(?x)(?!(?:(?y))) v xy (?\w+)\s\k\W(?\w+) i He said that that was the the correct answer. (?\w+)\s\k\W(?\w+) ui He said that that was the the correct answer. +(?\w+)\s\k\W(?\w+) vi He said that that was the the correct answer. (?*x) xxyx (?*x) u xxyx +(?*x) v xxyx (?{1,}x) xxyx (?{1,}x) u xxyx +(?{1,}x) v xxyx # Non-capturing groups styles(?:\.[\da-f]+)? styles.css styles(?:\.[\da-f]+)? u styles.css +styles(?:\.[\da-f]+)? v styles.css styles(?:\.[\da-f]+)? styles.1234.css styles(?:\.[\da-f]+)? u styles.1234.css +styles(?:\.[\da-f]+)? v styles.1234.css styles(?:\.[\da-f]+)? styles.cafe.css styles(?:\.[\da-f]+)? u styles.cafe.css +styles(?:\.[\da-f]+)? v styles.cafe.css styles(?:\.[\da-f]+)? styles.1234.min.css styles(?:\.[\da-f]+)? u styles.1234.min.css +styles(?:\.[\da-f]+)? v styles.1234.min.css \.(?:png|jpe?g|webp|avif|gif)$ i image.png \.(?:png|jpe?g|webp|avif|gif)$ ui image.png +\.(?:png|jpe?g|webp|avif|gif)$ vi image.png \.(?:png|jpe?g|webp|avif|gif)$ i image.pdf \.(?:png|jpe?g|webp|avif|gif)$ ui image.pdf +\.(?:png|jpe?g|webp|avif|gif)$ vi image.pdf (?:title|name)=(["'])(.*?)\1 name="foo" (?:title|name)=(["'])(.*?)\1 u name="foo" +(?:title|name)=(["'])(.*?)\1 v name="foo" (?:\b(?:\w+)\W*)+\. This is a short sentence. (?:\b(?:\w+)\W*)+\. u This is a short sentence. +(?:\b(?:\w+)\W*)+\. v This is a short sentence. (?:*x) xxyx (?:*x) u xxyx +(?:*x) v xxyx (?:{1,}x) xxyx (?:{1,}x) u xxyx +(?:{1,}x) v xxyx # Invalid group name references \kx kx \kx u kx +\kx v kx (?
)\kx kx \kx(?) kx \k k (\k u k +(\k v k \k<>x k<>x \k<>x u k<>x +\k<>x v k<>x (?)\k x (?)\k u x +(?)\k v x \k(?) x \k(?) u x +\k(?) v x + +[\k)](?) x +[\k)](?) u x +[\k)](?) v x # Backreferences title=(["'])(.*?)\1 title="Named capturing groups' advantages" title=(["'])(.*?)\1 u title="Named capturing groups' advantages" +title=(["'])(.*?)\1 v title="Named capturing groups' advantages" title=(?["'])(?.*?)\1 title="Named capturing groups' advantages" title=(?["'])(?.*?)\1 u title="Named capturing groups' advantages" +title=(?["'])(?.*?)\1 v title="Named capturing groups' advantages" title=(?["'])(?.*?)\k title="Named capturing groups' advantages" title=(?["'])(?.*?)\k u title="Named capturing groups' advantages" +title=(?["'])(?.*?)\k v title="Named capturing groups' advantages" (b)\1 i bB (b)\1 ui bB +(b)\1 vi bB (?b)\1 i bB (?b)\1 ui bB +(?b)\1 vi bB (?b)\k i bB (?b)\k ui bB +(?b)\k vi bB (b)\1+ i bBbB (b)\1+ ui bBbB +(b)\1+ vi bBbB (?b)\1+ i bB (?b)\1+ ui bB +(?b)\1+ vi bB (?b)\k+ i bB (?b)\k+ ui bB +(?b)\k+ vi bB \1(a) aa \1(a) u aa +\1(a) v aa \1(?a) aa \1(?a) u aa +\1(?a) v aa \k(?a) aa \k(?a) u aa +\k(?a) v aa (\1a) aa (\1a) u aa +(\1a) v aa (?\1a) aa (?\1a) u aa +(?\1a) v aa (?\ka) aa (?\ka) u aa +(?\ka) v aa (a\1) aa (a\1) u aa +(a\1) v aa (?a\1) aa (?a\1) u aa +(?a\1) v aa (?a\k) aa (?a\k) u aa +(?a\k) v aa (?:a|(b))\1c ac (?:a|(b))\1c u ac +(?:a|(b))\1c v ac (?:a|(?b))\1c ac (?:a|(?b))\1c u ac +(?:a|(?b))\1c v ac (?:a|(?b))\kc ac (?:a|(?b))\kc u ac +(?:a|(?b))\kc v ac (a)\2 a\x02 (a)\2 u a\x02 +(a)\2 v a\x02 (?a)\2 a\x02 (?a)\2 u a\x02 +(?a)\2 v a\x02 \b(\w+)\s+\1\b i Hello hello \b(\w+)\s+\1\b ui Hello hello +\b(\w+)\s+\1\b vi Hello hello \b(\w+)\s+\1\b i Hello hellos \b(\w+)\s+\1\b ui Hello hellos +\b(\w+)\s+\1\b vi Hello hellos ((a+)(\1) ?)+ "aa aaaa aaaaaa " !ignore-group-captures ((a+)(\1) ?)+ u "aa aaaa aaaaaa " !ignore-group-captures +((a+)(\1) ?)+ v "aa aaaa aaaaaa " !ignore-group-captures (.)(?<=(\1\1)) "abb" (.)(?<=(\1\1)) i "abB" @@ -2368,206 +3449,291 @@ title=(?["'])(?.*?)\k u title="Named capturing groups' ad x? xxyx x? u xxyx +x? v xxyx x* xxyx x* u xxyx +x* v xxyx x+ xxyx x+ u xxyx +x+ v xxyx x{1} xxyx x{1} u xxyx +x{1} v xxyx x{1,} xxyx x{1,} u xxyx +x{1,} v xxyx x{1,2} xxyx x{1,2} u xxyx +x{1,2} v xxyx x?? xxyx x?? u xxyx +x?? v xxyx x?* xxyx x?* u xxyx +x?* v xxyx x?+ xxyx x?+ u xxyx +x?+ v xxyx x?{1} xxyx x?{1} u xxyx +x?{1} v xxyx x*? xxyx x*? u xxyx +x*? v xxyx x** xxyx x** u xxyx +x** v xxyx x*+ xxyx x*+ u xxyx +x*+ v xxyx x*{1} xxyx x*{1} u xxyx +x*{1} v xxyx x+? xxyx x+? u xxyx +x+? v xxyx x+* xxyx x+* u xxyx +x+* v xxyx x++ xxyx x++ u xxyx +x++ v xxyx x+{1} xxyx x+{1} u xxyx +x+{1} v xxyx x{1}? xxyx x{1}? u xxyx +x{1}? v xxyx x{1}* xxyx x{1}* u xxyx +x{1}* v xxyx x{1}+ xxyx x{1}+ u xxyx +x{1}+ v xxyx x{1}{1} xxyx x{1}{1} u xxyx +x{1}{1} v xxyx x{ xxyx{ x{ u xxyx{ !ignore-error-message +x{ v xxyx{ !ignore-error-message x{} xxyx{} x{} u xxyx{} +x{} v xxyx{} x{ } xxyx{ } x{ } u xxyx{ } +x{ } v xxyx{ } x\{1} xxyx{1} x\{1} u xxyx{1} +x\{1} v xxyx{1} x{1\} xxyx{1} x{1\} u xxyx{1} !ignore-error-message +x{1\} v xxyx{1} !ignore-error-message x{1 xxyx{1 x{1 u xxyx{1 !ignore-error-message +x{1 v xxyx{1 !ignore-error-message x{1 } xxyx{1 } x{1 } u xxyx{1 } +x{1 } v xxyx{1 } x{ 1} xxyx{1 } x{ 1} u xxyx{1 } +x{ 1} v xxyx{1 } x{,} xxyx{,} x{,} u xxyx{,} +x{,} v xxyx{,} x{a} xxyx{a} x{a} u xxyx{a} +x{a} v xxyx{a} x{-1} xxyx{-1} x{-1} u xxyx{-1} +x{-1} v xxyx{-1} x{1, xxyx{1, x{1, u xxyx{1, !ignore-error-message +x{1, v xxyx{1, !ignore-error-message x{1, } xxyx{1, } x{1, } u xxyx{1, } +x{1, } v xxyx{1, } x{a,} xxyx{a,} x{a,} u xxyx{a,} +x{a,} v xxyx{a,} x{-1,} xxyx{-1,} x{-1,} u xxyx{-1,} +x{-1,} v xxyx{-1,} x{1,2 xxyx{1,2 x{1,2 u xxyx{1,2 !ignore-error-message +x{1,2 v xxyx{1,2 !ignore-error-message x{1,a} xxyx{1,a} x{1,a} u xxyx{1,a} +x{1,a} v xxyx{1,a} x{1,-1} xxyx{1,-1} x{1,-1} u xxyx{1,-1} +x{1,-1} v xxyx{1,-1} x{a,1} xxyx{a,1} x{a,1} u xxyx{a,1} +x{a,1} v xxyx{a,1} x{-1,1} xxyx{-1,1} x{-1,1} u xxyx{-1,1} +x{-1,1} v xxyx{-1,1} x{,1 xxyx{,1 x{,1 u xxyx{,1 !ignore-error-message +x{,1 v xxyx{,1 !ignore-error-message x{,1} xxyx{,1} x{,1} u xxyx{,1} +x{,1} v xxyx{,1} x{ 1,2} xxyx{ 1,2} x{ 1,2} u xxyx{ 1,2} +x{ 1,2} v xxyx{ 1,2} x{1,2 } xxyx{1,2 } x{1,2 } u xxyx{1,2 } +x{1,2 } v xxyx{1,2 } x{1 ,2} xxyx{1 ,2} x{1 ,2} u xxyx{1 ,2} +x{1 ,2} v xxyx{1 ,2} x{1, 2} xxyx{1, 2} x{1, 2} u xxyx{1, 2} +x{1, 2} v xxyx{1, 2} x{2,1} xxyx{2,1} x{2,1} u xxyx{2,1} +x{2,1} v xxyx{2,1} x{2,02} xxyx{2,02} x{2,02} u xxyx{2,02} +x{2,02} v xxyx{2,02} x{02,2} xxyx{02,2} x{02,2} u xxyx{02,2} +x{02,2} v xxyx{02,2} x{1,2147483647} xxyx{2,1} !skip-on-netframework # (the adapted pattern is correct but makes the Regex ctor hang on .NET Framework) x{1,2147483647} u xxyx{2,1} !skip-on-netframework # (the adapted pattern is correct but makes the Regex ctor hang on .NET Framework) +x{1,2147483647} v xxyx{2,1} !skip-on-netframework # (the adapted pattern is correct but makes the Regex ctor hang on .NET Framework) x{2147483647,} xxyx{2,1} !skip-on-netframework # (the adapted pattern is correct but makes the Regex ctor hang on .NET Framework) x{2147483647,} u xxyx{2,1} !skip-on-netframework # (the adapted pattern is correct but makes the Regex ctor hang on .NET Framework) +x{2147483647,} v xxyx{2,1} !skip-on-netframework # (the adapted pattern is correct but makes the Regex ctor hang on .NET Framework) x{1,2147483648} xxyx{2,1} x{1,2147483648} u xxyx{2,1} +x{1,2147483648} v xxyx{2,1} x{2147483648,} xxyx{2,1} x{2147483648,} u xxyx{2,1} +x{2147483648,} v xxyx{2,1} x{2147483647,2147483646} xxyx{2,1} x{2147483647,2147483646} u xxyx{2,1} +x{2147483647,2147483646} v xxyx{2,1} x{2147483648,2147483647} xxyx{2,1} x{2147483648,2147483647} u xxyx{2,1} +x{2147483648,2147483647} v xxyx{2,1} \b.*([0-9]{4})\b 1112223333 3992991999 \b.*([0-9]{4})\b u 1112223333 3992991999 +\b.*([0-9]{4})\b v 1112223333 3992991999 \b.*?([0-9]{4})\b 1112223333 3992991999 \b.*?([0-9]{4})\b u 1112223333 3992991999 +\b.*?([0-9]{4})\b v 1112223333 3992991999 # Input boundary assertions ^??x xxyx ^??x u xxyx +^??x v xxyx ^{1}?x xxyx ^{1}?x u xxyx +^{1}?x v xxyx $*?x xxyx $*?x u xxyx +$*?x v xxyx ${1,}?x xxyx ${1,}?x u xxyx +${1,}?x v xxyx ^(a|b|c)*$ "aabbbcc" ^(a|b|c)*$ u "aabbbcc" +^(a|b|c)*$ v "aabbbcc" ^(a|b|c)*$ m "aabbbcc" ^(a|b|c)*$ um "aabbbcc" +^(a|b|c)*$ vm "aabbbcc" ^(a|b|c)*$ "aabb\rbcc" ^(a|b|c)*$ u "aabb\rbcc" +^(a|b|c)*$ v "aabb\rbcc" ^(a|b|c)*$ m "aabb\rbcc" ^(a|b|c)*$ um "aabb\rbcc" +^(a|b|c)*$ vm "aabb\rbcc" ^(a|b|c)*$ "aabb\nbcc" ^(a|b|c)*$ u "aabb\nbcc" +^(a|b|c)*$ v "aabb\nbcc" ^(a|b|c)*$ m "aabb\nbcc" ^(a|b|c)*$ um "aabb\nbcc" +^(a|b|c)*$ vm "aabb\nbcc" ^(a|b|c)*$ "aabb\u2028bcc" ^(a|b|c)*$ u "aabb\u2028bcc" +^(a|b|c)*$ v "aabb\u2028bcc" ^(a|b|c)*$ m "aabb\u2028bcc" ^(a|b|c)*$ um "aabb\u2028bcc" +^(a|b|c)*$ vm "aabb\u2028bcc" ^(a|b|c)*$ "aabb\u2029bcc" ^(a|b|c)*$ u "aabb\u2029bcc" +^(a|b|c)*$ v "aabb\u2029bcc" ^(a|b|c)*$ m "aabb\u2029bcc" ^(a|b|c)*$ um "aabb\u2029bcc" +^(a|b|c)*$ vm "aabb\u2029bcc" ^(a|b|c)*$ "aabb\u202abcc" ^(a|b|c)*$ u "aabb\u202abcc" +^(a|b|c)*$ v "aabb\u202abcc" ^(a|b|c)*$ m "aabb\u202abcc" ^(a|b|c)*$ um "aabb\u202abcc" +^(a|b|c)*$ vm "aabb\u202abcc" ^(a|b|c)*$ "aabb\u2028\u2029bcc" ^(a|b|c)*$ u "aabb\u2028\u2029bcc" +^(a|b|c)*$ v "aabb\u2028\u2029bcc" ^(a|b|c)*$ m "aabb\u2028\u2029bcc" ^(a|b|c)*$ um "aabb\u2028\u2029bcc" +^(a|b|c)*$ vm "aabb\u2028\u2029bcc" ^(a|b|c)* "aabb\u2028\u2029bcc" ^(a|b|c)* u "aabb\u2028\u2029bcc" +^(a|b|c)* v "aabb\u2028\u2029bcc" ^(a|b|c)* m "aabb\u2028\u2029bcc" ^(a|b|c)* um "aabb\u2028\u2029bcc" +^(a|b|c)* vm "aabb\u2028\u2029bcc" (a|b|c)*^ "aabb\u2028\u2029bcc" (a|b|c)*^ u "aabb\u2028\u2029bcc" +(a|b|c)*^ v "aabb\u2028\u2029bcc" (a|b|c)*^ m "aabb\u2028\u2029bcc" (a|b|c)*^ um "aabb\u2028\u2029bcc" +(a|b|c)*^ vm "aabb\u2028\u2029bcc" (a|b|c)*$ "aabb\u2028\u2029bcc" (a|b|c)*$ u "aabb\u2028\u2029bcc" +(a|b|c)*$ v "aabb\u2028\u2029bcc" (a|b|c)*$ m "aabb\u2028\u2029bcc" (a|b|c)*$ um "aabb\u2028\u2029bcc" +(a|b|c)*$ vm "aabb\u2028\u2029bcc" $(a|b|c)* "aabb\u2028\u2029bcc" $(a|b|c)* u "aabb\u2028\u2029bcc" +$(a|b|c)* v "aabb\u2028\u2029bcc" $(a|b|c)* m "aabb\u2028\u2029bcc" $(a|b|c)* um "aabb\u2028\u2029bcc" +$(a|b|c)* vm "aabb\u2028\u2029bcc" (?<=^[^a-c]{3})def "abcdef" @@ -2589,66 +3755,89 @@ $(a|b|c)* um "aabb\u2028\u2029bcc" \ba abc c\b u abc +c\b v abc \B abc \B u abc + \B v abc \b(thanks|thank you)\b i Thanks! You helped me a lot. \b(thanks|thank you)\b ui Thanks! You helped me a lot. +\b(thanks|thank you)\b vi Thanks! You helped me a lot. \b(thanks|thank you)\b i Just want to say thank you for all your work. \b(thanks|thank you)\b ui Just want to say thank you for all your work. +\b(thanks|thank you)\b vi Just want to say thank you for all your work. \b(thanks|thank you)\b i Thanksgiving is around the corner. \b(thanks|thank you)\b ui Thanksgiving is around the corner. +\b(thanks|thank you)\b vi Thanksgiving is around the corner. \b(thanks|thank you)\b mi \rThanks!\rYou helped me a lot. \b(thanks|thank you)\b umi \rThanks!\rYou helped me a lot. +\b(thanks|thank you)\b vmi \rThanks!\rYou helped me a lot. \b(thanks|thank you)\b mi Just want to say\rthank\ryou for all your work. \b(thanks|thank you)\b umi Just want to say\rthank\ryou for all your work. +\b(thanks|thank you)\b vmi Just want to say\rthank\ryou for all your work. \b(thanks|thank you)\b mi \rThanksgiving\r is around the corner. \b(thanks|thank you)\b umi \rThanksgiving\r is around the corner. +\b(thanks|thank you)\b vmi \rThanksgiving\r is around the corner. \bare\w*\b area bare arena mare \bare\w*\b u area bare arena mare +\bare\w*\b v area bare arena mare \bare\w*\b área bare arena mare \bare\w*\b u área bare arena mare +\bare\w*\b v área bare arena mare \Bqu\w+ equity queen equip acquaint quiet \Bqu\w+ u equity queen equip acquaint quiet +\Bqu\w+ v equity queen equip acquaint quiet \b+?x xxyx \b+?x u xxyx +\b+?x v xxyx \b{1,2}?x xxyx \b{1,2}?x u xxyx +\b{1,2}?x v xxyx \B?x xxyx \B?x u xxyx +\B?x v xxyx \B{1}x xxyx \B{1}x u xxyx +\B{1}x v xxyx # Lookahead assertions (?=(a+))a*b\1 baabac (?=(a+))a*b\1 u baabac +(?=(a+))a*b\1 v baabac \b\w+(?=\sis\b) The dog is a Malamute. \b\w+(?=\sis\b) u The dog is a Malamute. +\b\w+(?=\sis\b) v The dog is a Malamute. \b\w+(?=\sis\b) The island has beautiful birds. \b\w+(?=\sis\b) u The island has beautiful birds. +\b\w+(?=\sis\b) v The island has beautiful birds. (.*?)a(?!(a+)b\2c)\2(.*) baabac (.*?)a(?!(a+)b\2c)\2(.*) u baabac +(.*?)a(?!(a+)b\2c)\2(.*) v baabac ^.*?(?=[,.]) Hello, world! ^.*?(?=[,.]) u Hello, world! +^.*?(?=[,.]) v Hello, world! ^.*?(?=[,.]) Thank you. ^.*?(?=[,.]) u Thank you. +^.*?(?=[,.]) v Thank you. \b(?!un)\w+\b i unite one unethical ethics use untie ultimate \b(?!un)\w+\b ui unite one unethical ethics use untie ultimate +\b(?!un)\w+\b vi unite one unethical ethics use untie ultimate \b\w+\b(?!\p{P}) Disconnected, disjointed thoughts in a sentence fragment. !skip-before-net10.0 # (the adapted pattern depends on the Unicode version included in the .NET runtime) \b\w+\b(?!\p{P}) u Disconnected, disjointed thoughts in a sentence fragment. !skip-before-net10.0 # (the adapted pattern is correct but makes the Regex ctor hang on .NET Framework) +\b\w+\b(?!\p{P}) v Disconnected, disjointed thoughts in a sentence fragment. !skip-before-net10.0 # (the adapted pattern is correct but makes the Regex ctor hang on .NET Framework) (?=)?x xxyx (?=)*x xxyx @@ -2663,7 +3852,9 @@ c\b u abc (?=){1,}?x xxyx (?=){1,2}?x xxyx (?=)*x u xxyx +(?=)*x v xxyx (?=){1,}x u xxyx +(?=){1,}x v xxyx (?!)?x xxyx (?!)*x xxyx @@ -2678,37 +3869,50 @@ c\b u abc (?!){1,}?x xxyx (?!){1,2}?x xxyx (?!)+x u xxyx +(?!)+x v xxyx (?!){1,2}x u xxyx +(?!){1,2}x v xxyx # Lookbehind assertions (?<=([ab]+)([bc]+))$ abc (?<=([ab]+)([bc]+))$ u abc +(?<=([ab]+)([bc]+))$ v abc (?<=\$)\d+(?:\.\d*)? $10.53 (?<=\$)\d+(?:\.\d*)? u $10.53 +(?<=\$)\d+(?:\.\d*)? v $10.53 (?<=\$)\d+(?:\.\d*)? 10.53 (?<=\$)\d+(?:\.\d*)? u 10.53 +(?<=\$)\d+(?:\.\d*)? v 10.53 (?<=\b20)\d{2}\b 2010 1999 1861 2140 2009 (?<=\b20)\d{2}\b u 2010 1999 1861 2140 2009 +(?<=\b20)\d{2}\b v 2010 1999 1861 2140 2009 (?>] v +[??] v +[@@] v +[^^^] v +[x^^] v +[``] v +[~~] v + +[\q{&&}] v +[\q{!!}] v +[\q{##}] v + +## Class set reserved punctuators + +[\&\-\!\#\%\,\:\;\<\=\>\@\`\~] v &-!#%,:;<=>@`~ + +## Class set expression edge cases + +[a-] v +[a-0] v +[a-\0] v +[a-\d] v +[a-\k] v +[a-\q{] v +[a-\q{}] v +[a-[] v !ignore-error-message +[a-[]] v +[a-&&] v +[a-/] v +[a-b-c] v +[a-&&] v +[a-##] v +[a--] v +[a---] v +[a--b-] v +[a--b-c] v +[a--b--] v +[a--b---] v +[a--b&&c] v +[a--b##c] v +[a--##] v +[a--\k] v +[a&&b&] v +[a&&b&c] v +[a&&b&&] v +[a&&b&&&] v +[a&&b--c] v +[a&&b##c] v +[a&&##] v +[a&&\k] v +[a##] v + +[za-] v +[za-0] v +[za-\0] v +[za-\d] v +[za-\k] v +[za-\q{] v +[za-\q{}] v +[za-[] v !ignore-error-message +[za-[]] v +[za-&&] v +[za-/] v +[za-b-c] v +[za-&&] v +[za-##] v +[za--] v +[za---] v +[za--b-] v +[za--b-c] v +[za--b--] v +[za--b---] v +[za--b&&c] v +[za--b##c] v +[za--##] v +[za--\k] v +[za&&b&] v +[za&&b&c] v +[za&&b&&] v +[za&&b&&&] v +[za&&b--c] v +[za&&b##c] v +[za&&##] v +[za&&\k] v +[za##] v + +[[]-] v +[[]-0] v +[[]-\0] v +[[]-\d] v +[[]-\k] v +[[]-\q{] v +[[]-\q{}] v +[[]-[] v !ignore-error-message +[[]-[]] v +[[]-&&] v +[[]-/] v +[[]-b-c] v +[[]-&&] v +[[]-##] v +[[]--] v +[[]---] v +[[]--b-] v +[[]--b-c] v +[[]--b--] v +[[]--b---] v +[[]--b&&c] v +[[]--b##c] v +[[]--##] v +[[]--\k] v +[[]&&b&] v +[[]&&b&c] v +[[]&&b&&] v +[[]&&b&&&] v +[[]&&b--c] v +[[]&&b##c] v +[[]&&##] v +[[]&&\k] v +[[]##] v + +[z[]-] v +[z[]-0] v +[z[]-\0] v +[z[]-\d] v +[z[]-\k] v +[z[]-\q{] v +[z[]-\q{}] v +[z[]-[] v !ignore-error-message +[z[]-[]] v +[z[]-&&] v +[z[]-/] v +[z[]-b-c] v +[z[]-&&] v +[z[]-##] v +[z[]--] v +[z[]---] v +[z[]--b-] v +[z[]--b-c] v +[z[]--b--] v +[z[]--b---] v +[z[]--b&&c] v +[z[]--b##c] v +[z[]--##] v +[z[]--\k] v +[z[]&&b&] v +[z[]&&b&c] v +[z[]&&b&&] v +[z[]&&b&&&] v +[z[]&&b--c] v +[z[]&&b##c] v +[z[]&&##] v +[z[]&&\k] v +[z[]##] v + +## Class set disjunction edge cases + +\q v q +\q{ v q{ !ignore-error-message +\q{} v \q{} + +[\q] v [q] +[\q{] v [q{] +[\q{}] v +[\q{ }] v +[\q{|}] v +[\q{ | }] v +[\q{-}] v - +[\q{--}] v -- +[\q{&}] v & +[\q{&&}] v && +[\q{#}] v ## +[\q{##}] v ## +[\q{/}] v // +[\q{/}] v // +[\q{\}] v \\ +[\q{\}] v \\ +[\q{\0}] v 0 +[\q{\d}] v 0 +[\q{\p{Sc}}] v 0 +[\q{\q{0}}] v 0 + +[^\q{}] v abc +[^\q{a}] v abc +[^\q{ab|c}] v abc +[^\q{a|b|c}] v abc + +[[^\q{}]] v abc +[[^\q{a}]] v abc +[[^\q{ab|c}]] v abc +[[^\q{a|b|c}]] v abc + +/[^\q{a}--\q{a}]/v v abc +/[^\q{a}--\q{ab}]/v v abc +/[^\q{ab}--\q{ab}]/v v abc +/[^\q{ab}--\q{a}]/v v abc +/[^\q{ab|c}--\q{ab}]/v v abc +/[^\q{a|b|c}--\q{ab}]/v v abc + +/[^[\q{a}]--[\q{a}]]/v v abc +/[^[\q{a}]--[\q{ab}]]/v v abc +/[^[\q{ab}]--[\q{ab}]]/v v abc +/[^[\q{ab}]--[\q{a}]]/v v abc +/[^[\q{ab|c}]--[\q{ab}]]/v v abc +/[^[\q{a|b|c}]--[\q{ab}]]/v v abc + +/[^\q{a}&&\q{a}]/v v abc +/[^\q{a}&&\q{ab}]/v v abc +/[^\q{ab}&&\q{ab}]/v v abc +/[^\q{ab}&&\q{a}]/v v abc +/[^\q{ab|c}&&\q{ab}]/v v abc +/[^\q{a|b|c}&&\q{ab}]/v v abc + +/[^[\q{a}]&&[\q{a}]]/v v abc +/[^[\q{a}]&&[\q{ab}]]/v v abc +/[^[\q{ab}]&&[\q{ab}]]/v v abc +/[^[\q{ab}]&&[\q{a}]]/v v abc +/[^[\q{ab|c}]&&[\q{ab}]]/v v abc +/[^[\q{a|b|c}]&&[\q{ab}]]/v v abc + +/[^\q{a}--[\q{b}--[\q{c}]]]/v v abc +/[^\q{ab|c}--[\q{ab}--[\q{c}]]]/v v abc +/[^\q{a|b|c}--[\q{ab}--[\q{c}]]]/v v abc + +/[^\q{a}--[\q{b}&&[\q{c}]]]/v v abc +/[^\q{ab|c}--[\q{ab}&&[\q{c}]]]/v v abc +/[^\q{a|b|c}--[\q{ab}&&[\q{c}]]]/v v abc + +/[^\q{a}&&[\q{b}--[\q{c}]]]/v v abc +/[^\q{ab|c}&&[\q{ab}--[\q{c}]]]/v v abc +/[^\q{a|b|c}&&[\q{ab}--[\q{c}]]]/v v abc + +/[^\q{a}&&[\q{b}&&[\q{c}]]]/v v abc +/[^\q{ab|c}&&[\q{ab}&&[\q{c}]]]/v v abc +/[^\q{a|b|c}&&[\q{ab}&&[\q{c}]]]/v v abc + +# Class set success cases + +[a\\-b] v abc123 + +[a&&b] v abc123 +[a--b] v abc123 +[[a-z]&&[aeiou]] v abc123 +[[a-z]--[aeiou]] v abc123 +[[a-f][0-9]] v abc123 +[[[a-f]--[b]][0-9]] v abc123 +[\\p{Decimal_Number}&&[0-9]] v abc123 + + +[\\q{a}] v abc123 +[\\q{a|}] v +[\\q{|a}] v +[\\q{abc|def}] v abc123 +[\\q{abc|d|ef}] v abc123 + # Issues ## https://github.com/sebastienros/esprima-dotnet/issues/358 ^[\\d--\\d]+$ 012abc ^[\\d--\\d]+$ u 012abc +^[\\d--\\d]+$ v 012abc ^[\d--\d]+$ 012abc ^[\d--\d]+$ u 012abc +^[\d--\d]+$ v 012abc ## https://github.com/sebastienros/esprima-dotnet/issues/371 \ \ u +\ v \ \ u +\ v ## https://github.com/sebastienros/jint/issues/506 [^]?(:[rp][el]a[\w-]+)[^] :reagent- [^]?(:[rp][el]a[\w-]+)[^] u :reagent- +[^]?(:[rp][el]a[\w-]+)[^] v :reagent- [^]?(:[rp][el]a[\w-]+)[^] xx:reagent-1/y [^]?(:[rp][el]a[\w-]+)[^] u xx:reagent-1/y +[^]?(:[rp][el]a[\w-]+)[^] v xx:reagent-1/y diff --git a/test/Acornima.Tests/Fixtures.RegExp/testcases.txt b/test/Acornima.Tests/Fixtures.RegExp/testcases.txt index ec32fa0..571be24 100644 --- a/test/Acornima.Tests/Fixtures.RegExp/testcases.txt +++ b/test/Acornima.Tests/Fixtures.RegExp/testcases.txt @@ -1,4 +1,4 @@ -# Generated from testcases.template.txt at 2026-03-07T20:30:39 +# Generated from testcases.template.txt at 2026-04-07T22:01:31 # This file defines test cases for regular expression conversion testing (see RegExpTests.ExecuteTestCase). # Each uncommented, non-whitespace line specifies a test case in a tab-delimited format, with the following fields: @@ -10,842 +10,1272 @@ ( )syntax-error( ( "Unterminated group" ( u )syntax-error( ( "Unterminated group" +( v )syntax-error( ( "Unterminated group" ) )syntax-error( ) "Unmatched ')'" ) u )syntax-error( ) "Unmatched ')'" +) v )syntax-error( ) "Unmatched ')'" [(] [(] ( [{"captures":["("],"index":0}] [(] u "(?:[\\x28])" ( [{"captures":["("],"index":0}] +[(] v )syntax-error( ( "Invalid character in character class" [)] [)] ) [{"captures":[")"],"index":0}] [)] u "(?:[\\x29])" ) [{"captures":[")"],"index":0}] +[)] v )syntax-error( ) "Invalid character in character class" { { { [{"captures":["{"],"index":0}] { u )syntax-error( { "Lone quantifier brackets" +{ v )syntax-error( { "Lone quantifier brackets" } } } [{"captures":["}"],"index":0}] } u )syntax-error( } "Lone quantifier brackets" +} v )syntax-error( } "Lone quantifier brackets" [{] [{] { [{"captures":["{"],"index":0}] [{] u "(?:[\\x7B])" { [{"captures":["{"],"index":0}] +[{] v )syntax-error( { "Invalid character in character class" [}] [}] } [{"captures":["}"],"index":0}] [}] u "(?:[\\x7D])" } [{"captures":["}"],"index":0}] +[}] v )syntax-error( } "Invalid character in character class" [{|}] [{|}] {} [{"captures":["{"],"index":0},{"captures":["}"],"index":1}] [{|}] u "(?:[\\x7B-\\x7D])" {} [{"captures":["{"],"index":0},{"captures":["}"],"index":1}] +[{|}] v )syntax-error( {} "Invalid character in character class" [ )syntax-error( [ "Unterminated character class" [ u )syntax-error( [ "Unterminated character class" +[ v )syntax-error( [ "Unterminated character class" ] ] ] [{"captures":["]"],"index":0}] ] u )syntax-error( ] "Lone quantifier brackets" +] v )syntax-error( ] "Lone quantifier brackets" [[] [[] [ [{"captures":["["],"index":0}] [[] u "(?:[\\x5B])" [ [{"captures":["["],"index":0}] +[[] v )syntax-error( [ "Unterminated character class" []] "[^\\s\\S]]" ] [] []] u )syntax-error( ] "Lone quantifier brackets" +[]] v )syntax-error( ] "Lone quantifier brackets" \2(x)) )syntax-error( x "Unmatched ')'" \2(x)) u )syntax-error( x "Invalid escape" !ignore-error-message +\2(x)) v )syntax-error( x "Invalid escape" !ignore-error-message \2(x))() )syntax-error( x "Unmatched ')'" \2(x))() u )syntax-error( x "Unmatched ')'" +\2(x))() v )syntax-error( x "Unmatched ')'" # Empty pattern "x\ud83d💩\udca9X" [{"captures":[""],"index":0},{"captures":[""],"index":1},{"captures":[""],"index":2},{"captures":[""],"index":3},{"captures":[""],"index":4},{"captures":[""],"index":5},{"captures":[""],"index":6}] u "x\ud83d💩\udca9X" [{"captures":[""],"index":0},{"captures":[""],"index":1},{"captures":[""],"index":2},{"captures":[""],"index":4},{"captures":[""],"index":5},{"captures":[""],"index":6}] + v )inconvertible( "x\ud83d💩\udca9X" [{"captures":[""],"index":0},{"captures":[""],"index":1},{"captures":[""],"index":2},{"captures":[""],"index":4},{"captures":[""],"index":5},{"captures":[""],"index":6}] # Literal characters x x "x\ud83d💩\udca9X" [{"captures":["x"],"index":0}] x u x "x\ud83d💩\udca9X" [{"captures":["x"],"index":0}] +x v )inconvertible( "x\ud83d💩\udca9X" [{"captures":["x"],"index":0}] x i x "x\ud83d💩\udca9X" [{"captures":["x"],"index":0},{"captures":["X"],"index":5}] x ui x "x\ud83d💩\udca9X" [{"captures":["x"],"index":0},{"captures":["X"],"index":5}] +x vi )inconvertible( "x\ud83d💩\udca9X" [{"captures":["x"],"index":0},{"captures":["X"],"index":5}] X X "x\ud83d💩\udca9X" [{"captures":["X"],"index":5}] X u X "x\ud83d💩\udca9X" [{"captures":["X"],"index":5}] +X v )inconvertible( "x\ud83d💩\udca9X" [{"captures":["X"],"index":5}] X i X "x\ud83d💩\udca9X" [{"captures":["x"],"index":0},{"captures":["X"],"index":5}] X ui X "x\ud83d💩\udca9X" [{"captures":["x"],"index":0},{"captures":["X"],"index":5}] +X vi )inconvertible( "x\ud83d💩\udca9X" [{"captures":["x"],"index":0},{"captures":["X"],"index":5}] \x x "x\ud83d💩\udca9X" [{"captures":["x"],"index":0}] \x u )syntax-error( "x\ud83d💩\udca9X" "Invalid escape" +\x v )syntax-error( "x\ud83d💩\udca9X" "Invalid escape" \x i x "x\ud83d💩\udca9X" [{"captures":["x"],"index":0},{"captures":["X"],"index":5}] \x ui )syntax-error( "x\ud83d💩\udca9X" "Invalid escape" +\x vi )syntax-error( "x\ud83d💩\udca9X" "Invalid escape" \X "\\X" "x\ud83d💩\udca9X" [{"captures":["X"],"index":5}] \X u )syntax-error( "x\ud83d💩\udca9X" "Invalid escape" +\X v )syntax-error( "x\ud83d💩\udca9X" "Invalid escape" \X i "\\X" "x\ud83d💩\udca9X" [{"captures":["x"],"index":0},{"captures":["X"],"index":5}] \X ui )syntax-error( "x\ud83d💩\udca9X" "Invalid escape" +\X vi )syntax-error( "x\ud83d💩\udca9X" "Invalid escape" x* x* "x\ud83d💩\udca9X" [{"captures":["x"],"index":0},{"captures":[""],"index":1},{"captures":[""],"index":2},{"captures":[""],"index":3},{"captures":[""],"index":4},{"captures":[""],"index":5},{"captures":[""],"index":6}] x* u x* "x\ud83d💩\udca9X" [{"captures":["x"],"index":0},{"captures":[""],"index":1},{"captures":[""],"index":2},{"captures":[""],"index":4},{"captures":[""],"index":5},{"captures":[""],"index":6}] +x* v )inconvertible( "x\ud83d💩\udca9X" [{"captures":["x"],"index":0},{"captures":[""],"index":1},{"captures":[""],"index":2},{"captures":[""],"index":4},{"captures":[""],"index":5},{"captures":[""],"index":6}] x* i x* "x\ud83d💩\udca9X" [{"captures":["x"],"index":0},{"captures":[""],"index":1},{"captures":[""],"index":2},{"captures":[""],"index":3},{"captures":[""],"index":4},{"captures":["X"],"index":5},{"captures":[""],"index":6}] x* ui x* "x\ud83d💩\udca9X" [{"captures":["x"],"index":0},{"captures":[""],"index":1},{"captures":[""],"index":2},{"captures":[""],"index":4},{"captures":["X"],"index":5},{"captures":[""],"index":6}] +x* vi )inconvertible( "x\ud83d💩\udca9X" [{"captures":["x"],"index":0},{"captures":[""],"index":1},{"captures":[""],"index":2},{"captures":[""],"index":4},{"captures":["X"],"index":5},{"captures":[""],"index":6}] X* X* "x\ud83d💩\udca9X" [{"captures":[""],"index":0},{"captures":[""],"index":1},{"captures":[""],"index":2},{"captures":[""],"index":3},{"captures":[""],"index":4},{"captures":["X"],"index":5},{"captures":[""],"index":6}] X* u X* "x\ud83d💩\udca9X" [{"captures":[""],"index":0},{"captures":[""],"index":1},{"captures":[""],"index":2},{"captures":[""],"index":4},{"captures":["X"],"index":5},{"captures":[""],"index":6}] +X* v )inconvertible( "x\ud83d💩\udca9X" [{"captures":[""],"index":0},{"captures":[""],"index":1},{"captures":[""],"index":2},{"captures":[""],"index":4},{"captures":["X"],"index":5},{"captures":[""],"index":6}] X* i X* "x\ud83d💩\udca9X" [{"captures":["x"],"index":0},{"captures":[""],"index":1},{"captures":[""],"index":2},{"captures":[""],"index":3},{"captures":[""],"index":4},{"captures":["X"],"index":5},{"captures":[""],"index":6}] X* ui X* "x\ud83d💩\udca9X" [{"captures":["x"],"index":0},{"captures":[""],"index":1},{"captures":[""],"index":2},{"captures":[""],"index":4},{"captures":["X"],"index":5},{"captures":[""],"index":6}] +X* vi )inconvertible( "x\ud83d💩\udca9X" [{"captures":["x"],"index":0},{"captures":[""],"index":1},{"captures":[""],"index":2},{"captures":[""],"index":4},{"captures":["X"],"index":5},{"captures":[""],"index":6}] \x* x* "x\ud83d💩\udca9X" [{"captures":["x"],"index":0},{"captures":[""],"index":1},{"captures":[""],"index":2},{"captures":[""],"index":3},{"captures":[""],"index":4},{"captures":[""],"index":5},{"captures":[""],"index":6}] \x* u )syntax-error( "x\ud83d💩\udca9X" "Invalid escape" +\x* v )syntax-error( "x\ud83d💩\udca9X" "Invalid escape" \x* i x* "x\ud83d💩\udca9X" [{"captures":["x"],"index":0},{"captures":[""],"index":1},{"captures":[""],"index":2},{"captures":[""],"index":3},{"captures":[""],"index":4},{"captures":["X"],"index":5},{"captures":[""],"index":6}] \x* ui )syntax-error( "x\ud83d💩\udca9X" "Invalid escape" +\x* vi )syntax-error( "x\ud83d💩\udca9X" "Invalid escape" \X* "\\X*" "x\ud83d💩\udca9X" [{"captures":[""],"index":0},{"captures":[""],"index":1},{"captures":[""],"index":2},{"captures":[""],"index":3},{"captures":[""],"index":4},{"captures":["X"],"index":5},{"captures":[""],"index":6}] \X* u )syntax-error( "x\ud83d💩\udca9X" "Invalid escape" +\X* v )syntax-error( "x\ud83d💩\udca9X" "Invalid escape" \X* i "\\X*" "x\ud83d💩\udca9X" [{"captures":["x"],"index":0},{"captures":[""],"index":1},{"captures":[""],"index":2},{"captures":[""],"index":3},{"captures":[""],"index":4},{"captures":["X"],"index":5},{"captures":[""],"index":6}] \X* ui )syntax-error( "x\ud83d💩\udca9X" "Invalid escape" +\X* vi )syntax-error( "x\ud83d💩\udca9X" "Invalid escape" [x] [x] "x\ud83d💩\udca9X" [{"captures":["x"],"index":0}] [x] u "(?:[\\x78])" "x\ud83d💩\udca9X" [{"captures":["x"],"index":0}] +[x] v )inconvertible( "x\ud83d💩\udca9X" [{"captures":["x"],"index":0}] [x] i [x] "x\ud83d💩\udca9X" [{"captures":["x"],"index":0},{"captures":["X"],"index":5}] [x] ui "(?:[\\x78])" "x\ud83d💩\udca9X" [{"captures":["x"],"index":0},{"captures":["X"],"index":5}] +[x] vi )inconvertible( "x\ud83d💩\udca9X" [{"captures":["x"],"index":0},{"captures":["X"],"index":5}] [X] [X] "x\ud83d💩\udca9X" [{"captures":["X"],"index":5}] [X] u "(?:[\\x58])" "x\ud83d💩\udca9X" [{"captures":["X"],"index":5}] +[X] v )inconvertible( "x\ud83d💩\udca9X" [{"captures":["X"],"index":5}] [X] i [X] "x\ud83d💩\udca9X" [{"captures":["x"],"index":0},{"captures":["X"],"index":5}] [X] ui "(?:[\\x58])" "x\ud83d💩\udca9X" [{"captures":["x"],"index":0},{"captures":["X"],"index":5}] +[X] vi )inconvertible( "x\ud83d💩\udca9X" [{"captures":["x"],"index":0},{"captures":["X"],"index":5}] [\x] [x] "x\ud83d💩\udca9X" [{"captures":["x"],"index":0}] [\x] u )syntax-error( "x\ud83d💩\udca9X" "Invalid escape" +[\x] v )syntax-error( "x\ud83d💩\udca9X" "Invalid escape" [\x] i [x] "x\ud83d💩\udca9X" [{"captures":["x"],"index":0},{"captures":["X"],"index":5}] [\x] ui )syntax-error( "x\ud83d💩\udca9X" "Invalid escape" +[\x] vi )syntax-error( "x\ud83d💩\udca9X" "Invalid escape" [\X] "[\\X]" "x\ud83d💩\udca9X" [{"captures":["X"],"index":5}] [\X] u )syntax-error( "x\ud83d💩\udca9X" "Invalid escape" +[\X] v )syntax-error( "x\ud83d💩\udca9X" "Invalid escape" [\X] i "[\\X]" "x\ud83d💩\udca9X" [{"captures":["x"],"index":0},{"captures":["X"],"index":5}] [\X] ui )syntax-error( "x\ud83d💩\udca9X" "Invalid escape" +[\X] vi )syntax-error( "x\ud83d💩\udca9X" "Invalid escape" [^x] [^x] "x\ud83d💩\udca9X" [{"captures":["\ud83d"],"index":1},{"captures":["\ud83d"],"index":2},{"captures":["\udca9"],"index":3},{"captures":["\udca9"],"index":4},{"captures":["X"],"index":5}] [^x] u "(?:[\ud800-\udbff][\udc00-\udfff]|[\ud800-\udbff](?![\udc00-\udfff])|(? "<[^\n\r\u2028\u2029]+?>"
[{"captures":["
"],"index":0},{"captures":["
"],"index":5}] <.+?> u "<(?:[\ud800-\udbff][\udc00-\udfff]|[\ud800-\udbff](?![\udc00-\udfff])|(?"
[{"captures":["
"],"index":0},{"captures":["
"],"index":5}] +<.+?> v )inconvertible(
[{"captures":["
"],"index":0},{"captures":["
"],"index":5}] victor jagt zwölf boxkämpfer quer über den großen sylter deich i victor jagt zwölf boxkämpfer quer über den großen sylter deich VICTOR JAGT ZWÖLF BOXKÄMPFER QUER ÜBER DEN GROßEN SYLTER DEICH [{"captures":["VICTOR JAGT ZWÖLF BOXKÄMPFER QUER ÜBER DEN GROßEN SYLTER DEICH"],"index":0}] victor jagt zwölf boxkämpfer quer über den großen sylter deich ui victor jagt zwölf boxkämpfer quer über den großen sylter deich VICTOR JAGT ZWÖLF BOXKÄMPFER QUER ÜBER DEN GROßEN SYLTER DEICH [{"captures":["VICTOR JAGT ZWÖLF BOXKÄMPFER QUER ÜBER DEN GROßEN SYLTER DEICH"],"index":0}] +victor jagt zwölf boxkämpfer quer über den großen sylter deich vi )inconvertible( VICTOR JAGT ZWÖLF BOXKÄMPFER QUER ÜBER DEN GROßEN SYLTER DEICH [{"captures":["VICTOR JAGT ZWÖLF BOXKÄMPFER QUER ÜBER DEN GROßEN SYLTER DEICH"],"index":0}] VICTOR JAGT ZWÖLF BOXKÄMPFER QUER ÜBER DEN GROßEN SYLTER DEICH i VICTOR JAGT ZWÖLF BOXKÄMPFER QUER ÜBER DEN GROßEN SYLTER DEICH victor jagt zwölf boxkämpfer quer über den großen sylter deich [{"captures":["victor jagt zwölf boxkämpfer quer über den großen sylter deich"],"index":0}] VICTOR JAGT ZWÖLF BOXKÄMPFER QUER ÜBER DEN GROßEN SYLTER DEICH ui VICTOR JAGT ZWÖLF BOXKÄMPFER QUER ÜBER DEN GROßEN SYLTER DEICH victor jagt zwölf boxkämpfer quer über den großen sylter deich [{"captures":["victor jagt zwölf boxkämpfer quer über den großen sylter deich"],"index":0}] +VICTOR JAGT ZWÖLF BOXKÄMPFER QUER ÜBER DEN GROßEN SYLTER DEICH vi )inconvertible( victor jagt zwölf boxkämpfer quer über den großen sylter deich [{"captures":["victor jagt zwölf boxkämpfer quer über den großen sylter deich"],"index":0}] høj bly gom vandt fræk sexquiz på wc i høj bly gom vandt fræk sexquiz på wc HØJ BLY GOM VANDT FRÆK SEXQUIZ PÅ WC [{"captures":["HØJ BLY GOM VANDT FRÆK SEXQUIZ PÅ WC"],"index":0}] høj bly gom vandt fræk sexquiz på wc ui høj bly gom vandt fræk sexquiz på wc HØJ BLY GOM VANDT FRÆK SEXQUIZ PÅ WC [{"captures":["HØJ BLY GOM VANDT FRÆK SEXQUIZ PÅ WC"],"index":0}] +høj bly gom vandt fræk sexquiz på wc vi )inconvertible( HØJ BLY GOM VANDT FRÆK SEXQUIZ PÅ WC [{"captures":["HØJ BLY GOM VANDT FRÆK SEXQUIZ PÅ WC"],"index":0}] HØJ BLY GOM VANDT FRÆK SEXQUIZ PÅ WC i HØJ BLY GOM VANDT FRÆK SEXQUIZ PÅ WC høj bly gom vandt fræk sexquiz på wc [{"captures":["høj bly gom vandt fræk sexquiz på wc"],"index":0}] HØJ BLY GOM VANDT FRÆK SEXQUIZ PÅ WC ui HØJ BLY GOM VANDT FRÆK SEXQUIZ PÅ WC høj bly gom vandt fræk sexquiz på wc [{"captures":["høj bly gom vandt fræk sexquiz på wc"],"index":0}] +HØJ BLY GOM VANDT FRÆK SEXQUIZ PÅ WC vi )inconvertible( høj bly gom vandt fræk sexquiz på wc [{"captures":["høj bly gom vandt fræk sexquiz på wc"],"index":0}] törkylempijävongahdus i törkylempijävongahdus TÖRKYLEMPIJÄVONGAHDUS [{"captures":["TÖRKYLEMPIJÄVONGAHDUS"],"index":0}] törkylempijävongahdus ui törkylempijävongahdus TÖRKYLEMPIJÄVONGAHDUS [{"captures":["TÖRKYLEMPIJÄVONGAHDUS"],"index":0}] +törkylempijävongahdus vi )inconvertible( TÖRKYLEMPIJÄVONGAHDUS [{"captures":["TÖRKYLEMPIJÄVONGAHDUS"],"index":0}] TÖRKYLEMPIJÄVONGAHDUS i TÖRKYLEMPIJÄVONGAHDUS törkylempijävongahdus [{"captures":["törkylempijävongahdus"],"index":0}] TÖRKYLEMPIJÄVONGAHDUS ui TÖRKYLEMPIJÄVONGAHDUS törkylempijävongahdus [{"captures":["törkylempijävongahdus"],"index":0}] +TÖRKYLEMPIJÄVONGAHDUS vi )inconvertible( törkylempijävongahdus [{"captures":["törkylempijävongahdus"],"index":0}] kæmi ný öxi hér, ykist þjófum nú bæði víl og ádrepa i kæmi ný öxi hér, ykist þjófum nú bæði víl og ádrepa KÆMI NÝ ÖXI HÉR, YKIST ÞJÓFUM NÚ BÆÐI VÍL OG ÁDREPA [{"captures":["KÆMI NÝ ÖXI HÉR, YKIST ÞJÓFUM NÚ BÆÐI VÍL OG ÁDREPA"],"index":0}] kæmi ný öxi hér, ykist þjófum nú bæði víl og ádrepa ui kæmi ný öxi hér, ykist þjófum nú bæði víl og ádrepa KÆMI NÝ ÖXI HÉR, YKIST ÞJÓFUM NÚ BÆÐI VÍL OG ÁDREPA [{"captures":["KÆMI NÝ ÖXI HÉR, YKIST ÞJÓFUM NÚ BÆÐI VÍL OG ÁDREPA"],"index":0}] +kæmi ný öxi hér, ykist þjófum nú bæði víl og ádrepa vi )inconvertible( KÆMI NÝ ÖXI HÉR, YKIST ÞJÓFUM NÚ BÆÐI VÍL OG ÁDREPA [{"captures":["KÆMI NÝ ÖXI HÉR, YKIST ÞJÓFUM NÚ BÆÐI VÍL OG ÁDREPA"],"index":0}] KÆMI NÝ ÖXI HÉR, YKIST ÞJÓFUM NÚ BÆÐI VÍL OG ÁDREPA i KÆMI NÝ ÖXI HÉR, YKIST ÞJÓFUM NÚ BÆÐI VÍL OG ÁDREPA kæmi ný öxi hér, ykist þjófum nú bæði víl og ádrepa [{"captures":["kæmi ný öxi hér, ykist þjófum nú bæði víl og ádrepa"],"index":0}] KÆMI NÝ ÖXI HÉR, YKIST ÞJÓFUM NÚ BÆÐI VÍL OG ÁDREPA ui KÆMI NÝ ÖXI HÉR, YKIST ÞJÓFUM NÚ BÆÐI VÍL OG ÁDREPA kæmi ný öxi hér, ykist þjófum nú bæði víl og ádrepa [{"captures":["kæmi ný öxi hér, ykist þjófum nú bæði víl og ádrepa"],"index":0}] +KÆMI NÝ ÖXI HÉR, YKIST ÞJÓFUM NÚ BÆÐI VÍL OG ÁDREPA vi )inconvertible( kæmi ný öxi hér, ykist þjófum nú bæði víl og ádrepa [{"captures":["kæmi ný öxi hér, ykist þjófum nú bæði víl og ádrepa"],"index":0}] flygande bäckasiner söka hwila på mjuka tuvor i flygande bäckasiner söka hwila på mjuka tuvor FLYGANDE BÄCKASINER SÖKA HWILA PÅ MJUKA TUVOR [{"captures":["FLYGANDE BÄCKASINER SÖKA HWILA PÅ MJUKA TUVOR"],"index":0}] flygande bäckasiner söka hwila på mjuka tuvor ui flygande bäckasiner söka hwila på mjuka tuvor FLYGANDE BÄCKASINER SÖKA HWILA PÅ MJUKA TUVOR [{"captures":["FLYGANDE BÄCKASINER SÖKA HWILA PÅ MJUKA TUVOR"],"index":0}] +flygande bäckasiner söka hwila på mjuka tuvor vi )inconvertible( FLYGANDE BÄCKASINER SÖKA HWILA PÅ MJUKA TUVOR [{"captures":["FLYGANDE BÄCKASINER SÖKA HWILA PÅ MJUKA TUVOR"],"index":0}] FLYGANDE BÄCKASINER SÖKA HWILA PÅ MJUKA TUVOR i FLYGANDE BÄCKASINER SÖKA HWILA PÅ MJUKA TUVOR flygande bäckasiner söka hwila på mjuka tuvor [{"captures":["flygande bäckasiner söka hwila på mjuka tuvor"],"index":0}] FLYGANDE BÄCKASINER SÖKA HWILA PÅ MJUKA TUVOR ui FLYGANDE BÄCKASINER SÖKA HWILA PÅ MJUKA TUVOR flygande bäckasiner söka hwila på mjuka tuvor [{"captures":["flygande bäckasiner söka hwila på mjuka tuvor"],"index":0}] +FLYGANDE BÄCKASINER SÖKA HWILA PÅ MJUKA TUVOR vi )inconvertible( flygande bäckasiner söka hwila på mjuka tuvor [{"captures":["flygande bäckasiner söka hwila på mjuka tuvor"],"index":0}] à noite, vovô kowalsky vê o ímã cair no pé do pingüim queixoso e vovó põe açúcar no chá de tâmaras do jabuti feliz i à noite, vovô kowalsky vê o ímã cair no pé do pingüim queixoso e vovó põe açúcar no chá de tâmaras do jabuti feliz À NOITE, VOVÔ KOWALSKY VÊ O ÍMà CAIR NO PÉ DO PINGÜIM QUEIXOSO E VOVÓ PÕE AÇÚCAR NO CHÁ DE TÂMARAS DO JABUTI FELIZ [{"captures":["À NOITE, VOVÔ KOWALSKY VÊ O ÍMà CAIR NO PÉ DO PINGÜIM QUEIXOSO E VOVÓ PÕE AÇÚCAR NO CHÁ DE TÂMARAS DO JABUTI FELIZ"],"index":0}] à noite, vovô kowalsky vê o ímã cair no pé do pingüim queixoso e vovó põe açúcar no chá de tâmaras do jabuti feliz ui à noite, vovô kowalsky vê o ímã cair no pé do pingüim queixoso e vovó põe açúcar no chá de tâmaras do jabuti feliz À NOITE, VOVÔ KOWALSKY VÊ O ÍMà CAIR NO PÉ DO PINGÜIM QUEIXOSO E VOVÓ PÕE AÇÚCAR NO CHÁ DE TÂMARAS DO JABUTI FELIZ [{"captures":["À NOITE, VOVÔ KOWALSKY VÊ O ÍMà CAIR NO PÉ DO PINGÜIM QUEIXOSO E VOVÓ PÕE AÇÚCAR NO CHÁ DE TÂMARAS DO JABUTI FELIZ"],"index":0}] +à noite, vovô kowalsky vê o ímã cair no pé do pingüim queixoso e vovó põe açúcar no chá de tâmaras do jabuti feliz vi )inconvertible( À NOITE, VOVÔ KOWALSKY VÊ O ÍMà CAIR NO PÉ DO PINGÜIM QUEIXOSO E VOVÓ PÕE AÇÚCAR NO CHÁ DE TÂMARAS DO JABUTI FELIZ [{"captures":["À NOITE, VOVÔ KOWALSKY VÊ O ÍMà CAIR NO PÉ DO PINGÜIM QUEIXOSO E VOVÓ PÕE AÇÚCAR NO CHÁ DE TÂMARAS DO JABUTI FELIZ"],"index":0}] À NOITE, VOVÔ KOWALSKY VÊ O ÍMà CAIR NO PÉ DO PINGÜIM QUEIXOSO E VOVÓ PÕE AÇÚCAR NO CHÁ DE TÂMARAS DO JABUTI FELIZ i À NOITE, VOVÔ KOWALSKY VÊ O ÍMà CAIR NO PÉ DO PINGÜIM QUEIXOSO E VOVÓ PÕE AÇÚCAR NO CHÁ DE TÂMARAS DO JABUTI FELIZ à noite, vovô kowalsky vê o ímã cair no pé do pingüim queixoso e vovó põe açúcar no chá de tâmaras do jabuti feliz [{"captures":["à noite, vovô kowalsky vê o ímã cair no pé do pingüim queixoso e vovó põe açúcar no chá de tâmaras do jabuti feliz"],"index":0}] À NOITE, VOVÔ KOWALSKY VÊ O ÍMà CAIR NO PÉ DO PINGÜIM QUEIXOSO E VOVÓ PÕE AÇÚCAR NO CHÁ DE TÂMARAS DO JABUTI FELIZ ui À NOITE, VOVÔ KOWALSKY VÊ O ÍMà CAIR NO PÉ DO PINGÜIM QUEIXOSO E VOVÓ PÕE AÇÚCAR NO CHÁ DE TÂMARAS DO JABUTI FELIZ à noite, vovô kowalsky vê o ímã cair no pé do pingüim queixoso e vovó põe açúcar no chá de tâmaras do jabuti feliz [{"captures":["à noite, vovô kowalsky vê o ímã cair no pé do pingüim queixoso e vovó põe açúcar no chá de tâmaras do jabuti feliz"],"index":0}] +À NOITE, VOVÔ KOWALSKY VÊ O ÍMà CAIR NO PÉ DO PINGÜIM QUEIXOSO E VOVÓ PÕE AÇÚCAR NO CHÁ DE TÂMARAS DO JABUTI FELIZ vi )inconvertible( à noite, vovô kowalsky vê o ímã cair no pé do pingüim queixoso e vovó põe açúcar no chá de tâmaras do jabuti feliz [{"captures":["à noite, vovô kowalsky vê o ímã cair no pé do pingüim queixoso e vovó põe açúcar no chá de tâmaras do jabuti feliz"],"index":0}] benjamín pidió una bebida de kiwi y fresa noé, sin vergüenza, la más exquisita champaña del menú i benjamín pidió una bebida de kiwi y fresa noé, sin vergüenza, la más exquisita champaña del menú BENJAMÍN PIDIÓ UNA BEBIDA DE KIWI Y FRESA NOÉ, SIN VERGÜENZA, LA MÁS EXQUISITA CHAMPAÑA DEL MENÚ [{"captures":["BENJAMÍN PIDIÓ UNA BEBIDA DE KIWI Y FRESA NOÉ, SIN VERGÜENZA, LA MÁS EXQUISITA CHAMPAÑA DEL MENÚ"],"index":0}] benjamín pidió una bebida de kiwi y fresa noé, sin vergüenza, la más exquisita champaña del menú ui benjamín pidió una bebida de kiwi y fresa noé, sin vergüenza, la más exquisita champaña del menú BENJAMÍN PIDIÓ UNA BEBIDA DE KIWI Y FRESA NOÉ, SIN VERGÜENZA, LA MÁS EXQUISITA CHAMPAÑA DEL MENÚ [{"captures":["BENJAMÍN PIDIÓ UNA BEBIDA DE KIWI Y FRESA NOÉ, SIN VERGÜENZA, LA MÁS EXQUISITA CHAMPAÑA DEL MENÚ"],"index":0}] +benjamín pidió una bebida de kiwi y fresa noé, sin vergüenza, la más exquisita champaña del menú vi )inconvertible( BENJAMÍN PIDIÓ UNA BEBIDA DE KIWI Y FRESA NOÉ, SIN VERGÜENZA, LA MÁS EXQUISITA CHAMPAÑA DEL MENÚ [{"captures":["BENJAMÍN PIDIÓ UNA BEBIDA DE KIWI Y FRESA NOÉ, SIN VERGÜENZA, LA MÁS EXQUISITA CHAMPAÑA DEL MENÚ"],"index":0}] BENJAMÍN PIDIÓ UNA BEBIDA DE KIWI Y FRESA NOÉ, SIN VERGÜENZA, LA MÁS EXQUISITA CHAMPAÑA DEL MENÚ i BENJAMÍN PIDIÓ UNA BEBIDA DE KIWI Y FRESA NOÉ, SIN VERGÜENZA, LA MÁS EXQUISITA CHAMPAÑA DEL MENÚ benjamín pidió una bebida de kiwi y fresa noé, sin vergüenza, la más exquisita champaña del menú [{"captures":["benjamín pidió una bebida de kiwi y fresa noé, sin vergüenza, la más exquisita champaña del menú"],"index":0}] BENJAMÍN PIDIÓ UNA BEBIDA DE KIWI Y FRESA NOÉ, SIN VERGÜENZA, LA MÁS EXQUISITA CHAMPAÑA DEL MENÚ ui BENJAMÍN PIDIÓ UNA BEBIDA DE KIWI Y FRESA NOÉ, SIN VERGÜENZA, LA MÁS EXQUISITA CHAMPAÑA DEL MENÚ benjamín pidió una bebida de kiwi y fresa noé, sin vergüenza, la más exquisita champaña del menú [{"captures":["benjamín pidió una bebida de kiwi y fresa noé, sin vergüenza, la más exquisita champaña del menú"],"index":0}] +BENJAMÍN PIDIÓ UNA BEBIDA DE KIWI Y FRESA NOÉ, SIN VERGÜENZA, LA MÁS EXQUISITA CHAMPAÑA DEL MENÚ vi )inconvertible( benjamín pidió una bebida de kiwi y fresa noé, sin vergüenza, la más exquisita champaña del menú [{"captures":["benjamín pidió una bebida de kiwi y fresa noé, sin vergüenza, la más exquisita champaña del menú"],"index":0}] příliš žluťoučký kůň úpěl ďábelské ódy i příliš žluťoučký kůň úpěl ďábelské ódy PŘÍLIŠ ŽLUŤOUČKÝ KŮŇ ÚPĚL ĎÁBELSKÉ ÓDY [{"captures":["PŘÍLIŠ ŽLUŤOUČKÝ KŮŇ ÚPĚL ĎÁBELSKÉ ÓDY"],"index":0}] příliš žluťoučký kůň úpěl ďábelské ódy ui příliš žluťoučký kůň úpěl ďábelské ódy PŘÍLIŠ ŽLUŤOUČKÝ KŮŇ ÚPĚL ĎÁBELSKÉ ÓDY [{"captures":["PŘÍLIŠ ŽLUŤOUČKÝ KŮŇ ÚPĚL ĎÁBELSKÉ ÓDY"],"index":0}] +příliš žluťoučký kůň úpěl ďábelské ódy vi )inconvertible( PŘÍLIŠ ŽLUŤOUČKÝ KŮŇ ÚPĚL ĎÁBELSKÉ ÓDY [{"captures":["PŘÍLIŠ ŽLUŤOUČKÝ KŮŇ ÚPĚL ĎÁBELSKÉ ÓDY"],"index":0}] PŘÍLIŠ ŽLUŤOUČKÝ KŮŇ ÚPĚL ĎÁBELSKÉ ÓDY i PŘÍLIŠ ŽLUŤOUČKÝ KŮŇ ÚPĚL ĎÁBELSKÉ ÓDY příliš žluťoučký kůň úpěl ďábelské ódy [{"captures":["příliš žluťoučký kůň úpěl ďábelské ódy"],"index":0}] PŘÍLIŠ ŽLUŤOUČKÝ KŮŇ ÚPĚL ĎÁBELSKÉ ÓDY ui PŘÍLIŠ ŽLUŤOUČKÝ KŮŇ ÚPĚL ĎÁBELSKÉ ÓDY příliš žluťoučký kůň úpěl ďábelské ódy [{"captures":["příliš žluťoučký kůň úpěl ďábelské ódy"],"index":0}] +PŘÍLIŠ ŽLUŤOUČKÝ KŮŇ ÚPĚL ĎÁBELSKÉ ÓDY vi )inconvertible( příliš žluťoučký kůň úpěl ďábelské ódy [{"captures":["příliš žluťoučký kůň úpěl ďábelské ódy"],"index":0}] kŕdeľ šťastných ďatľov učí pri ústí váhu mĺkveho koňa obhrýzať kôru a žrať čerstvé mäso i kŕdeľ šťastných ďatľov učí pri ústí váhu mĺkveho koňa obhrýzať kôru a žrať čerstvé mäso KŔDEĽ ŠŤASTNÝCH ĎATĽOV UČÍ PRI ÚSTÍ VÁHU MĹKVEHO KOŇA OBHRÝZAŤ KÔRU A ŽRAŤ ČERSTVÉ MÄSO [{"captures":["KŔDEĽ ŠŤASTNÝCH ĎATĽOV UČÍ PRI ÚSTÍ VÁHU MĹKVEHO KOŇA OBHRÝZAŤ KÔRU A ŽRAŤ ČERSTVÉ MÄSO"],"index":0}] kŕdeľ šťastných ďatľov učí pri ústí váhu mĺkveho koňa obhrýzať kôru a žrať čerstvé mäso ui kŕdeľ šťastných ďatľov učí pri ústí váhu mĺkveho koňa obhrýzať kôru a žrať čerstvé mäso KŔDEĽ ŠŤASTNÝCH ĎATĽOV UČÍ PRI ÚSTÍ VÁHU MĹKVEHO KOŇA OBHRÝZAŤ KÔRU A ŽRAŤ ČERSTVÉ MÄSO [{"captures":["KŔDEĽ ŠŤASTNÝCH ĎATĽOV UČÍ PRI ÚSTÍ VÁHU MĹKVEHO KOŇA OBHRÝZAŤ KÔRU A ŽRAŤ ČERSTVÉ MÄSO"],"index":0}] +kŕdeľ šťastných ďatľov učí pri ústí váhu mĺkveho koňa obhrýzať kôru a žrať čerstvé mäso vi )inconvertible( KŔDEĽ ŠŤASTNÝCH ĎATĽOV UČÍ PRI ÚSTÍ VÁHU MĹKVEHO KOŇA OBHRÝZAŤ KÔRU A ŽRAŤ ČERSTVÉ MÄSO [{"captures":["KŔDEĽ ŠŤASTNÝCH ĎATĽOV UČÍ PRI ÚSTÍ VÁHU MĹKVEHO KOŇA OBHRÝZAŤ KÔRU A ŽRAŤ ČERSTVÉ MÄSO"],"index":0}] KŔDEĽ ŠŤASTNÝCH ĎATĽOV UČÍ PRI ÚSTÍ VÁHU MĹKVEHO KOŇA OBHRÝZAŤ KÔRU A ŽRAŤ ČERSTVÉ MÄSO i KŔDEĽ ŠŤASTNÝCH ĎATĽOV UČÍ PRI ÚSTÍ VÁHU MĹKVEHO KOŇA OBHRÝZAŤ KÔRU A ŽRAŤ ČERSTVÉ MÄSO kŕdeľ šťastných ďatľov učí pri ústí váhu mĺkveho koňa obhrýzať kôru a žrať čerstvé mäso [{"captures":["kŕdeľ šťastných ďatľov učí pri ústí váhu mĺkveho koňa obhrýzať kôru a žrať čerstvé mäso"],"index":0}] KŔDEĽ ŠŤASTNÝCH ĎATĽOV UČÍ PRI ÚSTÍ VÁHU MĹKVEHO KOŇA OBHRÝZAŤ KÔRU A ŽRAŤ ČERSTVÉ MÄSO ui KŔDEĽ ŠŤASTNÝCH ĎATĽOV UČÍ PRI ÚSTÍ VÁHU MĹKVEHO KOŇA OBHRÝZAŤ KÔRU A ŽRAŤ ČERSTVÉ MÄSO kŕdeľ šťastných ďatľov učí pri ústí váhu mĺkveho koňa obhrýzať kôru a žrať čerstvé mäso [{"captures":["kŕdeľ šťastných ďatľov učí pri ústí váhu mĺkveho koňa obhrýzať kôru a žrať čerstvé mäso"],"index":0}] +KŔDEĽ ŠŤASTNÝCH ĎATĽOV UČÍ PRI ÚSTÍ VÁHU MĹKVEHO KOŇA OBHRÝZAŤ KÔRU A ŽRAŤ ČERSTVÉ MÄSO vi )inconvertible( kŕdeľ šťastných ďatľov učí pri ústí váhu mĺkveho koňa obhrýzať kôru a žrať čerstvé mäso [{"captures":["kŕdeľ šťastných ďatľov učí pri ústí váhu mĺkveho koňa obhrýzať kôru a žrať čerstvé mäso"],"index":0}] stróż pchnął kość w quiz gędźb vel fax myjń i stróż pchnął kość w quiz gędźb vel fax myjń STRÓŻ PCHNĄŁ KOŚĆ W QUIZ GĘDŹB VEL FAX MYJŃ [{"captures":["STRÓŻ PCHNĄŁ KOŚĆ W QUIZ GĘDŹB VEL FAX MYJŃ"],"index":0}] stróż pchnął kość w quiz gędźb vel fax myjń ui stróż pchnął kość w quiz gędźb vel fax myjń STRÓŻ PCHNĄŁ KOŚĆ W QUIZ GĘDŹB VEL FAX MYJŃ [{"captures":["STRÓŻ PCHNĄŁ KOŚĆ W QUIZ GĘDŹB VEL FAX MYJŃ"],"index":0}] +stróż pchnął kość w quiz gędźb vel fax myjń vi )inconvertible( STRÓŻ PCHNĄŁ KOŚĆ W QUIZ GĘDŹB VEL FAX MYJŃ [{"captures":["STRÓŻ PCHNĄŁ KOŚĆ W QUIZ GĘDŹB VEL FAX MYJŃ"],"index":0}] STRÓŻ PCHNĄŁ KOŚĆ W QUIZ GĘDŹB VEL FAX MYJŃ i STRÓŻ PCHNĄŁ KOŚĆ W QUIZ GĘDŹB VEL FAX MYJŃ stróż pchnął kość w quiz gędźb vel fax myjń [{"captures":["stróż pchnął kość w quiz gędźb vel fax myjń"],"index":0}] STRÓŻ PCHNĄŁ KOŚĆ W QUIZ GĘDŹB VEL FAX MYJŃ ui STRÓŻ PCHNĄŁ KOŚĆ W QUIZ GĘDŹB VEL FAX MYJŃ stróż pchnął kość w quiz gędźb vel fax myjń [{"captures":["stróż pchnął kość w quiz gędźb vel fax myjń"],"index":0}] +STRÓŻ PCHNĄŁ KOŚĆ W QUIZ GĘDŹB VEL FAX MYJŃ vi )inconvertible( stróż pchnął kość w quiz gędźb vel fax myjń [{"captures":["stróż pchnął kość w quiz gędźb vel fax myjń"],"index":0}] árvíztűrő tükörfúrógép i árvíztűrő tükörfúrógép ÁRVÍZTŰRŐ TÜKÖRFÚRÓGÉP [{"captures":["ÁRVÍZTŰRŐ TÜKÖRFÚRÓGÉP"],"index":0}] árvíztűrő tükörfúrógép ui árvíztűrő tükörfúrógép ÁRVÍZTŰRŐ TÜKÖRFÚRÓGÉP [{"captures":["ÁRVÍZTŰRŐ TÜKÖRFÚRÓGÉP"],"index":0}] +árvíztűrő tükörfúrógép vi )inconvertible( ÁRVÍZTŰRŐ TÜKÖRFÚRÓGÉP [{"captures":["ÁRVÍZTŰRŐ TÜKÖRFÚRÓGÉP"],"index":0}] ÁRVÍZTŰRŐ TÜKÖRFÚRÓGÉP i ÁRVÍZTŰRŐ TÜKÖRFÚRÓGÉP árvíztűrő tükörfúrógép [{"captures":["árvíztűrő tükörfúrógép"],"index":0}] ÁRVÍZTŰRŐ TÜKÖRFÚRÓGÉP ui ÁRVÍZTŰRŐ TÜKÖRFÚRÓGÉP árvíztűrő tükörfúrógép [{"captures":["árvíztűrő tükörfúrógép"],"index":0}] +ÁRVÍZTŰRŐ TÜKÖRFÚRÓGÉP vi )inconvertible( árvíztűrő tükörfúrógép [{"captures":["árvíztűrő tükörfúrógép"],"index":0}] zəfər, jaketini də papağını da götür, bu axşam hava çox soyuq olacaq i zəfər, jaketini də papağını da götür, bu axşam hava çox soyuq olacaq ZƏFƏR, JAKETINI DƏ PAPAĞıNı DA GÖTÜR, BU AXŞAM HAVA ÇOX SOYUQ OLACAQ [{"captures":["ZƏFƏR, JAKETINI DƏ PAPAĞıNı DA GÖTÜR, BU AXŞAM HAVA ÇOX SOYUQ OLACAQ"],"index":0}] zəfər, jaketini də papağını da götür, bu axşam hava çox soyuq olacaq ui zəfər, jaketini də papağını da götür, bu axşam hava çox soyuq olacaq ZƏFƏR, JAKETINI DƏ PAPAĞıNı DA GÖTÜR, BU AXŞAM HAVA ÇOX SOYUQ OLACAQ [{"captures":["ZƏFƏR, JAKETINI DƏ PAPAĞıNı DA GÖTÜR, BU AXŞAM HAVA ÇOX SOYUQ OLACAQ"],"index":0}] +zəfər, jaketini də papağını da götür, bu axşam hava çox soyuq olacaq vi )inconvertible( ZƏFƏR, JAKETINI DƏ PAPAĞıNı DA GÖTÜR, BU AXŞAM HAVA ÇOX SOYUQ OLACAQ [{"captures":["ZƏFƏR, JAKETINI DƏ PAPAĞıNı DA GÖTÜR, BU AXŞAM HAVA ÇOX SOYUQ OLACAQ"],"index":0}] ZƏFƏR, JAKETINI DƏ PAPAĞıNı DA GÖTÜR, BU AXŞAM HAVA ÇOX SOYUQ OLACAQ i ZƏFƏR, JAKETINI DƏ PAPAĞıNı DA GÖTÜR, BU AXŞAM HAVA ÇOX SOYUQ OLACAQ zəfər, jaketini də papağını da götür, bu axşam hava çox soyuq olacaq [{"captures":["zəfər, jaketini də papağını da götür, bu axşam hava çox soyuq olacaq"],"index":0}] ZƏFƏR, JAKETINI DƏ PAPAĞıNı DA GÖTÜR, BU AXŞAM HAVA ÇOX SOYUQ OLACAQ ui ZƏFƏR, JAKETINI DƏ PAPAĞıNı DA GÖTÜR, BU AXŞAM HAVA ÇOX SOYUQ OLACAQ zəfər, jaketini də papağını da götür, bu axşam hava çox soyuq olacaq [{"captures":["zəfər, jaketini də papağını da götür, bu axşam hava çox soyuq olacaq"],"index":0}] +ZƏFƏR, JAKETINI DƏ PAPAĞıNı DA GÖTÜR, BU AXŞAM HAVA ÇOX SOYUQ OLACAQ vi )inconvertible( zəfər, jaketini də papağını da götür, bu axşam hava çox soyuq olacaq [{"captures":["zəfər, jaketini də papağını da götür, bu axşam hava çox soyuq olacaq"],"index":0}] cem vî feqoyê pîs zêdetir ji çar gulên xweşik hebûn i cem vî feqoyê pîs zêdetir ji çar gulên xweşik hebûn CEM VÎ FEQOYÊ PÎS ZÊDETIR JI ÇAR GULÊN XWEŞIK HEBÛN [{"captures":["CEM VÎ FEQOYÊ PÎS ZÊDETIR JI ÇAR GULÊN XWEŞIK HEBÛN"],"index":0}] cem vî feqoyê pîs zêdetir ji çar gulên xweşik hebûn ui cem vî feqoyê pîs zêdetir ji çar gulên xweşik hebûn CEM VÎ FEQOYÊ PÎS ZÊDETIR JI ÇAR GULÊN XWEŞIK HEBÛN [{"captures":["CEM VÎ FEQOYÊ PÎS ZÊDETIR JI ÇAR GULÊN XWEŞIK HEBÛN"],"index":0}] +cem vî feqoyê pîs zêdetir ji çar gulên xweşik hebûn vi )inconvertible( CEM VÎ FEQOYÊ PÎS ZÊDETIR JI ÇAR GULÊN XWEŞIK HEBÛN [{"captures":["CEM VÎ FEQOYÊ PÎS ZÊDETIR JI ÇAR GULÊN XWEŞIK HEBÛN"],"index":0}] CEM VÎ FEQOYÊ PÎS ZÊDETIR JI ÇAR GULÊN XWEŞIK HEBÛN i CEM VÎ FEQOYÊ PÎS ZÊDETIR JI ÇAR GULÊN XWEŞIK HEBÛN cem vî feqoyê pîs zêdetir ji çar gulên xweşik hebûn [{"captures":["cem vî feqoyê pîs zêdetir ji çar gulên xweşik hebûn"],"index":0}] CEM VÎ FEQOYÊ PÎS ZÊDETIR JI ÇAR GULÊN XWEŞIK HEBÛN ui CEM VÎ FEQOYÊ PÎS ZÊDETIR JI ÇAR GULÊN XWEŞIK HEBÛN cem vî feqoyê pîs zêdetir ji çar gulên xweşik hebûn [{"captures":["cem vî feqoyê pîs zêdetir ji çar gulên xweşik hebûn"],"index":0}] +CEM VÎ FEQOYÊ PÎS ZÊDETIR JI ÇAR GULÊN XWEŞIK HEBÛN vi )inconvertible( cem vî feqoyê pîs zêdetir ji çar gulên xweşik hebûn [{"captures":["cem vî feqoyê pîs zêdetir ji çar gulên xweşik hebûn"],"index":0}] pijamalı hasta yağız şoföre çabucak güvendi i pijamalı hasta yağız şoföre çabucak güvendi PIJAMALı HASTA YAĞıZ ŞOFÖRE ÇABUCAK GÜVENDI [{"captures":["PIJAMALı HASTA YAĞıZ ŞOFÖRE ÇABUCAK GÜVENDI"],"index":0}] pijamalı hasta yağız şoföre çabucak güvendi ui pijamalı hasta yağız şoföre çabucak güvendi PIJAMALı HASTA YAĞıZ ŞOFÖRE ÇABUCAK GÜVENDI [{"captures":["PIJAMALı HASTA YAĞıZ ŞOFÖRE ÇABUCAK GÜVENDI"],"index":0}] +pijamalı hasta yağız şoföre çabucak güvendi vi )inconvertible( PIJAMALı HASTA YAĞıZ ŞOFÖRE ÇABUCAK GÜVENDI [{"captures":["PIJAMALı HASTA YAĞıZ ŞOFÖRE ÇABUCAK GÜVENDI"],"index":0}] PIJAMALı HASTA YAĞıZ ŞOFÖRE ÇABUCAK GÜVENDI i PIJAMALı HASTA YAĞıZ ŞOFÖRE ÇABUCAK GÜVENDI pijamalı hasta yağız şoföre çabucak güvendi [{"captures":["pijamalı hasta yağız şoföre çabucak güvendi"],"index":0}] PIJAMALı HASTA YAĞıZ ŞOFÖRE ÇABUCAK GÜVENDI ui PIJAMALı HASTA YAĞıZ ŞOFÖRE ÇABUCAK GÜVENDI pijamalı hasta yağız şoföre çabucak güvendi [{"captures":["pijamalı hasta yağız şoföre çabucak güvendi"],"index":0}] +PIJAMALı HASTA YAĞıZ ŞOFÖRE ÇABUCAK GÜVENDI vi )inconvertible( pijamalı hasta yağız şoföre çabucak güvendi [{"captures":["pijamalı hasta yağız şoföre çabucak güvendi"],"index":0}] [victor jagt zwölf boxkämpfer quer über den großen sylter deich] i [victor jagt zwölf boxkämpfer quer über den großen sylter deich] VICTOR JAGT ZWÖLF BOXKÄMPFER QUER ÜBER DEN GROßEN SYLTER DEICH [{"captures":["V"],"index":0},{"captures":["I"],"index":1},{"captures":["C"],"index":2},{"captures":["T"],"index":3},{"captures":["O"],"index":4},{"captures":["R"],"index":5},{"captures":[" "],"index":6},{"captures":["J"],"index":7},{"captures":["A"],"index":8},{"captures":["G"],"index":9},{"captures":["T"],"index":10},{"captures":[" "],"index":11},{"captures":["Z"],"index":12},{"captures":["W"],"index":13},{"captures":["Ö"],"index":14},{"captures":["L"],"index":15},{"captures":["F"],"index":16},{"captures":[" "],"index":17},{"captures":["B"],"index":18},{"captures":["O"],"index":19},{"captures":["X"],"index":20},{"captures":["K"],"index":21},{"captures":["Ä"],"index":22},{"captures":["M"],"index":23},{"captures":["P"],"index":24},{"captures":["F"],"index":25},{"captures":["E"],"index":26},{"captures":["R"],"index":27},{"captures":[" "],"index":28},{"captures":["Q"],"index":29},{"captures":["U"],"index":30},{"captures":["E"],"index":31},{"captures":["R"],"index":32},{"captures":[" "],"index":33},{"captures":["Ü"],"index":34},{"captures":["B"],"index":35},{"captures":["E"],"index":36},{"captures":["R"],"index":37},{"captures":[" "],"index":38},{"captures":["D"],"index":39},{"captures":["E"],"index":40},{"captures":["N"],"index":41},{"captures":[" "],"index":42},{"captures":["G"],"index":43},{"captures":["R"],"index":44},{"captures":["O"],"index":45},{"captures":["ß"],"index":46},{"captures":["E"],"index":47},{"captures":["N"],"index":48},{"captures":[" "],"index":49},{"captures":["S"],"index":50},{"captures":["Y"],"index":51},{"captures":["L"],"index":52},{"captures":["T"],"index":53},{"captures":["E"],"index":54},{"captures":["R"],"index":55},{"captures":[" "],"index":56},{"captures":["D"],"index":57},{"captures":["E"],"index":58},{"captures":["I"],"index":59},{"captures":["C"],"index":60},{"captures":["H"],"index":61}] [victor jagt zwölf boxkämpfer quer über den großen sylter deich] ui "(?:[\\x20\\x61-\\x7Aßäöü])" VICTOR JAGT ZWÖLF BOXKÄMPFER QUER ÜBER DEN GROßEN SYLTER DEICH [{"captures":["V"],"index":0},{"captures":["I"],"index":1},{"captures":["C"],"index":2},{"captures":["T"],"index":3},{"captures":["O"],"index":4},{"captures":["R"],"index":5},{"captures":[" "],"index":6},{"captures":["J"],"index":7},{"captures":["A"],"index":8},{"captures":["G"],"index":9},{"captures":["T"],"index":10},{"captures":[" "],"index":11},{"captures":["Z"],"index":12},{"captures":["W"],"index":13},{"captures":["Ö"],"index":14},{"captures":["L"],"index":15},{"captures":["F"],"index":16},{"captures":[" "],"index":17},{"captures":["B"],"index":18},{"captures":["O"],"index":19},{"captures":["X"],"index":20},{"captures":["K"],"index":21},{"captures":["Ä"],"index":22},{"captures":["M"],"index":23},{"captures":["P"],"index":24},{"captures":["F"],"index":25},{"captures":["E"],"index":26},{"captures":["R"],"index":27},{"captures":[" "],"index":28},{"captures":["Q"],"index":29},{"captures":["U"],"index":30},{"captures":["E"],"index":31},{"captures":["R"],"index":32},{"captures":[" "],"index":33},{"captures":["Ü"],"index":34},{"captures":["B"],"index":35},{"captures":["E"],"index":36},{"captures":["R"],"index":37},{"captures":[" "],"index":38},{"captures":["D"],"index":39},{"captures":["E"],"index":40},{"captures":["N"],"index":41},{"captures":[" "],"index":42},{"captures":["G"],"index":43},{"captures":["R"],"index":44},{"captures":["O"],"index":45},{"captures":["ß"],"index":46},{"captures":["E"],"index":47},{"captures":["N"],"index":48},{"captures":[" "],"index":49},{"captures":["S"],"index":50},{"captures":["Y"],"index":51},{"captures":["L"],"index":52},{"captures":["T"],"index":53},{"captures":["E"],"index":54},{"captures":["R"],"index":55},{"captures":[" "],"index":56},{"captures":["D"],"index":57},{"captures":["E"],"index":58},{"captures":["I"],"index":59},{"captures":["C"],"index":60},{"captures":["H"],"index":61}] +[victor jagt zwölf boxkämpfer quer über den großen sylter deich] vi )inconvertible( VICTOR JAGT ZWÖLF BOXKÄMPFER QUER ÜBER DEN GROßEN SYLTER DEICH [{"captures":["V"],"index":0},{"captures":["I"],"index":1},{"captures":["C"],"index":2},{"captures":["T"],"index":3},{"captures":["O"],"index":4},{"captures":["R"],"index":5},{"captures":[" "],"index":6},{"captures":["J"],"index":7},{"captures":["A"],"index":8},{"captures":["G"],"index":9},{"captures":["T"],"index":10},{"captures":[" "],"index":11},{"captures":["Z"],"index":12},{"captures":["W"],"index":13},{"captures":["Ö"],"index":14},{"captures":["L"],"index":15},{"captures":["F"],"index":16},{"captures":[" "],"index":17},{"captures":["B"],"index":18},{"captures":["O"],"index":19},{"captures":["X"],"index":20},{"captures":["K"],"index":21},{"captures":["Ä"],"index":22},{"captures":["M"],"index":23},{"captures":["P"],"index":24},{"captures":["F"],"index":25},{"captures":["E"],"index":26},{"captures":["R"],"index":27},{"captures":[" "],"index":28},{"captures":["Q"],"index":29},{"captures":["U"],"index":30},{"captures":["E"],"index":31},{"captures":["R"],"index":32},{"captures":[" "],"index":33},{"captures":["Ü"],"index":34},{"captures":["B"],"index":35},{"captures":["E"],"index":36},{"captures":["R"],"index":37},{"captures":[" "],"index":38},{"captures":["D"],"index":39},{"captures":["E"],"index":40},{"captures":["N"],"index":41},{"captures":[" "],"index":42},{"captures":["G"],"index":43},{"captures":["R"],"index":44},{"captures":["O"],"index":45},{"captures":["ß"],"index":46},{"captures":["E"],"index":47},{"captures":["N"],"index":48},{"captures":[" "],"index":49},{"captures":["S"],"index":50},{"captures":["Y"],"index":51},{"captures":["L"],"index":52},{"captures":["T"],"index":53},{"captures":["E"],"index":54},{"captures":["R"],"index":55},{"captures":[" "],"index":56},{"captures":["D"],"index":57},{"captures":["E"],"index":58},{"captures":["I"],"index":59},{"captures":["C"],"index":60},{"captures":["H"],"index":61}] [VICTOR JAGT ZWÖLF BOXKÄMPFER QUER ÜBER DEN GROßEN SYLTER DEICH] i [VICTOR JAGT ZWÖLF BOXKÄMPFER QUER ÜBER DEN GROßEN SYLTER DEICH] victor jagt zwölf boxkämpfer quer über den großen sylter deich [{"captures":["v"],"index":0},{"captures":["i"],"index":1},{"captures":["c"],"index":2},{"captures":["t"],"index":3},{"captures":["o"],"index":4},{"captures":["r"],"index":5},{"captures":[" "],"index":6},{"captures":["j"],"index":7},{"captures":["a"],"index":8},{"captures":["g"],"index":9},{"captures":["t"],"index":10},{"captures":[" "],"index":11},{"captures":["z"],"index":12},{"captures":["w"],"index":13},{"captures":["ö"],"index":14},{"captures":["l"],"index":15},{"captures":["f"],"index":16},{"captures":[" "],"index":17},{"captures":["b"],"index":18},{"captures":["o"],"index":19},{"captures":["x"],"index":20},{"captures":["k"],"index":21},{"captures":["ä"],"index":22},{"captures":["m"],"index":23},{"captures":["p"],"index":24},{"captures":["f"],"index":25},{"captures":["e"],"index":26},{"captures":["r"],"index":27},{"captures":[" "],"index":28},{"captures":["q"],"index":29},{"captures":["u"],"index":30},{"captures":["e"],"index":31},{"captures":["r"],"index":32},{"captures":[" "],"index":33},{"captures":["ü"],"index":34},{"captures":["b"],"index":35},{"captures":["e"],"index":36},{"captures":["r"],"index":37},{"captures":[" "],"index":38},{"captures":["d"],"index":39},{"captures":["e"],"index":40},{"captures":["n"],"index":41},{"captures":[" "],"index":42},{"captures":["g"],"index":43},{"captures":["r"],"index":44},{"captures":["o"],"index":45},{"captures":["ß"],"index":46},{"captures":["e"],"index":47},{"captures":["n"],"index":48},{"captures":[" "],"index":49},{"captures":["s"],"index":50},{"captures":["y"],"index":51},{"captures":["l"],"index":52},{"captures":["t"],"index":53},{"captures":["e"],"index":54},{"captures":["r"],"index":55},{"captures":[" "],"index":56},{"captures":["d"],"index":57},{"captures":["e"],"index":58},{"captures":["i"],"index":59},{"captures":["c"],"index":60},{"captures":["h"],"index":61}] [VICTOR JAGT ZWÖLF BOXKÄMPFER QUER ÜBER DEN GROßEN SYLTER DEICH] ui "(?:[\\x20\\x41-\\x5AÄÖÜß])" victor jagt zwölf boxkämpfer quer über den großen sylter deich [{"captures":["v"],"index":0},{"captures":["i"],"index":1},{"captures":["c"],"index":2},{"captures":["t"],"index":3},{"captures":["o"],"index":4},{"captures":["r"],"index":5},{"captures":[" "],"index":6},{"captures":["j"],"index":7},{"captures":["a"],"index":8},{"captures":["g"],"index":9},{"captures":["t"],"index":10},{"captures":[" "],"index":11},{"captures":["z"],"index":12},{"captures":["w"],"index":13},{"captures":["ö"],"index":14},{"captures":["l"],"index":15},{"captures":["f"],"index":16},{"captures":[" "],"index":17},{"captures":["b"],"index":18},{"captures":["o"],"index":19},{"captures":["x"],"index":20},{"captures":["k"],"index":21},{"captures":["ä"],"index":22},{"captures":["m"],"index":23},{"captures":["p"],"index":24},{"captures":["f"],"index":25},{"captures":["e"],"index":26},{"captures":["r"],"index":27},{"captures":[" "],"index":28},{"captures":["q"],"index":29},{"captures":["u"],"index":30},{"captures":["e"],"index":31},{"captures":["r"],"index":32},{"captures":[" "],"index":33},{"captures":["ü"],"index":34},{"captures":["b"],"index":35},{"captures":["e"],"index":36},{"captures":["r"],"index":37},{"captures":[" "],"index":38},{"captures":["d"],"index":39},{"captures":["e"],"index":40},{"captures":["n"],"index":41},{"captures":[" "],"index":42},{"captures":["g"],"index":43},{"captures":["r"],"index":44},{"captures":["o"],"index":45},{"captures":["ß"],"index":46},{"captures":["e"],"index":47},{"captures":["n"],"index":48},{"captures":[" "],"index":49},{"captures":["s"],"index":50},{"captures":["y"],"index":51},{"captures":["l"],"index":52},{"captures":["t"],"index":53},{"captures":["e"],"index":54},{"captures":["r"],"index":55},{"captures":[" "],"index":56},{"captures":["d"],"index":57},{"captures":["e"],"index":58},{"captures":["i"],"index":59},{"captures":["c"],"index":60},{"captures":["h"],"index":61}] +[VICTOR JAGT ZWÖLF BOXKÄMPFER QUER ÜBER DEN GROßEN SYLTER DEICH] vi )inconvertible( victor jagt zwölf boxkämpfer quer über den großen sylter deich [{"captures":["v"],"index":0},{"captures":["i"],"index":1},{"captures":["c"],"index":2},{"captures":["t"],"index":3},{"captures":["o"],"index":4},{"captures":["r"],"index":5},{"captures":[" "],"index":6},{"captures":["j"],"index":7},{"captures":["a"],"index":8},{"captures":["g"],"index":9},{"captures":["t"],"index":10},{"captures":[" "],"index":11},{"captures":["z"],"index":12},{"captures":["w"],"index":13},{"captures":["ö"],"index":14},{"captures":["l"],"index":15},{"captures":["f"],"index":16},{"captures":[" "],"index":17},{"captures":["b"],"index":18},{"captures":["o"],"index":19},{"captures":["x"],"index":20},{"captures":["k"],"index":21},{"captures":["ä"],"index":22},{"captures":["m"],"index":23},{"captures":["p"],"index":24},{"captures":["f"],"index":25},{"captures":["e"],"index":26},{"captures":["r"],"index":27},{"captures":[" "],"index":28},{"captures":["q"],"index":29},{"captures":["u"],"index":30},{"captures":["e"],"index":31},{"captures":["r"],"index":32},{"captures":[" "],"index":33},{"captures":["ü"],"index":34},{"captures":["b"],"index":35},{"captures":["e"],"index":36},{"captures":["r"],"index":37},{"captures":[" "],"index":38},{"captures":["d"],"index":39},{"captures":["e"],"index":40},{"captures":["n"],"index":41},{"captures":[" "],"index":42},{"captures":["g"],"index":43},{"captures":["r"],"index":44},{"captures":["o"],"index":45},{"captures":["ß"],"index":46},{"captures":["e"],"index":47},{"captures":["n"],"index":48},{"captures":[" "],"index":49},{"captures":["s"],"index":50},{"captures":["y"],"index":51},{"captures":["l"],"index":52},{"captures":["t"],"index":53},{"captures":["e"],"index":54},{"captures":["r"],"index":55},{"captures":[" "],"index":56},{"captures":["d"],"index":57},{"captures":["e"],"index":58},{"captures":["i"],"index":59},{"captures":["c"],"index":60},{"captures":["h"],"index":61}] [høj bly gom vandt fræk sexquiz på wc] i [høj bly gom vandt fræk sexquiz på wc] HØJ BLY GOM VANDT FRÆK SEXQUIZ PÅ WC [{"captures":["H"],"index":0},{"captures":["Ø"],"index":1},{"captures":["J"],"index":2},{"captures":[" "],"index":3},{"captures":["B"],"index":4},{"captures":["L"],"index":5},{"captures":["Y"],"index":6},{"captures":[" "],"index":7},{"captures":["G"],"index":8},{"captures":["O"],"index":9},{"captures":["M"],"index":10},{"captures":[" "],"index":11},{"captures":["V"],"index":12},{"captures":["A"],"index":13},{"captures":["N"],"index":14},{"captures":["D"],"index":15},{"captures":["T"],"index":16},{"captures":[" "],"index":17},{"captures":["F"],"index":18},{"captures":["R"],"index":19},{"captures":["Æ"],"index":20},{"captures":["K"],"index":21},{"captures":[" "],"index":22},{"captures":["S"],"index":23},{"captures":["E"],"index":24},{"captures":["X"],"index":25},{"captures":["Q"],"index":26},{"captures":["U"],"index":27},{"captures":["I"],"index":28},{"captures":["Z"],"index":29},{"captures":[" "],"index":30},{"captures":["P"],"index":31},{"captures":["Å"],"index":32},{"captures":[" "],"index":33},{"captures":["W"],"index":34},{"captures":["C"],"index":35}] [høj bly gom vandt fræk sexquiz på wc] ui "(?:[\\x20\\x61-\\x7Aåæø])" HØJ BLY GOM VANDT FRÆK SEXQUIZ PÅ WC [{"captures":["H"],"index":0},{"captures":["Ø"],"index":1},{"captures":["J"],"index":2},{"captures":[" "],"index":3},{"captures":["B"],"index":4},{"captures":["L"],"index":5},{"captures":["Y"],"index":6},{"captures":[" "],"index":7},{"captures":["G"],"index":8},{"captures":["O"],"index":9},{"captures":["M"],"index":10},{"captures":[" "],"index":11},{"captures":["V"],"index":12},{"captures":["A"],"index":13},{"captures":["N"],"index":14},{"captures":["D"],"index":15},{"captures":["T"],"index":16},{"captures":[" "],"index":17},{"captures":["F"],"index":18},{"captures":["R"],"index":19},{"captures":["Æ"],"index":20},{"captures":["K"],"index":21},{"captures":[" "],"index":22},{"captures":["S"],"index":23},{"captures":["E"],"index":24},{"captures":["X"],"index":25},{"captures":["Q"],"index":26},{"captures":["U"],"index":27},{"captures":["I"],"index":28},{"captures":["Z"],"index":29},{"captures":[" "],"index":30},{"captures":["P"],"index":31},{"captures":["Å"],"index":32},{"captures":[" "],"index":33},{"captures":["W"],"index":34},{"captures":["C"],"index":35}] +[høj bly gom vandt fræk sexquiz på wc] vi )inconvertible( HØJ BLY GOM VANDT FRÆK SEXQUIZ PÅ WC [{"captures":["H"],"index":0},{"captures":["Ø"],"index":1},{"captures":["J"],"index":2},{"captures":[" "],"index":3},{"captures":["B"],"index":4},{"captures":["L"],"index":5},{"captures":["Y"],"index":6},{"captures":[" "],"index":7},{"captures":["G"],"index":8},{"captures":["O"],"index":9},{"captures":["M"],"index":10},{"captures":[" "],"index":11},{"captures":["V"],"index":12},{"captures":["A"],"index":13},{"captures":["N"],"index":14},{"captures":["D"],"index":15},{"captures":["T"],"index":16},{"captures":[" "],"index":17},{"captures":["F"],"index":18},{"captures":["R"],"index":19},{"captures":["Æ"],"index":20},{"captures":["K"],"index":21},{"captures":[" "],"index":22},{"captures":["S"],"index":23},{"captures":["E"],"index":24},{"captures":["X"],"index":25},{"captures":["Q"],"index":26},{"captures":["U"],"index":27},{"captures":["I"],"index":28},{"captures":["Z"],"index":29},{"captures":[" "],"index":30},{"captures":["P"],"index":31},{"captures":["Å"],"index":32},{"captures":[" "],"index":33},{"captures":["W"],"index":34},{"captures":["C"],"index":35}] [HØJ BLY GOM VANDT FRÆK SEXQUIZ PÅ WC] i [HØJ BLY GOM VANDT FRÆK SEXQUIZ PÅ WC] høj bly gom vandt fræk sexquiz på wc [{"captures":["h"],"index":0},{"captures":["ø"],"index":1},{"captures":["j"],"index":2},{"captures":[" "],"index":3},{"captures":["b"],"index":4},{"captures":["l"],"index":5},{"captures":["y"],"index":6},{"captures":[" "],"index":7},{"captures":["g"],"index":8},{"captures":["o"],"index":9},{"captures":["m"],"index":10},{"captures":[" "],"index":11},{"captures":["v"],"index":12},{"captures":["a"],"index":13},{"captures":["n"],"index":14},{"captures":["d"],"index":15},{"captures":["t"],"index":16},{"captures":[" "],"index":17},{"captures":["f"],"index":18},{"captures":["r"],"index":19},{"captures":["æ"],"index":20},{"captures":["k"],"index":21},{"captures":[" "],"index":22},{"captures":["s"],"index":23},{"captures":["e"],"index":24},{"captures":["x"],"index":25},{"captures":["q"],"index":26},{"captures":["u"],"index":27},{"captures":["i"],"index":28},{"captures":["z"],"index":29},{"captures":[" "],"index":30},{"captures":["p"],"index":31},{"captures":["å"],"index":32},{"captures":[" "],"index":33},{"captures":["w"],"index":34},{"captures":["c"],"index":35}] [HØJ BLY GOM VANDT FRÆK SEXQUIZ PÅ WC] ui "(?:[\\x20\\x41-\\x5AÅÆØ])" høj bly gom vandt fræk sexquiz på wc [{"captures":["h"],"index":0},{"captures":["ø"],"index":1},{"captures":["j"],"index":2},{"captures":[" "],"index":3},{"captures":["b"],"index":4},{"captures":["l"],"index":5},{"captures":["y"],"index":6},{"captures":[" "],"index":7},{"captures":["g"],"index":8},{"captures":["o"],"index":9},{"captures":["m"],"index":10},{"captures":[" "],"index":11},{"captures":["v"],"index":12},{"captures":["a"],"index":13},{"captures":["n"],"index":14},{"captures":["d"],"index":15},{"captures":["t"],"index":16},{"captures":[" "],"index":17},{"captures":["f"],"index":18},{"captures":["r"],"index":19},{"captures":["æ"],"index":20},{"captures":["k"],"index":21},{"captures":[" "],"index":22},{"captures":["s"],"index":23},{"captures":["e"],"index":24},{"captures":["x"],"index":25},{"captures":["q"],"index":26},{"captures":["u"],"index":27},{"captures":["i"],"index":28},{"captures":["z"],"index":29},{"captures":[" "],"index":30},{"captures":["p"],"index":31},{"captures":["å"],"index":32},{"captures":[" "],"index":33},{"captures":["w"],"index":34},{"captures":["c"],"index":35}] +[HØJ BLY GOM VANDT FRÆK SEXQUIZ PÅ WC] vi )inconvertible( høj bly gom vandt fræk sexquiz på wc [{"captures":["h"],"index":0},{"captures":["ø"],"index":1},{"captures":["j"],"index":2},{"captures":[" "],"index":3},{"captures":["b"],"index":4},{"captures":["l"],"index":5},{"captures":["y"],"index":6},{"captures":[" "],"index":7},{"captures":["g"],"index":8},{"captures":["o"],"index":9},{"captures":["m"],"index":10},{"captures":[" "],"index":11},{"captures":["v"],"index":12},{"captures":["a"],"index":13},{"captures":["n"],"index":14},{"captures":["d"],"index":15},{"captures":["t"],"index":16},{"captures":[" "],"index":17},{"captures":["f"],"index":18},{"captures":["r"],"index":19},{"captures":["æ"],"index":20},{"captures":["k"],"index":21},{"captures":[" "],"index":22},{"captures":["s"],"index":23},{"captures":["e"],"index":24},{"captures":["x"],"index":25},{"captures":["q"],"index":26},{"captures":["u"],"index":27},{"captures":["i"],"index":28},{"captures":["z"],"index":29},{"captures":[" "],"index":30},{"captures":["p"],"index":31},{"captures":["å"],"index":32},{"captures":[" "],"index":33},{"captures":["w"],"index":34},{"captures":["c"],"index":35}] [törkylempijävongahdus] i [törkylempijävongahdus] TÖRKYLEMPIJÄVONGAHDUS [{"captures":["T"],"index":0},{"captures":["Ö"],"index":1},{"captures":["R"],"index":2},{"captures":["K"],"index":3},{"captures":["Y"],"index":4},{"captures":["L"],"index":5},{"captures":["E"],"index":6},{"captures":["M"],"index":7},{"captures":["P"],"index":8},{"captures":["I"],"index":9},{"captures":["J"],"index":10},{"captures":["Ä"],"index":11},{"captures":["V"],"index":12},{"captures":["O"],"index":13},{"captures":["N"],"index":14},{"captures":["G"],"index":15},{"captures":["A"],"index":16},{"captures":["H"],"index":17},{"captures":["D"],"index":18},{"captures":["U"],"index":19},{"captures":["S"],"index":20}] [törkylempijävongahdus] ui "(?:[\\x61\\x64\\x65\\x67-\\x70\\x72-\\x76\\x79äö])" TÖRKYLEMPIJÄVONGAHDUS [{"captures":["T"],"index":0},{"captures":["Ö"],"index":1},{"captures":["R"],"index":2},{"captures":["K"],"index":3},{"captures":["Y"],"index":4},{"captures":["L"],"index":5},{"captures":["E"],"index":6},{"captures":["M"],"index":7},{"captures":["P"],"index":8},{"captures":["I"],"index":9},{"captures":["J"],"index":10},{"captures":["Ä"],"index":11},{"captures":["V"],"index":12},{"captures":["O"],"index":13},{"captures":["N"],"index":14},{"captures":["G"],"index":15},{"captures":["A"],"index":16},{"captures":["H"],"index":17},{"captures":["D"],"index":18},{"captures":["U"],"index":19},{"captures":["S"],"index":20}] +[törkylempijävongahdus] vi )inconvertible( TÖRKYLEMPIJÄVONGAHDUS [{"captures":["T"],"index":0},{"captures":["Ö"],"index":1},{"captures":["R"],"index":2},{"captures":["K"],"index":3},{"captures":["Y"],"index":4},{"captures":["L"],"index":5},{"captures":["E"],"index":6},{"captures":["M"],"index":7},{"captures":["P"],"index":8},{"captures":["I"],"index":9},{"captures":["J"],"index":10},{"captures":["Ä"],"index":11},{"captures":["V"],"index":12},{"captures":["O"],"index":13},{"captures":["N"],"index":14},{"captures":["G"],"index":15},{"captures":["A"],"index":16},{"captures":["H"],"index":17},{"captures":["D"],"index":18},{"captures":["U"],"index":19},{"captures":["S"],"index":20}] [TÖRKYLEMPIJÄVONGAHDUS] i [TÖRKYLEMPIJÄVONGAHDUS] törkylempijävongahdus [{"captures":["t"],"index":0},{"captures":["ö"],"index":1},{"captures":["r"],"index":2},{"captures":["k"],"index":3},{"captures":["y"],"index":4},{"captures":["l"],"index":5},{"captures":["e"],"index":6},{"captures":["m"],"index":7},{"captures":["p"],"index":8},{"captures":["i"],"index":9},{"captures":["j"],"index":10},{"captures":["ä"],"index":11},{"captures":["v"],"index":12},{"captures":["o"],"index":13},{"captures":["n"],"index":14},{"captures":["g"],"index":15},{"captures":["a"],"index":16},{"captures":["h"],"index":17},{"captures":["d"],"index":18},{"captures":["u"],"index":19},{"captures":["s"],"index":20}] [TÖRKYLEMPIJÄVONGAHDUS] ui "(?:[\\x41\\x44\\x45\\x47-\\x50\\x52-\\x56\\x59ÄÖ])" törkylempijävongahdus [{"captures":["t"],"index":0},{"captures":["ö"],"index":1},{"captures":["r"],"index":2},{"captures":["k"],"index":3},{"captures":["y"],"index":4},{"captures":["l"],"index":5},{"captures":["e"],"index":6},{"captures":["m"],"index":7},{"captures":["p"],"index":8},{"captures":["i"],"index":9},{"captures":["j"],"index":10},{"captures":["ä"],"index":11},{"captures":["v"],"index":12},{"captures":["o"],"index":13},{"captures":["n"],"index":14},{"captures":["g"],"index":15},{"captures":["a"],"index":16},{"captures":["h"],"index":17},{"captures":["d"],"index":18},{"captures":["u"],"index":19},{"captures":["s"],"index":20}] +[TÖRKYLEMPIJÄVONGAHDUS] vi )inconvertible( törkylempijävongahdus [{"captures":["t"],"index":0},{"captures":["ö"],"index":1},{"captures":["r"],"index":2},{"captures":["k"],"index":3},{"captures":["y"],"index":4},{"captures":["l"],"index":5},{"captures":["e"],"index":6},{"captures":["m"],"index":7},{"captures":["p"],"index":8},{"captures":["i"],"index":9},{"captures":["j"],"index":10},{"captures":["ä"],"index":11},{"captures":["v"],"index":12},{"captures":["o"],"index":13},{"captures":["n"],"index":14},{"captures":["g"],"index":15},{"captures":["a"],"index":16},{"captures":["h"],"index":17},{"captures":["d"],"index":18},{"captures":["u"],"index":19},{"captures":["s"],"index":20}] [kæmi ný öxi hér, ykist þjófum nú bæði víl og ádrepa] i [kæmi ný öxi hér, ykist þjófum nú bæði víl og ádrepa] KÆMI NÝ ÖXI HÉR, YKIST ÞJÓFUM NÚ BÆÐI VÍL OG ÁDREPA [{"captures":["K"],"index":0},{"captures":["Æ"],"index":1},{"captures":["M"],"index":2},{"captures":["I"],"index":3},{"captures":[" "],"index":4},{"captures":["N"],"index":5},{"captures":["Ý"],"index":6},{"captures":[" "],"index":7},{"captures":["Ö"],"index":8},{"captures":["X"],"index":9},{"captures":["I"],"index":10},{"captures":[" "],"index":11},{"captures":["H"],"index":12},{"captures":["É"],"index":13},{"captures":["R"],"index":14},{"captures":[","],"index":15},{"captures":[" "],"index":16},{"captures":["Y"],"index":17},{"captures":["K"],"index":18},{"captures":["I"],"index":19},{"captures":["S"],"index":20},{"captures":["T"],"index":21},{"captures":[" "],"index":22},{"captures":["Þ"],"index":23},{"captures":["J"],"index":24},{"captures":["Ó"],"index":25},{"captures":["F"],"index":26},{"captures":["U"],"index":27},{"captures":["M"],"index":28},{"captures":[" "],"index":29},{"captures":["N"],"index":30},{"captures":["Ú"],"index":31},{"captures":[" "],"index":32},{"captures":["B"],"index":33},{"captures":["Æ"],"index":34},{"captures":["Ð"],"index":35},{"captures":["I"],"index":36},{"captures":[" "],"index":37},{"captures":["V"],"index":38},{"captures":["Í"],"index":39},{"captures":["L"],"index":40},{"captures":[" "],"index":41},{"captures":["O"],"index":42},{"captures":["G"],"index":43},{"captures":[" "],"index":44},{"captures":["Á"],"index":45},{"captures":["D"],"index":46},{"captures":["R"],"index":47},{"captures":["E"],"index":48},{"captures":["P"],"index":49},{"captures":["A"],"index":50}] [kæmi ný öxi hér, ykist þjófum nú bæði víl og ádrepa] ui "(?:[\\x20\\x2C\\x61\\x62\\x64-\\x70\\x72-\\x76\\x78\\x79áæéíðóöúýþ])" KÆMI NÝ ÖXI HÉR, YKIST ÞJÓFUM NÚ BÆÐI VÍL OG ÁDREPA [{"captures":["K"],"index":0},{"captures":["Æ"],"index":1},{"captures":["M"],"index":2},{"captures":["I"],"index":3},{"captures":[" "],"index":4},{"captures":["N"],"index":5},{"captures":["Ý"],"index":6},{"captures":[" "],"index":7},{"captures":["Ö"],"index":8},{"captures":["X"],"index":9},{"captures":["I"],"index":10},{"captures":[" "],"index":11},{"captures":["H"],"index":12},{"captures":["É"],"index":13},{"captures":["R"],"index":14},{"captures":[","],"index":15},{"captures":[" "],"index":16},{"captures":["Y"],"index":17},{"captures":["K"],"index":18},{"captures":["I"],"index":19},{"captures":["S"],"index":20},{"captures":["T"],"index":21},{"captures":[" "],"index":22},{"captures":["Þ"],"index":23},{"captures":["J"],"index":24},{"captures":["Ó"],"index":25},{"captures":["F"],"index":26},{"captures":["U"],"index":27},{"captures":["M"],"index":28},{"captures":[" "],"index":29},{"captures":["N"],"index":30},{"captures":["Ú"],"index":31},{"captures":[" "],"index":32},{"captures":["B"],"index":33},{"captures":["Æ"],"index":34},{"captures":["Ð"],"index":35},{"captures":["I"],"index":36},{"captures":[" "],"index":37},{"captures":["V"],"index":38},{"captures":["Í"],"index":39},{"captures":["L"],"index":40},{"captures":[" "],"index":41},{"captures":["O"],"index":42},{"captures":["G"],"index":43},{"captures":[" "],"index":44},{"captures":["Á"],"index":45},{"captures":["D"],"index":46},{"captures":["R"],"index":47},{"captures":["E"],"index":48},{"captures":["P"],"index":49},{"captures":["A"],"index":50}] +[kæmi ný öxi hér, ykist þjófum nú bæði víl og ádrepa] vi )inconvertible( KÆMI NÝ ÖXI HÉR, YKIST ÞJÓFUM NÚ BÆÐI VÍL OG ÁDREPA [{"captures":["K"],"index":0},{"captures":["Æ"],"index":1},{"captures":["M"],"index":2},{"captures":["I"],"index":3},{"captures":[" "],"index":4},{"captures":["N"],"index":5},{"captures":["Ý"],"index":6},{"captures":[" "],"index":7},{"captures":["Ö"],"index":8},{"captures":["X"],"index":9},{"captures":["I"],"index":10},{"captures":[" "],"index":11},{"captures":["H"],"index":12},{"captures":["É"],"index":13},{"captures":["R"],"index":14},{"captures":[","],"index":15},{"captures":[" "],"index":16},{"captures":["Y"],"index":17},{"captures":["K"],"index":18},{"captures":["I"],"index":19},{"captures":["S"],"index":20},{"captures":["T"],"index":21},{"captures":[" "],"index":22},{"captures":["Þ"],"index":23},{"captures":["J"],"index":24},{"captures":["Ó"],"index":25},{"captures":["F"],"index":26},{"captures":["U"],"index":27},{"captures":["M"],"index":28},{"captures":[" "],"index":29},{"captures":["N"],"index":30},{"captures":["Ú"],"index":31},{"captures":[" "],"index":32},{"captures":["B"],"index":33},{"captures":["Æ"],"index":34},{"captures":["Ð"],"index":35},{"captures":["I"],"index":36},{"captures":[" "],"index":37},{"captures":["V"],"index":38},{"captures":["Í"],"index":39},{"captures":["L"],"index":40},{"captures":[" "],"index":41},{"captures":["O"],"index":42},{"captures":["G"],"index":43},{"captures":[" "],"index":44},{"captures":["Á"],"index":45},{"captures":["D"],"index":46},{"captures":["R"],"index":47},{"captures":["E"],"index":48},{"captures":["P"],"index":49},{"captures":["A"],"index":50}] [KÆMI NÝ ÖXI HÉR, YKIST ÞJÓFUM NÚ BÆÐI VÍL OG ÁDREPA] i [KÆMI NÝ ÖXI HÉR, YKIST ÞJÓFUM NÚ BÆÐI VÍL OG ÁDREPA] kæmi ný öxi hér, ykist þjófum nú bæði víl og ádrepa [{"captures":["k"],"index":0},{"captures":["æ"],"index":1},{"captures":["m"],"index":2},{"captures":["i"],"index":3},{"captures":[" "],"index":4},{"captures":["n"],"index":5},{"captures":["ý"],"index":6},{"captures":[" "],"index":7},{"captures":["ö"],"index":8},{"captures":["x"],"index":9},{"captures":["i"],"index":10},{"captures":[" "],"index":11},{"captures":["h"],"index":12},{"captures":["é"],"index":13},{"captures":["r"],"index":14},{"captures":[","],"index":15},{"captures":[" "],"index":16},{"captures":["y"],"index":17},{"captures":["k"],"index":18},{"captures":["i"],"index":19},{"captures":["s"],"index":20},{"captures":["t"],"index":21},{"captures":[" "],"index":22},{"captures":["þ"],"index":23},{"captures":["j"],"index":24},{"captures":["ó"],"index":25},{"captures":["f"],"index":26},{"captures":["u"],"index":27},{"captures":["m"],"index":28},{"captures":[" "],"index":29},{"captures":["n"],"index":30},{"captures":["ú"],"index":31},{"captures":[" "],"index":32},{"captures":["b"],"index":33},{"captures":["æ"],"index":34},{"captures":["ð"],"index":35},{"captures":["i"],"index":36},{"captures":[" "],"index":37},{"captures":["v"],"index":38},{"captures":["í"],"index":39},{"captures":["l"],"index":40},{"captures":[" "],"index":41},{"captures":["o"],"index":42},{"captures":["g"],"index":43},{"captures":[" "],"index":44},{"captures":["á"],"index":45},{"captures":["d"],"index":46},{"captures":["r"],"index":47},{"captures":["e"],"index":48},{"captures":["p"],"index":49},{"captures":["a"],"index":50}] [KÆMI NÝ ÖXI HÉR, YKIST ÞJÓFUM NÚ BÆÐI VÍL OG ÁDREPA] ui "(?:[\\x20\\x2C\\x41\\x42\\x44-\\x50\\x52-\\x56\\x58\\x59ÁÆÉÍÐÓÖÚÝÞ])" kæmi ný öxi hér, ykist þjófum nú bæði víl og ádrepa [{"captures":["k"],"index":0},{"captures":["æ"],"index":1},{"captures":["m"],"index":2},{"captures":["i"],"index":3},{"captures":[" "],"index":4},{"captures":["n"],"index":5},{"captures":["ý"],"index":6},{"captures":[" "],"index":7},{"captures":["ö"],"index":8},{"captures":["x"],"index":9},{"captures":["i"],"index":10},{"captures":[" "],"index":11},{"captures":["h"],"index":12},{"captures":["é"],"index":13},{"captures":["r"],"index":14},{"captures":[","],"index":15},{"captures":[" "],"index":16},{"captures":["y"],"index":17},{"captures":["k"],"index":18},{"captures":["i"],"index":19},{"captures":["s"],"index":20},{"captures":["t"],"index":21},{"captures":[" "],"index":22},{"captures":["þ"],"index":23},{"captures":["j"],"index":24},{"captures":["ó"],"index":25},{"captures":["f"],"index":26},{"captures":["u"],"index":27},{"captures":["m"],"index":28},{"captures":[" "],"index":29},{"captures":["n"],"index":30},{"captures":["ú"],"index":31},{"captures":[" "],"index":32},{"captures":["b"],"index":33},{"captures":["æ"],"index":34},{"captures":["ð"],"index":35},{"captures":["i"],"index":36},{"captures":[" "],"index":37},{"captures":["v"],"index":38},{"captures":["í"],"index":39},{"captures":["l"],"index":40},{"captures":[" "],"index":41},{"captures":["o"],"index":42},{"captures":["g"],"index":43},{"captures":[" "],"index":44},{"captures":["á"],"index":45},{"captures":["d"],"index":46},{"captures":["r"],"index":47},{"captures":["e"],"index":48},{"captures":["p"],"index":49},{"captures":["a"],"index":50}] +[KÆMI NÝ ÖXI HÉR, YKIST ÞJÓFUM NÚ BÆÐI VÍL OG ÁDREPA] vi )inconvertible( kæmi ný öxi hér, ykist þjófum nú bæði víl og ádrepa [{"captures":["k"],"index":0},{"captures":["æ"],"index":1},{"captures":["m"],"index":2},{"captures":["i"],"index":3},{"captures":[" "],"index":4},{"captures":["n"],"index":5},{"captures":["ý"],"index":6},{"captures":[" "],"index":7},{"captures":["ö"],"index":8},{"captures":["x"],"index":9},{"captures":["i"],"index":10},{"captures":[" "],"index":11},{"captures":["h"],"index":12},{"captures":["é"],"index":13},{"captures":["r"],"index":14},{"captures":[","],"index":15},{"captures":[" "],"index":16},{"captures":["y"],"index":17},{"captures":["k"],"index":18},{"captures":["i"],"index":19},{"captures":["s"],"index":20},{"captures":["t"],"index":21},{"captures":[" "],"index":22},{"captures":["þ"],"index":23},{"captures":["j"],"index":24},{"captures":["ó"],"index":25},{"captures":["f"],"index":26},{"captures":["u"],"index":27},{"captures":["m"],"index":28},{"captures":[" "],"index":29},{"captures":["n"],"index":30},{"captures":["ú"],"index":31},{"captures":[" "],"index":32},{"captures":["b"],"index":33},{"captures":["æ"],"index":34},{"captures":["ð"],"index":35},{"captures":["i"],"index":36},{"captures":[" "],"index":37},{"captures":["v"],"index":38},{"captures":["í"],"index":39},{"captures":["l"],"index":40},{"captures":[" "],"index":41},{"captures":["o"],"index":42},{"captures":["g"],"index":43},{"captures":[" "],"index":44},{"captures":["á"],"index":45},{"captures":["d"],"index":46},{"captures":["r"],"index":47},{"captures":["e"],"index":48},{"captures":["p"],"index":49},{"captures":["a"],"index":50}] [flygande bäckasiner söka hwila på mjuka tuvor] i [flygande bäckasiner söka hwila på mjuka tuvor] FLYGANDE BÄCKASINER SÖKA HWILA PÅ MJUKA TUVOR [{"captures":["F"],"index":0},{"captures":["L"],"index":1},{"captures":["Y"],"index":2},{"captures":["G"],"index":3},{"captures":["A"],"index":4},{"captures":["N"],"index":5},{"captures":["D"],"index":6},{"captures":["E"],"index":7},{"captures":[" "],"index":8},{"captures":["B"],"index":9},{"captures":["Ä"],"index":10},{"captures":["C"],"index":11},{"captures":["K"],"index":12},{"captures":["A"],"index":13},{"captures":["S"],"index":14},{"captures":["I"],"index":15},{"captures":["N"],"index":16},{"captures":["E"],"index":17},{"captures":["R"],"index":18},{"captures":[" "],"index":19},{"captures":["S"],"index":20},{"captures":["Ö"],"index":21},{"captures":["K"],"index":22},{"captures":["A"],"index":23},{"captures":[" "],"index":24},{"captures":["H"],"index":25},{"captures":["W"],"index":26},{"captures":["I"],"index":27},{"captures":["L"],"index":28},{"captures":["A"],"index":29},{"captures":[" "],"index":30},{"captures":["P"],"index":31},{"captures":["Å"],"index":32},{"captures":[" "],"index":33},{"captures":["M"],"index":34},{"captures":["J"],"index":35},{"captures":["U"],"index":36},{"captures":["K"],"index":37},{"captures":["A"],"index":38},{"captures":[" "],"index":39},{"captures":["T"],"index":40},{"captures":["U"],"index":41},{"captures":["V"],"index":42},{"captures":["O"],"index":43},{"captures":["R"],"index":44}] [flygande bäckasiner söka hwila på mjuka tuvor] ui "(?:[\\x20\\x61-\\x70\\x72-\\x77\\x79äåö])" FLYGANDE BÄCKASINER SÖKA HWILA PÅ MJUKA TUVOR [{"captures":["F"],"index":0},{"captures":["L"],"index":1},{"captures":["Y"],"index":2},{"captures":["G"],"index":3},{"captures":["A"],"index":4},{"captures":["N"],"index":5},{"captures":["D"],"index":6},{"captures":["E"],"index":7},{"captures":[" "],"index":8},{"captures":["B"],"index":9},{"captures":["Ä"],"index":10},{"captures":["C"],"index":11},{"captures":["K"],"index":12},{"captures":["A"],"index":13},{"captures":["S"],"index":14},{"captures":["I"],"index":15},{"captures":["N"],"index":16},{"captures":["E"],"index":17},{"captures":["R"],"index":18},{"captures":[" "],"index":19},{"captures":["S"],"index":20},{"captures":["Ö"],"index":21},{"captures":["K"],"index":22},{"captures":["A"],"index":23},{"captures":[" "],"index":24},{"captures":["H"],"index":25},{"captures":["W"],"index":26},{"captures":["I"],"index":27},{"captures":["L"],"index":28},{"captures":["A"],"index":29},{"captures":[" "],"index":30},{"captures":["P"],"index":31},{"captures":["Å"],"index":32},{"captures":[" "],"index":33},{"captures":["M"],"index":34},{"captures":["J"],"index":35},{"captures":["U"],"index":36},{"captures":["K"],"index":37},{"captures":["A"],"index":38},{"captures":[" "],"index":39},{"captures":["T"],"index":40},{"captures":["U"],"index":41},{"captures":["V"],"index":42},{"captures":["O"],"index":43},{"captures":["R"],"index":44}] +[flygande bäckasiner söka hwila på mjuka tuvor] vi )inconvertible( FLYGANDE BÄCKASINER SÖKA HWILA PÅ MJUKA TUVOR [{"captures":["F"],"index":0},{"captures":["L"],"index":1},{"captures":["Y"],"index":2},{"captures":["G"],"index":3},{"captures":["A"],"index":4},{"captures":["N"],"index":5},{"captures":["D"],"index":6},{"captures":["E"],"index":7},{"captures":[" "],"index":8},{"captures":["B"],"index":9},{"captures":["Ä"],"index":10},{"captures":["C"],"index":11},{"captures":["K"],"index":12},{"captures":["A"],"index":13},{"captures":["S"],"index":14},{"captures":["I"],"index":15},{"captures":["N"],"index":16},{"captures":["E"],"index":17},{"captures":["R"],"index":18},{"captures":[" "],"index":19},{"captures":["S"],"index":20},{"captures":["Ö"],"index":21},{"captures":["K"],"index":22},{"captures":["A"],"index":23},{"captures":[" "],"index":24},{"captures":["H"],"index":25},{"captures":["W"],"index":26},{"captures":["I"],"index":27},{"captures":["L"],"index":28},{"captures":["A"],"index":29},{"captures":[" "],"index":30},{"captures":["P"],"index":31},{"captures":["Å"],"index":32},{"captures":[" "],"index":33},{"captures":["M"],"index":34},{"captures":["J"],"index":35},{"captures":["U"],"index":36},{"captures":["K"],"index":37},{"captures":["A"],"index":38},{"captures":[" "],"index":39},{"captures":["T"],"index":40},{"captures":["U"],"index":41},{"captures":["V"],"index":42},{"captures":["O"],"index":43},{"captures":["R"],"index":44}] [FLYGANDE BÄCKASINER SÖKA HWILA PÅ MJUKA TUVOR] i [FLYGANDE BÄCKASINER SÖKA HWILA PÅ MJUKA TUVOR] flygande bäckasiner söka hwila på mjuka tuvor [{"captures":["f"],"index":0},{"captures":["l"],"index":1},{"captures":["y"],"index":2},{"captures":["g"],"index":3},{"captures":["a"],"index":4},{"captures":["n"],"index":5},{"captures":["d"],"index":6},{"captures":["e"],"index":7},{"captures":[" "],"index":8},{"captures":["b"],"index":9},{"captures":["ä"],"index":10},{"captures":["c"],"index":11},{"captures":["k"],"index":12},{"captures":["a"],"index":13},{"captures":["s"],"index":14},{"captures":["i"],"index":15},{"captures":["n"],"index":16},{"captures":["e"],"index":17},{"captures":["r"],"index":18},{"captures":[" "],"index":19},{"captures":["s"],"index":20},{"captures":["ö"],"index":21},{"captures":["k"],"index":22},{"captures":["a"],"index":23},{"captures":[" "],"index":24},{"captures":["h"],"index":25},{"captures":["w"],"index":26},{"captures":["i"],"index":27},{"captures":["l"],"index":28},{"captures":["a"],"index":29},{"captures":[" "],"index":30},{"captures":["p"],"index":31},{"captures":["å"],"index":32},{"captures":[" "],"index":33},{"captures":["m"],"index":34},{"captures":["j"],"index":35},{"captures":["u"],"index":36},{"captures":["k"],"index":37},{"captures":["a"],"index":38},{"captures":[" "],"index":39},{"captures":["t"],"index":40},{"captures":["u"],"index":41},{"captures":["v"],"index":42},{"captures":["o"],"index":43},{"captures":["r"],"index":44}] [FLYGANDE BÄCKASINER SÖKA HWILA PÅ MJUKA TUVOR] ui "(?:[\\x20\\x41-\\x50\\x52-\\x57\\x59ÄÅÖ])" flygande bäckasiner söka hwila på mjuka tuvor [{"captures":["f"],"index":0},{"captures":["l"],"index":1},{"captures":["y"],"index":2},{"captures":["g"],"index":3},{"captures":["a"],"index":4},{"captures":["n"],"index":5},{"captures":["d"],"index":6},{"captures":["e"],"index":7},{"captures":[" "],"index":8},{"captures":["b"],"index":9},{"captures":["ä"],"index":10},{"captures":["c"],"index":11},{"captures":["k"],"index":12},{"captures":["a"],"index":13},{"captures":["s"],"index":14},{"captures":["i"],"index":15},{"captures":["n"],"index":16},{"captures":["e"],"index":17},{"captures":["r"],"index":18},{"captures":[" "],"index":19},{"captures":["s"],"index":20},{"captures":["ö"],"index":21},{"captures":["k"],"index":22},{"captures":["a"],"index":23},{"captures":[" "],"index":24},{"captures":["h"],"index":25},{"captures":["w"],"index":26},{"captures":["i"],"index":27},{"captures":["l"],"index":28},{"captures":["a"],"index":29},{"captures":[" "],"index":30},{"captures":["p"],"index":31},{"captures":["å"],"index":32},{"captures":[" "],"index":33},{"captures":["m"],"index":34},{"captures":["j"],"index":35},{"captures":["u"],"index":36},{"captures":["k"],"index":37},{"captures":["a"],"index":38},{"captures":[" "],"index":39},{"captures":["t"],"index":40},{"captures":["u"],"index":41},{"captures":["v"],"index":42},{"captures":["o"],"index":43},{"captures":["r"],"index":44}] +[FLYGANDE BÄCKASINER SÖKA HWILA PÅ MJUKA TUVOR] vi )inconvertible( flygande bäckasiner söka hwila på mjuka tuvor [{"captures":["f"],"index":0},{"captures":["l"],"index":1},{"captures":["y"],"index":2},{"captures":["g"],"index":3},{"captures":["a"],"index":4},{"captures":["n"],"index":5},{"captures":["d"],"index":6},{"captures":["e"],"index":7},{"captures":[" "],"index":8},{"captures":["b"],"index":9},{"captures":["ä"],"index":10},{"captures":["c"],"index":11},{"captures":["k"],"index":12},{"captures":["a"],"index":13},{"captures":["s"],"index":14},{"captures":["i"],"index":15},{"captures":["n"],"index":16},{"captures":["e"],"index":17},{"captures":["r"],"index":18},{"captures":[" "],"index":19},{"captures":["s"],"index":20},{"captures":["ö"],"index":21},{"captures":["k"],"index":22},{"captures":["a"],"index":23},{"captures":[" "],"index":24},{"captures":["h"],"index":25},{"captures":["w"],"index":26},{"captures":["i"],"index":27},{"captures":["l"],"index":28},{"captures":["a"],"index":29},{"captures":[" "],"index":30},{"captures":["p"],"index":31},{"captures":["å"],"index":32},{"captures":[" "],"index":33},{"captures":["m"],"index":34},{"captures":["j"],"index":35},{"captures":["u"],"index":36},{"captures":["k"],"index":37},{"captures":["a"],"index":38},{"captures":[" "],"index":39},{"captures":["t"],"index":40},{"captures":["u"],"index":41},{"captures":["v"],"index":42},{"captures":["o"],"index":43},{"captures":["r"],"index":44}] [à noite, vovô kowalsky vê o ímã cair no pé do pingüim queixoso e vovó põe açúcar no chá de tâmaras do jabuti feliz] i [à noite, vovô kowalsky vê o ímã cair no pé do pingüim queixoso e vovó põe açúcar no chá de tâmaras do jabuti feliz] À NOITE, VOVÔ KOWALSKY VÊ O ÍMà CAIR NO PÉ DO PINGÜIM QUEIXOSO E VOVÓ PÕE AÇÚCAR NO CHÁ DE TÂMARAS DO JABUTI FELIZ [{"captures":["À"],"index":0},{"captures":[" "],"index":1},{"captures":["N"],"index":2},{"captures":["O"],"index":3},{"captures":["I"],"index":4},{"captures":["T"],"index":5},{"captures":["E"],"index":6},{"captures":[","],"index":7},{"captures":[" "],"index":8},{"captures":["V"],"index":9},{"captures":["O"],"index":10},{"captures":["V"],"index":11},{"captures":["Ô"],"index":12},{"captures":[" "],"index":13},{"captures":["K"],"index":14},{"captures":["O"],"index":15},{"captures":["W"],"index":16},{"captures":["A"],"index":17},{"captures":["L"],"index":18},{"captures":["S"],"index":19},{"captures":["K"],"index":20},{"captures":["Y"],"index":21},{"captures":[" "],"index":22},{"captures":["V"],"index":23},{"captures":["Ê"],"index":24},{"captures":[" "],"index":25},{"captures":["O"],"index":26},{"captures":[" "],"index":27},{"captures":["Í"],"index":28},{"captures":["M"],"index":29},{"captures":["Ã"],"index":30},{"captures":[" "],"index":31},{"captures":["C"],"index":32},{"captures":["A"],"index":33},{"captures":["I"],"index":34},{"captures":["R"],"index":35},{"captures":[" "],"index":36},{"captures":["N"],"index":37},{"captures":["O"],"index":38},{"captures":[" "],"index":39},{"captures":["P"],"index":40},{"captures":["É"],"index":41},{"captures":[" "],"index":42},{"captures":["D"],"index":43},{"captures":["O"],"index":44},{"captures":[" "],"index":45},{"captures":["P"],"index":46},{"captures":["I"],"index":47},{"captures":["N"],"index":48},{"captures":["G"],"index":49},{"captures":["Ü"],"index":50},{"captures":["I"],"index":51},{"captures":["M"],"index":52},{"captures":[" "],"index":53},{"captures":["Q"],"index":54},{"captures":["U"],"index":55},{"captures":["E"],"index":56},{"captures":["I"],"index":57},{"captures":["X"],"index":58},{"captures":["O"],"index":59},{"captures":["S"],"index":60},{"captures":["O"],"index":61},{"captures":[" "],"index":62},{"captures":["E"],"index":63},{"captures":[" "],"index":64},{"captures":["V"],"index":65},{"captures":["O"],"index":66},{"captures":["V"],"index":67},{"captures":["Ó"],"index":68},{"captures":[" "],"index":69},{"captures":["P"],"index":70},{"captures":["Õ"],"index":71},{"captures":["E"],"index":72},{"captures":[" "],"index":73},{"captures":["A"],"index":74},{"captures":["Ç"],"index":75},{"captures":["Ú"],"index":76},{"captures":["C"],"index":77},{"captures":["A"],"index":78},{"captures":["R"],"index":79},{"captures":[" "],"index":80},{"captures":["N"],"index":81},{"captures":["O"],"index":82},{"captures":[" "],"index":83},{"captures":["C"],"index":84},{"captures":["H"],"index":85},{"captures":["Á"],"index":86},{"captures":[" "],"index":87},{"captures":["D"],"index":88},{"captures":["E"],"index":89},{"captures":[" "],"index":90},{"captures":["T"],"index":91},{"captures":["Â"],"index":92},{"captures":["M"],"index":93},{"captures":["A"],"index":94},{"captures":["R"],"index":95},{"captures":["A"],"index":96},{"captures":["S"],"index":97},{"captures":[" "],"index":98},{"captures":["D"],"index":99},{"captures":["O"],"index":100},{"captures":[" "],"index":101},{"captures":["J"],"index":102},{"captures":["A"],"index":103},{"captures":["B"],"index":104},{"captures":["U"],"index":105},{"captures":["T"],"index":106},{"captures":["I"],"index":107},{"captures":[" "],"index":108},{"captures":["F"],"index":109},{"captures":["E"],"index":110},{"captures":["L"],"index":111},{"captures":["I"],"index":112},{"captures":["Z"],"index":113}] [à noite, vovô kowalsky vê o ímã cair no pé do pingüim queixoso e vovó põe açúcar no chá de tâmaras do jabuti feliz] ui "(?:[\\x20\\x2C\\x61-\\x7Aà-ãçéêíó-õúü])" À NOITE, VOVÔ KOWALSKY VÊ O ÍMà CAIR NO PÉ DO PINGÜIM QUEIXOSO E VOVÓ PÕE AÇÚCAR NO CHÁ DE TÂMARAS DO JABUTI FELIZ [{"captures":["À"],"index":0},{"captures":[" "],"index":1},{"captures":["N"],"index":2},{"captures":["O"],"index":3},{"captures":["I"],"index":4},{"captures":["T"],"index":5},{"captures":["E"],"index":6},{"captures":[","],"index":7},{"captures":[" "],"index":8},{"captures":["V"],"index":9},{"captures":["O"],"index":10},{"captures":["V"],"index":11},{"captures":["Ô"],"index":12},{"captures":[" "],"index":13},{"captures":["K"],"index":14},{"captures":["O"],"index":15},{"captures":["W"],"index":16},{"captures":["A"],"index":17},{"captures":["L"],"index":18},{"captures":["S"],"index":19},{"captures":["K"],"index":20},{"captures":["Y"],"index":21},{"captures":[" "],"index":22},{"captures":["V"],"index":23},{"captures":["Ê"],"index":24},{"captures":[" "],"index":25},{"captures":["O"],"index":26},{"captures":[" "],"index":27},{"captures":["Í"],"index":28},{"captures":["M"],"index":29},{"captures":["Ã"],"index":30},{"captures":[" "],"index":31},{"captures":["C"],"index":32},{"captures":["A"],"index":33},{"captures":["I"],"index":34},{"captures":["R"],"index":35},{"captures":[" "],"index":36},{"captures":["N"],"index":37},{"captures":["O"],"index":38},{"captures":[" "],"index":39},{"captures":["P"],"index":40},{"captures":["É"],"index":41},{"captures":[" "],"index":42},{"captures":["D"],"index":43},{"captures":["O"],"index":44},{"captures":[" "],"index":45},{"captures":["P"],"index":46},{"captures":["I"],"index":47},{"captures":["N"],"index":48},{"captures":["G"],"index":49},{"captures":["Ü"],"index":50},{"captures":["I"],"index":51},{"captures":["M"],"index":52},{"captures":[" "],"index":53},{"captures":["Q"],"index":54},{"captures":["U"],"index":55},{"captures":["E"],"index":56},{"captures":["I"],"index":57},{"captures":["X"],"index":58},{"captures":["O"],"index":59},{"captures":["S"],"index":60},{"captures":["O"],"index":61},{"captures":[" "],"index":62},{"captures":["E"],"index":63},{"captures":[" "],"index":64},{"captures":["V"],"index":65},{"captures":["O"],"index":66},{"captures":["V"],"index":67},{"captures":["Ó"],"index":68},{"captures":[" "],"index":69},{"captures":["P"],"index":70},{"captures":["Õ"],"index":71},{"captures":["E"],"index":72},{"captures":[" "],"index":73},{"captures":["A"],"index":74},{"captures":["Ç"],"index":75},{"captures":["Ú"],"index":76},{"captures":["C"],"index":77},{"captures":["A"],"index":78},{"captures":["R"],"index":79},{"captures":[" "],"index":80},{"captures":["N"],"index":81},{"captures":["O"],"index":82},{"captures":[" "],"index":83},{"captures":["C"],"index":84},{"captures":["H"],"index":85},{"captures":["Á"],"index":86},{"captures":[" "],"index":87},{"captures":["D"],"index":88},{"captures":["E"],"index":89},{"captures":[" "],"index":90},{"captures":["T"],"index":91},{"captures":["Â"],"index":92},{"captures":["M"],"index":93},{"captures":["A"],"index":94},{"captures":["R"],"index":95},{"captures":["A"],"index":96},{"captures":["S"],"index":97},{"captures":[" "],"index":98},{"captures":["D"],"index":99},{"captures":["O"],"index":100},{"captures":[" "],"index":101},{"captures":["J"],"index":102},{"captures":["A"],"index":103},{"captures":["B"],"index":104},{"captures":["U"],"index":105},{"captures":["T"],"index":106},{"captures":["I"],"index":107},{"captures":[" "],"index":108},{"captures":["F"],"index":109},{"captures":["E"],"index":110},{"captures":["L"],"index":111},{"captures":["I"],"index":112},{"captures":["Z"],"index":113}] +[à noite, vovô kowalsky vê o ímã cair no pé do pingüim queixoso e vovó põe açúcar no chá de tâmaras do jabuti feliz] vi )inconvertible( À NOITE, VOVÔ KOWALSKY VÊ O ÍMà CAIR NO PÉ DO PINGÜIM QUEIXOSO E VOVÓ PÕE AÇÚCAR NO CHÁ DE TÂMARAS DO JABUTI FELIZ [{"captures":["À"],"index":0},{"captures":[" "],"index":1},{"captures":["N"],"index":2},{"captures":["O"],"index":3},{"captures":["I"],"index":4},{"captures":["T"],"index":5},{"captures":["E"],"index":6},{"captures":[","],"index":7},{"captures":[" "],"index":8},{"captures":["V"],"index":9},{"captures":["O"],"index":10},{"captures":["V"],"index":11},{"captures":["Ô"],"index":12},{"captures":[" "],"index":13},{"captures":["K"],"index":14},{"captures":["O"],"index":15},{"captures":["W"],"index":16},{"captures":["A"],"index":17},{"captures":["L"],"index":18},{"captures":["S"],"index":19},{"captures":["K"],"index":20},{"captures":["Y"],"index":21},{"captures":[" "],"index":22},{"captures":["V"],"index":23},{"captures":["Ê"],"index":24},{"captures":[" "],"index":25},{"captures":["O"],"index":26},{"captures":[" "],"index":27},{"captures":["Í"],"index":28},{"captures":["M"],"index":29},{"captures":["Ã"],"index":30},{"captures":[" "],"index":31},{"captures":["C"],"index":32},{"captures":["A"],"index":33},{"captures":["I"],"index":34},{"captures":["R"],"index":35},{"captures":[" "],"index":36},{"captures":["N"],"index":37},{"captures":["O"],"index":38},{"captures":[" "],"index":39},{"captures":["P"],"index":40},{"captures":["É"],"index":41},{"captures":[" "],"index":42},{"captures":["D"],"index":43},{"captures":["O"],"index":44},{"captures":[" "],"index":45},{"captures":["P"],"index":46},{"captures":["I"],"index":47},{"captures":["N"],"index":48},{"captures":["G"],"index":49},{"captures":["Ü"],"index":50},{"captures":["I"],"index":51},{"captures":["M"],"index":52},{"captures":[" "],"index":53},{"captures":["Q"],"index":54},{"captures":["U"],"index":55},{"captures":["E"],"index":56},{"captures":["I"],"index":57},{"captures":["X"],"index":58},{"captures":["O"],"index":59},{"captures":["S"],"index":60},{"captures":["O"],"index":61},{"captures":[" "],"index":62},{"captures":["E"],"index":63},{"captures":[" "],"index":64},{"captures":["V"],"index":65},{"captures":["O"],"index":66},{"captures":["V"],"index":67},{"captures":["Ó"],"index":68},{"captures":[" "],"index":69},{"captures":["P"],"index":70},{"captures":["Õ"],"index":71},{"captures":["E"],"index":72},{"captures":[" "],"index":73},{"captures":["A"],"index":74},{"captures":["Ç"],"index":75},{"captures":["Ú"],"index":76},{"captures":["C"],"index":77},{"captures":["A"],"index":78},{"captures":["R"],"index":79},{"captures":[" "],"index":80},{"captures":["N"],"index":81},{"captures":["O"],"index":82},{"captures":[" "],"index":83},{"captures":["C"],"index":84},{"captures":["H"],"index":85},{"captures":["Á"],"index":86},{"captures":[" "],"index":87},{"captures":["D"],"index":88},{"captures":["E"],"index":89},{"captures":[" "],"index":90},{"captures":["T"],"index":91},{"captures":["Â"],"index":92},{"captures":["M"],"index":93},{"captures":["A"],"index":94},{"captures":["R"],"index":95},{"captures":["A"],"index":96},{"captures":["S"],"index":97},{"captures":[" "],"index":98},{"captures":["D"],"index":99},{"captures":["O"],"index":100},{"captures":[" "],"index":101},{"captures":["J"],"index":102},{"captures":["A"],"index":103},{"captures":["B"],"index":104},{"captures":["U"],"index":105},{"captures":["T"],"index":106},{"captures":["I"],"index":107},{"captures":[" "],"index":108},{"captures":["F"],"index":109},{"captures":["E"],"index":110},{"captures":["L"],"index":111},{"captures":["I"],"index":112},{"captures":["Z"],"index":113}] [À NOITE, VOVÔ KOWALSKY VÊ O ÍMà CAIR NO PÉ DO PINGÜIM QUEIXOSO E VOVÓ PÕE AÇÚCAR NO CHÁ DE TÂMARAS DO JABUTI FELIZ] i [À NOITE, VOVÔ KOWALSKY VÊ O ÍMà CAIR NO PÉ DO PINGÜIM QUEIXOSO E VOVÓ PÕE AÇÚCAR NO CHÁ DE TÂMARAS DO JABUTI FELIZ] à noite, vovô kowalsky vê o ímã cair no pé do pingüim queixoso e vovó põe açúcar no chá de tâmaras do jabuti feliz [{"captures":["à"],"index":0},{"captures":[" "],"index":1},{"captures":["n"],"index":2},{"captures":["o"],"index":3},{"captures":["i"],"index":4},{"captures":["t"],"index":5},{"captures":["e"],"index":6},{"captures":[","],"index":7},{"captures":[" "],"index":8},{"captures":["v"],"index":9},{"captures":["o"],"index":10},{"captures":["v"],"index":11},{"captures":["ô"],"index":12},{"captures":[" "],"index":13},{"captures":["k"],"index":14},{"captures":["o"],"index":15},{"captures":["w"],"index":16},{"captures":["a"],"index":17},{"captures":["l"],"index":18},{"captures":["s"],"index":19},{"captures":["k"],"index":20},{"captures":["y"],"index":21},{"captures":[" "],"index":22},{"captures":["v"],"index":23},{"captures":["ê"],"index":24},{"captures":[" "],"index":25},{"captures":["o"],"index":26},{"captures":[" "],"index":27},{"captures":["í"],"index":28},{"captures":["m"],"index":29},{"captures":["ã"],"index":30},{"captures":[" "],"index":31},{"captures":["c"],"index":32},{"captures":["a"],"index":33},{"captures":["i"],"index":34},{"captures":["r"],"index":35},{"captures":[" "],"index":36},{"captures":["n"],"index":37},{"captures":["o"],"index":38},{"captures":[" "],"index":39},{"captures":["p"],"index":40},{"captures":["é"],"index":41},{"captures":[" "],"index":42},{"captures":["d"],"index":43},{"captures":["o"],"index":44},{"captures":[" "],"index":45},{"captures":["p"],"index":46},{"captures":["i"],"index":47},{"captures":["n"],"index":48},{"captures":["g"],"index":49},{"captures":["ü"],"index":50},{"captures":["i"],"index":51},{"captures":["m"],"index":52},{"captures":[" "],"index":53},{"captures":["q"],"index":54},{"captures":["u"],"index":55},{"captures":["e"],"index":56},{"captures":["i"],"index":57},{"captures":["x"],"index":58},{"captures":["o"],"index":59},{"captures":["s"],"index":60},{"captures":["o"],"index":61},{"captures":[" "],"index":62},{"captures":["e"],"index":63},{"captures":[" "],"index":64},{"captures":["v"],"index":65},{"captures":["o"],"index":66},{"captures":["v"],"index":67},{"captures":["ó"],"index":68},{"captures":[" "],"index":69},{"captures":["p"],"index":70},{"captures":["õ"],"index":71},{"captures":["e"],"index":72},{"captures":[" "],"index":73},{"captures":["a"],"index":74},{"captures":["ç"],"index":75},{"captures":["ú"],"index":76},{"captures":["c"],"index":77},{"captures":["a"],"index":78},{"captures":["r"],"index":79},{"captures":[" "],"index":80},{"captures":["n"],"index":81},{"captures":["o"],"index":82},{"captures":[" "],"index":83},{"captures":["c"],"index":84},{"captures":["h"],"index":85},{"captures":["á"],"index":86},{"captures":[" "],"index":87},{"captures":["d"],"index":88},{"captures":["e"],"index":89},{"captures":[" "],"index":90},{"captures":["t"],"index":91},{"captures":["â"],"index":92},{"captures":["m"],"index":93},{"captures":["a"],"index":94},{"captures":["r"],"index":95},{"captures":["a"],"index":96},{"captures":["s"],"index":97},{"captures":[" "],"index":98},{"captures":["d"],"index":99},{"captures":["o"],"index":100},{"captures":[" "],"index":101},{"captures":["j"],"index":102},{"captures":["a"],"index":103},{"captures":["b"],"index":104},{"captures":["u"],"index":105},{"captures":["t"],"index":106},{"captures":["i"],"index":107},{"captures":[" "],"index":108},{"captures":["f"],"index":109},{"captures":["e"],"index":110},{"captures":["l"],"index":111},{"captures":["i"],"index":112},{"captures":["z"],"index":113}] [À NOITE, VOVÔ KOWALSKY VÊ O ÍMà CAIR NO PÉ DO PINGÜIM QUEIXOSO E VOVÓ PÕE AÇÚCAR NO CHÁ DE TÂMARAS DO JABUTI FELIZ] ui "(?:[\\x20\\x2C\\x41-\\x5AÀ-ÃÇÉÊÍÓ-ÕÚÜ])" à noite, vovô kowalsky vê o ímã cair no pé do pingüim queixoso e vovó põe açúcar no chá de tâmaras do jabuti feliz [{"captures":["à"],"index":0},{"captures":[" "],"index":1},{"captures":["n"],"index":2},{"captures":["o"],"index":3},{"captures":["i"],"index":4},{"captures":["t"],"index":5},{"captures":["e"],"index":6},{"captures":[","],"index":7},{"captures":[" "],"index":8},{"captures":["v"],"index":9},{"captures":["o"],"index":10},{"captures":["v"],"index":11},{"captures":["ô"],"index":12},{"captures":[" "],"index":13},{"captures":["k"],"index":14},{"captures":["o"],"index":15},{"captures":["w"],"index":16},{"captures":["a"],"index":17},{"captures":["l"],"index":18},{"captures":["s"],"index":19},{"captures":["k"],"index":20},{"captures":["y"],"index":21},{"captures":[" "],"index":22},{"captures":["v"],"index":23},{"captures":["ê"],"index":24},{"captures":[" "],"index":25},{"captures":["o"],"index":26},{"captures":[" "],"index":27},{"captures":["í"],"index":28},{"captures":["m"],"index":29},{"captures":["ã"],"index":30},{"captures":[" "],"index":31},{"captures":["c"],"index":32},{"captures":["a"],"index":33},{"captures":["i"],"index":34},{"captures":["r"],"index":35},{"captures":[" "],"index":36},{"captures":["n"],"index":37},{"captures":["o"],"index":38},{"captures":[" "],"index":39},{"captures":["p"],"index":40},{"captures":["é"],"index":41},{"captures":[" "],"index":42},{"captures":["d"],"index":43},{"captures":["o"],"index":44},{"captures":[" "],"index":45},{"captures":["p"],"index":46},{"captures":["i"],"index":47},{"captures":["n"],"index":48},{"captures":["g"],"index":49},{"captures":["ü"],"index":50},{"captures":["i"],"index":51},{"captures":["m"],"index":52},{"captures":[" "],"index":53},{"captures":["q"],"index":54},{"captures":["u"],"index":55},{"captures":["e"],"index":56},{"captures":["i"],"index":57},{"captures":["x"],"index":58},{"captures":["o"],"index":59},{"captures":["s"],"index":60},{"captures":["o"],"index":61},{"captures":[" "],"index":62},{"captures":["e"],"index":63},{"captures":[" "],"index":64},{"captures":["v"],"index":65},{"captures":["o"],"index":66},{"captures":["v"],"index":67},{"captures":["ó"],"index":68},{"captures":[" "],"index":69},{"captures":["p"],"index":70},{"captures":["õ"],"index":71},{"captures":["e"],"index":72},{"captures":[" "],"index":73},{"captures":["a"],"index":74},{"captures":["ç"],"index":75},{"captures":["ú"],"index":76},{"captures":["c"],"index":77},{"captures":["a"],"index":78},{"captures":["r"],"index":79},{"captures":[" "],"index":80},{"captures":["n"],"index":81},{"captures":["o"],"index":82},{"captures":[" "],"index":83},{"captures":["c"],"index":84},{"captures":["h"],"index":85},{"captures":["á"],"index":86},{"captures":[" "],"index":87},{"captures":["d"],"index":88},{"captures":["e"],"index":89},{"captures":[" "],"index":90},{"captures":["t"],"index":91},{"captures":["â"],"index":92},{"captures":["m"],"index":93},{"captures":["a"],"index":94},{"captures":["r"],"index":95},{"captures":["a"],"index":96},{"captures":["s"],"index":97},{"captures":[" "],"index":98},{"captures":["d"],"index":99},{"captures":["o"],"index":100},{"captures":[" "],"index":101},{"captures":["j"],"index":102},{"captures":["a"],"index":103},{"captures":["b"],"index":104},{"captures":["u"],"index":105},{"captures":["t"],"index":106},{"captures":["i"],"index":107},{"captures":[" "],"index":108},{"captures":["f"],"index":109},{"captures":["e"],"index":110},{"captures":["l"],"index":111},{"captures":["i"],"index":112},{"captures":["z"],"index":113}] +[À NOITE, VOVÔ KOWALSKY VÊ O ÍMà CAIR NO PÉ DO PINGÜIM QUEIXOSO E VOVÓ PÕE AÇÚCAR NO CHÁ DE TÂMARAS DO JABUTI FELIZ] vi )inconvertible( à noite, vovô kowalsky vê o ímã cair no pé do pingüim queixoso e vovó põe açúcar no chá de tâmaras do jabuti feliz [{"captures":["à"],"index":0},{"captures":[" "],"index":1},{"captures":["n"],"index":2},{"captures":["o"],"index":3},{"captures":["i"],"index":4},{"captures":["t"],"index":5},{"captures":["e"],"index":6},{"captures":[","],"index":7},{"captures":[" "],"index":8},{"captures":["v"],"index":9},{"captures":["o"],"index":10},{"captures":["v"],"index":11},{"captures":["ô"],"index":12},{"captures":[" "],"index":13},{"captures":["k"],"index":14},{"captures":["o"],"index":15},{"captures":["w"],"index":16},{"captures":["a"],"index":17},{"captures":["l"],"index":18},{"captures":["s"],"index":19},{"captures":["k"],"index":20},{"captures":["y"],"index":21},{"captures":[" "],"index":22},{"captures":["v"],"index":23},{"captures":["ê"],"index":24},{"captures":[" "],"index":25},{"captures":["o"],"index":26},{"captures":[" "],"index":27},{"captures":["í"],"index":28},{"captures":["m"],"index":29},{"captures":["ã"],"index":30},{"captures":[" "],"index":31},{"captures":["c"],"index":32},{"captures":["a"],"index":33},{"captures":["i"],"index":34},{"captures":["r"],"index":35},{"captures":[" "],"index":36},{"captures":["n"],"index":37},{"captures":["o"],"index":38},{"captures":[" "],"index":39},{"captures":["p"],"index":40},{"captures":["é"],"index":41},{"captures":[" "],"index":42},{"captures":["d"],"index":43},{"captures":["o"],"index":44},{"captures":[" "],"index":45},{"captures":["p"],"index":46},{"captures":["i"],"index":47},{"captures":["n"],"index":48},{"captures":["g"],"index":49},{"captures":["ü"],"index":50},{"captures":["i"],"index":51},{"captures":["m"],"index":52},{"captures":[" "],"index":53},{"captures":["q"],"index":54},{"captures":["u"],"index":55},{"captures":["e"],"index":56},{"captures":["i"],"index":57},{"captures":["x"],"index":58},{"captures":["o"],"index":59},{"captures":["s"],"index":60},{"captures":["o"],"index":61},{"captures":[" "],"index":62},{"captures":["e"],"index":63},{"captures":[" "],"index":64},{"captures":["v"],"index":65},{"captures":["o"],"index":66},{"captures":["v"],"index":67},{"captures":["ó"],"index":68},{"captures":[" "],"index":69},{"captures":["p"],"index":70},{"captures":["õ"],"index":71},{"captures":["e"],"index":72},{"captures":[" "],"index":73},{"captures":["a"],"index":74},{"captures":["ç"],"index":75},{"captures":["ú"],"index":76},{"captures":["c"],"index":77},{"captures":["a"],"index":78},{"captures":["r"],"index":79},{"captures":[" "],"index":80},{"captures":["n"],"index":81},{"captures":["o"],"index":82},{"captures":[" "],"index":83},{"captures":["c"],"index":84},{"captures":["h"],"index":85},{"captures":["á"],"index":86},{"captures":[" "],"index":87},{"captures":["d"],"index":88},{"captures":["e"],"index":89},{"captures":[" "],"index":90},{"captures":["t"],"index":91},{"captures":["â"],"index":92},{"captures":["m"],"index":93},{"captures":["a"],"index":94},{"captures":["r"],"index":95},{"captures":["a"],"index":96},{"captures":["s"],"index":97},{"captures":[" "],"index":98},{"captures":["d"],"index":99},{"captures":["o"],"index":100},{"captures":[" "],"index":101},{"captures":["j"],"index":102},{"captures":["a"],"index":103},{"captures":["b"],"index":104},{"captures":["u"],"index":105},{"captures":["t"],"index":106},{"captures":["i"],"index":107},{"captures":[" "],"index":108},{"captures":["f"],"index":109},{"captures":["e"],"index":110},{"captures":["l"],"index":111},{"captures":["i"],"index":112},{"captures":["z"],"index":113}] [benjamín pidió una bebida de kiwi y fresa noé, sin vergüenza, la más exquisita champaña del menú] i [benjamín pidió una bebida de kiwi y fresa noé, sin vergüenza, la más exquisita champaña del menú] BENJAMÍN PIDIÓ UNA BEBIDA DE KIWI Y FRESA NOÉ, SIN VERGÜENZA, LA MÁS EXQUISITA CHAMPAÑA DEL MENÚ [{"captures":["B"],"index":0},{"captures":["E"],"index":1},{"captures":["N"],"index":2},{"captures":["J"],"index":3},{"captures":["A"],"index":4},{"captures":["M"],"index":5},{"captures":["Í"],"index":6},{"captures":["N"],"index":7},{"captures":[" "],"index":8},{"captures":["P"],"index":9},{"captures":["I"],"index":10},{"captures":["D"],"index":11},{"captures":["I"],"index":12},{"captures":["Ó"],"index":13},{"captures":[" "],"index":14},{"captures":["U"],"index":15},{"captures":["N"],"index":16},{"captures":["A"],"index":17},{"captures":[" "],"index":18},{"captures":["B"],"index":19},{"captures":["E"],"index":20},{"captures":["B"],"index":21},{"captures":["I"],"index":22},{"captures":["D"],"index":23},{"captures":["A"],"index":24},{"captures":[" "],"index":25},{"captures":["D"],"index":26},{"captures":["E"],"index":27},{"captures":[" "],"index":28},{"captures":["K"],"index":29},{"captures":["I"],"index":30},{"captures":["W"],"index":31},{"captures":["I"],"index":32},{"captures":[" "],"index":33},{"captures":["Y"],"index":34},{"captures":[" "],"index":35},{"captures":["F"],"index":36},{"captures":["R"],"index":37},{"captures":["E"],"index":38},{"captures":["S"],"index":39},{"captures":["A"],"index":40},{"captures":[" "],"index":41},{"captures":["N"],"index":42},{"captures":["O"],"index":43},{"captures":["É"],"index":44},{"captures":[","],"index":45},{"captures":[" "],"index":46},{"captures":["S"],"index":47},{"captures":["I"],"index":48},{"captures":["N"],"index":49},{"captures":[" "],"index":50},{"captures":["V"],"index":51},{"captures":["E"],"index":52},{"captures":["R"],"index":53},{"captures":["G"],"index":54},{"captures":["Ü"],"index":55},{"captures":["E"],"index":56},{"captures":["N"],"index":57},{"captures":["Z"],"index":58},{"captures":["A"],"index":59},{"captures":[","],"index":60},{"captures":[" "],"index":61},{"captures":["L"],"index":62},{"captures":["A"],"index":63},{"captures":[" "],"index":64},{"captures":["M"],"index":65},{"captures":["Á"],"index":66},{"captures":["S"],"index":67},{"captures":[" "],"index":68},{"captures":["E"],"index":69},{"captures":["X"],"index":70},{"captures":["Q"],"index":71},{"captures":["U"],"index":72},{"captures":["I"],"index":73},{"captures":["S"],"index":74},{"captures":["I"],"index":75},{"captures":["T"],"index":76},{"captures":["A"],"index":77},{"captures":[" "],"index":78},{"captures":["C"],"index":79},{"captures":["H"],"index":80},{"captures":["A"],"index":81},{"captures":["M"],"index":82},{"captures":["P"],"index":83},{"captures":["A"],"index":84},{"captures":["Ñ"],"index":85},{"captures":["A"],"index":86},{"captures":[" "],"index":87},{"captures":["D"],"index":88},{"captures":["E"],"index":89},{"captures":["L"],"index":90},{"captures":[" "],"index":91},{"captures":["M"],"index":92},{"captures":["E"],"index":93},{"captures":["N"],"index":94},{"captures":["Ú"],"index":95}] [benjamín pidió una bebida de kiwi y fresa noé, sin vergüenza, la más exquisita champaña del menú] ui "(?:[\\x20\\x2C\\x61-\\x7Aáéíñóúü])" BENJAMÍN PIDIÓ UNA BEBIDA DE KIWI Y FRESA NOÉ, SIN VERGÜENZA, LA MÁS EXQUISITA CHAMPAÑA DEL MENÚ [{"captures":["B"],"index":0},{"captures":["E"],"index":1},{"captures":["N"],"index":2},{"captures":["J"],"index":3},{"captures":["A"],"index":4},{"captures":["M"],"index":5},{"captures":["Í"],"index":6},{"captures":["N"],"index":7},{"captures":[" "],"index":8},{"captures":["P"],"index":9},{"captures":["I"],"index":10},{"captures":["D"],"index":11},{"captures":["I"],"index":12},{"captures":["Ó"],"index":13},{"captures":[" "],"index":14},{"captures":["U"],"index":15},{"captures":["N"],"index":16},{"captures":["A"],"index":17},{"captures":[" "],"index":18},{"captures":["B"],"index":19},{"captures":["E"],"index":20},{"captures":["B"],"index":21},{"captures":["I"],"index":22},{"captures":["D"],"index":23},{"captures":["A"],"index":24},{"captures":[" "],"index":25},{"captures":["D"],"index":26},{"captures":["E"],"index":27},{"captures":[" "],"index":28},{"captures":["K"],"index":29},{"captures":["I"],"index":30},{"captures":["W"],"index":31},{"captures":["I"],"index":32},{"captures":[" "],"index":33},{"captures":["Y"],"index":34},{"captures":[" "],"index":35},{"captures":["F"],"index":36},{"captures":["R"],"index":37},{"captures":["E"],"index":38},{"captures":["S"],"index":39},{"captures":["A"],"index":40},{"captures":[" "],"index":41},{"captures":["N"],"index":42},{"captures":["O"],"index":43},{"captures":["É"],"index":44},{"captures":[","],"index":45},{"captures":[" "],"index":46},{"captures":["S"],"index":47},{"captures":["I"],"index":48},{"captures":["N"],"index":49},{"captures":[" "],"index":50},{"captures":["V"],"index":51},{"captures":["E"],"index":52},{"captures":["R"],"index":53},{"captures":["G"],"index":54},{"captures":["Ü"],"index":55},{"captures":["E"],"index":56},{"captures":["N"],"index":57},{"captures":["Z"],"index":58},{"captures":["A"],"index":59},{"captures":[","],"index":60},{"captures":[" "],"index":61},{"captures":["L"],"index":62},{"captures":["A"],"index":63},{"captures":[" "],"index":64},{"captures":["M"],"index":65},{"captures":["Á"],"index":66},{"captures":["S"],"index":67},{"captures":[" "],"index":68},{"captures":["E"],"index":69},{"captures":["X"],"index":70},{"captures":["Q"],"index":71},{"captures":["U"],"index":72},{"captures":["I"],"index":73},{"captures":["S"],"index":74},{"captures":["I"],"index":75},{"captures":["T"],"index":76},{"captures":["A"],"index":77},{"captures":[" "],"index":78},{"captures":["C"],"index":79},{"captures":["H"],"index":80},{"captures":["A"],"index":81},{"captures":["M"],"index":82},{"captures":["P"],"index":83},{"captures":["A"],"index":84},{"captures":["Ñ"],"index":85},{"captures":["A"],"index":86},{"captures":[" "],"index":87},{"captures":["D"],"index":88},{"captures":["E"],"index":89},{"captures":["L"],"index":90},{"captures":[" "],"index":91},{"captures":["M"],"index":92},{"captures":["E"],"index":93},{"captures":["N"],"index":94},{"captures":["Ú"],"index":95}] +[benjamín pidió una bebida de kiwi y fresa noé, sin vergüenza, la más exquisita champaña del menú] vi )inconvertible( BENJAMÍN PIDIÓ UNA BEBIDA DE KIWI Y FRESA NOÉ, SIN VERGÜENZA, LA MÁS EXQUISITA CHAMPAÑA DEL MENÚ [{"captures":["B"],"index":0},{"captures":["E"],"index":1},{"captures":["N"],"index":2},{"captures":["J"],"index":3},{"captures":["A"],"index":4},{"captures":["M"],"index":5},{"captures":["Í"],"index":6},{"captures":["N"],"index":7},{"captures":[" "],"index":8},{"captures":["P"],"index":9},{"captures":["I"],"index":10},{"captures":["D"],"index":11},{"captures":["I"],"index":12},{"captures":["Ó"],"index":13},{"captures":[" "],"index":14},{"captures":["U"],"index":15},{"captures":["N"],"index":16},{"captures":["A"],"index":17},{"captures":[" "],"index":18},{"captures":["B"],"index":19},{"captures":["E"],"index":20},{"captures":["B"],"index":21},{"captures":["I"],"index":22},{"captures":["D"],"index":23},{"captures":["A"],"index":24},{"captures":[" "],"index":25},{"captures":["D"],"index":26},{"captures":["E"],"index":27},{"captures":[" "],"index":28},{"captures":["K"],"index":29},{"captures":["I"],"index":30},{"captures":["W"],"index":31},{"captures":["I"],"index":32},{"captures":[" "],"index":33},{"captures":["Y"],"index":34},{"captures":[" "],"index":35},{"captures":["F"],"index":36},{"captures":["R"],"index":37},{"captures":["E"],"index":38},{"captures":["S"],"index":39},{"captures":["A"],"index":40},{"captures":[" "],"index":41},{"captures":["N"],"index":42},{"captures":["O"],"index":43},{"captures":["É"],"index":44},{"captures":[","],"index":45},{"captures":[" "],"index":46},{"captures":["S"],"index":47},{"captures":["I"],"index":48},{"captures":["N"],"index":49},{"captures":[" "],"index":50},{"captures":["V"],"index":51},{"captures":["E"],"index":52},{"captures":["R"],"index":53},{"captures":["G"],"index":54},{"captures":["Ü"],"index":55},{"captures":["E"],"index":56},{"captures":["N"],"index":57},{"captures":["Z"],"index":58},{"captures":["A"],"index":59},{"captures":[","],"index":60},{"captures":[" "],"index":61},{"captures":["L"],"index":62},{"captures":["A"],"index":63},{"captures":[" "],"index":64},{"captures":["M"],"index":65},{"captures":["Á"],"index":66},{"captures":["S"],"index":67},{"captures":[" "],"index":68},{"captures":["E"],"index":69},{"captures":["X"],"index":70},{"captures":["Q"],"index":71},{"captures":["U"],"index":72},{"captures":["I"],"index":73},{"captures":["S"],"index":74},{"captures":["I"],"index":75},{"captures":["T"],"index":76},{"captures":["A"],"index":77},{"captures":[" "],"index":78},{"captures":["C"],"index":79},{"captures":["H"],"index":80},{"captures":["A"],"index":81},{"captures":["M"],"index":82},{"captures":["P"],"index":83},{"captures":["A"],"index":84},{"captures":["Ñ"],"index":85},{"captures":["A"],"index":86},{"captures":[" "],"index":87},{"captures":["D"],"index":88},{"captures":["E"],"index":89},{"captures":["L"],"index":90},{"captures":[" "],"index":91},{"captures":["M"],"index":92},{"captures":["E"],"index":93},{"captures":["N"],"index":94},{"captures":["Ú"],"index":95}] [BENJAMÍN PIDIÓ UNA BEBIDA DE KIWI Y FRESA NOÉ, SIN VERGÜENZA, LA MÁS EXQUISITA CHAMPAÑA DEL MENÚ] i [BENJAMÍN PIDIÓ UNA BEBIDA DE KIWI Y FRESA NOÉ, SIN VERGÜENZA, LA MÁS EXQUISITA CHAMPAÑA DEL MENÚ] benjamín pidió una bebida de kiwi y fresa noé, sin vergüenza, la más exquisita champaña del menú [{"captures":["b"],"index":0},{"captures":["e"],"index":1},{"captures":["n"],"index":2},{"captures":["j"],"index":3},{"captures":["a"],"index":4},{"captures":["m"],"index":5},{"captures":["í"],"index":6},{"captures":["n"],"index":7},{"captures":[" "],"index":8},{"captures":["p"],"index":9},{"captures":["i"],"index":10},{"captures":["d"],"index":11},{"captures":["i"],"index":12},{"captures":["ó"],"index":13},{"captures":[" "],"index":14},{"captures":["u"],"index":15},{"captures":["n"],"index":16},{"captures":["a"],"index":17},{"captures":[" "],"index":18},{"captures":["b"],"index":19},{"captures":["e"],"index":20},{"captures":["b"],"index":21},{"captures":["i"],"index":22},{"captures":["d"],"index":23},{"captures":["a"],"index":24},{"captures":[" "],"index":25},{"captures":["d"],"index":26},{"captures":["e"],"index":27},{"captures":[" "],"index":28},{"captures":["k"],"index":29},{"captures":["i"],"index":30},{"captures":["w"],"index":31},{"captures":["i"],"index":32},{"captures":[" "],"index":33},{"captures":["y"],"index":34},{"captures":[" "],"index":35},{"captures":["f"],"index":36},{"captures":["r"],"index":37},{"captures":["e"],"index":38},{"captures":["s"],"index":39},{"captures":["a"],"index":40},{"captures":[" "],"index":41},{"captures":["n"],"index":42},{"captures":["o"],"index":43},{"captures":["é"],"index":44},{"captures":[","],"index":45},{"captures":[" "],"index":46},{"captures":["s"],"index":47},{"captures":["i"],"index":48},{"captures":["n"],"index":49},{"captures":[" "],"index":50},{"captures":["v"],"index":51},{"captures":["e"],"index":52},{"captures":["r"],"index":53},{"captures":["g"],"index":54},{"captures":["ü"],"index":55},{"captures":["e"],"index":56},{"captures":["n"],"index":57},{"captures":["z"],"index":58},{"captures":["a"],"index":59},{"captures":[","],"index":60},{"captures":[" "],"index":61},{"captures":["l"],"index":62},{"captures":["a"],"index":63},{"captures":[" "],"index":64},{"captures":["m"],"index":65},{"captures":["á"],"index":66},{"captures":["s"],"index":67},{"captures":[" "],"index":68},{"captures":["e"],"index":69},{"captures":["x"],"index":70},{"captures":["q"],"index":71},{"captures":["u"],"index":72},{"captures":["i"],"index":73},{"captures":["s"],"index":74},{"captures":["i"],"index":75},{"captures":["t"],"index":76},{"captures":["a"],"index":77},{"captures":[" "],"index":78},{"captures":["c"],"index":79},{"captures":["h"],"index":80},{"captures":["a"],"index":81},{"captures":["m"],"index":82},{"captures":["p"],"index":83},{"captures":["a"],"index":84},{"captures":["ñ"],"index":85},{"captures":["a"],"index":86},{"captures":[" "],"index":87},{"captures":["d"],"index":88},{"captures":["e"],"index":89},{"captures":["l"],"index":90},{"captures":[" "],"index":91},{"captures":["m"],"index":92},{"captures":["e"],"index":93},{"captures":["n"],"index":94},{"captures":["ú"],"index":95}] [BENJAMÍN PIDIÓ UNA BEBIDA DE KIWI Y FRESA NOÉ, SIN VERGÜENZA, LA MÁS EXQUISITA CHAMPAÑA DEL MENÚ] ui "(?:[\\x20\\x2C\\x41-\\x5AÁÉÍÑÓÚÜ])" benjamín pidió una bebida de kiwi y fresa noé, sin vergüenza, la más exquisita champaña del menú [{"captures":["b"],"index":0},{"captures":["e"],"index":1},{"captures":["n"],"index":2},{"captures":["j"],"index":3},{"captures":["a"],"index":4},{"captures":["m"],"index":5},{"captures":["í"],"index":6},{"captures":["n"],"index":7},{"captures":[" "],"index":8},{"captures":["p"],"index":9},{"captures":["i"],"index":10},{"captures":["d"],"index":11},{"captures":["i"],"index":12},{"captures":["ó"],"index":13},{"captures":[" "],"index":14},{"captures":["u"],"index":15},{"captures":["n"],"index":16},{"captures":["a"],"index":17},{"captures":[" "],"index":18},{"captures":["b"],"index":19},{"captures":["e"],"index":20},{"captures":["b"],"index":21},{"captures":["i"],"index":22},{"captures":["d"],"index":23},{"captures":["a"],"index":24},{"captures":[" "],"index":25},{"captures":["d"],"index":26},{"captures":["e"],"index":27},{"captures":[" "],"index":28},{"captures":["k"],"index":29},{"captures":["i"],"index":30},{"captures":["w"],"index":31},{"captures":["i"],"index":32},{"captures":[" "],"index":33},{"captures":["y"],"index":34},{"captures":[" "],"index":35},{"captures":["f"],"index":36},{"captures":["r"],"index":37},{"captures":["e"],"index":38},{"captures":["s"],"index":39},{"captures":["a"],"index":40},{"captures":[" "],"index":41},{"captures":["n"],"index":42},{"captures":["o"],"index":43},{"captures":["é"],"index":44},{"captures":[","],"index":45},{"captures":[" "],"index":46},{"captures":["s"],"index":47},{"captures":["i"],"index":48},{"captures":["n"],"index":49},{"captures":[" "],"index":50},{"captures":["v"],"index":51},{"captures":["e"],"index":52},{"captures":["r"],"index":53},{"captures":["g"],"index":54},{"captures":["ü"],"index":55},{"captures":["e"],"index":56},{"captures":["n"],"index":57},{"captures":["z"],"index":58},{"captures":["a"],"index":59},{"captures":[","],"index":60},{"captures":[" "],"index":61},{"captures":["l"],"index":62},{"captures":["a"],"index":63},{"captures":[" "],"index":64},{"captures":["m"],"index":65},{"captures":["á"],"index":66},{"captures":["s"],"index":67},{"captures":[" "],"index":68},{"captures":["e"],"index":69},{"captures":["x"],"index":70},{"captures":["q"],"index":71},{"captures":["u"],"index":72},{"captures":["i"],"index":73},{"captures":["s"],"index":74},{"captures":["i"],"index":75},{"captures":["t"],"index":76},{"captures":["a"],"index":77},{"captures":[" "],"index":78},{"captures":["c"],"index":79},{"captures":["h"],"index":80},{"captures":["a"],"index":81},{"captures":["m"],"index":82},{"captures":["p"],"index":83},{"captures":["a"],"index":84},{"captures":["ñ"],"index":85},{"captures":["a"],"index":86},{"captures":[" "],"index":87},{"captures":["d"],"index":88},{"captures":["e"],"index":89},{"captures":["l"],"index":90},{"captures":[" "],"index":91},{"captures":["m"],"index":92},{"captures":["e"],"index":93},{"captures":["n"],"index":94},{"captures":["ú"],"index":95}] +[BENJAMÍN PIDIÓ UNA BEBIDA DE KIWI Y FRESA NOÉ, SIN VERGÜENZA, LA MÁS EXQUISITA CHAMPAÑA DEL MENÚ] vi )inconvertible( benjamín pidió una bebida de kiwi y fresa noé, sin vergüenza, la más exquisita champaña del menú [{"captures":["b"],"index":0},{"captures":["e"],"index":1},{"captures":["n"],"index":2},{"captures":["j"],"index":3},{"captures":["a"],"index":4},{"captures":["m"],"index":5},{"captures":["í"],"index":6},{"captures":["n"],"index":7},{"captures":[" "],"index":8},{"captures":["p"],"index":9},{"captures":["i"],"index":10},{"captures":["d"],"index":11},{"captures":["i"],"index":12},{"captures":["ó"],"index":13},{"captures":[" "],"index":14},{"captures":["u"],"index":15},{"captures":["n"],"index":16},{"captures":["a"],"index":17},{"captures":[" "],"index":18},{"captures":["b"],"index":19},{"captures":["e"],"index":20},{"captures":["b"],"index":21},{"captures":["i"],"index":22},{"captures":["d"],"index":23},{"captures":["a"],"index":24},{"captures":[" "],"index":25},{"captures":["d"],"index":26},{"captures":["e"],"index":27},{"captures":[" "],"index":28},{"captures":["k"],"index":29},{"captures":["i"],"index":30},{"captures":["w"],"index":31},{"captures":["i"],"index":32},{"captures":[" "],"index":33},{"captures":["y"],"index":34},{"captures":[" "],"index":35},{"captures":["f"],"index":36},{"captures":["r"],"index":37},{"captures":["e"],"index":38},{"captures":["s"],"index":39},{"captures":["a"],"index":40},{"captures":[" "],"index":41},{"captures":["n"],"index":42},{"captures":["o"],"index":43},{"captures":["é"],"index":44},{"captures":[","],"index":45},{"captures":[" "],"index":46},{"captures":["s"],"index":47},{"captures":["i"],"index":48},{"captures":["n"],"index":49},{"captures":[" "],"index":50},{"captures":["v"],"index":51},{"captures":["e"],"index":52},{"captures":["r"],"index":53},{"captures":["g"],"index":54},{"captures":["ü"],"index":55},{"captures":["e"],"index":56},{"captures":["n"],"index":57},{"captures":["z"],"index":58},{"captures":["a"],"index":59},{"captures":[","],"index":60},{"captures":[" "],"index":61},{"captures":["l"],"index":62},{"captures":["a"],"index":63},{"captures":[" "],"index":64},{"captures":["m"],"index":65},{"captures":["á"],"index":66},{"captures":["s"],"index":67},{"captures":[" "],"index":68},{"captures":["e"],"index":69},{"captures":["x"],"index":70},{"captures":["q"],"index":71},{"captures":["u"],"index":72},{"captures":["i"],"index":73},{"captures":["s"],"index":74},{"captures":["i"],"index":75},{"captures":["t"],"index":76},{"captures":["a"],"index":77},{"captures":[" "],"index":78},{"captures":["c"],"index":79},{"captures":["h"],"index":80},{"captures":["a"],"index":81},{"captures":["m"],"index":82},{"captures":["p"],"index":83},{"captures":["a"],"index":84},{"captures":["ñ"],"index":85},{"captures":["a"],"index":86},{"captures":[" "],"index":87},{"captures":["d"],"index":88},{"captures":["e"],"index":89},{"captures":["l"],"index":90},{"captures":[" "],"index":91},{"captures":["m"],"index":92},{"captures":["e"],"index":93},{"captures":["n"],"index":94},{"captures":["ú"],"index":95}] [příliš žluťoučký kůň úpěl ďábelské ódy] i [příliš žluťoučký kůň úpěl ďábelské ódy] PŘÍLIŠ ŽLUŤOUČKÝ KŮŇ ÚPĚL ĎÁBELSKÉ ÓDY [{"captures":["P"],"index":0},{"captures":["Ř"],"index":1},{"captures":["Í"],"index":2},{"captures":["L"],"index":3},{"captures":["I"],"index":4},{"captures":["Š"],"index":5},{"captures":[" "],"index":6},{"captures":["Ž"],"index":7},{"captures":["L"],"index":8},{"captures":["U"],"index":9},{"captures":["Ť"],"index":10},{"captures":["O"],"index":11},{"captures":["U"],"index":12},{"captures":["Č"],"index":13},{"captures":["K"],"index":14},{"captures":["Ý"],"index":15},{"captures":[" "],"index":16},{"captures":["K"],"index":17},{"captures":["Ů"],"index":18},{"captures":["Ň"],"index":19},{"captures":[" "],"index":20},{"captures":["Ú"],"index":21},{"captures":["P"],"index":22},{"captures":["Ě"],"index":23},{"captures":["L"],"index":24},{"captures":[" "],"index":25},{"captures":["Ď"],"index":26},{"captures":["Á"],"index":27},{"captures":["B"],"index":28},{"captures":["E"],"index":29},{"captures":["L"],"index":30},{"captures":["S"],"index":31},{"captures":["K"],"index":32},{"captures":["É"],"index":33},{"captures":[" "],"index":34},{"captures":["Ó"],"index":35},{"captures":["D"],"index":36},{"captures":["Y"],"index":37}] [příliš žluťoučký kůň úpěl ďábelské ódy] ui "(?:[\\x20\\x62\\x64\\x65\\x69\\x6B\\x6C\\x6F\\x70\\x73\\x75\\x79áéíóúýčďěňřšťůž])" PŘÍLIŠ ŽLUŤOUČKÝ KŮŇ ÚPĚL ĎÁBELSKÉ ÓDY [{"captures":["P"],"index":0},{"captures":["Ř"],"index":1},{"captures":["Í"],"index":2},{"captures":["L"],"index":3},{"captures":["I"],"index":4},{"captures":["Š"],"index":5},{"captures":[" "],"index":6},{"captures":["Ž"],"index":7},{"captures":["L"],"index":8},{"captures":["U"],"index":9},{"captures":["Ť"],"index":10},{"captures":["O"],"index":11},{"captures":["U"],"index":12},{"captures":["Č"],"index":13},{"captures":["K"],"index":14},{"captures":["Ý"],"index":15},{"captures":[" "],"index":16},{"captures":["K"],"index":17},{"captures":["Ů"],"index":18},{"captures":["Ň"],"index":19},{"captures":[" "],"index":20},{"captures":["Ú"],"index":21},{"captures":["P"],"index":22},{"captures":["Ě"],"index":23},{"captures":["L"],"index":24},{"captures":[" "],"index":25},{"captures":["Ď"],"index":26},{"captures":["Á"],"index":27},{"captures":["B"],"index":28},{"captures":["E"],"index":29},{"captures":["L"],"index":30},{"captures":["S"],"index":31},{"captures":["K"],"index":32},{"captures":["É"],"index":33},{"captures":[" "],"index":34},{"captures":["Ó"],"index":35},{"captures":["D"],"index":36},{"captures":["Y"],"index":37}] +[příliš žluťoučký kůň úpěl ďábelské ódy] vi )inconvertible( PŘÍLIŠ ŽLUŤOUČKÝ KŮŇ ÚPĚL ĎÁBELSKÉ ÓDY [{"captures":["P"],"index":0},{"captures":["Ř"],"index":1},{"captures":["Í"],"index":2},{"captures":["L"],"index":3},{"captures":["I"],"index":4},{"captures":["Š"],"index":5},{"captures":[" "],"index":6},{"captures":["Ž"],"index":7},{"captures":["L"],"index":8},{"captures":["U"],"index":9},{"captures":["Ť"],"index":10},{"captures":["O"],"index":11},{"captures":["U"],"index":12},{"captures":["Č"],"index":13},{"captures":["K"],"index":14},{"captures":["Ý"],"index":15},{"captures":[" "],"index":16},{"captures":["K"],"index":17},{"captures":["Ů"],"index":18},{"captures":["Ň"],"index":19},{"captures":[" "],"index":20},{"captures":["Ú"],"index":21},{"captures":["P"],"index":22},{"captures":["Ě"],"index":23},{"captures":["L"],"index":24},{"captures":[" "],"index":25},{"captures":["Ď"],"index":26},{"captures":["Á"],"index":27},{"captures":["B"],"index":28},{"captures":["E"],"index":29},{"captures":["L"],"index":30},{"captures":["S"],"index":31},{"captures":["K"],"index":32},{"captures":["É"],"index":33},{"captures":[" "],"index":34},{"captures":["Ó"],"index":35},{"captures":["D"],"index":36},{"captures":["Y"],"index":37}] [PŘÍLIŠ ŽLUŤOUČKÝ KŮŇ ÚPĚL ĎÁBELSKÉ ÓDY] i [PŘÍLIŠ ŽLUŤOUČKÝ KŮŇ ÚPĚL ĎÁBELSKÉ ÓDY] příliš žluťoučký kůň úpěl ďábelské ódy [{"captures":["p"],"index":0},{"captures":["ř"],"index":1},{"captures":["í"],"index":2},{"captures":["l"],"index":3},{"captures":["i"],"index":4},{"captures":["š"],"index":5},{"captures":[" "],"index":6},{"captures":["ž"],"index":7},{"captures":["l"],"index":8},{"captures":["u"],"index":9},{"captures":["ť"],"index":10},{"captures":["o"],"index":11},{"captures":["u"],"index":12},{"captures":["č"],"index":13},{"captures":["k"],"index":14},{"captures":["ý"],"index":15},{"captures":[" "],"index":16},{"captures":["k"],"index":17},{"captures":["ů"],"index":18},{"captures":["ň"],"index":19},{"captures":[" "],"index":20},{"captures":["ú"],"index":21},{"captures":["p"],"index":22},{"captures":["ě"],"index":23},{"captures":["l"],"index":24},{"captures":[" "],"index":25},{"captures":["ď"],"index":26},{"captures":["á"],"index":27},{"captures":["b"],"index":28},{"captures":["e"],"index":29},{"captures":["l"],"index":30},{"captures":["s"],"index":31},{"captures":["k"],"index":32},{"captures":["é"],"index":33},{"captures":[" "],"index":34},{"captures":["ó"],"index":35},{"captures":["d"],"index":36},{"captures":["y"],"index":37}] [PŘÍLIŠ ŽLUŤOUČKÝ KŮŇ ÚPĚL ĎÁBELSKÉ ÓDY] ui "(?:[\\x20\\x42\\x44\\x45\\x49\\x4B\\x4C\\x4F\\x50\\x53\\x55\\x59ÁÉÍÓÚÝČĎĚŇŘŠŤŮŽ])" příliš žluťoučký kůň úpěl ďábelské ódy [{"captures":["p"],"index":0},{"captures":["ř"],"index":1},{"captures":["í"],"index":2},{"captures":["l"],"index":3},{"captures":["i"],"index":4},{"captures":["š"],"index":5},{"captures":[" "],"index":6},{"captures":["ž"],"index":7},{"captures":["l"],"index":8},{"captures":["u"],"index":9},{"captures":["ť"],"index":10},{"captures":["o"],"index":11},{"captures":["u"],"index":12},{"captures":["č"],"index":13},{"captures":["k"],"index":14},{"captures":["ý"],"index":15},{"captures":[" "],"index":16},{"captures":["k"],"index":17},{"captures":["ů"],"index":18},{"captures":["ň"],"index":19},{"captures":[" "],"index":20},{"captures":["ú"],"index":21},{"captures":["p"],"index":22},{"captures":["ě"],"index":23},{"captures":["l"],"index":24},{"captures":[" "],"index":25},{"captures":["ď"],"index":26},{"captures":["á"],"index":27},{"captures":["b"],"index":28},{"captures":["e"],"index":29},{"captures":["l"],"index":30},{"captures":["s"],"index":31},{"captures":["k"],"index":32},{"captures":["é"],"index":33},{"captures":[" "],"index":34},{"captures":["ó"],"index":35},{"captures":["d"],"index":36},{"captures":["y"],"index":37}] +[PŘÍLIŠ ŽLUŤOUČKÝ KŮŇ ÚPĚL ĎÁBELSKÉ ÓDY] vi )inconvertible( příliš žluťoučký kůň úpěl ďábelské ódy [{"captures":["p"],"index":0},{"captures":["ř"],"index":1},{"captures":["í"],"index":2},{"captures":["l"],"index":3},{"captures":["i"],"index":4},{"captures":["š"],"index":5},{"captures":[" "],"index":6},{"captures":["ž"],"index":7},{"captures":["l"],"index":8},{"captures":["u"],"index":9},{"captures":["ť"],"index":10},{"captures":["o"],"index":11},{"captures":["u"],"index":12},{"captures":["č"],"index":13},{"captures":["k"],"index":14},{"captures":["ý"],"index":15},{"captures":[" "],"index":16},{"captures":["k"],"index":17},{"captures":["ů"],"index":18},{"captures":["ň"],"index":19},{"captures":[" "],"index":20},{"captures":["ú"],"index":21},{"captures":["p"],"index":22},{"captures":["ě"],"index":23},{"captures":["l"],"index":24},{"captures":[" "],"index":25},{"captures":["ď"],"index":26},{"captures":["á"],"index":27},{"captures":["b"],"index":28},{"captures":["e"],"index":29},{"captures":["l"],"index":30},{"captures":["s"],"index":31},{"captures":["k"],"index":32},{"captures":["é"],"index":33},{"captures":[" "],"index":34},{"captures":["ó"],"index":35},{"captures":["d"],"index":36},{"captures":["y"],"index":37}] [kŕdeľ šťastných ďatľov učí pri ústí váhu mĺkveho koňa obhrýzať kôru a žrať čerstvé mäso] i [kŕdeľ šťastných ďatľov učí pri ústí váhu mĺkveho koňa obhrýzať kôru a žrať čerstvé mäso] KŔDEĽ ŠŤASTNÝCH ĎATĽOV UČÍ PRI ÚSTÍ VÁHU MĹKVEHO KOŇA OBHRÝZAŤ KÔRU A ŽRAŤ ČERSTVÉ MÄSO [{"captures":["K"],"index":0},{"captures":["Ŕ"],"index":1},{"captures":["D"],"index":2},{"captures":["E"],"index":3},{"captures":["Ľ"],"index":4},{"captures":[" "],"index":5},{"captures":["Š"],"index":6},{"captures":["Ť"],"index":7},{"captures":["A"],"index":8},{"captures":["S"],"index":9},{"captures":["T"],"index":10},{"captures":["N"],"index":11},{"captures":["Ý"],"index":12},{"captures":["C"],"index":13},{"captures":["H"],"index":14},{"captures":[" "],"index":15},{"captures":["Ď"],"index":16},{"captures":["A"],"index":17},{"captures":["T"],"index":18},{"captures":["Ľ"],"index":19},{"captures":["O"],"index":20},{"captures":["V"],"index":21},{"captures":[" "],"index":22},{"captures":["U"],"index":23},{"captures":["Č"],"index":24},{"captures":["Í"],"index":25},{"captures":[" "],"index":26},{"captures":["P"],"index":27},{"captures":["R"],"index":28},{"captures":["I"],"index":29},{"captures":[" "],"index":30},{"captures":["Ú"],"index":31},{"captures":["S"],"index":32},{"captures":["T"],"index":33},{"captures":["Í"],"index":34},{"captures":[" "],"index":35},{"captures":["V"],"index":36},{"captures":["Á"],"index":37},{"captures":["H"],"index":38},{"captures":["U"],"index":39},{"captures":[" "],"index":40},{"captures":["M"],"index":41},{"captures":["Ĺ"],"index":42},{"captures":["K"],"index":43},{"captures":["V"],"index":44},{"captures":["E"],"index":45},{"captures":["H"],"index":46},{"captures":["O"],"index":47},{"captures":[" "],"index":48},{"captures":["K"],"index":49},{"captures":["O"],"index":50},{"captures":["Ň"],"index":51},{"captures":["A"],"index":52},{"captures":[" "],"index":53},{"captures":["O"],"index":54},{"captures":["B"],"index":55},{"captures":["H"],"index":56},{"captures":["R"],"index":57},{"captures":["Ý"],"index":58},{"captures":["Z"],"index":59},{"captures":["A"],"index":60},{"captures":["Ť"],"index":61},{"captures":[" "],"index":62},{"captures":["K"],"index":63},{"captures":["Ô"],"index":64},{"captures":["R"],"index":65},{"captures":["U"],"index":66},{"captures":[" "],"index":67},{"captures":["A"],"index":68},{"captures":[" "],"index":69},{"captures":["Ž"],"index":70},{"captures":["R"],"index":71},{"captures":["A"],"index":72},{"captures":["Ť"],"index":73},{"captures":[" "],"index":74},{"captures":["Č"],"index":75},{"captures":["E"],"index":76},{"captures":["R"],"index":77},{"captures":["S"],"index":78},{"captures":["T"],"index":79},{"captures":["V"],"index":80},{"captures":["É"],"index":81},{"captures":[" "],"index":82},{"captures":["M"],"index":83},{"captures":["Ä"],"index":84},{"captures":["S"],"index":85},{"captures":["O"],"index":86}] [kŕdeľ šťastných ďatľov učí pri ústí váhu mĺkveho koňa obhrýzať kôru a žrať čerstvé mäso] ui "(?:[\\x20\\x61-\\x65\\x68\\x69\\x6B\\x6D-\\x70\\x72-\\x76\\x7Aáäéíôúýčďĺľňŕšťž])" KŔDEĽ ŠŤASTNÝCH ĎATĽOV UČÍ PRI ÚSTÍ VÁHU MĹKVEHO KOŇA OBHRÝZAŤ KÔRU A ŽRAŤ ČERSTVÉ MÄSO [{"captures":["K"],"index":0},{"captures":["Ŕ"],"index":1},{"captures":["D"],"index":2},{"captures":["E"],"index":3},{"captures":["Ľ"],"index":4},{"captures":[" "],"index":5},{"captures":["Š"],"index":6},{"captures":["Ť"],"index":7},{"captures":["A"],"index":8},{"captures":["S"],"index":9},{"captures":["T"],"index":10},{"captures":["N"],"index":11},{"captures":["Ý"],"index":12},{"captures":["C"],"index":13},{"captures":["H"],"index":14},{"captures":[" "],"index":15},{"captures":["Ď"],"index":16},{"captures":["A"],"index":17},{"captures":["T"],"index":18},{"captures":["Ľ"],"index":19},{"captures":["O"],"index":20},{"captures":["V"],"index":21},{"captures":[" "],"index":22},{"captures":["U"],"index":23},{"captures":["Č"],"index":24},{"captures":["Í"],"index":25},{"captures":[" "],"index":26},{"captures":["P"],"index":27},{"captures":["R"],"index":28},{"captures":["I"],"index":29},{"captures":[" "],"index":30},{"captures":["Ú"],"index":31},{"captures":["S"],"index":32},{"captures":["T"],"index":33},{"captures":["Í"],"index":34},{"captures":[" "],"index":35},{"captures":["V"],"index":36},{"captures":["Á"],"index":37},{"captures":["H"],"index":38},{"captures":["U"],"index":39},{"captures":[" "],"index":40},{"captures":["M"],"index":41},{"captures":["Ĺ"],"index":42},{"captures":["K"],"index":43},{"captures":["V"],"index":44},{"captures":["E"],"index":45},{"captures":["H"],"index":46},{"captures":["O"],"index":47},{"captures":[" "],"index":48},{"captures":["K"],"index":49},{"captures":["O"],"index":50},{"captures":["Ň"],"index":51},{"captures":["A"],"index":52},{"captures":[" "],"index":53},{"captures":["O"],"index":54},{"captures":["B"],"index":55},{"captures":["H"],"index":56},{"captures":["R"],"index":57},{"captures":["Ý"],"index":58},{"captures":["Z"],"index":59},{"captures":["A"],"index":60},{"captures":["Ť"],"index":61},{"captures":[" "],"index":62},{"captures":["K"],"index":63},{"captures":["Ô"],"index":64},{"captures":["R"],"index":65},{"captures":["U"],"index":66},{"captures":[" "],"index":67},{"captures":["A"],"index":68},{"captures":[" "],"index":69},{"captures":["Ž"],"index":70},{"captures":["R"],"index":71},{"captures":["A"],"index":72},{"captures":["Ť"],"index":73},{"captures":[" "],"index":74},{"captures":["Č"],"index":75},{"captures":["E"],"index":76},{"captures":["R"],"index":77},{"captures":["S"],"index":78},{"captures":["T"],"index":79},{"captures":["V"],"index":80},{"captures":["É"],"index":81},{"captures":[" "],"index":82},{"captures":["M"],"index":83},{"captures":["Ä"],"index":84},{"captures":["S"],"index":85},{"captures":["O"],"index":86}] +[kŕdeľ šťastných ďatľov učí pri ústí váhu mĺkveho koňa obhrýzať kôru a žrať čerstvé mäso] vi )inconvertible( KŔDEĽ ŠŤASTNÝCH ĎATĽOV UČÍ PRI ÚSTÍ VÁHU MĹKVEHO KOŇA OBHRÝZAŤ KÔRU A ŽRAŤ ČERSTVÉ MÄSO [{"captures":["K"],"index":0},{"captures":["Ŕ"],"index":1},{"captures":["D"],"index":2},{"captures":["E"],"index":3},{"captures":["Ľ"],"index":4},{"captures":[" "],"index":5},{"captures":["Š"],"index":6},{"captures":["Ť"],"index":7},{"captures":["A"],"index":8},{"captures":["S"],"index":9},{"captures":["T"],"index":10},{"captures":["N"],"index":11},{"captures":["Ý"],"index":12},{"captures":["C"],"index":13},{"captures":["H"],"index":14},{"captures":[" "],"index":15},{"captures":["Ď"],"index":16},{"captures":["A"],"index":17},{"captures":["T"],"index":18},{"captures":["Ľ"],"index":19},{"captures":["O"],"index":20},{"captures":["V"],"index":21},{"captures":[" "],"index":22},{"captures":["U"],"index":23},{"captures":["Č"],"index":24},{"captures":["Í"],"index":25},{"captures":[" "],"index":26},{"captures":["P"],"index":27},{"captures":["R"],"index":28},{"captures":["I"],"index":29},{"captures":[" "],"index":30},{"captures":["Ú"],"index":31},{"captures":["S"],"index":32},{"captures":["T"],"index":33},{"captures":["Í"],"index":34},{"captures":[" "],"index":35},{"captures":["V"],"index":36},{"captures":["Á"],"index":37},{"captures":["H"],"index":38},{"captures":["U"],"index":39},{"captures":[" "],"index":40},{"captures":["M"],"index":41},{"captures":["Ĺ"],"index":42},{"captures":["K"],"index":43},{"captures":["V"],"index":44},{"captures":["E"],"index":45},{"captures":["H"],"index":46},{"captures":["O"],"index":47},{"captures":[" "],"index":48},{"captures":["K"],"index":49},{"captures":["O"],"index":50},{"captures":["Ň"],"index":51},{"captures":["A"],"index":52},{"captures":[" "],"index":53},{"captures":["O"],"index":54},{"captures":["B"],"index":55},{"captures":["H"],"index":56},{"captures":["R"],"index":57},{"captures":["Ý"],"index":58},{"captures":["Z"],"index":59},{"captures":["A"],"index":60},{"captures":["Ť"],"index":61},{"captures":[" "],"index":62},{"captures":["K"],"index":63},{"captures":["Ô"],"index":64},{"captures":["R"],"index":65},{"captures":["U"],"index":66},{"captures":[" "],"index":67},{"captures":["A"],"index":68},{"captures":[" "],"index":69},{"captures":["Ž"],"index":70},{"captures":["R"],"index":71},{"captures":["A"],"index":72},{"captures":["Ť"],"index":73},{"captures":[" "],"index":74},{"captures":["Č"],"index":75},{"captures":["E"],"index":76},{"captures":["R"],"index":77},{"captures":["S"],"index":78},{"captures":["T"],"index":79},{"captures":["V"],"index":80},{"captures":["É"],"index":81},{"captures":[" "],"index":82},{"captures":["M"],"index":83},{"captures":["Ä"],"index":84},{"captures":["S"],"index":85},{"captures":["O"],"index":86}] [KŔDEĽ ŠŤASTNÝCH ĎATĽOV UČÍ PRI ÚSTÍ VÁHU MĹKVEHO KOŇA OBHRÝZAŤ KÔRU A ŽRAŤ ČERSTVÉ MÄSO] i [KŔDEĽ ŠŤASTNÝCH ĎATĽOV UČÍ PRI ÚSTÍ VÁHU MĹKVEHO KOŇA OBHRÝZAŤ KÔRU A ŽRAŤ ČERSTVÉ MÄSO] kŕdeľ šťastných ďatľov učí pri ústí váhu mĺkveho koňa obhrýzať kôru a žrať čerstvé mäso [{"captures":["k"],"index":0},{"captures":["ŕ"],"index":1},{"captures":["d"],"index":2},{"captures":["e"],"index":3},{"captures":["ľ"],"index":4},{"captures":[" "],"index":5},{"captures":["š"],"index":6},{"captures":["ť"],"index":7},{"captures":["a"],"index":8},{"captures":["s"],"index":9},{"captures":["t"],"index":10},{"captures":["n"],"index":11},{"captures":["ý"],"index":12},{"captures":["c"],"index":13},{"captures":["h"],"index":14},{"captures":[" "],"index":15},{"captures":["ď"],"index":16},{"captures":["a"],"index":17},{"captures":["t"],"index":18},{"captures":["ľ"],"index":19},{"captures":["o"],"index":20},{"captures":["v"],"index":21},{"captures":[" "],"index":22},{"captures":["u"],"index":23},{"captures":["č"],"index":24},{"captures":["í"],"index":25},{"captures":[" "],"index":26},{"captures":["p"],"index":27},{"captures":["r"],"index":28},{"captures":["i"],"index":29},{"captures":[" "],"index":30},{"captures":["ú"],"index":31},{"captures":["s"],"index":32},{"captures":["t"],"index":33},{"captures":["í"],"index":34},{"captures":[" "],"index":35},{"captures":["v"],"index":36},{"captures":["á"],"index":37},{"captures":["h"],"index":38},{"captures":["u"],"index":39},{"captures":[" "],"index":40},{"captures":["m"],"index":41},{"captures":["ĺ"],"index":42},{"captures":["k"],"index":43},{"captures":["v"],"index":44},{"captures":["e"],"index":45},{"captures":["h"],"index":46},{"captures":["o"],"index":47},{"captures":[" "],"index":48},{"captures":["k"],"index":49},{"captures":["o"],"index":50},{"captures":["ň"],"index":51},{"captures":["a"],"index":52},{"captures":[" "],"index":53},{"captures":["o"],"index":54},{"captures":["b"],"index":55},{"captures":["h"],"index":56},{"captures":["r"],"index":57},{"captures":["ý"],"index":58},{"captures":["z"],"index":59},{"captures":["a"],"index":60},{"captures":["ť"],"index":61},{"captures":[" "],"index":62},{"captures":["k"],"index":63},{"captures":["ô"],"index":64},{"captures":["r"],"index":65},{"captures":["u"],"index":66},{"captures":[" "],"index":67},{"captures":["a"],"index":68},{"captures":[" "],"index":69},{"captures":["ž"],"index":70},{"captures":["r"],"index":71},{"captures":["a"],"index":72},{"captures":["ť"],"index":73},{"captures":[" "],"index":74},{"captures":["č"],"index":75},{"captures":["e"],"index":76},{"captures":["r"],"index":77},{"captures":["s"],"index":78},{"captures":["t"],"index":79},{"captures":["v"],"index":80},{"captures":["é"],"index":81},{"captures":[" "],"index":82},{"captures":["m"],"index":83},{"captures":["ä"],"index":84},{"captures":["s"],"index":85},{"captures":["o"],"index":86}] [KŔDEĽ ŠŤASTNÝCH ĎATĽOV UČÍ PRI ÚSTÍ VÁHU MĹKVEHO KOŇA OBHRÝZAŤ KÔRU A ŽRAŤ ČERSTVÉ MÄSO] ui "(?:[\\x20\\x41-\\x45\\x48\\x49\\x4B\\x4D-\\x50\\x52-\\x56\\x5AÁÄÉÍÔÚÝČĎĹĽŇŔŠŤŽ])" kŕdeľ šťastných ďatľov učí pri ústí váhu mĺkveho koňa obhrýzať kôru a žrať čerstvé mäso [{"captures":["k"],"index":0},{"captures":["ŕ"],"index":1},{"captures":["d"],"index":2},{"captures":["e"],"index":3},{"captures":["ľ"],"index":4},{"captures":[" "],"index":5},{"captures":["š"],"index":6},{"captures":["ť"],"index":7},{"captures":["a"],"index":8},{"captures":["s"],"index":9},{"captures":["t"],"index":10},{"captures":["n"],"index":11},{"captures":["ý"],"index":12},{"captures":["c"],"index":13},{"captures":["h"],"index":14},{"captures":[" "],"index":15},{"captures":["ď"],"index":16},{"captures":["a"],"index":17},{"captures":["t"],"index":18},{"captures":["ľ"],"index":19},{"captures":["o"],"index":20},{"captures":["v"],"index":21},{"captures":[" "],"index":22},{"captures":["u"],"index":23},{"captures":["č"],"index":24},{"captures":["í"],"index":25},{"captures":[" "],"index":26},{"captures":["p"],"index":27},{"captures":["r"],"index":28},{"captures":["i"],"index":29},{"captures":[" "],"index":30},{"captures":["ú"],"index":31},{"captures":["s"],"index":32},{"captures":["t"],"index":33},{"captures":["í"],"index":34},{"captures":[" "],"index":35},{"captures":["v"],"index":36},{"captures":["á"],"index":37},{"captures":["h"],"index":38},{"captures":["u"],"index":39},{"captures":[" "],"index":40},{"captures":["m"],"index":41},{"captures":["ĺ"],"index":42},{"captures":["k"],"index":43},{"captures":["v"],"index":44},{"captures":["e"],"index":45},{"captures":["h"],"index":46},{"captures":["o"],"index":47},{"captures":[" "],"index":48},{"captures":["k"],"index":49},{"captures":["o"],"index":50},{"captures":["ň"],"index":51},{"captures":["a"],"index":52},{"captures":[" "],"index":53},{"captures":["o"],"index":54},{"captures":["b"],"index":55},{"captures":["h"],"index":56},{"captures":["r"],"index":57},{"captures":["ý"],"index":58},{"captures":["z"],"index":59},{"captures":["a"],"index":60},{"captures":["ť"],"index":61},{"captures":[" "],"index":62},{"captures":["k"],"index":63},{"captures":["ô"],"index":64},{"captures":["r"],"index":65},{"captures":["u"],"index":66},{"captures":[" "],"index":67},{"captures":["a"],"index":68},{"captures":[" "],"index":69},{"captures":["ž"],"index":70},{"captures":["r"],"index":71},{"captures":["a"],"index":72},{"captures":["ť"],"index":73},{"captures":[" "],"index":74},{"captures":["č"],"index":75},{"captures":["e"],"index":76},{"captures":["r"],"index":77},{"captures":["s"],"index":78},{"captures":["t"],"index":79},{"captures":["v"],"index":80},{"captures":["é"],"index":81},{"captures":[" "],"index":82},{"captures":["m"],"index":83},{"captures":["ä"],"index":84},{"captures":["s"],"index":85},{"captures":["o"],"index":86}] +[KŔDEĽ ŠŤASTNÝCH ĎATĽOV UČÍ PRI ÚSTÍ VÁHU MĹKVEHO KOŇA OBHRÝZAŤ KÔRU A ŽRAŤ ČERSTVÉ MÄSO] vi )inconvertible( kŕdeľ šťastných ďatľov učí pri ústí váhu mĺkveho koňa obhrýzať kôru a žrať čerstvé mäso [{"captures":["k"],"index":0},{"captures":["ŕ"],"index":1},{"captures":["d"],"index":2},{"captures":["e"],"index":3},{"captures":["ľ"],"index":4},{"captures":[" "],"index":5},{"captures":["š"],"index":6},{"captures":["ť"],"index":7},{"captures":["a"],"index":8},{"captures":["s"],"index":9},{"captures":["t"],"index":10},{"captures":["n"],"index":11},{"captures":["ý"],"index":12},{"captures":["c"],"index":13},{"captures":["h"],"index":14},{"captures":[" "],"index":15},{"captures":["ď"],"index":16},{"captures":["a"],"index":17},{"captures":["t"],"index":18},{"captures":["ľ"],"index":19},{"captures":["o"],"index":20},{"captures":["v"],"index":21},{"captures":[" "],"index":22},{"captures":["u"],"index":23},{"captures":["č"],"index":24},{"captures":["í"],"index":25},{"captures":[" "],"index":26},{"captures":["p"],"index":27},{"captures":["r"],"index":28},{"captures":["i"],"index":29},{"captures":[" "],"index":30},{"captures":["ú"],"index":31},{"captures":["s"],"index":32},{"captures":["t"],"index":33},{"captures":["í"],"index":34},{"captures":[" "],"index":35},{"captures":["v"],"index":36},{"captures":["á"],"index":37},{"captures":["h"],"index":38},{"captures":["u"],"index":39},{"captures":[" "],"index":40},{"captures":["m"],"index":41},{"captures":["ĺ"],"index":42},{"captures":["k"],"index":43},{"captures":["v"],"index":44},{"captures":["e"],"index":45},{"captures":["h"],"index":46},{"captures":["o"],"index":47},{"captures":[" "],"index":48},{"captures":["k"],"index":49},{"captures":["o"],"index":50},{"captures":["ň"],"index":51},{"captures":["a"],"index":52},{"captures":[" "],"index":53},{"captures":["o"],"index":54},{"captures":["b"],"index":55},{"captures":["h"],"index":56},{"captures":["r"],"index":57},{"captures":["ý"],"index":58},{"captures":["z"],"index":59},{"captures":["a"],"index":60},{"captures":["ť"],"index":61},{"captures":[" "],"index":62},{"captures":["k"],"index":63},{"captures":["ô"],"index":64},{"captures":["r"],"index":65},{"captures":["u"],"index":66},{"captures":[" "],"index":67},{"captures":["a"],"index":68},{"captures":[" "],"index":69},{"captures":["ž"],"index":70},{"captures":["r"],"index":71},{"captures":["a"],"index":72},{"captures":["ť"],"index":73},{"captures":[" "],"index":74},{"captures":["č"],"index":75},{"captures":["e"],"index":76},{"captures":["r"],"index":77},{"captures":["s"],"index":78},{"captures":["t"],"index":79},{"captures":["v"],"index":80},{"captures":["é"],"index":81},{"captures":[" "],"index":82},{"captures":["m"],"index":83},{"captures":["ä"],"index":84},{"captures":["s"],"index":85},{"captures":["o"],"index":86}] [stróż pchnął kość w quiz gędźb vel fax myjń] i [stróż pchnął kość w quiz gędźb vel fax myjń] STRÓŻ PCHNĄŁ KOŚĆ W QUIZ GĘDŹB VEL FAX MYJŃ [{"captures":["S"],"index":0},{"captures":["T"],"index":1},{"captures":["R"],"index":2},{"captures":["Ó"],"index":3},{"captures":["Ż"],"index":4},{"captures":[" "],"index":5},{"captures":["P"],"index":6},{"captures":["C"],"index":7},{"captures":["H"],"index":8},{"captures":["N"],"index":9},{"captures":["Ą"],"index":10},{"captures":["Ł"],"index":11},{"captures":[" "],"index":12},{"captures":["K"],"index":13},{"captures":["O"],"index":14},{"captures":["Ś"],"index":15},{"captures":["Ć"],"index":16},{"captures":[" "],"index":17},{"captures":["W"],"index":18},{"captures":[" "],"index":19},{"captures":["Q"],"index":20},{"captures":["U"],"index":21},{"captures":["I"],"index":22},{"captures":["Z"],"index":23},{"captures":[" "],"index":24},{"captures":["G"],"index":25},{"captures":["Ę"],"index":26},{"captures":["D"],"index":27},{"captures":["Ź"],"index":28},{"captures":["B"],"index":29},{"captures":[" "],"index":30},{"captures":["V"],"index":31},{"captures":["E"],"index":32},{"captures":["L"],"index":33},{"captures":[" "],"index":34},{"captures":["F"],"index":35},{"captures":["A"],"index":36},{"captures":["X"],"index":37},{"captures":[" "],"index":38},{"captures":["M"],"index":39},{"captures":["Y"],"index":40},{"captures":["J"],"index":41},{"captures":["Ń"],"index":42}] [stróż pchnął kość w quiz gędźb vel fax myjń] ui "(?:[\\x20\\x61-\\x7Aóąćęłńśźż])" STRÓŻ PCHNĄŁ KOŚĆ W QUIZ GĘDŹB VEL FAX MYJŃ [{"captures":["S"],"index":0},{"captures":["T"],"index":1},{"captures":["R"],"index":2},{"captures":["Ó"],"index":3},{"captures":["Ż"],"index":4},{"captures":[" "],"index":5},{"captures":["P"],"index":6},{"captures":["C"],"index":7},{"captures":["H"],"index":8},{"captures":["N"],"index":9},{"captures":["Ą"],"index":10},{"captures":["Ł"],"index":11},{"captures":[" "],"index":12},{"captures":["K"],"index":13},{"captures":["O"],"index":14},{"captures":["Ś"],"index":15},{"captures":["Ć"],"index":16},{"captures":[" "],"index":17},{"captures":["W"],"index":18},{"captures":[" "],"index":19},{"captures":["Q"],"index":20},{"captures":["U"],"index":21},{"captures":["I"],"index":22},{"captures":["Z"],"index":23},{"captures":[" "],"index":24},{"captures":["G"],"index":25},{"captures":["Ę"],"index":26},{"captures":["D"],"index":27},{"captures":["Ź"],"index":28},{"captures":["B"],"index":29},{"captures":[" "],"index":30},{"captures":["V"],"index":31},{"captures":["E"],"index":32},{"captures":["L"],"index":33},{"captures":[" "],"index":34},{"captures":["F"],"index":35},{"captures":["A"],"index":36},{"captures":["X"],"index":37},{"captures":[" "],"index":38},{"captures":["M"],"index":39},{"captures":["Y"],"index":40},{"captures":["J"],"index":41},{"captures":["Ń"],"index":42}] +[stróż pchnął kość w quiz gędźb vel fax myjń] vi )inconvertible( STRÓŻ PCHNĄŁ KOŚĆ W QUIZ GĘDŹB VEL FAX MYJŃ [{"captures":["S"],"index":0},{"captures":["T"],"index":1},{"captures":["R"],"index":2},{"captures":["Ó"],"index":3},{"captures":["Ż"],"index":4},{"captures":[" "],"index":5},{"captures":["P"],"index":6},{"captures":["C"],"index":7},{"captures":["H"],"index":8},{"captures":["N"],"index":9},{"captures":["Ą"],"index":10},{"captures":["Ł"],"index":11},{"captures":[" "],"index":12},{"captures":["K"],"index":13},{"captures":["O"],"index":14},{"captures":["Ś"],"index":15},{"captures":["Ć"],"index":16},{"captures":[" "],"index":17},{"captures":["W"],"index":18},{"captures":[" "],"index":19},{"captures":["Q"],"index":20},{"captures":["U"],"index":21},{"captures":["I"],"index":22},{"captures":["Z"],"index":23},{"captures":[" "],"index":24},{"captures":["G"],"index":25},{"captures":["Ę"],"index":26},{"captures":["D"],"index":27},{"captures":["Ź"],"index":28},{"captures":["B"],"index":29},{"captures":[" "],"index":30},{"captures":["V"],"index":31},{"captures":["E"],"index":32},{"captures":["L"],"index":33},{"captures":[" "],"index":34},{"captures":["F"],"index":35},{"captures":["A"],"index":36},{"captures":["X"],"index":37},{"captures":[" "],"index":38},{"captures":["M"],"index":39},{"captures":["Y"],"index":40},{"captures":["J"],"index":41},{"captures":["Ń"],"index":42}] [STRÓŻ PCHNĄŁ KOŚĆ W QUIZ GĘDŹB VEL FAX MYJŃ] i [STRÓŻ PCHNĄŁ KOŚĆ W QUIZ GĘDŹB VEL FAX MYJŃ] stróż pchnął kość w quiz gędźb vel fax myjń [{"captures":["s"],"index":0},{"captures":["t"],"index":1},{"captures":["r"],"index":2},{"captures":["ó"],"index":3},{"captures":["ż"],"index":4},{"captures":[" "],"index":5},{"captures":["p"],"index":6},{"captures":["c"],"index":7},{"captures":["h"],"index":8},{"captures":["n"],"index":9},{"captures":["ą"],"index":10},{"captures":["ł"],"index":11},{"captures":[" "],"index":12},{"captures":["k"],"index":13},{"captures":["o"],"index":14},{"captures":["ś"],"index":15},{"captures":["ć"],"index":16},{"captures":[" "],"index":17},{"captures":["w"],"index":18},{"captures":[" "],"index":19},{"captures":["q"],"index":20},{"captures":["u"],"index":21},{"captures":["i"],"index":22},{"captures":["z"],"index":23},{"captures":[" "],"index":24},{"captures":["g"],"index":25},{"captures":["ę"],"index":26},{"captures":["d"],"index":27},{"captures":["ź"],"index":28},{"captures":["b"],"index":29},{"captures":[" "],"index":30},{"captures":["v"],"index":31},{"captures":["e"],"index":32},{"captures":["l"],"index":33},{"captures":[" "],"index":34},{"captures":["f"],"index":35},{"captures":["a"],"index":36},{"captures":["x"],"index":37},{"captures":[" "],"index":38},{"captures":["m"],"index":39},{"captures":["y"],"index":40},{"captures":["j"],"index":41},{"captures":["ń"],"index":42}] [STRÓŻ PCHNĄŁ KOŚĆ W QUIZ GĘDŹB VEL FAX MYJŃ] ui "(?:[\\x20\\x41-\\x5AÓĄĆĘŁŃŚŹŻ])" stróż pchnął kość w quiz gędźb vel fax myjń [{"captures":["s"],"index":0},{"captures":["t"],"index":1},{"captures":["r"],"index":2},{"captures":["ó"],"index":3},{"captures":["ż"],"index":4},{"captures":[" "],"index":5},{"captures":["p"],"index":6},{"captures":["c"],"index":7},{"captures":["h"],"index":8},{"captures":["n"],"index":9},{"captures":["ą"],"index":10},{"captures":["ł"],"index":11},{"captures":[" "],"index":12},{"captures":["k"],"index":13},{"captures":["o"],"index":14},{"captures":["ś"],"index":15},{"captures":["ć"],"index":16},{"captures":[" "],"index":17},{"captures":["w"],"index":18},{"captures":[" "],"index":19},{"captures":["q"],"index":20},{"captures":["u"],"index":21},{"captures":["i"],"index":22},{"captures":["z"],"index":23},{"captures":[" "],"index":24},{"captures":["g"],"index":25},{"captures":["ę"],"index":26},{"captures":["d"],"index":27},{"captures":["ź"],"index":28},{"captures":["b"],"index":29},{"captures":[" "],"index":30},{"captures":["v"],"index":31},{"captures":["e"],"index":32},{"captures":["l"],"index":33},{"captures":[" "],"index":34},{"captures":["f"],"index":35},{"captures":["a"],"index":36},{"captures":["x"],"index":37},{"captures":[" "],"index":38},{"captures":["m"],"index":39},{"captures":["y"],"index":40},{"captures":["j"],"index":41},{"captures":["ń"],"index":42}] +[STRÓŻ PCHNĄŁ KOŚĆ W QUIZ GĘDŹB VEL FAX MYJŃ] vi )inconvertible( stróż pchnął kość w quiz gędźb vel fax myjń [{"captures":["s"],"index":0},{"captures":["t"],"index":1},{"captures":["r"],"index":2},{"captures":["ó"],"index":3},{"captures":["ż"],"index":4},{"captures":[" "],"index":5},{"captures":["p"],"index":6},{"captures":["c"],"index":7},{"captures":["h"],"index":8},{"captures":["n"],"index":9},{"captures":["ą"],"index":10},{"captures":["ł"],"index":11},{"captures":[" "],"index":12},{"captures":["k"],"index":13},{"captures":["o"],"index":14},{"captures":["ś"],"index":15},{"captures":["ć"],"index":16},{"captures":[" "],"index":17},{"captures":["w"],"index":18},{"captures":[" "],"index":19},{"captures":["q"],"index":20},{"captures":["u"],"index":21},{"captures":["i"],"index":22},{"captures":["z"],"index":23},{"captures":[" "],"index":24},{"captures":["g"],"index":25},{"captures":["ę"],"index":26},{"captures":["d"],"index":27},{"captures":["ź"],"index":28},{"captures":["b"],"index":29},{"captures":[" "],"index":30},{"captures":["v"],"index":31},{"captures":["e"],"index":32},{"captures":["l"],"index":33},{"captures":[" "],"index":34},{"captures":["f"],"index":35},{"captures":["a"],"index":36},{"captures":["x"],"index":37},{"captures":[" "],"index":38},{"captures":["m"],"index":39},{"captures":["y"],"index":40},{"captures":["j"],"index":41},{"captures":["ń"],"index":42}] [árvíztűrő tükörfúrógép] i [árvíztűrő tükörfúrógép] ÁRVÍZTŰRŐ TÜKÖRFÚRÓGÉP [{"captures":["Á"],"index":0},{"captures":["R"],"index":1},{"captures":["V"],"index":2},{"captures":["Í"],"index":3},{"captures":["Z"],"index":4},{"captures":["T"],"index":5},{"captures":["Ű"],"index":6},{"captures":["R"],"index":7},{"captures":["Ő"],"index":8},{"captures":[" "],"index":9},{"captures":["T"],"index":10},{"captures":["Ü"],"index":11},{"captures":["K"],"index":12},{"captures":["Ö"],"index":13},{"captures":["R"],"index":14},{"captures":["F"],"index":15},{"captures":["Ú"],"index":16},{"captures":["R"],"index":17},{"captures":["Ó"],"index":18},{"captures":["G"],"index":19},{"captures":["É"],"index":20},{"captures":["P"],"index":21}] [árvíztűrő tükörfúrógép] ui "(?:[\\x20\\x66\\x67\\x6B\\x70\\x72\\x74\\x76\\x7Aáéíóöúüőű])" ÁRVÍZTŰRŐ TÜKÖRFÚRÓGÉP [{"captures":["Á"],"index":0},{"captures":["R"],"index":1},{"captures":["V"],"index":2},{"captures":["Í"],"index":3},{"captures":["Z"],"index":4},{"captures":["T"],"index":5},{"captures":["Ű"],"index":6},{"captures":["R"],"index":7},{"captures":["Ő"],"index":8},{"captures":[" "],"index":9},{"captures":["T"],"index":10},{"captures":["Ü"],"index":11},{"captures":["K"],"index":12},{"captures":["Ö"],"index":13},{"captures":["R"],"index":14},{"captures":["F"],"index":15},{"captures":["Ú"],"index":16},{"captures":["R"],"index":17},{"captures":["Ó"],"index":18},{"captures":["G"],"index":19},{"captures":["É"],"index":20},{"captures":["P"],"index":21}] +[árvíztűrő tükörfúrógép] vi )inconvertible( ÁRVÍZTŰRŐ TÜKÖRFÚRÓGÉP [{"captures":["Á"],"index":0},{"captures":["R"],"index":1},{"captures":["V"],"index":2},{"captures":["Í"],"index":3},{"captures":["Z"],"index":4},{"captures":["T"],"index":5},{"captures":["Ű"],"index":6},{"captures":["R"],"index":7},{"captures":["Ő"],"index":8},{"captures":[" "],"index":9},{"captures":["T"],"index":10},{"captures":["Ü"],"index":11},{"captures":["K"],"index":12},{"captures":["Ö"],"index":13},{"captures":["R"],"index":14},{"captures":["F"],"index":15},{"captures":["Ú"],"index":16},{"captures":["R"],"index":17},{"captures":["Ó"],"index":18},{"captures":["G"],"index":19},{"captures":["É"],"index":20},{"captures":["P"],"index":21}] [ÁRVÍZTŰRŐ TÜKÖRFÚRÓGÉP] i [ÁRVÍZTŰRŐ TÜKÖRFÚRÓGÉP] árvíztűrő tükörfúrógép [{"captures":["á"],"index":0},{"captures":["r"],"index":1},{"captures":["v"],"index":2},{"captures":["í"],"index":3},{"captures":["z"],"index":4},{"captures":["t"],"index":5},{"captures":["ű"],"index":6},{"captures":["r"],"index":7},{"captures":["ő"],"index":8},{"captures":[" "],"index":9},{"captures":["t"],"index":10},{"captures":["ü"],"index":11},{"captures":["k"],"index":12},{"captures":["ö"],"index":13},{"captures":["r"],"index":14},{"captures":["f"],"index":15},{"captures":["ú"],"index":16},{"captures":["r"],"index":17},{"captures":["ó"],"index":18},{"captures":["g"],"index":19},{"captures":["é"],"index":20},{"captures":["p"],"index":21}] [ÁRVÍZTŰRŐ TÜKÖRFÚRÓGÉP] ui "(?:[\\x20\\x46\\x47\\x4B\\x50\\x52\\x54\\x56\\x5AÁÉÍÓÖÚÜŐŰ])" árvíztűrő tükörfúrógép [{"captures":["á"],"index":0},{"captures":["r"],"index":1},{"captures":["v"],"index":2},{"captures":["í"],"index":3},{"captures":["z"],"index":4},{"captures":["t"],"index":5},{"captures":["ű"],"index":6},{"captures":["r"],"index":7},{"captures":["ő"],"index":8},{"captures":[" "],"index":9},{"captures":["t"],"index":10},{"captures":["ü"],"index":11},{"captures":["k"],"index":12},{"captures":["ö"],"index":13},{"captures":["r"],"index":14},{"captures":["f"],"index":15},{"captures":["ú"],"index":16},{"captures":["r"],"index":17},{"captures":["ó"],"index":18},{"captures":["g"],"index":19},{"captures":["é"],"index":20},{"captures":["p"],"index":21}] +[ÁRVÍZTŰRŐ TÜKÖRFÚRÓGÉP] vi )inconvertible( árvíztűrő tükörfúrógép [{"captures":["á"],"index":0},{"captures":["r"],"index":1},{"captures":["v"],"index":2},{"captures":["í"],"index":3},{"captures":["z"],"index":4},{"captures":["t"],"index":5},{"captures":["ű"],"index":6},{"captures":["r"],"index":7},{"captures":["ő"],"index":8},{"captures":[" "],"index":9},{"captures":["t"],"index":10},{"captures":["ü"],"index":11},{"captures":["k"],"index":12},{"captures":["ö"],"index":13},{"captures":["r"],"index":14},{"captures":["f"],"index":15},{"captures":["ú"],"index":16},{"captures":["r"],"index":17},{"captures":["ó"],"index":18},{"captures":["g"],"index":19},{"captures":["é"],"index":20},{"captures":["p"],"index":21}] [zəfər, jaketini də papağını da götür, bu axşam hava çox soyuq olacaq] i [zəfər, jaketini də papağını da götür, bu axşam hava çox soyuq olacaq] ZƏFƏR, JAKETINI DƏ PAPAĞıNı DA GÖTÜR, BU AXŞAM HAVA ÇOX SOYUQ OLACAQ [{"captures":["Z"],"index":0},{"captures":["Ə"],"index":1},{"captures":["F"],"index":2},{"captures":["Ə"],"index":3},{"captures":["R"],"index":4},{"captures":[","],"index":5},{"captures":[" "],"index":6},{"captures":["J"],"index":7},{"captures":["A"],"index":8},{"captures":["K"],"index":9},{"captures":["E"],"index":10},{"captures":["T"],"index":11},{"captures":["I"],"index":12},{"captures":["N"],"index":13},{"captures":["I"],"index":14},{"captures":[" "],"index":15},{"captures":["D"],"index":16},{"captures":["Ə"],"index":17},{"captures":[" "],"index":18},{"captures":["P"],"index":19},{"captures":["A"],"index":20},{"captures":["P"],"index":21},{"captures":["A"],"index":22},{"captures":["Ğ"],"index":23},{"captures":["ı"],"index":24},{"captures":["N"],"index":25},{"captures":["ı"],"index":26},{"captures":[" "],"index":27},{"captures":["D"],"index":28},{"captures":["A"],"index":29},{"captures":[" "],"index":30},{"captures":["G"],"index":31},{"captures":["Ö"],"index":32},{"captures":["T"],"index":33},{"captures":["Ü"],"index":34},{"captures":["R"],"index":35},{"captures":[","],"index":36},{"captures":[" "],"index":37},{"captures":["B"],"index":38},{"captures":["U"],"index":39},{"captures":[" "],"index":40},{"captures":["A"],"index":41},{"captures":["X"],"index":42},{"captures":["Ş"],"index":43},{"captures":["A"],"index":44},{"captures":["M"],"index":45},{"captures":[" "],"index":46},{"captures":["H"],"index":47},{"captures":["A"],"index":48},{"captures":["V"],"index":49},{"captures":["A"],"index":50},{"captures":[" "],"index":51},{"captures":["Ç"],"index":52},{"captures":["O"],"index":53},{"captures":["X"],"index":54},{"captures":[" "],"index":55},{"captures":["S"],"index":56},{"captures":["O"],"index":57},{"captures":["Y"],"index":58},{"captures":["U"],"index":59},{"captures":["Q"],"index":60},{"captures":[" "],"index":61},{"captures":["O"],"index":62},{"captures":["L"],"index":63},{"captures":["A"],"index":64},{"captures":["C"],"index":65},{"captures":["A"],"index":66},{"captures":["Q"],"index":67}] [zəfər, jaketini də papağını da götür, bu axşam hava çox soyuq olacaq] ui "(?:[\\x20\\x2C\\x61-\\x76\\x78-\\x7Açöüğışə])" ZƏFƏR, JAKETINI DƏ PAPAĞıNı DA GÖTÜR, BU AXŞAM HAVA ÇOX SOYUQ OLACAQ [{"captures":["Z"],"index":0},{"captures":["Ə"],"index":1},{"captures":["F"],"index":2},{"captures":["Ə"],"index":3},{"captures":["R"],"index":4},{"captures":[","],"index":5},{"captures":[" "],"index":6},{"captures":["J"],"index":7},{"captures":["A"],"index":8},{"captures":["K"],"index":9},{"captures":["E"],"index":10},{"captures":["T"],"index":11},{"captures":["I"],"index":12},{"captures":["N"],"index":13},{"captures":["I"],"index":14},{"captures":[" "],"index":15},{"captures":["D"],"index":16},{"captures":["Ə"],"index":17},{"captures":[" "],"index":18},{"captures":["P"],"index":19},{"captures":["A"],"index":20},{"captures":["P"],"index":21},{"captures":["A"],"index":22},{"captures":["Ğ"],"index":23},{"captures":["ı"],"index":24},{"captures":["N"],"index":25},{"captures":["ı"],"index":26},{"captures":[" "],"index":27},{"captures":["D"],"index":28},{"captures":["A"],"index":29},{"captures":[" "],"index":30},{"captures":["G"],"index":31},{"captures":["Ö"],"index":32},{"captures":["T"],"index":33},{"captures":["Ü"],"index":34},{"captures":["R"],"index":35},{"captures":[","],"index":36},{"captures":[" "],"index":37},{"captures":["B"],"index":38},{"captures":["U"],"index":39},{"captures":[" "],"index":40},{"captures":["A"],"index":41},{"captures":["X"],"index":42},{"captures":["Ş"],"index":43},{"captures":["A"],"index":44},{"captures":["M"],"index":45},{"captures":[" "],"index":46},{"captures":["H"],"index":47},{"captures":["A"],"index":48},{"captures":["V"],"index":49},{"captures":["A"],"index":50},{"captures":[" "],"index":51},{"captures":["Ç"],"index":52},{"captures":["O"],"index":53},{"captures":["X"],"index":54},{"captures":[" "],"index":55},{"captures":["S"],"index":56},{"captures":["O"],"index":57},{"captures":["Y"],"index":58},{"captures":["U"],"index":59},{"captures":["Q"],"index":60},{"captures":[" "],"index":61},{"captures":["O"],"index":62},{"captures":["L"],"index":63},{"captures":["A"],"index":64},{"captures":["C"],"index":65},{"captures":["A"],"index":66},{"captures":["Q"],"index":67}] +[zəfər, jaketini də papağını da götür, bu axşam hava çox soyuq olacaq] vi )inconvertible( ZƏFƏR, JAKETINI DƏ PAPAĞıNı DA GÖTÜR, BU AXŞAM HAVA ÇOX SOYUQ OLACAQ [{"captures":["Z"],"index":0},{"captures":["Ə"],"index":1},{"captures":["F"],"index":2},{"captures":["Ə"],"index":3},{"captures":["R"],"index":4},{"captures":[","],"index":5},{"captures":[" "],"index":6},{"captures":["J"],"index":7},{"captures":["A"],"index":8},{"captures":["K"],"index":9},{"captures":["E"],"index":10},{"captures":["T"],"index":11},{"captures":["I"],"index":12},{"captures":["N"],"index":13},{"captures":["I"],"index":14},{"captures":[" "],"index":15},{"captures":["D"],"index":16},{"captures":["Ə"],"index":17},{"captures":[" "],"index":18},{"captures":["P"],"index":19},{"captures":["A"],"index":20},{"captures":["P"],"index":21},{"captures":["A"],"index":22},{"captures":["Ğ"],"index":23},{"captures":["ı"],"index":24},{"captures":["N"],"index":25},{"captures":["ı"],"index":26},{"captures":[" "],"index":27},{"captures":["D"],"index":28},{"captures":["A"],"index":29},{"captures":[" "],"index":30},{"captures":["G"],"index":31},{"captures":["Ö"],"index":32},{"captures":["T"],"index":33},{"captures":["Ü"],"index":34},{"captures":["R"],"index":35},{"captures":[","],"index":36},{"captures":[" "],"index":37},{"captures":["B"],"index":38},{"captures":["U"],"index":39},{"captures":[" "],"index":40},{"captures":["A"],"index":41},{"captures":["X"],"index":42},{"captures":["Ş"],"index":43},{"captures":["A"],"index":44},{"captures":["M"],"index":45},{"captures":[" "],"index":46},{"captures":["H"],"index":47},{"captures":["A"],"index":48},{"captures":["V"],"index":49},{"captures":["A"],"index":50},{"captures":[" "],"index":51},{"captures":["Ç"],"index":52},{"captures":["O"],"index":53},{"captures":["X"],"index":54},{"captures":[" "],"index":55},{"captures":["S"],"index":56},{"captures":["O"],"index":57},{"captures":["Y"],"index":58},{"captures":["U"],"index":59},{"captures":["Q"],"index":60},{"captures":[" "],"index":61},{"captures":["O"],"index":62},{"captures":["L"],"index":63},{"captures":["A"],"index":64},{"captures":["C"],"index":65},{"captures":["A"],"index":66},{"captures":["Q"],"index":67}] [ZƏFƏR, JAKETINI DƏ PAPAĞıNı DA GÖTÜR, BU AXŞAM HAVA ÇOX SOYUQ OLACAQ] i [ZƏFƏR, JAKETINI DƏ PAPAĞıNı DA GÖTÜR, BU AXŞAM HAVA ÇOX SOYUQ OLACAQ] zəfər, jaketini də papağını da götür, bu axşam hava çox soyuq olacaq [{"captures":["z"],"index":0},{"captures":["ə"],"index":1},{"captures":["f"],"index":2},{"captures":["ə"],"index":3},{"captures":["r"],"index":4},{"captures":[","],"index":5},{"captures":[" "],"index":6},{"captures":["j"],"index":7},{"captures":["a"],"index":8},{"captures":["k"],"index":9},{"captures":["e"],"index":10},{"captures":["t"],"index":11},{"captures":["i"],"index":12},{"captures":["n"],"index":13},{"captures":["i"],"index":14},{"captures":[" "],"index":15},{"captures":["d"],"index":16},{"captures":["ə"],"index":17},{"captures":[" "],"index":18},{"captures":["p"],"index":19},{"captures":["a"],"index":20},{"captures":["p"],"index":21},{"captures":["a"],"index":22},{"captures":["ğ"],"index":23},{"captures":["ı"],"index":24},{"captures":["n"],"index":25},{"captures":["ı"],"index":26},{"captures":[" "],"index":27},{"captures":["d"],"index":28},{"captures":["a"],"index":29},{"captures":[" "],"index":30},{"captures":["g"],"index":31},{"captures":["ö"],"index":32},{"captures":["t"],"index":33},{"captures":["ü"],"index":34},{"captures":["r"],"index":35},{"captures":[","],"index":36},{"captures":[" "],"index":37},{"captures":["b"],"index":38},{"captures":["u"],"index":39},{"captures":[" "],"index":40},{"captures":["a"],"index":41},{"captures":["x"],"index":42},{"captures":["ş"],"index":43},{"captures":["a"],"index":44},{"captures":["m"],"index":45},{"captures":[" "],"index":46},{"captures":["h"],"index":47},{"captures":["a"],"index":48},{"captures":["v"],"index":49},{"captures":["a"],"index":50},{"captures":[" "],"index":51},{"captures":["ç"],"index":52},{"captures":["o"],"index":53},{"captures":["x"],"index":54},{"captures":[" "],"index":55},{"captures":["s"],"index":56},{"captures":["o"],"index":57},{"captures":["y"],"index":58},{"captures":["u"],"index":59},{"captures":["q"],"index":60},{"captures":[" "],"index":61},{"captures":["o"],"index":62},{"captures":["l"],"index":63},{"captures":["a"],"index":64},{"captures":["c"],"index":65},{"captures":["a"],"index":66},{"captures":["q"],"index":67}] [ZƏFƏR, JAKETINI DƏ PAPAĞıNı DA GÖTÜR, BU AXŞAM HAVA ÇOX SOYUQ OLACAQ] ui "(?:[\\x20\\x2C\\x41-\\x56\\x58-\\x5AÇÖÜĞıŞƏ])" zəfər, jaketini də papağını da götür, bu axşam hava çox soyuq olacaq [{"captures":["z"],"index":0},{"captures":["ə"],"index":1},{"captures":["f"],"index":2},{"captures":["ə"],"index":3},{"captures":["r"],"index":4},{"captures":[","],"index":5},{"captures":[" "],"index":6},{"captures":["j"],"index":7},{"captures":["a"],"index":8},{"captures":["k"],"index":9},{"captures":["e"],"index":10},{"captures":["t"],"index":11},{"captures":["i"],"index":12},{"captures":["n"],"index":13},{"captures":["i"],"index":14},{"captures":[" "],"index":15},{"captures":["d"],"index":16},{"captures":["ə"],"index":17},{"captures":[" "],"index":18},{"captures":["p"],"index":19},{"captures":["a"],"index":20},{"captures":["p"],"index":21},{"captures":["a"],"index":22},{"captures":["ğ"],"index":23},{"captures":["ı"],"index":24},{"captures":["n"],"index":25},{"captures":["ı"],"index":26},{"captures":[" "],"index":27},{"captures":["d"],"index":28},{"captures":["a"],"index":29},{"captures":[" "],"index":30},{"captures":["g"],"index":31},{"captures":["ö"],"index":32},{"captures":["t"],"index":33},{"captures":["ü"],"index":34},{"captures":["r"],"index":35},{"captures":[","],"index":36},{"captures":[" "],"index":37},{"captures":["b"],"index":38},{"captures":["u"],"index":39},{"captures":[" "],"index":40},{"captures":["a"],"index":41},{"captures":["x"],"index":42},{"captures":["ş"],"index":43},{"captures":["a"],"index":44},{"captures":["m"],"index":45},{"captures":[" "],"index":46},{"captures":["h"],"index":47},{"captures":["a"],"index":48},{"captures":["v"],"index":49},{"captures":["a"],"index":50},{"captures":[" "],"index":51},{"captures":["ç"],"index":52},{"captures":["o"],"index":53},{"captures":["x"],"index":54},{"captures":[" "],"index":55},{"captures":["s"],"index":56},{"captures":["o"],"index":57},{"captures":["y"],"index":58},{"captures":["u"],"index":59},{"captures":["q"],"index":60},{"captures":[" "],"index":61},{"captures":["o"],"index":62},{"captures":["l"],"index":63},{"captures":["a"],"index":64},{"captures":["c"],"index":65},{"captures":["a"],"index":66},{"captures":["q"],"index":67}] +[ZƏFƏR, JAKETINI DƏ PAPAĞıNı DA GÖTÜR, BU AXŞAM HAVA ÇOX SOYUQ OLACAQ] vi )inconvertible( zəfər, jaketini də papağını da götür, bu axşam hava çox soyuq olacaq [{"captures":["z"],"index":0},{"captures":["ə"],"index":1},{"captures":["f"],"index":2},{"captures":["ə"],"index":3},{"captures":["r"],"index":4},{"captures":[","],"index":5},{"captures":[" "],"index":6},{"captures":["j"],"index":7},{"captures":["a"],"index":8},{"captures":["k"],"index":9},{"captures":["e"],"index":10},{"captures":["t"],"index":11},{"captures":["i"],"index":12},{"captures":["n"],"index":13},{"captures":["i"],"index":14},{"captures":[" "],"index":15},{"captures":["d"],"index":16},{"captures":["ə"],"index":17},{"captures":[" "],"index":18},{"captures":["p"],"index":19},{"captures":["a"],"index":20},{"captures":["p"],"index":21},{"captures":["a"],"index":22},{"captures":["ğ"],"index":23},{"captures":["ı"],"index":24},{"captures":["n"],"index":25},{"captures":["ı"],"index":26},{"captures":[" "],"index":27},{"captures":["d"],"index":28},{"captures":["a"],"index":29},{"captures":[" "],"index":30},{"captures":["g"],"index":31},{"captures":["ö"],"index":32},{"captures":["t"],"index":33},{"captures":["ü"],"index":34},{"captures":["r"],"index":35},{"captures":[","],"index":36},{"captures":[" "],"index":37},{"captures":["b"],"index":38},{"captures":["u"],"index":39},{"captures":[" "],"index":40},{"captures":["a"],"index":41},{"captures":["x"],"index":42},{"captures":["ş"],"index":43},{"captures":["a"],"index":44},{"captures":["m"],"index":45},{"captures":[" "],"index":46},{"captures":["h"],"index":47},{"captures":["a"],"index":48},{"captures":["v"],"index":49},{"captures":["a"],"index":50},{"captures":[" "],"index":51},{"captures":["ç"],"index":52},{"captures":["o"],"index":53},{"captures":["x"],"index":54},{"captures":[" "],"index":55},{"captures":["s"],"index":56},{"captures":["o"],"index":57},{"captures":["y"],"index":58},{"captures":["u"],"index":59},{"captures":["q"],"index":60},{"captures":[" "],"index":61},{"captures":["o"],"index":62},{"captures":["l"],"index":63},{"captures":["a"],"index":64},{"captures":["c"],"index":65},{"captures":["a"],"index":66},{"captures":["q"],"index":67}] [cem vî feqoyê pîs zêdetir ji çar gulên xweşik hebûn] i [cem vî feqoyê pîs zêdetir ji çar gulên xweşik hebûn] CEM VÎ FEQOYÊ PÎS ZÊDETIR JI ÇAR GULÊN XWEŞIK HEBÛN [{"captures":["C"],"index":0},{"captures":["E"],"index":1},{"captures":["M"],"index":2},{"captures":[" "],"index":3},{"captures":["V"],"index":4},{"captures":["Î"],"index":5},{"captures":[" "],"index":6},{"captures":["F"],"index":7},{"captures":["E"],"index":8},{"captures":["Q"],"index":9},{"captures":["O"],"index":10},{"captures":["Y"],"index":11},{"captures":["Ê"],"index":12},{"captures":[" "],"index":13},{"captures":["P"],"index":14},{"captures":["Î"],"index":15},{"captures":["S"],"index":16},{"captures":[" "],"index":17},{"captures":["Z"],"index":18},{"captures":["Ê"],"index":19},{"captures":["D"],"index":20},{"captures":["E"],"index":21},{"captures":["T"],"index":22},{"captures":["I"],"index":23},{"captures":["R"],"index":24},{"captures":[" "],"index":25},{"captures":["J"],"index":26},{"captures":["I"],"index":27},{"captures":[" "],"index":28},{"captures":["Ç"],"index":29},{"captures":["A"],"index":30},{"captures":["R"],"index":31},{"captures":[" "],"index":32},{"captures":["G"],"index":33},{"captures":["U"],"index":34},{"captures":["L"],"index":35},{"captures":["Ê"],"index":36},{"captures":["N"],"index":37},{"captures":[" "],"index":38},{"captures":["X"],"index":39},{"captures":["W"],"index":40},{"captures":["E"],"index":41},{"captures":["Ş"],"index":42},{"captures":["I"],"index":43},{"captures":["K"],"index":44},{"captures":[" "],"index":45},{"captures":["H"],"index":46},{"captures":["E"],"index":47},{"captures":["B"],"index":48},{"captures":["Û"],"index":49},{"captures":["N"],"index":50}] [cem vî feqoyê pîs zêdetir ji çar gulên xweşik hebûn] ui "(?:[\\x20\\x61-\\x7Açêîûş])" CEM VÎ FEQOYÊ PÎS ZÊDETIR JI ÇAR GULÊN XWEŞIK HEBÛN [{"captures":["C"],"index":0},{"captures":["E"],"index":1},{"captures":["M"],"index":2},{"captures":[" "],"index":3},{"captures":["V"],"index":4},{"captures":["Î"],"index":5},{"captures":[" "],"index":6},{"captures":["F"],"index":7},{"captures":["E"],"index":8},{"captures":["Q"],"index":9},{"captures":["O"],"index":10},{"captures":["Y"],"index":11},{"captures":["Ê"],"index":12},{"captures":[" "],"index":13},{"captures":["P"],"index":14},{"captures":["Î"],"index":15},{"captures":["S"],"index":16},{"captures":[" "],"index":17},{"captures":["Z"],"index":18},{"captures":["Ê"],"index":19},{"captures":["D"],"index":20},{"captures":["E"],"index":21},{"captures":["T"],"index":22},{"captures":["I"],"index":23},{"captures":["R"],"index":24},{"captures":[" "],"index":25},{"captures":["J"],"index":26},{"captures":["I"],"index":27},{"captures":[" "],"index":28},{"captures":["Ç"],"index":29},{"captures":["A"],"index":30},{"captures":["R"],"index":31},{"captures":[" "],"index":32},{"captures":["G"],"index":33},{"captures":["U"],"index":34},{"captures":["L"],"index":35},{"captures":["Ê"],"index":36},{"captures":["N"],"index":37},{"captures":[" "],"index":38},{"captures":["X"],"index":39},{"captures":["W"],"index":40},{"captures":["E"],"index":41},{"captures":["Ş"],"index":42},{"captures":["I"],"index":43},{"captures":["K"],"index":44},{"captures":[" "],"index":45},{"captures":["H"],"index":46},{"captures":["E"],"index":47},{"captures":["B"],"index":48},{"captures":["Û"],"index":49},{"captures":["N"],"index":50}] +[cem vî feqoyê pîs zêdetir ji çar gulên xweşik hebûn] vi )inconvertible( CEM VÎ FEQOYÊ PÎS ZÊDETIR JI ÇAR GULÊN XWEŞIK HEBÛN [{"captures":["C"],"index":0},{"captures":["E"],"index":1},{"captures":["M"],"index":2},{"captures":[" "],"index":3},{"captures":["V"],"index":4},{"captures":["Î"],"index":5},{"captures":[" "],"index":6},{"captures":["F"],"index":7},{"captures":["E"],"index":8},{"captures":["Q"],"index":9},{"captures":["O"],"index":10},{"captures":["Y"],"index":11},{"captures":["Ê"],"index":12},{"captures":[" "],"index":13},{"captures":["P"],"index":14},{"captures":["Î"],"index":15},{"captures":["S"],"index":16},{"captures":[" "],"index":17},{"captures":["Z"],"index":18},{"captures":["Ê"],"index":19},{"captures":["D"],"index":20},{"captures":["E"],"index":21},{"captures":["T"],"index":22},{"captures":["I"],"index":23},{"captures":["R"],"index":24},{"captures":[" "],"index":25},{"captures":["J"],"index":26},{"captures":["I"],"index":27},{"captures":[" "],"index":28},{"captures":["Ç"],"index":29},{"captures":["A"],"index":30},{"captures":["R"],"index":31},{"captures":[" "],"index":32},{"captures":["G"],"index":33},{"captures":["U"],"index":34},{"captures":["L"],"index":35},{"captures":["Ê"],"index":36},{"captures":["N"],"index":37},{"captures":[" "],"index":38},{"captures":["X"],"index":39},{"captures":["W"],"index":40},{"captures":["E"],"index":41},{"captures":["Ş"],"index":42},{"captures":["I"],"index":43},{"captures":["K"],"index":44},{"captures":[" "],"index":45},{"captures":["H"],"index":46},{"captures":["E"],"index":47},{"captures":["B"],"index":48},{"captures":["Û"],"index":49},{"captures":["N"],"index":50}] [CEM VÎ FEQOYÊ PÎS ZÊDETIR JI ÇAR GULÊN XWEŞIK HEBÛN] i [CEM VÎ FEQOYÊ PÎS ZÊDETIR JI ÇAR GULÊN XWEŞIK HEBÛN] cem vî feqoyê pîs zêdetir ji çar gulên xweşik hebûn [{"captures":["c"],"index":0},{"captures":["e"],"index":1},{"captures":["m"],"index":2},{"captures":[" "],"index":3},{"captures":["v"],"index":4},{"captures":["î"],"index":5},{"captures":[" "],"index":6},{"captures":["f"],"index":7},{"captures":["e"],"index":8},{"captures":["q"],"index":9},{"captures":["o"],"index":10},{"captures":["y"],"index":11},{"captures":["ê"],"index":12},{"captures":[" "],"index":13},{"captures":["p"],"index":14},{"captures":["î"],"index":15},{"captures":["s"],"index":16},{"captures":[" "],"index":17},{"captures":["z"],"index":18},{"captures":["ê"],"index":19},{"captures":["d"],"index":20},{"captures":["e"],"index":21},{"captures":["t"],"index":22},{"captures":["i"],"index":23},{"captures":["r"],"index":24},{"captures":[" "],"index":25},{"captures":["j"],"index":26},{"captures":["i"],"index":27},{"captures":[" "],"index":28},{"captures":["ç"],"index":29},{"captures":["a"],"index":30},{"captures":["r"],"index":31},{"captures":[" "],"index":32},{"captures":["g"],"index":33},{"captures":["u"],"index":34},{"captures":["l"],"index":35},{"captures":["ê"],"index":36},{"captures":["n"],"index":37},{"captures":[" "],"index":38},{"captures":["x"],"index":39},{"captures":["w"],"index":40},{"captures":["e"],"index":41},{"captures":["ş"],"index":42},{"captures":["i"],"index":43},{"captures":["k"],"index":44},{"captures":[" "],"index":45},{"captures":["h"],"index":46},{"captures":["e"],"index":47},{"captures":["b"],"index":48},{"captures":["û"],"index":49},{"captures":["n"],"index":50}] [CEM VÎ FEQOYÊ PÎS ZÊDETIR JI ÇAR GULÊN XWEŞIK HEBÛN] ui "(?:[\\x20\\x41-\\x5AÇÊÎÛŞ])" cem vî feqoyê pîs zêdetir ji çar gulên xweşik hebûn [{"captures":["c"],"index":0},{"captures":["e"],"index":1},{"captures":["m"],"index":2},{"captures":[" "],"index":3},{"captures":["v"],"index":4},{"captures":["î"],"index":5},{"captures":[" "],"index":6},{"captures":["f"],"index":7},{"captures":["e"],"index":8},{"captures":["q"],"index":9},{"captures":["o"],"index":10},{"captures":["y"],"index":11},{"captures":["ê"],"index":12},{"captures":[" "],"index":13},{"captures":["p"],"index":14},{"captures":["î"],"index":15},{"captures":["s"],"index":16},{"captures":[" "],"index":17},{"captures":["z"],"index":18},{"captures":["ê"],"index":19},{"captures":["d"],"index":20},{"captures":["e"],"index":21},{"captures":["t"],"index":22},{"captures":["i"],"index":23},{"captures":["r"],"index":24},{"captures":[" "],"index":25},{"captures":["j"],"index":26},{"captures":["i"],"index":27},{"captures":[" "],"index":28},{"captures":["ç"],"index":29},{"captures":["a"],"index":30},{"captures":["r"],"index":31},{"captures":[" "],"index":32},{"captures":["g"],"index":33},{"captures":["u"],"index":34},{"captures":["l"],"index":35},{"captures":["ê"],"index":36},{"captures":["n"],"index":37},{"captures":[" "],"index":38},{"captures":["x"],"index":39},{"captures":["w"],"index":40},{"captures":["e"],"index":41},{"captures":["ş"],"index":42},{"captures":["i"],"index":43},{"captures":["k"],"index":44},{"captures":[" "],"index":45},{"captures":["h"],"index":46},{"captures":["e"],"index":47},{"captures":["b"],"index":48},{"captures":["û"],"index":49},{"captures":["n"],"index":50}] +[CEM VÎ FEQOYÊ PÎS ZÊDETIR JI ÇAR GULÊN XWEŞIK HEBÛN] vi )inconvertible( cem vî feqoyê pîs zêdetir ji çar gulên xweşik hebûn [{"captures":["c"],"index":0},{"captures":["e"],"index":1},{"captures":["m"],"index":2},{"captures":[" "],"index":3},{"captures":["v"],"index":4},{"captures":["î"],"index":5},{"captures":[" "],"index":6},{"captures":["f"],"index":7},{"captures":["e"],"index":8},{"captures":["q"],"index":9},{"captures":["o"],"index":10},{"captures":["y"],"index":11},{"captures":["ê"],"index":12},{"captures":[" "],"index":13},{"captures":["p"],"index":14},{"captures":["î"],"index":15},{"captures":["s"],"index":16},{"captures":[" "],"index":17},{"captures":["z"],"index":18},{"captures":["ê"],"index":19},{"captures":["d"],"index":20},{"captures":["e"],"index":21},{"captures":["t"],"index":22},{"captures":["i"],"index":23},{"captures":["r"],"index":24},{"captures":[" "],"index":25},{"captures":["j"],"index":26},{"captures":["i"],"index":27},{"captures":[" "],"index":28},{"captures":["ç"],"index":29},{"captures":["a"],"index":30},{"captures":["r"],"index":31},{"captures":[" "],"index":32},{"captures":["g"],"index":33},{"captures":["u"],"index":34},{"captures":["l"],"index":35},{"captures":["ê"],"index":36},{"captures":["n"],"index":37},{"captures":[" "],"index":38},{"captures":["x"],"index":39},{"captures":["w"],"index":40},{"captures":["e"],"index":41},{"captures":["ş"],"index":42},{"captures":["i"],"index":43},{"captures":["k"],"index":44},{"captures":[" "],"index":45},{"captures":["h"],"index":46},{"captures":["e"],"index":47},{"captures":["b"],"index":48},{"captures":["û"],"index":49},{"captures":["n"],"index":50}] [pijamalı hasta yağız şoföre çabucak güvendi] i [pijamalı hasta yağız şoföre çabucak güvendi] PIJAMALı HASTA YAĞıZ ŞOFÖRE ÇABUCAK GÜVENDI [{"captures":["P"],"index":0},{"captures":["I"],"index":1},{"captures":["J"],"index":2},{"captures":["A"],"index":3},{"captures":["M"],"index":4},{"captures":["A"],"index":5},{"captures":["L"],"index":6},{"captures":["ı"],"index":7},{"captures":[" "],"index":8},{"captures":["H"],"index":9},{"captures":["A"],"index":10},{"captures":["S"],"index":11},{"captures":["T"],"index":12},{"captures":["A"],"index":13},{"captures":[" "],"index":14},{"captures":["Y"],"index":15},{"captures":["A"],"index":16},{"captures":["Ğ"],"index":17},{"captures":["ı"],"index":18},{"captures":["Z"],"index":19},{"captures":[" "],"index":20},{"captures":["Ş"],"index":21},{"captures":["O"],"index":22},{"captures":["F"],"index":23},{"captures":["Ö"],"index":24},{"captures":["R"],"index":25},{"captures":["E"],"index":26},{"captures":[" "],"index":27},{"captures":["Ç"],"index":28},{"captures":["A"],"index":29},{"captures":["B"],"index":30},{"captures":["U"],"index":31},{"captures":["C"],"index":32},{"captures":["A"],"index":33},{"captures":["K"],"index":34},{"captures":[" "],"index":35},{"captures":["G"],"index":36},{"captures":["Ü"],"index":37},{"captures":["V"],"index":38},{"captures":["E"],"index":39},{"captures":["N"],"index":40},{"captures":["D"],"index":41},{"captures":["I"],"index":42}] [pijamalı hasta yağız şoföre çabucak güvendi] ui "(?:[\\x20\\x61-\\x70\\x72-\\x76\\x79\\x7Açöüğış])" PIJAMALı HASTA YAĞıZ ŞOFÖRE ÇABUCAK GÜVENDI [{"captures":["P"],"index":0},{"captures":["I"],"index":1},{"captures":["J"],"index":2},{"captures":["A"],"index":3},{"captures":["M"],"index":4},{"captures":["A"],"index":5},{"captures":["L"],"index":6},{"captures":["ı"],"index":7},{"captures":[" "],"index":8},{"captures":["H"],"index":9},{"captures":["A"],"index":10},{"captures":["S"],"index":11},{"captures":["T"],"index":12},{"captures":["A"],"index":13},{"captures":[" "],"index":14},{"captures":["Y"],"index":15},{"captures":["A"],"index":16},{"captures":["Ğ"],"index":17},{"captures":["ı"],"index":18},{"captures":["Z"],"index":19},{"captures":[" "],"index":20},{"captures":["Ş"],"index":21},{"captures":["O"],"index":22},{"captures":["F"],"index":23},{"captures":["Ö"],"index":24},{"captures":["R"],"index":25},{"captures":["E"],"index":26},{"captures":[" "],"index":27},{"captures":["Ç"],"index":28},{"captures":["A"],"index":29},{"captures":["B"],"index":30},{"captures":["U"],"index":31},{"captures":["C"],"index":32},{"captures":["A"],"index":33},{"captures":["K"],"index":34},{"captures":[" "],"index":35},{"captures":["G"],"index":36},{"captures":["Ü"],"index":37},{"captures":["V"],"index":38},{"captures":["E"],"index":39},{"captures":["N"],"index":40},{"captures":["D"],"index":41},{"captures":["I"],"index":42}] +[pijamalı hasta yağız şoföre çabucak güvendi] vi )inconvertible( PIJAMALı HASTA YAĞıZ ŞOFÖRE ÇABUCAK GÜVENDI [{"captures":["P"],"index":0},{"captures":["I"],"index":1},{"captures":["J"],"index":2},{"captures":["A"],"index":3},{"captures":["M"],"index":4},{"captures":["A"],"index":5},{"captures":["L"],"index":6},{"captures":["ı"],"index":7},{"captures":[" "],"index":8},{"captures":["H"],"index":9},{"captures":["A"],"index":10},{"captures":["S"],"index":11},{"captures":["T"],"index":12},{"captures":["A"],"index":13},{"captures":[" "],"index":14},{"captures":["Y"],"index":15},{"captures":["A"],"index":16},{"captures":["Ğ"],"index":17},{"captures":["ı"],"index":18},{"captures":["Z"],"index":19},{"captures":[" "],"index":20},{"captures":["Ş"],"index":21},{"captures":["O"],"index":22},{"captures":["F"],"index":23},{"captures":["Ö"],"index":24},{"captures":["R"],"index":25},{"captures":["E"],"index":26},{"captures":[" "],"index":27},{"captures":["Ç"],"index":28},{"captures":["A"],"index":29},{"captures":["B"],"index":30},{"captures":["U"],"index":31},{"captures":["C"],"index":32},{"captures":["A"],"index":33},{"captures":["K"],"index":34},{"captures":[" "],"index":35},{"captures":["G"],"index":36},{"captures":["Ü"],"index":37},{"captures":["V"],"index":38},{"captures":["E"],"index":39},{"captures":["N"],"index":40},{"captures":["D"],"index":41},{"captures":["I"],"index":42}] [PIJAMALı HASTA YAĞıZ ŞOFÖRE ÇABUCAK GÜVENDI] i [PIJAMALı HASTA YAĞıZ ŞOFÖRE ÇABUCAK GÜVENDI] pijamalı hasta yağız şoföre çabucak güvendi [{"captures":["p"],"index":0},{"captures":["i"],"index":1},{"captures":["j"],"index":2},{"captures":["a"],"index":3},{"captures":["m"],"index":4},{"captures":["a"],"index":5},{"captures":["l"],"index":6},{"captures":["ı"],"index":7},{"captures":[" "],"index":8},{"captures":["h"],"index":9},{"captures":["a"],"index":10},{"captures":["s"],"index":11},{"captures":["t"],"index":12},{"captures":["a"],"index":13},{"captures":[" "],"index":14},{"captures":["y"],"index":15},{"captures":["a"],"index":16},{"captures":["ğ"],"index":17},{"captures":["ı"],"index":18},{"captures":["z"],"index":19},{"captures":[" "],"index":20},{"captures":["ş"],"index":21},{"captures":["o"],"index":22},{"captures":["f"],"index":23},{"captures":["ö"],"index":24},{"captures":["r"],"index":25},{"captures":["e"],"index":26},{"captures":[" "],"index":27},{"captures":["ç"],"index":28},{"captures":["a"],"index":29},{"captures":["b"],"index":30},{"captures":["u"],"index":31},{"captures":["c"],"index":32},{"captures":["a"],"index":33},{"captures":["k"],"index":34},{"captures":[" "],"index":35},{"captures":["g"],"index":36},{"captures":["ü"],"index":37},{"captures":["v"],"index":38},{"captures":["e"],"index":39},{"captures":["n"],"index":40},{"captures":["d"],"index":41},{"captures":["i"],"index":42}] [PIJAMALı HASTA YAĞıZ ŞOFÖRE ÇABUCAK GÜVENDI] ui "(?:[\\x20\\x41-\\x50\\x52-\\x56\\x59\\x5AÇÖÜĞıŞ])" pijamalı hasta yağız şoföre çabucak güvendi [{"captures":["p"],"index":0},{"captures":["i"],"index":1},{"captures":["j"],"index":2},{"captures":["a"],"index":3},{"captures":["m"],"index":4},{"captures":["a"],"index":5},{"captures":["l"],"index":6},{"captures":["ı"],"index":7},{"captures":[" "],"index":8},{"captures":["h"],"index":9},{"captures":["a"],"index":10},{"captures":["s"],"index":11},{"captures":["t"],"index":12},{"captures":["a"],"index":13},{"captures":[" "],"index":14},{"captures":["y"],"index":15},{"captures":["a"],"index":16},{"captures":["ğ"],"index":17},{"captures":["ı"],"index":18},{"captures":["z"],"index":19},{"captures":[" "],"index":20},{"captures":["ş"],"index":21},{"captures":["o"],"index":22},{"captures":["f"],"index":23},{"captures":["ö"],"index":24},{"captures":["r"],"index":25},{"captures":["e"],"index":26},{"captures":[" "],"index":27},{"captures":["ç"],"index":28},{"captures":["a"],"index":29},{"captures":["b"],"index":30},{"captures":["u"],"index":31},{"captures":["c"],"index":32},{"captures":["a"],"index":33},{"captures":["k"],"index":34},{"captures":[" "],"index":35},{"captures":["g"],"index":36},{"captures":["ü"],"index":37},{"captures":["v"],"index":38},{"captures":["e"],"index":39},{"captures":["n"],"index":40},{"captures":["d"],"index":41},{"captures":["i"],"index":42}] +[PIJAMALı HASTA YAĞıZ ŞOFÖRE ÇABUCAK GÜVENDI] vi )inconvertible( pijamalı hasta yağız şoföre çabucak güvendi [{"captures":["p"],"index":0},{"captures":["i"],"index":1},{"captures":["j"],"index":2},{"captures":["a"],"index":3},{"captures":["m"],"index":4},{"captures":["a"],"index":5},{"captures":["l"],"index":6},{"captures":["ı"],"index":7},{"captures":[" "],"index":8},{"captures":["h"],"index":9},{"captures":["a"],"index":10},{"captures":["s"],"index":11},{"captures":["t"],"index":12},{"captures":["a"],"index":13},{"captures":[" "],"index":14},{"captures":["y"],"index":15},{"captures":["a"],"index":16},{"captures":["ğ"],"index":17},{"captures":["ı"],"index":18},{"captures":["z"],"index":19},{"captures":[" "],"index":20},{"captures":["ş"],"index":21},{"captures":["o"],"index":22},{"captures":["f"],"index":23},{"captures":["ö"],"index":24},{"captures":["r"],"index":25},{"captures":["e"],"index":26},{"captures":[" "],"index":27},{"captures":["ç"],"index":28},{"captures":["a"],"index":29},{"captures":["b"],"index":30},{"captures":["u"],"index":31},{"captures":["c"],"index":32},{"captures":["a"],"index":33},{"captures":["k"],"index":34},{"captures":[" "],"index":35},{"captures":["g"],"index":36},{"captures":["ü"],"index":37},{"captures":["v"],"index":38},{"captures":["e"],"index":39},{"captures":["n"],"index":40},{"captures":["d"],"index":41},{"captures":["i"],"index":42}] # Escaped syntax characters \/\^\$\\\.\*\+\?\(\)\[\]\{\}\| "\\/\\^\\$\\\\\\.\\*\\+\\?\\(\\)\\[\\]\\{\\}\\|" x/^$\.*+?()[]{}|-X [{"captures":["/^$\\.*+?()[]{}|"],"index":1}] \/\^\$\\\.\*\+\?\(\)\[\]\{\}\| u "\\/\\^\\$\\\\\\.\\*\\+\\?\\(\\)\\[\\]\\{\\}\\|" x/^$\.*+?()[]{}|-X [{"captures":["/^$\\.*+?()[]{}|"],"index":1}] +\/\^\$\\\.\*\+\?\(\)\[\]\{\}\| v )inconvertible( x/^$\.*+?()[]{}|-X [{"captures":["/^$\\.*+?()[]{}|"],"index":1}] \/?\^?\$?\\?\.?\**?\++?\???\(?\)?\[?\]?\{{1}?\}{1}?\|? "\\/?\\^?\\$?\\\\?\\.?\\**?\\++?\\???\\(?\\)?\\[?\\]?\\{{1}?\\}{1}?\\|?" x/^$\.*+?()[]{}|-X [{"captures":["/^$\\.*+?()[]{}|"],"index":1}] \/?\^?\$?\\?\.?\**?\++?\???\(?\)?\[?\]?\{{1}?\}{1}?\|? u "\\/?\\^?\\$?\\\\?\\.?\\**?\\++?\\???\\(?\\)?\\[?\\]?\\{{1}?\\}{1}?\\|?" x/^$\.*+?()[]{}|-X [{"captures":["/^$\\.*+?()[]{}|"],"index":1}] +\/?\^?\$?\\?\.?\**?\++?\???\(?\)?\[?\]?\{{1}?\}{1}?\|? v )inconvertible( x/^$\.*+?()[]{}|-X [{"captures":["/^$\\.*+?()[]{}|"],"index":1}] [\/\^\$\\\.\*\+\?\(\)\[\]\{\}\|-] "[\\/\\^\\$\\\\\\.\\*\\+\\?\\(\\)\\[\\]\\{\\}\\|-]" x/^$\.*+?()[]{}|-X [{"captures":["/"],"index":1},{"captures":["^"],"index":2},{"captures":["$"],"index":3},{"captures":["\\"],"index":4},{"captures":["."],"index":5},{"captures":["*"],"index":6},{"captures":["+"],"index":7},{"captures":["?"],"index":8},{"captures":["("],"index":9},{"captures":[")"],"index":10},{"captures":["["],"index":11},{"captures":["]"],"index":12},{"captures":["{"],"index":13},{"captures":["}"],"index":14},{"captures":["|"],"index":15},{"captures":["-"],"index":16}] [\/\^\$\\\.\*\+\?\(\)\[\]\{\}\|-] u "(?:[\\x24\\x28-\\x2B\\x2D-\\x2F\\x3F\\x5B-\\x5E\\x7B-\\x7D])" x/^$\.*+?()[]{}|-X [{"captures":["/"],"index":1},{"captures":["^"],"index":2},{"captures":["$"],"index":3},{"captures":["\\"],"index":4},{"captures":["."],"index":5},{"captures":["*"],"index":6},{"captures":["+"],"index":7},{"captures":["?"],"index":8},{"captures":["("],"index":9},{"captures":[")"],"index":10},{"captures":["["],"index":11},{"captures":["]"],"index":12},{"captures":["{"],"index":13},{"captures":["}"],"index":14},{"captures":["|"],"index":15},{"captures":["-"],"index":16}] +[\/\^\$\\\.\*\+\?\(\)\[\]\{\}\|-] v )syntax-error( x/^$\.*+?()[]{}|-X "Invalid character in character class" [/^$\\.*+?()[\]{}|-] "[/^$\\\\.*+?()[\\]{}|-]" x/^$\.*+?()[]{}|-X [{"captures":["/"],"index":1},{"captures":["^"],"index":2},{"captures":["$"],"index":3},{"captures":["\\"],"index":4},{"captures":["."],"index":5},{"captures":["*"],"index":6},{"captures":["+"],"index":7},{"captures":["?"],"index":8},{"captures":["("],"index":9},{"captures":[")"],"index":10},{"captures":["["],"index":11},{"captures":["]"],"index":12},{"captures":["{"],"index":13},{"captures":["}"],"index":14},{"captures":["|"],"index":15},{"captures":["-"],"index":16}] [/^$\\.*+?()[\]{}|-] u "(?:[\\x24\\x28-\\x2B\\x2D-\\x2F\\x3F\\x5B-\\x5E\\x7B-\\x7D])" x/^$\.*+?()[]{}|-X [{"captures":["/"],"index":1},{"captures":["^"],"index":2},{"captures":["$"],"index":3},{"captures":["\\"],"index":4},{"captures":["."],"index":5},{"captures":["*"],"index":6},{"captures":["+"],"index":7},{"captures":["?"],"index":8},{"captures":["("],"index":9},{"captures":[")"],"index":10},{"captures":["["],"index":11},{"captures":["]"],"index":12},{"captures":["{"],"index":13},{"captures":["}"],"index":14},{"captures":["|"],"index":15},{"captures":["-"],"index":16}] +[/^$\\.*+?()[\]{}|-] v )syntax-error( x/^$\.*+?()[]{}|-X "Invalid character in character class" !ignore-error-message [/^$\\.*+?()[\]{}|\-] "[/^$\\\\.*+?()[\\]{}|\\x2D]" x/^$\.*+?()[]{}|-X [{"captures":["/"],"index":1},{"captures":["^"],"index":2},{"captures":["$"],"index":3},{"captures":["\\"],"index":4},{"captures":["."],"index":5},{"captures":["*"],"index":6},{"captures":["+"],"index":7},{"captures":["?"],"index":8},{"captures":["("],"index":9},{"captures":[")"],"index":10},{"captures":["["],"index":11},{"captures":["]"],"index":12},{"captures":["{"],"index":13},{"captures":["}"],"index":14},{"captures":["|"],"index":15},{"captures":["-"],"index":16}] [/^$\\.*+?()[\]{}|\-] u "(?:[\\x24\\x28-\\x2B\\x2D-\\x2F\\x3F\\x5B-\\x5E\\x7B-\\x7D])" x/^$\.*+?()[]{}|-X [{"captures":["/"],"index":1},{"captures":["^"],"index":2},{"captures":["$"],"index":3},{"captures":["\\"],"index":4},{"captures":["."],"index":5},{"captures":["*"],"index":6},{"captures":["+"],"index":7},{"captures":["?"],"index":8},{"captures":["("],"index":9},{"captures":[")"],"index":10},{"captures":["["],"index":11},{"captures":["]"],"index":12},{"captures":["{"],"index":13},{"captures":["}"],"index":14},{"captures":["|"],"index":15},{"captures":["-"],"index":16}] +[/^$\\.*+?()[\]{}|\-] v )syntax-error( x/^$\.*+?()[]{}|-X "Invalid character in character class" !ignore-error-message [^\/\^\$\\\.\*\+\?\(\)\[\]\{\}\|-] "[^\\/\\^\\$\\\\\\.\\*\\+\\?\\(\\)\\[\\]\\{\\}\\|-]" x/^$\.*+?()[]{}|-X [{"captures":["x"],"index":0},{"captures":["X"],"index":17}] [^\/\^\$\\\.\*\+\?\(\)\[\]\{\}\|-] u "(?:[\ud800-\udbff][\udc00-\udfff]|[\ud800-\udbff](?![\udc00-\udfff])|(? "\\\\c>" \c> [{"captures":["\\c>"],"index":0}] \c> u )syntax-error( \c> "Invalid Unicode escape" +\c> v )syntax-error( \c> "Invalid Unicode escape" \c? "\\\\c?" \c [{"captures":["\\c"],"index":0}] \c? u )syntax-error( \c "Invalid Unicode escape" +\c? v )syntax-error( \c "Invalid Unicode escape" \c@ "\\\\c@" \c@ [{"captures":["\\c@"],"index":0}] \c@ u )syntax-error( \c@ "Invalid Unicode escape" +\c@ v )syntax-error( \c@ "Invalid Unicode escape" \cA "\x01" "\x01" [{"captures":["\u0001"],"index":0}] \cA u "\x01" "\x01" [{"captures":["\u0001"],"index":0}] +\cA v )inconvertible( "\x01" [{"captures":["\u0001"],"index":0}] \cZ "\x1a" "\x1A" [{"captures":["\u001a"],"index":0}] \cZ u "\x1a" "\x1A" [{"captures":["\u001a"],"index":0}] +\cZ v )inconvertible( "\x1A" [{"captures":["\u001a"],"index":0}] \c[ )syntax-error( \c[ "Unterminated character class" \c[ u )syntax-error( \c[ "Invalid Unicode escape" !ignore-error-message +\c[ v )syntax-error( \c[ "Invalid Unicode escape" !ignore-error-message \c/ "\\\\c/" \c/ [{"captures":["\\c/"],"index":0}] \c/ u )syntax-error( \c/ "Invalid Unicode escape" +\c/ v )syntax-error( \c/ "Invalid Unicode escape" \c] "\\\\c]" \c] [{"captures":["\\c]"],"index":0}] \c] u )syntax-error( \c] "Invalid Unicode escape" !ignore-error-message +\c] v )syntax-error( \c] "Invalid Unicode escape" !ignore-error-message \c_ "\\\\c_" \c_ [{"captures":["\\c_"],"index":0}] \c_ u )syntax-error( \c_ "Invalid Unicode escape" +\c_ v )syntax-error( \c_ "Invalid Unicode escape" \c^ "\\\\c^" \c^ [] \c^ u )syntax-error( \c^ "Invalid Unicode escape" +\c^ v )syntax-error( \c^ "Invalid Unicode escape" \ca "\x01" "\x01" [{"captures":["\u0001"],"index":0}] \ca u "\x01" "\x01" [{"captures":["\u0001"],"index":0}] +\ca v )inconvertible( "\x01" [{"captures":["\u0001"],"index":0}] \cz "\x1a" "\x1A" [{"captures":["\u001a"],"index":0}] \cz u "\x1a" "\x1A" [{"captures":["\u001a"],"index":0}] +\cz v )inconvertible( "\x1A" [{"captures":["\u001a"],"index":0}] \c{ "\\\\c{" \c{ [{"captures":["\\c{"],"index":0}] \c{ u )syntax-error( \c{ "Invalid Unicode escape" !ignore-error-message +\c{ v )syntax-error( \c{ "Invalid Unicode escape" !ignore-error-message \c| "\\\\c|" \c [{"captures":["\\c"],"index":0},{"captures":[""],"index":2}] \c| u )syntax-error( \c "Invalid Unicode escape" +\c| v )syntax-error( \c "Invalid Unicode escape" \c} "\\\\c}" \c} [{"captures":["\\c}"],"index":0}] \c} u )syntax-error( \c} "Invalid Unicode escape" !ignore-error-message +\c} v )syntax-error( \c} "Invalid Unicode escape" !ignore-error-message \c(x) "\\\\c(x)" \cx [{"captures":["\\cx","x"],"index":0}] \c(x) u )syntax-error( \cx "Invalid Unicode escape" +\c(x) v )syntax-error( \cx "Invalid Unicode escape" \c "\\\\c" \c [{"captures":["\\c"],"index":0}] \c u )syntax-error( \c "Invalid Unicode escape" +\c v )syntax-error( \c "Invalid Unicode escape" \c[x] "\\\\c[x]" \cx [{"captures":["\\cx"],"index":0}] \c[x] u )syntax-error( \cx "Invalid Unicode escape" +\c[x] v )syntax-error( \cx "Invalid Unicode escape" \c{2} "\\\\c{2}" \cc [{"captures":["\\cc"],"index":0}] \c{2} u )syntax-error( \cc "Invalid Unicode escape" +\c{2} v )syntax-error( \cc "Invalid Unicode escape" \cI\cM\cJ\cK\cL\cH "\t\r\n\v\f\b" "\0\t\r\n\v\f\b" [{"captures":["\t\r\n\u000b\f\b"],"index":1}] \cI\cM\cJ\cK\cL\cH u "\t\r\n\v\f\b" "\0\t\r\n\v\f\b" [{"captures":["\t\r\n\u000b\f\b"],"index":1}] +\cI\cM\cJ\cK\cL\cH v )inconvertible( "\0\t\r\n\v\f\b" [{"captures":["\t\r\n\u000b\f\b"],"index":1}] \cI?\cM*\cJ+\cK{1}\cL{0,}\cH{1,2} "\t?\r*\n+\v{1}\f{0,}\b{1,2}" "\0\t\r\n\v\f\b" [{"captures":["\t\r\n\u000b\f\b"],"index":1}] \cI?\cM*\cJ+\cK{1}\cL{0,}\cH{1,2} u "\t?\r*\n+\v{1}\f{0,}\b{1,2}" "\0\t\r\n\v\f\b" [{"captures":["\t\r\n\u000b\f\b"],"index":1}] +\cI?\cM*\cJ+\cK{1}\cL{0,}\cH{1,2} v )inconvertible( "\0\t\r\n\v\f\b" [{"captures":["\t\r\n\u000b\f\b"],"index":1}] [\c] "[\\\\c]" \c [{"captures":["\\"],"index":0},{"captures":["c"],"index":1}] [\c] u )syntax-error( \c "Invalid Unicode escape" +[\c] v )syntax-error( \c "Invalid Unicode escape" [\c\cA] "[\\\\c\x01]" "\\c\x01" [{"captures":["\\"],"index":0},{"captures":["c"],"index":1},{"captures":["\u0001"],"index":2}] [\c\cA] u )syntax-error( "\\c\x01" "Invalid Unicode escape" +[\c\cA] v )syntax-error( "\\c\x01" "Invalid Unicode escape" [\c-d] "[\\\\c-d]" [ac\dc] [{"captures":["c"],"index":2},{"captures":["\\"],"index":3},{"captures":["d"],"index":4},{"captures":["c"],"index":5}] [\c-d] u )syntax-error( [ac\dc] "Invalid Unicode escape" +[\c-d] v )syntax-error( [ac\dc] "Invalid Unicode escape" [\c-b] )syntax-error( [ac\dc] "Range out of order in character class" [\c-b] u )syntax-error( [ac\dc] "Invalid Unicode escape" +[\c-b] v )syntax-error( [ac\dc] "Invalid Unicode escape" [[-\c] "[[-\\\\c]" [ac\dc] [{"captures":["["],"index":0},{"captures":["c"],"index":2},{"captures":["\\"],"index":3},{"captures":["c"],"index":5}] [[-\c] u )syntax-error( [ac\dc] "Invalid Unicode escape" +[[-\c] v )syntax-error( [ac\dc] "Invalid character in character class" !ignore-error-message [b-\c] )syntax-error( [ac\dc] "Range out of order in character class" [b-\c] u )syntax-error( [ac\dc] "Invalid Unicode escape" +[b-\c] v )syntax-error( [ac\dc] "Invalid Unicode escape" [[-\c-d] "[[-\\\\c-d]" [ac\dc] [{"captures":["["],"index":0},{"captures":["c"],"index":2},{"captures":["\\"],"index":3},{"captures":["d"],"index":4},{"captures":["c"],"index":5}] [[-\c-d] u )syntax-error( [ac\dc] "Invalid Unicode escape" +[[-\c-d] v )syntax-error( [ac\dc] "Invalid character in character class" !ignore-error-message [\c$] "[\\\\c$]" \c$ [{"captures":["\\"],"index":0},{"captures":["c"],"index":1},{"captures":["$"],"index":2}] [\c$] u )syntax-error( \c$ "Invalid Unicode escape" +[\c$] v )syntax-error( \c$ "Invalid Unicode escape" [\c(] "[\\\\c(]" \c( [{"captures":["\\"],"index":0},{"captures":["c"],"index":1},{"captures":["("],"index":2}] [\c(] u )syntax-error( \c( "Invalid Unicode escape" +[\c(] v )syntax-error( \c( "Invalid Unicode escape" [\c)] "[\\\\c)]" \c) [{"captures":["\\"],"index":0},{"captures":["c"],"index":1},{"captures":[")"],"index":2}] [\c)] u )syntax-error( \c) "Invalid Unicode escape" +[\c)] v )syntax-error( \c) "Invalid Unicode escape" [\c*] "[\\\\c*]" \c* [{"captures":["\\"],"index":0},{"captures":["c"],"index":1},{"captures":["*"],"index":2}] [\c*] u )syntax-error( \c* "Invalid Unicode escape" +[\c*] v )syntax-error( \c* "Invalid Unicode escape" [\c+] "[\\\\c+]" \c+ [{"captures":["\\"],"index":0},{"captures":["c"],"index":1},{"captures":["+"],"index":2}] [\c+] u )syntax-error( \c+ "Invalid Unicode escape" +[\c+] v )syntax-error( \c+ "Invalid Unicode escape" [\c.] "[\\\\c.]" \c. [{"captures":["\\"],"index":0},{"captures":["c"],"index":1},{"captures":["."],"index":2}] [\c.] u )syntax-error( \c. "Invalid Unicode escape" +[\c.] v )syntax-error( \c. "Invalid Unicode escape" [\c0] "[\x10]" "\\c0\x10" [{"captures":["\u0010"],"index":3}] [\c0] u )syntax-error( "\\c0\x10" "Invalid Unicode escape" +[\c0] v )syntax-error( "\\c0\x10" "Invalid Unicode escape" [\c9] "[\x19]" "\\c9\x19" [{"captures":["\u0019"],"index":3}] [\c9] u )syntax-error( "\\c9\x19" "Invalid Unicode escape" +[\c9] v )syntax-error( "\\c9\x19" "Invalid Unicode escape" [\c<] "[\\\\c<]" \c< [{"captures":["\\"],"index":0},{"captures":["c"],"index":1},{"captures":["<"],"index":2}] [\c<] u )syntax-error( \c< "Invalid Unicode escape" +[\c<] v )syntax-error( \c< "Invalid Unicode escape" [\c>] "[\\\\c>]" \c> [{"captures":["\\"],"index":0},{"captures":["c"],"index":1},{"captures":[">"],"index":2}] [\c>] u )syntax-error( \c> "Invalid Unicode escape" +[\c>] v )syntax-error( \c> "Invalid Unicode escape" [\c?] "[\\\\c?]" \c? [{"captures":["\\"],"index":0},{"captures":["c"],"index":1},{"captures":["?"],"index":2}] [\c?] u )syntax-error( \c? "Invalid Unicode escape" +[\c?] v )syntax-error( \c? "Invalid Unicode escape" [\c@] "[\\\\c@]" \c@ [{"captures":["\\"],"index":0},{"captures":["c"],"index":1},{"captures":["@"],"index":2}] [\c@] u )syntax-error( \c@ "Invalid Unicode escape" +[\c@] v )syntax-error( \c@ "Invalid Unicode escape" [\cA] "[\x01]" "\\cA\x01" [{"captures":["\u0001"],"index":3}] [\cA] u "(?:[\x01])" "\\cA\x01" [{"captures":["\u0001"],"index":3}] +[\cA] v )inconvertible( "\\cA\x01" [{"captures":["\u0001"],"index":3}] [\cZ] "[\x1a]" "\\cZ\x1A" [{"captures":["\u001a"],"index":3}] [\cZ] u "(?:[\x1a])" "\\cZ\x1A" [{"captures":["\u001a"],"index":3}] +[\cZ] v )inconvertible( "\\cZ\x1A" [{"captures":["\u001a"],"index":3}] [\c[] "[\\\\c[]" \c[ [{"captures":["\\"],"index":0},{"captures":["c"],"index":1},{"captures":["["],"index":2}] [\c[] u )syntax-error( \c[ "Invalid Unicode escape" +[\c[] v )syntax-error( \c[ "Invalid Unicode escape" !ignore-error-message [\c_] "[\x1f]" "\\c_\x1F" [{"captures":["\u001f"],"index":3}] [\c_] u )syntax-error( "\\c_\x1F" "Invalid Unicode escape" +[\c_] v )syntax-error( "\\c_\x1F" "Invalid Unicode escape" [\c/] "[\\\\c/]" \c/ [{"captures":["\\"],"index":0},{"captures":["c"],"index":1},{"captures":["/"],"index":2}] [\c/] u )syntax-error( \c/ "Invalid Unicode escape" +[\c/] v )syntax-error( \c/ "Invalid Unicode escape" [\c]] "[\\\\c]]" \c] [{"captures":["c]"],"index":1}] [\c]] u )syntax-error( \c] "Invalid Unicode escape" !ignore-error-message +[\c]] v )syntax-error( \c] "Invalid Unicode escape" !ignore-error-message [\c^] "[\\\\c^]" \c^ [{"captures":["\\"],"index":0},{"captures":["c"],"index":1},{"captures":["^"],"index":2}] [\c^] u )syntax-error( \c^ "Invalid Unicode escape" +[\c^] v )syntax-error( \c^ "Invalid Unicode escape" [\ca] "[\x01]" "\\ca\x01" [{"captures":["\u0001"],"index":3}] [\ca] u "(?:[\x01])" "\\ca\x01" [{"captures":["\u0001"],"index":3}] +[\ca] v )inconvertible( "\\ca\x01" [{"captures":["\u0001"],"index":3}] [\cz] "[\x1a]" "\\cz\x1A" [{"captures":["\u001a"],"index":3}] [\cz] u "(?:[\x1a])" "\\cz\x1A" [{"captures":["\u001a"],"index":3}] +[\cz] v )inconvertible( "\\cz\x1A" [{"captures":["\u001a"],"index":3}] [\c{] "[\\\\c{]" \c{ [{"captures":["\\"],"index":0},{"captures":["c"],"index":1},{"captures":["{"],"index":2}] [\c{] u )syntax-error( \c{ "Invalid Unicode escape" +[\c{] v )syntax-error( \c{ "Invalid Unicode escape" [\c|] "[\\\\c|]" \c| [{"captures":["\\"],"index":0},{"captures":["c"],"index":1},{"captures":["|"],"index":2}] [\c|] u )syntax-error( \c| "Invalid Unicode escape" +[\c|] v )syntax-error( \c| "Invalid Unicode escape" [\c}] "[\\\\c}]" \c} [{"captures":["\\"],"index":0},{"captures":["c"],"index":1},{"captures":["}"],"index":2}] [\c}] u )syntax-error( \c} "Invalid Unicode escape" +[\c}] v )syntax-error( \c} "Invalid Unicode escape" [\cI\cM\cJ\cK\cL\cH] "[\t\r\n\v\f\b]" "\0\t\r\n\v\f\b" [{"captures":["\t"],"index":1},{"captures":["\r"],"index":2},{"captures":["\n"],"index":3},{"captures":["\u000b"],"index":4},{"captures":["\f"],"index":5},{"captures":["\b"],"index":6}] [\cI\cM\cJ\cK\cL\cH] u "(?:[\b-\r])" "\0\t\r\n\v\f\b" [{"captures":["\t"],"index":1},{"captures":["\r"],"index":2},{"captures":["\n"],"index":3},{"captures":["\u000b"],"index":4},{"captures":["\f"],"index":5},{"captures":["\b"],"index":6}] +[\cI\cM\cJ\cK\cL\cH] v )inconvertible( "\0\t\r\n\v\f\b" [{"captures":["\t"],"index":1},{"captures":["\r"],"index":2},{"captures":["\n"],"index":3},{"captures":["\u000b"],"index":4},{"captures":["\f"],"index":5},{"captures":["\b"],"index":6}] [^\cI\cM\cJ\cK\cL\cH] "[^\t\r\n\v\f\b]" "\0\t\r\n\v\f\b" [{"captures":["\u0000"],"index":0}] [^\cI\cM\cJ\cK\cL\cH] u "(?:[\ud800-\udbff][\udc00-\udfff]|[\ud800-\udbff](?![\udc00-\udfff])|(?x)\1\x02 "\x00((?x))\\1\x02" "\0xx\x02" [{"captures":["\u0000xx\u0002","x"],"index":0,"groups":{"X":"x"}}] \0(?x)\1\x02 u "\x00((?x))\\1\x02" "\0xx\x02" [{"captures":["\u0000xx\u0002","x"],"index":0,"groups":{"X":"x"}}] +\0(?x)\1\x02 v )inconvertible( "\0xx\x02" [{"captures":["\u0000xx\u0002","x"],"index":0,"groups":{"X":"x"}}] \0(?:x)\1\x02 "\x00(?:x)\x01\x02" "\0x\x01\x02" [{"captures":["\u0000x\u0001\u0002"],"index":0}] \0(?:x)\1\x02 u )syntax-error( "\0x\x01\x02" "Invalid escape" +\0(?:x)\1\x02 v )syntax-error( "\0x\x01\x02" "Invalid escape" (?=x)\1?\x02 "(?=x)\x01?\x02" "\0x\x01\x02" [] (?=x)\1?\x02 u )syntax-error( "\0x\x01\x02" "Invalid escape" +(?=x)\1?\x02 v )syntax-error( "\0x\x01\x02" "Invalid escape" (?!x)\1?\x02 "(?!x)\x01?\x02" "\0x\x01\x02" [{"captures":["\u0001\u0002"],"index":2}] (?!x)\1?\x02 u )syntax-error( "\0x\x01\x02" "Invalid escape" +(?!x)\1?\x02 v )syntax-error( "\0x\x01\x02" "Invalid escape" (?<=x)\1\x02 "(?<=x)\x01\x02" "\0x\x01\x02" [{"captures":["\u0001\u0002"],"index":2}] (?<=x)\1\x02 u )syntax-error( "\0x\x01\x02" "Invalid escape" +(?<=x)\1\x02 v )syntax-error( "\0x\x01\x02" "Invalid escape" (? x0> x0> [{"captures":["x0>"],"index":0}] \x0> u )syntax-error( x0> "Invalid escape" +\x0> v )syntax-error( x0> "Invalid escape" \x0? x0? x0 [{"captures":["x0"],"index":0}] \x0? u )syntax-error( x0 "Invalid escape" +\x0? v )syntax-error( x0 "Invalid escape" \x0A "\n" "\x0A" [{"captures":["\n"],"index":0}] \x0A u "\n" "\x0A" [{"captures":["\n"],"index":0}] +\x0A v )inconvertible( "\x0A" [{"captures":["\n"],"index":0}] \x0F "\x0f" "\x0F" [{"captures":["\u000f"],"index":0}] \x0F u "\x0f" "\x0F" [{"captures":["\u000f"],"index":0}] +\x0F v )inconvertible( "\x0F" [{"captures":["\u000f"],"index":0}] \x0G x0G x0G [{"captures":["x0G"],"index":0}] \x0G u )syntax-error( x0G "Invalid escape" +\x0G v )syntax-error( x0G "Invalid escape" \x0[ )syntax-error( x0[ "Unterminated character class" \x0[ u )syntax-error( x0[ "Invalid escape" !ignore-error-message +\x0[ v )syntax-error( x0[ "Invalid escape" !ignore-error-message \x0] x0] x0] [{"captures":["x0]"],"index":0}] \x0] u )syntax-error( x0] "Invalid escape" !ignore-error-message +\x0] v )syntax-error( x0] "Invalid escape" !ignore-error-message \x0^ x0^ x0 [] \x0^ u )syntax-error( x0 "Invalid escape" +\x0^ v )syntax-error( x0 "Invalid escape" \x0a "\n" "\x0a" [{"captures":["\n"],"index":0}] \x0a u "\n" "\x0a" [{"captures":["\n"],"index":0}] +\x0a v )inconvertible( "\x0a" [{"captures":["\n"],"index":0}] \x0f "\x0f" "\x0f" [{"captures":["\u000f"],"index":0}] \x0f u "\x0f" "\x0f" [{"captures":["\u000f"],"index":0}] +\x0f v )inconvertible( "\x0f" [{"captures":["\u000f"],"index":0}] \x0g x0g x0g [{"captures":["x0g"],"index":0}] \x0g u )syntax-error( x0g "Invalid escape" +\x0g v )syntax-error( x0g "Invalid escape" \x0{ x0{ x0{ [{"captures":["x0{"],"index":0}] \x0{ u )syntax-error( x0{ "Invalid escape" !ignore-error-message +\x0{ v )syntax-error( x0{ "Invalid escape" !ignore-error-message \x0| x0| x0 [{"captures":["x0"],"index":0},{"captures":[""],"index":2}] \x0| u )syntax-error( x0 "Invalid escape" +\x0| v )syntax-error( x0 "Invalid escape" \x0} x0} x0} [{"captures":["x0}"],"index":0}] \x0} u )syntax-error( x0} "Invalid escape" !ignore-error-message +\x0} v )syntax-error( x0} "Invalid escape" !ignore-error-message \xff ÿ "\xff" [{"captures":["ÿ"],"index":0}] \xff u ÿ "\xff" [{"captures":["ÿ"],"index":0}] +\xff v )inconvertible( "\xff" [{"captures":["ÿ"],"index":0}] \xgf xgf xgf [{"captures":["xgf"],"index":0}] \xgf u )syntax-error( xgf "Invalid escape" +\xgf v )syntax-error( xgf "Invalid escape" \x3f0 "\\x3F0" ?0 [{"captures":["?0"],"index":0}] \x3f0 u "\\x3F0" ?0 [{"captures":["?0"],"index":0}] +\x3f0 v )inconvertible( ?0 [{"captures":["?0"],"index":0}] \x00\x09\x0d\x0a\x0b\x0C\x08 "\x00\t\r\n\v\f\b" "\0\t\r\n\v\f\b" [{"captures":["\u0000\t\r\n\u000b\f\b"],"index":0}] \x00\x09\x0d\x0a\x0b\x0C\x08 u "\x00\t\r\n\v\f\b" "\0\t\r\n\v\f\b" [{"captures":["\u0000\t\r\n\u000b\f\b"],"index":0}] +\x00\x09\x0d\x0a\x0b\x0C\x08 v )inconvertible( "\0\t\r\n\v\f\b" [{"captures":["\u0000\t\r\n\u000b\f\b"],"index":0}] \x00\x09?\x0d*\x0a+\x0b{1}\x0C{0,}\x08{1,2} "\x00\t?\r*\n+\v{1}\f{0,}\b{1,2}" "\0\t\r\n\v\f\b" [{"captures":["\u0000\t\r\n\u000b\f\b"],"index":0}] \x00\x09?\x0d*\x0a+\x0b{1}\x0C{0,}\x08{1,2} u "\x00\t?\r*\n+\v{1}\f{0,}\b{1,2}" "\0\t\r\n\v\f\b" [{"captures":["\u0000\t\r\n\u000b\f\b"],"index":0}] +\x00\x09?\x0d*\x0a+\x0b{1}\x0C{0,}\x08{1,2} v )inconvertible( "\0\t\r\n\v\f\b" [{"captures":["\u0000\t\r\n\u000b\f\b"],"index":0}] [\x] [x] \x [{"captures":["x"],"index":1}] [\x] u )syntax-error( \x "Invalid escape" +[\x] v )syntax-error( \x "Invalid escape" [\x*] [x*] \x* [{"captures":["x"],"index":1},{"captures":["*"],"index":2}] [\x*] u )syntax-error( \x* "Invalid escape" +[\x*] v )syntax-error( \x* "Invalid escape" [\x0] [x0] \x0 [{"captures":["x"],"index":1},{"captures":["0"],"index":2}] [\x0] u )syntax-error( \x0 "Invalid escape" +[\x0] v )syntax-error( \x0 "Invalid escape" [\xA] [xA] \xA [{"captures":["x"],"index":1},{"captures":["A"],"index":2}] [\xA] u )syntax-error( \xA "Invalid escape" +[\xA] v )syntax-error( \xA "Invalid escape" [\xf] [xf] \xf [{"captures":["x"],"index":1},{"captures":["f"],"index":2}] [\xf] u )syntax-error( \xf "Invalid escape" +[\xf] v )syntax-error( \xf "Invalid escape" [\x0$] [x0$] \x0$ [{"captures":["x"],"index":1},{"captures":["0"],"index":2},{"captures":["$"],"index":3}] [\x0$] u )syntax-error( \x0$ "Invalid escape" +[\x0$] v )syntax-error( \x0$ "Invalid escape" [\x0(] [x0(] \x0( [{"captures":["x"],"index":1},{"captures":["0"],"index":2},{"captures":["("],"index":3}] [\x0(] u )syntax-error( \x0( "Invalid escape" +[\x0(] v )syntax-error( \x0( "Invalid escape" [\x0)] [x0)] \x0) [{"captures":["x"],"index":1},{"captures":["0"],"index":2},{"captures":[")"],"index":3}] [\x0)] u )syntax-error( \x0) "Invalid escape" +[\x0)] v )syntax-error( \x0) "Invalid escape" [\x0*] [x0*] \x0* [{"captures":["x"],"index":1},{"captures":["0"],"index":2},{"captures":["*"],"index":3}] [\x0*] u )syntax-error( \x0* "Invalid escape" +[\x0*] v )syntax-error( \x0* "Invalid escape" [\x0+] [x0+] \x0+ [{"captures":["x"],"index":1},{"captures":["0"],"index":2},{"captures":["+"],"index":3}] [\x0+] u )syntax-error( \x0+ "Invalid escape" +[\x0+] v )syntax-error( \x0+ "Invalid escape" [\x0.] [x0.] \x0. [{"captures":["x"],"index":1},{"captures":["0"],"index":2},{"captures":["."],"index":3}] [\x0.] u )syntax-error( \x0. "Invalid escape" +[\x0.] v )syntax-error( \x0. "Invalid escape" [\x00] "[\x00]" "\\x00\x00" [{"captures":["\u0000"],"index":4}] [\x00] u "(?:[\x00])" "\\x00\x00" [{"captures":["\u0000"],"index":4}] +[\x00] v )inconvertible( "\\x00\x00" [{"captures":["\u0000"],"index":4}] [\x09] "[\t]" "\\x09\x09" [{"captures":["\t"],"index":4}] [\x09] u "(?:[\t])" "\\x09\x09" [{"captures":["\t"],"index":4}] +[\x09] v )inconvertible( "\\x09\x09" [{"captures":["\t"],"index":4}] [\x0<] [x0<] \x0< [{"captures":["x"],"index":1},{"captures":["0"],"index":2},{"captures":["<"],"index":3}] [\x0<] u )syntax-error( \x0< "Invalid escape" +[\x0<] v )syntax-error( \x0< "Invalid escape" [\x0>] [x0>] \x0> [{"captures":["x"],"index":1},{"captures":["0"],"index":2},{"captures":[">"],"index":3}] [\x0>] u )syntax-error( \x0> "Invalid escape" +[\x0>] v )syntax-error( \x0> "Invalid escape" [\x0?] [x0?] \x0? [{"captures":["x"],"index":1},{"captures":["0"],"index":2},{"captures":["?"],"index":3}] [\x0?] u )syntax-error( \x0? "Invalid escape" +[\x0?] v )syntax-error( \x0? "Invalid escape" [\x0A] "[\n]" "\\x0A\x0A" [{"captures":["\n"],"index":4}] [\x0A] u "(?:[\n])" "\\x0A\x0A" [{"captures":["\n"],"index":4}] +[\x0A] v )inconvertible( "\\x0A\x0A" [{"captures":["\n"],"index":4}] [\x0F] "[\x0f]" "\\x0F\x0F" [{"captures":["\u000f"],"index":4}] [\x0F] u "(?:[\x0f])" "\\x0F\x0F" [{"captures":["\u000f"],"index":4}] +[\x0F] v )inconvertible( "\\x0F\x0F" [{"captures":["\u000f"],"index":4}] [\x0G] [x0G] \x0G [{"captures":["x"],"index":1},{"captures":["0"],"index":2},{"captures":["G"],"index":3}] [\x0G] u )syntax-error( \x0G "Invalid escape" +[\x0G] v )syntax-error( \x0G "Invalid escape" [\x0[] [x0[] \x0[ [{"captures":["x"],"index":1},{"captures":["0"],"index":2},{"captures":["["],"index":3}] [\x0[] u )syntax-error( \x0[ "Invalid escape" +[\x0[] v )syntax-error( \x0[ "Invalid escape" !ignore-error-message [\x0]] [x0]] \x0] [{"captures":["0]"],"index":2}] [\x0]] u )syntax-error( \x0] "Invalid escape" !ignore-error-message +[\x0]] v )syntax-error( \x0] "Invalid escape" !ignore-error-message [\x0^] [x0^] \x0^ [{"captures":["x"],"index":1},{"captures":["0"],"index":2},{"captures":["^"],"index":3}] [\x0^] u )syntax-error( \x0^ "Invalid escape" +[\x0^] v )syntax-error( \x0^ "Invalid escape" [\x0a] "[\n]" "\\x0a\x0a" [{"captures":["\n"],"index":4}] [\x0a] u "(?:[\n])" "\\x0a\x0a" [{"captures":["\n"],"index":4}] +[\x0a] v )inconvertible( "\\x0a\x0a" [{"captures":["\n"],"index":4}] [\x0f] "[\x0f]" "\\x0f\x0f" [{"captures":["\u000f"],"index":4}] [\x0f] u "(?:[\x0f])" "\\x0f\x0f" [{"captures":["\u000f"],"index":4}] +[\x0f] v )inconvertible( "\\x0f\x0f" [{"captures":["\u000f"],"index":4}] [\x0g] [x0g] \x0g [{"captures":["x"],"index":1},{"captures":["0"],"index":2},{"captures":["g"],"index":3}] [\x0g] u )syntax-error( \x0g "Invalid escape" +[\x0g] v )syntax-error( \x0g "Invalid escape" [\x0{] [x0{] \x0{ [{"captures":["x"],"index":1},{"captures":["0"],"index":2},{"captures":["{"],"index":3}] [\x0{] u )syntax-error( \x0{ "Invalid escape" +[\x0{] v )syntax-error( \x0{ "Invalid escape" [\x0|] [x0|] \x0| [{"captures":["x"],"index":1},{"captures":["0"],"index":2},{"captures":["|"],"index":3}] [\x0|] u )syntax-error( \x0| "Invalid escape" +[\x0|] v )syntax-error( \x0| "Invalid escape" [\x0}] [x0}] \x0} [{"captures":["x"],"index":1},{"captures":["0"],"index":2},{"captures":["}"],"index":3}] [\x0}] u )syntax-error( \x0} "Invalid escape" +[\x0}] v )syntax-error( \x0} "Invalid escape" [\xff] [ÿ] "\\xff\xff" [{"captures":["ÿ"],"index":4}] [\xff] u (?:[ÿ]) "\\xff\xff" [{"captures":["ÿ"],"index":4}] +[\xff] v )inconvertible( "\\xff\xff" [{"captures":["ÿ"],"index":4}] [\xgf] [xgf] \xgf [{"captures":["x"],"index":1},{"captures":["g"],"index":2},{"captures":["f"],"index":3}] [\xgf] u )syntax-error( \xgf "Invalid escape" +[\xgf] v )syntax-error( \xgf "Invalid escape" [\x3f0] "[\\x3F0]" ?0 [{"captures":["?"],"index":0},{"captures":["0"],"index":1}] [\x3f0] u "(?:[\\x30\\x3F])" ?0 [{"captures":["?"],"index":0},{"captures":["0"],"index":1}] +[\x3f0] v )inconvertible( ?0 [{"captures":["?"],"index":0},{"captures":["0"],"index":1}] [\x00\x09\x0d\x0a\x0b\x0C\x08] "[\x00\t\r\n\v\f\b]" "\0\t\r\n\v\f\b" [{"captures":["\u0000"],"index":0},{"captures":["\t"],"index":1},{"captures":["\r"],"index":2},{"captures":["\n"],"index":3},{"captures":["\u000b"],"index":4},{"captures":["\f"],"index":5},{"captures":["\b"],"index":6}] [\x00\x09\x0d\x0a\x0b\x0C\x08] u "(?:[\x00\b-\r])" "\0\t\r\n\v\f\b" [{"captures":["\u0000"],"index":0},{"captures":["\t"],"index":1},{"captures":["\r"],"index":2},{"captures":["\n"],"index":3},{"captures":["\u000b"],"index":4},{"captures":["\f"],"index":5},{"captures":["\b"],"index":6}] +[\x00\x09\x0d\x0a\x0b\x0C\x08] v )inconvertible( "\0\t\r\n\v\f\b" [{"captures":["\u0000"],"index":0},{"captures":["\t"],"index":1},{"captures":["\r"],"index":2},{"captures":["\n"],"index":3},{"captures":["\u000b"],"index":4},{"captures":["\f"],"index":5},{"captures":["\b"],"index":6}] [^\x00\x09\x0d\x0a\x0b\x0C\x08] "[^\x00\t\r\n\v\f\b]" "\0\t\r\n\v\f\b" [] [^\x00\x09\x0d\x0a\x0b\x0C\x08] u "(?:[\ud800-\udbff][\udc00-\udfff]|[\ud800-\udbff](?![\udc00-\udfff])|(? u000> u000> [{"captures":["u000>"],"index":0}] \u000> u )syntax-error( u000> "Invalid Unicode escape" +\u000> v )syntax-error( u000> "Invalid Unicode escape" \u000? u000? u000 [{"captures":["u000"],"index":0}] \u000? u )syntax-error( u000 "Invalid Unicode escape" +\u000? v )syntax-error( u000 "Invalid Unicode escape" \u000A "\n" "\u000A" [{"captures":["\n"],"index":0}] \u000A u "\n" "\u000A" [{"captures":["\n"],"index":0}] +\u000A v )inconvertible( "\u000A" [{"captures":["\n"],"index":0}] \u000F "\x0f" "\u000F" [{"captures":["\u000f"],"index":0}] \u000F u "\x0f" "\u000F" [{"captures":["\u000f"],"index":0}] +\u000F v )inconvertible( "\u000F" [{"captures":["\u000f"],"index":0}] \u000G u000G u000G [{"captures":["u000G"],"index":0}] \u000G u )syntax-error( u000G "Invalid Unicode escape" +\u000G v )syntax-error( u000G "Invalid Unicode escape" \u000[ )syntax-error( u000[ "Unterminated character class" \u000[ u )syntax-error( u000[ "Invalid Unicode escape" !ignore-error-message +\u000[ v )syntax-error( u000[ "Invalid Unicode escape" !ignore-error-message \u000] u000] u000] [{"captures":["u000]"],"index":0}] \u000] u )syntax-error( u000] "Invalid Unicode escape" !ignore-error-message +\u000] v )syntax-error( u000] "Invalid Unicode escape" !ignore-error-message \u000^ u000^ u000 [] \u000^ u )syntax-error( u000 "Invalid Unicode escape" +\u000^ v )syntax-error( u000 "Invalid Unicode escape" \u000a "\n" "\u000a" [{"captures":["\n"],"index":0}] \u000a u "\n" "\u000a" [{"captures":["\n"],"index":0}] +\u000a v )inconvertible( "\u000a" [{"captures":["\n"],"index":0}] \u000f "\x0f" "\u000f" [{"captures":["\u000f"],"index":0}] \u000f u "\x0f" "\u000f" [{"captures":["\u000f"],"index":0}] +\u000f v )inconvertible( "\u000f" [{"captures":["\u000f"],"index":0}] \u000g u000g u000g [{"captures":["u000g"],"index":0}] \u000g u )syntax-error( u000g "Invalid Unicode escape" +\u000g v )syntax-error( u000g "Invalid Unicode escape" \u000{ u000{ u000{ [{"captures":["u000{"],"index":0}] \u000{ u )syntax-error( u000{ "Invalid Unicode escape" !ignore-error-message +\u000{ v )syntax-error( u000{ "Invalid Unicode escape" !ignore-error-message \u000| u000| u000 [{"captures":["u000"],"index":0},{"captures":[""],"index":4}] \u000| u )syntax-error( u000 "Invalid Unicode escape" +\u000| v )syntax-error( u000 "Invalid Unicode escape" \u000} u000} u000} [{"captures":["u000}"],"index":0}] \u000} u )syntax-error( u000} "Invalid Unicode escape" !ignore-error-message +\u000} v )syntax-error( u000} "Invalid Unicode escape" !ignore-error-message \uffff ￿ "\uffff" [{"captures":["￿"],"index":0}] \uffff u ￿ "\uffff" [{"captures":["￿"],"index":0}] +\uffff v )inconvertible( "\uffff" [{"captures":["￿"],"index":0}] \uffgf uffgf uffgf [{"captures":["uffgf"],"index":0}] \uffgf u )syntax-error( uffgf "Invalid Unicode escape" +\uffgf v )syntax-error( uffgf "Invalid Unicode escape" \u003f0 "\\x3F0" ?0 [{"captures":["?0"],"index":0}] \u003f0 u "\\x3F0" ?0 [{"captures":["?0"],"index":0}] +\u003f0 v )inconvertible( ?0 [{"captures":["?0"],"index":0}] \u0000\u0009\u000d\u000a\u000b\u000C\u0008 "\x00\t\r\n\v\f\b" "\0\t\r\n\v\f\b" [{"captures":["\u0000\t\r\n\u000b\f\b"],"index":0}] \u0000\u0009\u000d\u000a\u000b\u000C\u0008 u "\x00\t\r\n\v\f\b" "\0\t\r\n\v\f\b" [{"captures":["\u0000\t\r\n\u000b\f\b"],"index":0}] +\u0000\u0009\u000d\u000a\u000b\u000C\u0008 v )inconvertible( "\0\t\r\n\v\f\b" [{"captures":["\u0000\t\r\n\u000b\f\b"],"index":0}] \u0000\u0009?\u000d*\u000a+\u000b{1}\u000C{0,}\u0008{1,2} "\x00\t?\r*\n+\v{1}\f{0,}\b{1,2}" "\0\t\r\n\v\f\b" [{"captures":["\u0000\t\r\n\u000b\f\b"],"index":0}] \u0000\u0009?\u000d*\u000a+\u000b{1}\u000C{0,}\u0008{1,2} u "\x00\t?\r*\n+\v{1}\f{0,}\b{1,2}" "\0\t\r\n\v\f\b" [{"captures":["\u0000\t\r\n\u000b\f\b"],"index":0}] +\u0000\u0009?\u000d*\u000a+\u000b{1}\u000C{0,}\u0008{1,2} v )inconvertible( "\0\t\r\n\v\f\b" [{"captures":["\u0000\t\r\n\u000b\f\b"],"index":0}] [\u] [u] \u [{"captures":["u"],"index":1}] [\u] u )syntax-error( \u "Invalid Unicode escape" +[\u] v )syntax-error( \u "Invalid Unicode escape" [\u*] [u*] \u* [{"captures":["u"],"index":1},{"captures":["*"],"index":2}] [\u*] u )syntax-error( \u* "Invalid Unicode escape" +[\u*] v )syntax-error( \u* "Invalid Unicode escape" [\u0] [u0] \u0 [{"captures":["u"],"index":1},{"captures":["0"],"index":2}] [\u0] u )syntax-error( \u0 "Invalid Unicode escape" +[\u0] v )syntax-error( \u0 "Invalid Unicode escape" [\uA] [uA] \uA [{"captures":["u"],"index":1},{"captures":["A"],"index":2}] [\uA] u )syntax-error( \uA "Invalid Unicode escape" +[\uA] v )syntax-error( \uA "Invalid Unicode escape" [\uf] [uf] \uf [{"captures":["u"],"index":1},{"captures":["f"],"index":2}] [\uf] u )syntax-error( \uf "Invalid Unicode escape" +[\uf] v )syntax-error( \uf "Invalid Unicode escape" [\u00] [u00] \u00 [{"captures":["u"],"index":1},{"captures":["0"],"index":2},{"captures":["0"],"index":3}] [\u00] u )syntax-error( \u00 "Invalid Unicode escape" +[\u00] v )syntax-error( \u00 "Invalid Unicode escape" [\u0A] [u0A] \u0A [{"captures":["u"],"index":1},{"captures":["0"],"index":2},{"captures":["A"],"index":3}] [\u0A] u )syntax-error( \u0A "Invalid Unicode escape" +[\u0A] v )syntax-error( \u0A "Invalid Unicode escape" [\u0f] [u0f] \u0f [{"captures":["u"],"index":1},{"captures":["0"],"index":2},{"captures":["f"],"index":3}] [\u0f] u )syntax-error( \u0f "Invalid Unicode escape" +[\u0f] v )syntax-error( \u0f "Invalid Unicode escape" [\u000] [u000] \u000 [{"captures":["u"],"index":1},{"captures":["0"],"index":2},{"captures":["0"],"index":3},{"captures":["0"],"index":4}] [\u000] u )syntax-error( \u000 "Invalid Unicode escape" +[\u000] v )syntax-error( \u000 "Invalid Unicode escape" [\u00A] [u00A] \u00A [{"captures":["u"],"index":1},{"captures":["0"],"index":2},{"captures":["0"],"index":3},{"captures":["A"],"index":4}] [\u00A] u )syntax-error( \u00A "Invalid Unicode escape" +[\u00A] v )syntax-error( \u00A "Invalid Unicode escape" [\u00f] [u00f] \u00f [{"captures":["u"],"index":1},{"captures":["0"],"index":2},{"captures":["0"],"index":3},{"captures":["f"],"index":4}] [\u00f] u )syntax-error( \u00f "Invalid Unicode escape" +[\u00f] v )syntax-error( \u00f "Invalid Unicode escape" [\u000$] [u000$] \u000$ [{"captures":["u"],"index":1},{"captures":["0"],"index":2},{"captures":["0"],"index":3},{"captures":["0"],"index":4},{"captures":["$"],"index":5}] [\u000$] u )syntax-error( \u000$ "Invalid Unicode escape" +[\u000$] v )syntax-error( \u000$ "Invalid Unicode escape" [\u000(] [u000(] \u000( [{"captures":["u"],"index":1},{"captures":["0"],"index":2},{"captures":["0"],"index":3},{"captures":["0"],"index":4},{"captures":["("],"index":5}] [\u000(] u )syntax-error( \u000( "Invalid Unicode escape" +[\u000(] v )syntax-error( \u000( "Invalid Unicode escape" [\u000)] [u000)] \u000) [{"captures":["u"],"index":1},{"captures":["0"],"index":2},{"captures":["0"],"index":3},{"captures":["0"],"index":4},{"captures":[")"],"index":5}] [\u000)] u )syntax-error( \u000) "Invalid Unicode escape" +[\u000)] v )syntax-error( \u000) "Invalid Unicode escape" [\u000*] [u000*] \u000* [{"captures":["u"],"index":1},{"captures":["0"],"index":2},{"captures":["0"],"index":3},{"captures":["0"],"index":4},{"captures":["*"],"index":5}] [\u000*] u )syntax-error( \u000* "Invalid Unicode escape" +[\u000*] v )syntax-error( \u000* "Invalid Unicode escape" [\u000+] [u000+] \u000+ [{"captures":["u"],"index":1},{"captures":["0"],"index":2},{"captures":["0"],"index":3},{"captures":["0"],"index":4},{"captures":["+"],"index":5}] [\u000+] u )syntax-error( \u000+ "Invalid Unicode escape" +[\u000+] v )syntax-error( \u000+ "Invalid Unicode escape" [\u000.] [u000.] \u000. [{"captures":["u"],"index":1},{"captures":["0"],"index":2},{"captures":["0"],"index":3},{"captures":["0"],"index":4},{"captures":["."],"index":5}] [\u000.] u )syntax-error( \u000. "Invalid Unicode escape" +[\u000.] v )syntax-error( \u000. "Invalid Unicode escape" [\u0000] "[\x00]" "\\u0000\u0000" [{"captures":["\u0000"],"index":6}] [\u0000] u "(?:[\x00])" "\\u0000\u0000" [{"captures":["\u0000"],"index":6}] +[\u0000] v )inconvertible( "\\u0000\u0000" [{"captures":["\u0000"],"index":6}] [\u0009] "[\t]" "\\u0009\u0009" [{"captures":["\t"],"index":6}] [\u0009] u "(?:[\t])" "\\u0009\u0009" [{"captures":["\t"],"index":6}] +[\u0009] v )inconvertible( "\\u0009\u0009" [{"captures":["\t"],"index":6}] [\u000<] [u000<] \u000< [{"captures":["u"],"index":1},{"captures":["0"],"index":2},{"captures":["0"],"index":3},{"captures":["0"],"index":4},{"captures":["<"],"index":5}] [\u000<] u )syntax-error( \u000< "Invalid Unicode escape" +[\u000<] v )syntax-error( \u000< "Invalid Unicode escape" [\u000>] [u000>] \u000> [{"captures":["u"],"index":1},{"captures":["0"],"index":2},{"captures":["0"],"index":3},{"captures":["0"],"index":4},{"captures":[">"],"index":5}] [\u000>] u )syntax-error( \u000> "Invalid Unicode escape" +[\u000>] v )syntax-error( \u000> "Invalid Unicode escape" [\u000?] [u000?] \u000? [{"captures":["u"],"index":1},{"captures":["0"],"index":2},{"captures":["0"],"index":3},{"captures":["0"],"index":4},{"captures":["?"],"index":5}] [\u000?] u )syntax-error( \u000? "Invalid Unicode escape" +[\u000?] v )syntax-error( \u000? "Invalid Unicode escape" [\u000A] "[\n]" "\\u000A\u000A" [{"captures":["\n"],"index":6}] [\u000A] u "(?:[\n])" "\\u000A\u000A" [{"captures":["\n"],"index":6}] +[\u000A] v )inconvertible( "\\u000A\u000A" [{"captures":["\n"],"index":6}] [\u000F] "[\x0f]" "\\u000F\u000F" [{"captures":["\u000f"],"index":6}] [\u000F] u "(?:[\x0f])" "\\u000F\u000F" [{"captures":["\u000f"],"index":6}] +[\u000F] v )inconvertible( "\\u000F\u000F" [{"captures":["\u000f"],"index":6}] [\u000G] [u000G] \u000G [{"captures":["u"],"index":1},{"captures":["0"],"index":2},{"captures":["0"],"index":3},{"captures":["0"],"index":4},{"captures":["G"],"index":5}] [\u000G] u )syntax-error( \u000G "Invalid Unicode escape" +[\u000G] v )syntax-error( \u000G "Invalid Unicode escape" [\u000[] [u000[] \u000[ [{"captures":["u"],"index":1},{"captures":["0"],"index":2},{"captures":["0"],"index":3},{"captures":["0"],"index":4},{"captures":["["],"index":5}] [\u000[] u )syntax-error( \u000[ "Invalid Unicode escape" +[\u000[] v )syntax-error( \u000[ "Invalid Unicode escape" !ignore-error-message [\u000]] [u000]] \u000] [{"captures":["0]"],"index":4}] [\u000]] u )syntax-error( \u000] "Invalid Unicode escape" !ignore-error-message +[\u000]] v )syntax-error( \u000] "Invalid Unicode escape" !ignore-error-message [\u000^] [u000^] \u000^ [{"captures":["u"],"index":1},{"captures":["0"],"index":2},{"captures":["0"],"index":3},{"captures":["0"],"index":4},{"captures":["^"],"index":5}] [\u000^] u )syntax-error( \u000^ "Invalid Unicode escape" +[\u000^] v )syntax-error( \u000^ "Invalid Unicode escape" [\u000a] "[\n]" "\\u000a\u000a" [{"captures":["\n"],"index":6}] [\u000a] u "(?:[\n])" "\\u000a\u000a" [{"captures":["\n"],"index":6}] +[\u000a] v )inconvertible( "\\u000a\u000a" [{"captures":["\n"],"index":6}] [\u000f] "[\x0f]" "\\u000f\u000f" [{"captures":["\u000f"],"index":6}] [\u000f] u "(?:[\x0f])" "\\u000f\u000f" [{"captures":["\u000f"],"index":6}] +[\u000f] v )inconvertible( "\\u000f\u000f" [{"captures":["\u000f"],"index":6}] [\u000g] [u000g] \u000g [{"captures":["u"],"index":1},{"captures":["0"],"index":2},{"captures":["0"],"index":3},{"captures":["0"],"index":4},{"captures":["g"],"index":5}] [\u000g] u )syntax-error( \u000g "Invalid Unicode escape" +[\u000g] v )syntax-error( \u000g "Invalid Unicode escape" [\u000{] [u000{] \u000{ [{"captures":["u"],"index":1},{"captures":["0"],"index":2},{"captures":["0"],"index":3},{"captures":["0"],"index":4},{"captures":["{"],"index":5}] [\u000{] u )syntax-error( \u000{ "Invalid Unicode escape" +[\u000{] v )syntax-error( \u000{ "Invalid Unicode escape" [\u000|] [u000|] \u000| [{"captures":["u"],"index":1},{"captures":["0"],"index":2},{"captures":["0"],"index":3},{"captures":["0"],"index":4},{"captures":["|"],"index":5}] [\u000|] u )syntax-error( \u000| "Invalid Unicode escape" +[\u000|] v )syntax-error( \u000| "Invalid Unicode escape" [\u000}] [u000}] \u000} [{"captures":["u"],"index":1},{"captures":["0"],"index":2},{"captures":["0"],"index":3},{"captures":["0"],"index":4},{"captures":["}"],"index":5}] [\u000}] u )syntax-error( \u000} "Invalid Unicode escape" +[\u000}] v )syntax-error( \u000} "Invalid Unicode escape" [\uffff] [￿] "\\uffff\uffff" [{"captures":["￿"],"index":6}] [\uffff] u (?:[￿]) "\\uffff\uffff" [{"captures":["￿"],"index":6}] +[\uffff] v )inconvertible( "\\uffff\uffff" [{"captures":["￿"],"index":6}] [\uffgf] [uffgf] \uffgf [{"captures":["u"],"index":1},{"captures":["f"],"index":2},{"captures":["f"],"index":3},{"captures":["g"],"index":4},{"captures":["f"],"index":5}] [\uffgf] u )syntax-error( \uffgf "Invalid Unicode escape" +[\uffgf] v )syntax-error( \uffgf "Invalid Unicode escape" [\u003f0] "[\\x3F0]" ?0 [{"captures":["?"],"index":0},{"captures":["0"],"index":1}] [\u003f0] u "(?:[\\x30\\x3F])" ?0 [{"captures":["?"],"index":0},{"captures":["0"],"index":1}] +[\u003f0] v )inconvertible( ?0 [{"captures":["?"],"index":0},{"captures":["0"],"index":1}] [\u0000\u0009\u000d\u000a\u000b\u000C\u0008] "[\x00\t\r\n\v\f\b]" "\0\t\r\n\v\f\b" [{"captures":["\u0000"],"index":0},{"captures":["\t"],"index":1},{"captures":["\r"],"index":2},{"captures":["\n"],"index":3},{"captures":["\u000b"],"index":4},{"captures":["\f"],"index":5},{"captures":["\b"],"index":6}] [\u0000\u0009\u000d\u000a\u000b\u000C\u0008] u "(?:[\x00\b-\r])" "\0\t\r\n\v\f\b" [{"captures":["\u0000"],"index":0},{"captures":["\t"],"index":1},{"captures":["\r"],"index":2},{"captures":["\n"],"index":3},{"captures":["\u000b"],"index":4},{"captures":["\f"],"index":5},{"captures":["\b"],"index":6}] +[\u0000\u0009\u000d\u000a\u000b\u000C\u0008] v )inconvertible( "\0\t\r\n\v\f\b" [{"captures":["\u0000"],"index":0},{"captures":["\t"],"index":1},{"captures":["\r"],"index":2},{"captures":["\n"],"index":3},{"captures":["\u000b"],"index":4},{"captures":["\f"],"index":5},{"captures":["\b"],"index":6}] [^\u0000\u0009\u000d\u000a\u000b\u000C\u0008] "[^\x00\t\r\n\v\f\b]" "\0\t\r\n\v\f\b" [] [^\u0000\u0009\u000d\u000a\u000b\u000C\u0008] u "(?:[\ud800-\udbff][\udc00-\udfff]|[\ud800-\udbff](?![\udc00-\udfff])|(? "" [{"captures":[""],"index":0}] \<\A\Z\z\G\a\e\> u )syntax-error( "Invalid escape" +\<\A\Z\z\G\a\e\> v )syntax-error( "Invalid escape" \{1} "{1}" [{"captures":[""],"index":0}] \{1} u )syntax-error( "Invalid escape" +\{1} v )syntax-error( "Invalid escape" [\<\A\Z\z\G\a\e\>] "[\\<\\A\\Z\\z\\Gae\\>]" [{"captures":["<"],"index":0},{"captures":["A"],"index":1},{"captures":["Z"],"index":2},{"captures":["z"],"index":3},{"captures":["G"],"index":4},{"captures":["a"],"index":5},{"captures":["e"],"index":6},{"captures":[">"],"index":7}] [\<\A\Z\z\G\a\e\>] u )syntax-error( "Invalid escape" +[\<\A\Z\z\G\a\e\>] v )syntax-error( "Invalid escape" # Dot . "[^\n\r\u2028\u2029]" "09\naz\rAZ\r\nMṎbẏDžNjʱⱼªﹴ̒𛲝ःꨯ҈꙰9🯶ᛮ𐍁³𖭞  \u2028\u2029\u0001‰­𑂽\udc4f\udbc9􊭣_⁔-֊(﴿)₎«⸠»⸝#𐩒+﬩$𑿞^˨¦🫅͹઱" [{"captures":["0"],"index":0},{"captures":["9"],"index":1},{"captures":["a"],"index":3},{"captures":["z"],"index":4},{"captures":["A"],"index":6},{"captures":["Z"],"index":7},{"captures":["M"],"index":10},{"captures":["Ṏ"],"index":11},{"captures":["b"],"index":12},{"captures":["ẏ"],"index":13},{"captures":["Dž"],"index":14},{"captures":["Nj"],"index":15},{"captures":["ʱ"],"index":16},{"captures":["ⱼ"],"index":17},{"captures":["ª"],"index":18},{"captures":["ﹴ"],"index":19},{"captures":["̒"],"index":20},{"captures":["\ud82f"],"index":21},{"captures":["\udc9d"],"index":22},{"captures":["ः"],"index":23},{"captures":["ꨯ"],"index":24},{"captures":["҈"],"index":25},{"captures":["꙰"],"index":26},{"captures":["9"],"index":27},{"captures":["\ud83e"],"index":28},{"captures":["\udff6"],"index":29},{"captures":["ᛮ"],"index":30},{"captures":["\ud800"],"index":31},{"captures":["\udf41"],"index":32},{"captures":["³"],"index":33},{"captures":["\ud81a"],"index":34},{"captures":["\udf5e"],"index":35},{"captures":[" "],"index":36},{"captures":[" "],"index":37},{"captures":["\u0001"],"index":40},{"captures":["‰"],"index":41},{"captures":["­"],"index":42},{"captures":["\ud804"],"index":43},{"captures":["\udcbd"],"index":44},{"captures":["\udc4f"],"index":45},{"captures":["\udbc9"],"index":46},{"captures":[""],"index":47},{"captures":["\udbea"],"index":48},{"captures":["\udf63"],"index":49},{"captures":["_"],"index":50},{"captures":["⁔"],"index":51},{"captures":["-"],"index":52},{"captures":["֊"],"index":53},{"captures":["("],"index":54},{"captures":["﴿"],"index":55},{"captures":[")"],"index":56},{"captures":["₎"],"index":57},{"captures":["«"],"index":58},{"captures":["⸠"],"index":59},{"captures":["»"],"index":60},{"captures":["⸝"],"index":61},{"captures":["#"],"index":62},{"captures":["\ud802"],"index":63},{"captures":["\ude52"],"index":64},{"captures":["+"],"index":65},{"captures":["﬩"],"index":66},{"captures":["$"],"index":67},{"captures":["\ud807"],"index":68},{"captures":["\udfde"],"index":69},{"captures":["^"],"index":70},{"captures":["˨"],"index":71},{"captures":["¦"],"index":72},{"captures":["\ud83e"],"index":73},{"captures":["\udec5"],"index":74},{"captures":["͹"],"index":75},{"captures":["઱"],"index":76}] . u "(?:[\ud800-\udbff][\udc00-\udfff]|[\ud800-\udbff](?![\udc00-\udfff])|(?ab)|(?cd) ((?ab))|((?cd)) cd [{"captures":["cd",null,"cd"],"index":0,"groups":{"cd":"cd"}}] (?ab)|(?cd) u ((?ab))|((?cd)) cd [{"captures":["cd",null,"cd"],"index":0,"groups":{"cd":"cd"}}] +(?ab)|(?cd) v )inconvertible( cd [{"captures":["cd",null,"cd"],"index":0,"groups":{"cd":"cd"}}] (?[ab])+ ((?[ab]))+ abc [{"captures":["ab","b"],"index":0,"groups":{"g":"b"}}] (?[ab])+ u "((?(?:[\\x61\\x62])))+" abc [{"captures":["ab","b"],"index":0,"groups":{"g":"b"}}] +(?[ab])+ v )inconvertible( abc [{"captures":["ab","b"],"index":0,"groups":{"g":"b"}}] c(?=(?<$ab>ab)) c(?=((?<__utf8_246162>ab))) cab [{"captures":["c","ab"],"index":0,"groups":{"$ab":"ab"}}] c(?=(?<$ab>ab)) u c(?=((?<__utf8_246162>ab))) cab [{"captures":["c","ab"],"index":0,"groups":{"$ab":"ab"}}] +c(?=(?<$ab>ab)) v )inconvertible( cab [{"captures":["c","ab"],"index":0,"groups":{"$ab":"ab"}}] c(?=(?<$ab>ab)(?<__utf8_246162>)) )inconvertible( cab [{"captures":["c","ab",""],"index":0,"groups":{"$ab":"ab","__utf8_246162":""}}] c(?=(?<$ab>ab)(?<__utf8_246162>)) u )inconvertible( cab [{"captures":["c","ab",""],"index":0,"groups":{"$ab":"ab","__utf8_246162":""}}] +c(?=(?<$ab>ab)(?<__utf8_246162>)) v )inconvertible( cab [{"captures":["c","ab",""],"index":0,"groups":{"$ab":"ab","__utf8_246162":""}}] (?<=(?<α>a)(?<β>b))c (?<=((?<α>a))((?<β>b)))c abc [{"captures":["c","a","b"],"index":2,"groups":{"α":"a","β":"b"}}] (?<=(?<α>a)(?<β>b))c u (?<=((?<α>a))((?<β>b)))c abc [{"captures":["c","a","b"],"index":2,"groups":{"α":"a","β":"b"}}] +(?<=(?<α>a)(?<β>b))c v )inconvertible( abc [{"captures":["c","a","b"],"index":2,"groups":{"α":"a","β":"b"}}] (?<=(?<_1>[ab])+)c (?<=((?<_1>[ab]))+)c abc [{"captures":["c","a"],"index":2,"groups":{"_1":"a"}}] (?<=(?<_1>[ab])+)c u "(?<=((?<_1>(?:[\\x61\\x62])))+)c" abc [{"captures":["c","a"],"index":2,"groups":{"_1":"a"}}] +(?<=(?<_1>[ab])+)c v )inconvertible( abc [{"captures":["c","a"],"index":2,"groups":{"_1":"a"}}] ((?<\u{13000}>a+)?(?<\u{13001}>b+)?(?<\u{13002}>c))* (((?<__utf8_F0938080>a+))?((?<__utf8_F0938081>b+))?((?<__utf8_F0938082>c)))* aacbbbcac [{"captures":["aacbbbcac","ac","a",null,"c"],"index":0,"groups":{"𓀀":"a","𓀂":"c"}},{"captures":["",null,null,null,null],"index":9,"groups":{}}] !ignore-undefined-captures ((?<\u{13000}>a+)?(?<\u{13001}>b+)?(?<\u{13002}>c))* u (((?<__utf8_F0938080>a+))?((?<__utf8_F0938081>b+))?((?<__utf8_F0938082>c)))* aacbbbcac [{"captures":["aacbbbcac","ac","a",null,"c"],"index":0,"groups":{"𓀀":"a","𓀂":"c"}},{"captures":["",null,null,null,null],"index":9,"groups":{}}] !ignore-undefined-captures +((?<\u{13000}>a+)?(?<\u{13001}>b+)?(?<\u{13002}>c))* v )inconvertible( aacbbbcac [{"captures":["aacbbbcac","ac","a",null,"c"],"index":0,"groups":{"𓀀":"a","𓀂":"c"}},{"captures":["",null,null,null,null],"index":9,"groups":{}}] !ignore-undefined-captures ^(?\d{4})-(?\d{2})-(?\d{2})$ "^((?\\d{4}))-((?\\d{2}))-((?\\d{2}))$" 2019-01-01 [{"captures":["2019-01-01","2019","01","01"],"index":0,"groups":{"Year":"2019","Month":"01","Day":"01"}}] ^(?\d{4})-(?\d{2})-(?\d{2})$ u "^((?\\d{4}))-((?\\d{2}))-((?\\d{2}))$" 2019-01-01 [{"captures":["2019-01-01","2019","01","01"],"index":0,"groups":{"Year":"2019","Month":"01","Day":"01"}}] +^(?\d{4})-(?\d{2})-(?\d{2})$ v )inconvertible( 2019-01-01 [{"captures":["2019-01-01","2019","01","01"],"index":0,"groups":{"Year":"2019","Month":"01","Day":"01"}}] (?\d+),(?.+) "((?\\d+)),((?[^\n\r\u2028\u2029]+))" 1560979912,Caroline [{"captures":["1560979912,Caroline","1560979912","Caroline"],"index":0,"groups":{"timestamp":"1560979912","author":"Caroline"}}] (?\d+),(?.+) u "((?\\d+)),((?(?:[\ud800-\udbff][\udc00-\udfff]|[\ud800-\udbff](?![\udc00-\udfff])|(?\d+),(?.+) v )inconvertible( 1560979912,Caroline [{"captures":["1560979912,Caroline","1560979912","Caroline"],"index":0,"groups":{"timestamp":"1560979912","author":"Caroline"}}] (?x)(?y) )syntax-error( xy "Duplicate capture group name" (?x)(?y) u )syntax-error( xy "Duplicate capture group name" +(?x)(?y) v )syntax-error( xy "Duplicate capture group name" ((?x))(?y) )syntax-error( xy "Duplicate capture group name" ((?x))(?y) u )syntax-error( xy "Duplicate capture group name" +((?x))(?y) v )syntax-error( xy "Duplicate capture group name" (x|(?x))(?y) )syntax-error( xy "Duplicate capture group name" (x|(?x))(?y) u )syntax-error( xy "Duplicate capture group name" +(x|(?x))(?y) v )syntax-error( xy "Duplicate capture group name" (((?x)))(?y) )syntax-error( xy "Duplicate capture group name" (((?x)))(?y) u )syntax-error( xy "Duplicate capture group name" +(((?x)))(?y) v )syntax-error( xy "Duplicate capture group name" (?:((?x)))(?y) )syntax-error( xy "Duplicate capture group name" (?:((?x)))(?y) u )syntax-error( xy "Duplicate capture group name" +(?:((?x)))(?y) v )syntax-error( xy "Duplicate capture group name" ((?:(?x)))(?y) )syntax-error( xy "Duplicate capture group name" ((?:(?x)))(?y) u )syntax-error( xy "Duplicate capture group name" +((?:(?x)))(?y) v )syntax-error( xy "Duplicate capture group name" (?x)))(?y) )syntax-error( xy "Duplicate capture group name" (?x)))(?y) u )syntax-error( xy "Duplicate capture group name" +(?x)))(?y) v )syntax-error( xy "Duplicate capture group name" (?x)((?y)) )syntax-error( xy "Duplicate capture group name" (?x)((?y)) u )syntax-error( xy "Duplicate capture group name" +(?x)((?y)) v )syntax-error( xy "Duplicate capture group name" (?x)(y|(?y)) )syntax-error( xy "Duplicate capture group name" (?x)(y|(?y)) u )syntax-error( xy "Duplicate capture group name" +(?x)(y|(?y)) v )syntax-error( xy "Duplicate capture group name" (?x)(((?y))) )syntax-error( xy "Duplicate capture group name" (?x)(((?y))) u )syntax-error( xy "Duplicate capture group name" +(?x)(((?y))) v )syntax-error( xy "Duplicate capture group name" (?x)(?:((?y))) )syntax-error( xy "Duplicate capture group name" (?x)(?:((?y))) u )syntax-error( xy "Duplicate capture group name" +(?x)(?:((?y))) v )syntax-error( xy "Duplicate capture group name" (?x)((?:(?y))) )syntax-error( xy "Duplicate capture group name" (?x)((?:(?y))) u )syntax-error( xy "Duplicate capture group name" +(?x)((?:(?y))) v )syntax-error( xy "Duplicate capture group name" (?x)(?!(?:(?y))) )syntax-error( xy "Duplicate capture group name" (?x)(?!(?:(?y))) u )syntax-error( xy "Duplicate capture group name" +(?x)(?!(?:(?y))) v )syntax-error( xy "Duplicate capture group name" (?\w+)\s\k\W(?\w+) i "((?\\w+))[\\s   - \u2028\u2029   ]\\k\\W((?\\w+))" He said that that was the the correct answer. [{"captures":["that that was","that","was"],"index":8,"groups":{"duplicateWord":"that","nextWord":"was"}},{"captures":["the the correct","the","correct"],"index":22,"groups":{"duplicateWord":"the","nextWord":"correct"}}] (?\w+)\s\k\W(?\w+) ui "((?\\w+))[\\s   - \u2028\u2029   ]\\k(?:[\ud800-\udbff][\udc00-\udfff]|[\ud800-\udbff](?![\udc00-\udfff])|(?\\w+))" He said that that was the the correct answer. [{"captures":["that that was","that","was"],"index":8,"groups":{"duplicateWord":"that","nextWord":"was"}},{"captures":["the the correct","the","correct"],"index":22,"groups":{"duplicateWord":"the","nextWord":"correct"}}] +(?\w+)\s\k\W(?\w+) vi )inconvertible( He said that that was the the correct answer. [{"captures":["that that was","that","was"],"index":8,"groups":{"duplicateWord":"that","nextWord":"was"}},{"captures":["the the correct","the","correct"],"index":22,"groups":{"duplicateWord":"the","nextWord":"correct"}}] (?*x) )syntax-error( xxyx "Nothing to repeat" (?*x) u )syntax-error( xxyx "Nothing to repeat" +(?*x) v )syntax-error( xxyx "Nothing to repeat" (?{1,}x) )syntax-error( xxyx "Nothing to repeat" (?{1,}x) u )syntax-error( xxyx "Nothing to repeat" +(?{1,}x) v )syntax-error( xxyx "Nothing to repeat" # Non-capturing groups styles(?:\.[\da-f]+)? "styles(?:\\.[\\da-f]+)?" styles.css [{"captures":["styles.c"],"index":0}] styles(?:\.[\da-f]+)? u "styles(?:\\.(?:[\\x30-\\x39\\x61-\\x66])+)?" styles.css [{"captures":["styles.c"],"index":0}] +styles(?:\.[\da-f]+)? v )inconvertible( styles.css [{"captures":["styles.c"],"index":0}] styles(?:\.[\da-f]+)? "styles(?:\\.[\\da-f]+)?" styles.1234.css [{"captures":["styles.1234"],"index":0}] styles(?:\.[\da-f]+)? u "styles(?:\\.(?:[\\x30-\\x39\\x61-\\x66])+)?" styles.1234.css [{"captures":["styles.1234"],"index":0}] +styles(?:\.[\da-f]+)? v )inconvertible( styles.1234.css [{"captures":["styles.1234"],"index":0}] styles(?:\.[\da-f]+)? "styles(?:\\.[\\da-f]+)?" styles.cafe.css [{"captures":["styles.cafe"],"index":0}] styles(?:\.[\da-f]+)? u "styles(?:\\.(?:[\\x30-\\x39\\x61-\\x66])+)?" styles.cafe.css [{"captures":["styles.cafe"],"index":0}] +styles(?:\.[\da-f]+)? v )inconvertible( styles.cafe.css [{"captures":["styles.cafe"],"index":0}] styles(?:\.[\da-f]+)? "styles(?:\\.[\\da-f]+)?" styles.1234.min.css [{"captures":["styles.1234"],"index":0}] styles(?:\.[\da-f]+)? u "styles(?:\\.(?:[\\x30-\\x39\\x61-\\x66])+)?" styles.1234.min.css [{"captures":["styles.1234"],"index":0}] +styles(?:\.[\da-f]+)? v )inconvertible( styles.1234.min.css [{"captures":["styles.1234"],"index":0}] \.(?:png|jpe?g|webp|avif|gif)$ i "\\.(?:png|jpe?g|webp|avif|gif)$" image.png [{"captures":[".png"],"index":5}] \.(?:png|jpe?g|webp|avif|gif)$ ui "\\.(?:png|jpe?g|webp|avif|gif)$" image.png [{"captures":[".png"],"index":5}] +\.(?:png|jpe?g|webp|avif|gif)$ vi )inconvertible( image.png [{"captures":[".png"],"index":5}] \.(?:png|jpe?g|webp|avif|gif)$ i "\\.(?:png|jpe?g|webp|avif|gif)$" image.pdf [] \.(?:png|jpe?g|webp|avif|gif)$ ui "\\.(?:png|jpe?g|webp|avif|gif)$" image.pdf [] +\.(?:png|jpe?g|webp|avif|gif)$ vi )inconvertible( image.pdf [] (?:title|name)=(["'])(.*?)\1 "(?:title|name)=([\"'])([^\n\r\u2028\u2029]*?)\\1" name="foo" [{"captures":["name=\"foo\"","\"","foo"],"index":0}] (?:title|name)=(["'])(.*?)\1 u "(?:title|name)=((?:[\\x22\\x27]))((?:[\ud800-\udbff][\udc00-\udfff]|[\ud800-\udbff](?![\udc00-\udfff])|(?)\kx )syntax-error( kx "Invalid named reference" \kx(?) )syntax-error( kx "Invalid named reference" \k (k k [{"captures":["k","k u )syntax-error( k "Invalid capture group name" +(\k v )syntax-error( k "Invalid capture group name" \k<>x k<>x k<>x [{"captures":["k<>x"],"index":0}] \k<>x u )syntax-error( k<>x "Invalid capture group name" +\k<>x v )syntax-error( k<>x "Invalid capture group name" (?)\k )syntax-error( x "Invalid named capture referenced" (?)\k u )syntax-error( x "Invalid named capture referenced" +(?)\k v )syntax-error( x "Invalid named capture referenced" \k(?) )syntax-error( x "Invalid named capture referenced" \k(?) u )syntax-error( x "Invalid named capture referenced" +\k(?) v )syntax-error( x "Invalid named capture referenced" + +[\k)](?) )syntax-error( x "Invalid escape" +[\k)](?) u )syntax-error( x "Invalid escape" +[\k)](?) v )syntax-error( x "Invalid escape" # Backreferences title=(["'])(.*?)\1 "title=([\"'])([^\n\r\u2028\u2029]*?)\\1" title="Named capturing groups' advantages" [{"captures":["title=\"Named capturing groups' advantages\"","\"","Named capturing groups' advantages"],"index":0}] title=(["'])(.*?)\1 u "title=((?:[\\x22\\x27]))((?:[\ud800-\udbff][\udc00-\udfff]|[\ud800-\udbff](?![\udc00-\udfff])|(?["'])(?.*?)\1 "title=((?[\"']))((?[^\n\r\u2028\u2029]*?))\\1" title="Named capturing groups' advantages" [{"captures":["title=\"Named capturing groups' advantages\"","\"","Named capturing groups' advantages"],"index":0,"groups":{"quote":"\"","content":"Named capturing groups' advantages"}}] title=(?["'])(?.*?)\1 u "title=((?(?:[\\x22\\x27])))((?(?:[\ud800-\udbff][\udc00-\udfff]|[\ud800-\udbff](?![\udc00-\udfff])|(?["'])(?.*?)\1 v )inconvertible( title="Named capturing groups' advantages" [{"captures":["title=\"Named capturing groups' advantages\"","\"","Named capturing groups' advantages"],"index":0,"groups":{"quote":"\"","content":"Named capturing groups' advantages"}}] title=(?["'])(?.*?)\k "title=((?[\"']))((?[^\n\r\u2028\u2029]*?))\\k" title="Named capturing groups' advantages" [{"captures":["title=\"Named capturing groups' advantages\"","\"","Named capturing groups' advantages"],"index":0,"groups":{"quote":"\"","content":"Named capturing groups' advantages"}}] title=(?["'])(?.*?)\k u "title=((?(?:[\\x22\\x27])))((?(?:[\ud800-\udbff][\udc00-\udfff]|[\ud800-\udbff](?![\udc00-\udfff])|(?" title="Named capturing groups' advantages" [{"captures":["title=\"Named capturing groups' advantages\"","\"","Named capturing groups' advantages"],"index":0,"groups":{"quote":"\"","content":"Named capturing groups' advantages"}}] +title=(?["'])(?.*?)\k v )inconvertible( title="Named capturing groups' advantages" [{"captures":["title=\"Named capturing groups' advantages\"","\"","Named capturing groups' advantages"],"index":0,"groups":{"quote":"\"","content":"Named capturing groups' advantages"}}] (b)\1 i "(b)\\1" bB [{"captures":["bB","b"],"index":0}] (b)\1 ui "(b)\\1" bB [{"captures":["bB","b"],"index":0}] +(b)\1 vi )inconvertible( bB [{"captures":["bB","b"],"index":0}] (?b)\1 i "((?b))\\1" bB [{"captures":["bB","b"],"index":0,"groups":{"g":"b"}}] (?b)\1 ui "((?b))\\1" bB [{"captures":["bB","b"],"index":0,"groups":{"g":"b"}}] +(?b)\1 vi )inconvertible( bB [{"captures":["bB","b"],"index":0,"groups":{"g":"b"}}] (?b)\k i "((?b))\\k" bB [{"captures":["bB","b"],"index":0,"groups":{"g":"b"}}] (?b)\k ui "((?b))\\k" bB [{"captures":["bB","b"],"index":0,"groups":{"g":"b"}}] +(?b)\k vi )inconvertible( bB [{"captures":["bB","b"],"index":0,"groups":{"g":"b"}}] (b)\1+ i "(b)\\1+" bBbB [{"captures":["bBbB","b"],"index":0}] (b)\1+ ui "(b)\\1+" bBbB [{"captures":["bBbB","b"],"index":0}] +(b)\1+ vi )inconvertible( bBbB [{"captures":["bBbB","b"],"index":0}] (?b)\1+ i "((?b))\\1+" bB [{"captures":["bB","b"],"index":0,"groups":{"g":"b"}}] (?b)\1+ ui "((?b))\\1+" bB [{"captures":["bB","b"],"index":0,"groups":{"g":"b"}}] +(?b)\1+ vi )inconvertible( bB [{"captures":["bB","b"],"index":0,"groups":{"g":"b"}}] (?b)\k+ i "((?b))\\k+" bB [{"captures":["bB","b"],"index":0,"groups":{"g":"b"}}] (?b)\k+ ui "((?b))\\k+" bB [{"captures":["bB","b"],"index":0,"groups":{"g":"b"}}] +(?b)\k+ vi )inconvertible( bB [{"captures":["bB","b"],"index":0,"groups":{"g":"b"}}] \1(a) )inconvertible( aa [{"captures":["a","a"],"index":0},{"captures":["a","a"],"index":1}] \1(a) u )inconvertible( aa [{"captures":["a","a"],"index":0},{"captures":["a","a"],"index":1}] +\1(a) v )inconvertible( aa [{"captures":["a","a"],"index":0},{"captures":["a","a"],"index":1}] \1(?a) )inconvertible( aa [{"captures":["a","a"],"index":0,"groups":{"g":"a"}},{"captures":["a","a"],"index":1,"groups":{"g":"a"}}] \1(?a) u )inconvertible( aa [{"captures":["a","a"],"index":0,"groups":{"g":"a"}},{"captures":["a","a"],"index":1,"groups":{"g":"a"}}] +\1(?a) v )inconvertible( aa [{"captures":["a","a"],"index":0,"groups":{"g":"a"}},{"captures":["a","a"],"index":1,"groups":{"g":"a"}}] \k(?a) )inconvertible( aa [{"captures":["a","a"],"index":0,"groups":{"g":"a"}},{"captures":["a","a"],"index":1,"groups":{"g":"a"}}] \k(?a) u )inconvertible( aa [{"captures":["a","a"],"index":0,"groups":{"g":"a"}},{"captures":["a","a"],"index":1,"groups":{"g":"a"}}] +\k(?a) v )inconvertible( aa [{"captures":["a","a"],"index":0,"groups":{"g":"a"}},{"captures":["a","a"],"index":1,"groups":{"g":"a"}}] (\1a) "(\\1a)" aa [{"captures":["a","a"],"index":0},{"captures":["a","a"],"index":1}] (\1a) u "(\\1a)" aa [{"captures":["a","a"],"index":0},{"captures":["a","a"],"index":1}] +(\1a) v )inconvertible( aa [{"captures":["a","a"],"index":0},{"captures":["a","a"],"index":1}] (?\1a) "((?\\1a))" aa [{"captures":["a","a"],"index":0,"groups":{"g":"a"}},{"captures":["a","a"],"index":1,"groups":{"g":"a"}}] (?\1a) u "((?\\1a))" aa [{"captures":["a","a"],"index":0,"groups":{"g":"a"}},{"captures":["a","a"],"index":1,"groups":{"g":"a"}}] +(?\1a) v )inconvertible( aa [{"captures":["a","a"],"index":0,"groups":{"g":"a"}},{"captures":["a","a"],"index":1,"groups":{"g":"a"}}] (?\ka) "((?\\ka))" aa [{"captures":["a","a"],"index":0,"groups":{"g":"a"}},{"captures":["a","a"],"index":1,"groups":{"g":"a"}}] (?\ka) u "((?\\ka))" aa [{"captures":["a","a"],"index":0,"groups":{"g":"a"}},{"captures":["a","a"],"index":1,"groups":{"g":"a"}}] +(?\ka) v )inconvertible( aa [{"captures":["a","a"],"index":0,"groups":{"g":"a"}},{"captures":["a","a"],"index":1,"groups":{"g":"a"}}] (a\1) "(a\\1)" aa [{"captures":["a","a"],"index":0},{"captures":["a","a"],"index":1}] (a\1) u "(a\\1)" aa [{"captures":["a","a"],"index":0},{"captures":["a","a"],"index":1}] +(a\1) v )inconvertible( aa [{"captures":["a","a"],"index":0},{"captures":["a","a"],"index":1}] (?a\1) "((?a\\1))" aa [{"captures":["a","a"],"index":0,"groups":{"g":"a"}},{"captures":["a","a"],"index":1,"groups":{"g":"a"}}] (?a\1) u "((?a\\1))" aa [{"captures":["a","a"],"index":0,"groups":{"g":"a"}},{"captures":["a","a"],"index":1,"groups":{"g":"a"}}] +(?a\1) v )inconvertible( aa [{"captures":["a","a"],"index":0,"groups":{"g":"a"}},{"captures":["a","a"],"index":1,"groups":{"g":"a"}}] (?a\k) "((?a\\k))" aa [{"captures":["a","a"],"index":0,"groups":{"g":"a"}},{"captures":["a","a"],"index":1,"groups":{"g":"a"}}] (?a\k) u "((?a\\k))" aa [{"captures":["a","a"],"index":0,"groups":{"g":"a"}},{"captures":["a","a"],"index":1,"groups":{"g":"a"}}] +(?a\k) v )inconvertible( aa [{"captures":["a","a"],"index":0,"groups":{"g":"a"}},{"captures":["a","a"],"index":1,"groups":{"g":"a"}}] (?:a|(b))\1c "(?:a|(b))\\1c" ac [{"captures":["ac",null],"index":0}] (?:a|(b))\1c u "(?:a|(b))\\1c" ac [{"captures":["ac",null],"index":0}] +(?:a|(b))\1c v )inconvertible( ac [{"captures":["ac",null],"index":0}] (?:a|(?b))\1c "(?:a|((?b)))\\1c" ac [{"captures":["ac",null],"index":0,"groups":{}}] (?:a|(?b))\1c u "(?:a|((?b)))\\1c" ac [{"captures":["ac",null],"index":0,"groups":{}}] +(?:a|(?b))\1c v )inconvertible( ac [{"captures":["ac",null],"index":0,"groups":{}}] (?:a|(?b))\kc "(?:a|((?b)))\\kc" ac [{"captures":["ac",null],"index":0,"groups":{}}] (?:a|(?b))\kc u "(?:a|((?b)))\\kc" ac [{"captures":["ac",null],"index":0,"groups":{}}] +(?:a|(?b))\kc v )inconvertible( ac [{"captures":["ac",null],"index":0,"groups":{}}] (a)\2 "(a)\x02" a\x02 [] (a)\2 u )syntax-error( a\x02 "Invalid escape" +(a)\2 v )syntax-error( a\x02 "Invalid escape" (?a)\2 "((?a))\x02" a\x02 [] (?a)\2 u )syntax-error( a\x02 "Invalid escape" +(?a)\2 v )syntax-error( a\x02 "Invalid escape" \b(\w+)\s+\1\b i "\\b(\\w+)[\\s   - \u2028\u2029   ]+\\1\\b" Hello hello [{"captures":["Hello hello","Hello"],"index":0}] \b(\w+)\s+\1\b ui "\\b(\\w+)[\\s   - \u2028\u2029   ]+\\1\\b" Hello hello [{"captures":["Hello hello","Hello"],"index":0}] +\b(\w+)\s+\1\b vi )inconvertible( Hello hello [{"captures":["Hello hello","Hello"],"index":0}] \b(\w+)\s+\1\b i "\\b(\\w+)[\\s   - \u2028\u2029   ]+\\1\\b" Hello hellos [] \b(\w+)\s+\1\b ui "\\b(\\w+)[\\s   - \u2028\u2029   ]+\\1\\b" Hello hellos [] +\b(\w+)\s+\1\b vi )inconvertible( Hello hellos [] ((a+)(\1) ?)+ "((a+)(\\1) ?)+" "aa aaaa aaaaaa " [{"captures":["aa aaaa aaaaaa ","aaaaaa ","aaaaaa",""],"index":0}] !ignore-group-captures ((a+)(\1) ?)+ u "((a+)(\\1) ?)+" "aa aaaa aaaaaa " [{"captures":["aa aaaa aaaaaa ","aaaaaa ","aaaaaa",""],"index":0}] !ignore-group-captures +((a+)(\1) ?)+ v )inconvertible( "aa aaaa aaaaaa " [{"captures":["aa aaaa aaaaaa ","aaaaaa ","aaaaaa",""],"index":0}] !ignore-group-captures (.)(?<=(\1\1)) "([^\n\r\u2028\u2029])(?<=(\\1\\1))" "abb" [{"captures":["b","b","bb"],"index":2}] (.)(?<=(\1\1)) i "([^\n\r\u2028\u2029])(?<=(\\1\\1))" "abB" [{"captures":["B","B","bB"],"index":2}] @@ -2370,206 +3451,291 @@ title=(?["'])(?.*?)\k u "title=((?(?:[\\x22\\x27]) x? x? xxyx [{"captures":["x"],"index":0},{"captures":["x"],"index":1},{"captures":[""],"index":2},{"captures":["x"],"index":3},{"captures":[""],"index":4}] x? u x? xxyx [{"captures":["x"],"index":0},{"captures":["x"],"index":1},{"captures":[""],"index":2},{"captures":["x"],"index":3},{"captures":[""],"index":4}] +x? v )inconvertible( xxyx [{"captures":["x"],"index":0},{"captures":["x"],"index":1},{"captures":[""],"index":2},{"captures":["x"],"index":3},{"captures":[""],"index":4}] x* x* xxyx [{"captures":["xx"],"index":0},{"captures":[""],"index":2},{"captures":["x"],"index":3},{"captures":[""],"index":4}] x* u x* xxyx [{"captures":["xx"],"index":0},{"captures":[""],"index":2},{"captures":["x"],"index":3},{"captures":[""],"index":4}] +x* v )inconvertible( xxyx [{"captures":["xx"],"index":0},{"captures":[""],"index":2},{"captures":["x"],"index":3},{"captures":[""],"index":4}] x+ x+ xxyx [{"captures":["xx"],"index":0},{"captures":["x"],"index":3}] x+ u x+ xxyx [{"captures":["xx"],"index":0},{"captures":["x"],"index":3}] +x+ v )inconvertible( xxyx [{"captures":["xx"],"index":0},{"captures":["x"],"index":3}] x{1} x{1} xxyx [{"captures":["x"],"index":0},{"captures":["x"],"index":1},{"captures":["x"],"index":3}] x{1} u x{1} xxyx [{"captures":["x"],"index":0},{"captures":["x"],"index":1},{"captures":["x"],"index":3}] +x{1} v )inconvertible( xxyx [{"captures":["x"],"index":0},{"captures":["x"],"index":1},{"captures":["x"],"index":3}] x{1,} x{1,} xxyx [{"captures":["xx"],"index":0},{"captures":["x"],"index":3}] x{1,} u x{1,} xxyx [{"captures":["xx"],"index":0},{"captures":["x"],"index":3}] +x{1,} v )inconvertible( xxyx [{"captures":["xx"],"index":0},{"captures":["x"],"index":3}] x{1,2} x{1,2} xxyx [{"captures":["xx"],"index":0},{"captures":["x"],"index":3}] x{1,2} u x{1,2} xxyx [{"captures":["xx"],"index":0},{"captures":["x"],"index":3}] +x{1,2} v )inconvertible( xxyx [{"captures":["xx"],"index":0},{"captures":["x"],"index":3}] x?? x?? xxyx [{"captures":[""],"index":0},{"captures":[""],"index":1},{"captures":[""],"index":2},{"captures":[""],"index":3},{"captures":[""],"index":4}] x?? u x?? xxyx [{"captures":[""],"index":0},{"captures":[""],"index":1},{"captures":[""],"index":2},{"captures":[""],"index":3},{"captures":[""],"index":4}] +x?? v )inconvertible( xxyx [{"captures":[""],"index":0},{"captures":[""],"index":1},{"captures":[""],"index":2},{"captures":[""],"index":3},{"captures":[""],"index":4}] x?* )syntax-error( xxyx "Nothing to repeat" x?* u )syntax-error( xxyx "Nothing to repeat" +x?* v )syntax-error( xxyx "Nothing to repeat" x?+ )syntax-error( xxyx "Nothing to repeat" x?+ u )syntax-error( xxyx "Nothing to repeat" +x?+ v )syntax-error( xxyx "Nothing to repeat" x?{1} )syntax-error( xxyx "Nothing to repeat" x?{1} u )syntax-error( xxyx "Nothing to repeat" +x?{1} v )syntax-error( xxyx "Nothing to repeat" x*? x*? xxyx [{"captures":[""],"index":0},{"captures":[""],"index":1},{"captures":[""],"index":2},{"captures":[""],"index":3},{"captures":[""],"index":4}] x*? u x*? xxyx [{"captures":[""],"index":0},{"captures":[""],"index":1},{"captures":[""],"index":2},{"captures":[""],"index":3},{"captures":[""],"index":4}] +x*? v )inconvertible( xxyx [{"captures":[""],"index":0},{"captures":[""],"index":1},{"captures":[""],"index":2},{"captures":[""],"index":3},{"captures":[""],"index":4}] x** )syntax-error( xxyx "Nothing to repeat" x** u )syntax-error( xxyx "Nothing to repeat" +x** v )syntax-error( xxyx "Nothing to repeat" x*+ )syntax-error( xxyx "Nothing to repeat" x*+ u )syntax-error( xxyx "Nothing to repeat" +x*+ v )syntax-error( xxyx "Nothing to repeat" x*{1} )syntax-error( xxyx "Nothing to repeat" x*{1} u )syntax-error( xxyx "Nothing to repeat" +x*{1} v )syntax-error( xxyx "Nothing to repeat" x+? x+? xxyx [{"captures":["x"],"index":0},{"captures":["x"],"index":1},{"captures":["x"],"index":3}] x+? u x+? xxyx [{"captures":["x"],"index":0},{"captures":["x"],"index":1},{"captures":["x"],"index":3}] +x+? v )inconvertible( xxyx [{"captures":["x"],"index":0},{"captures":["x"],"index":1},{"captures":["x"],"index":3}] x+* )syntax-error( xxyx "Nothing to repeat" x+* u )syntax-error( xxyx "Nothing to repeat" +x+* v )syntax-error( xxyx "Nothing to repeat" x++ )syntax-error( xxyx "Nothing to repeat" x++ u )syntax-error( xxyx "Nothing to repeat" +x++ v )syntax-error( xxyx "Nothing to repeat" x+{1} )syntax-error( xxyx "Nothing to repeat" x+{1} u )syntax-error( xxyx "Nothing to repeat" +x+{1} v )syntax-error( xxyx "Nothing to repeat" x{1}? x{1}? xxyx [{"captures":["x"],"index":0},{"captures":["x"],"index":1},{"captures":["x"],"index":3}] x{1}? u x{1}? xxyx [{"captures":["x"],"index":0},{"captures":["x"],"index":1},{"captures":["x"],"index":3}] +x{1}? v )inconvertible( xxyx [{"captures":["x"],"index":0},{"captures":["x"],"index":1},{"captures":["x"],"index":3}] x{1}* )syntax-error( xxyx "Nothing to repeat" x{1}* u )syntax-error( xxyx "Nothing to repeat" +x{1}* v )syntax-error( xxyx "Nothing to repeat" x{1}+ )syntax-error( xxyx "Nothing to repeat" x{1}+ u )syntax-error( xxyx "Nothing to repeat" +x{1}+ v )syntax-error( xxyx "Nothing to repeat" x{1}{1} )syntax-error( xxyx "Nothing to repeat" x{1}{1} u )syntax-error( xxyx "Nothing to repeat" +x{1}{1} v )syntax-error( xxyx "Nothing to repeat" x{ x{ xxyx{ [{"captures":["x{"],"index":3}] x{ u )syntax-error( xxyx{ "Incomplete quantifier" !ignore-error-message +x{ v )syntax-error( xxyx{ "Incomplete quantifier" !ignore-error-message x{} x{} xxyx{} [{"captures":["x{}"],"index":3}] x{} u )syntax-error( xxyx{} "Incomplete quantifier" +x{} v )syntax-error( xxyx{} "Incomplete quantifier" x{ } x{ } xxyx{ } [{"captures":["x{ }"],"index":3}] x{ } u )syntax-error( xxyx{ } "Incomplete quantifier" +x{ } v )syntax-error( xxyx{ } "Incomplete quantifier" x\{1} "x\\{1}" xxyx{1} [{"captures":["x{1}"],"index":3}] x\{1} u )syntax-error( xxyx{1} "Lone quantifier brackets" +x\{1} v )syntax-error( xxyx{1} "Lone quantifier brackets" x{1\} "x{1\\}" xxyx{1} [{"captures":["x{1}"],"index":3}] x{1\} u )syntax-error( xxyx{1} "Incomplete quantifier" !ignore-error-message +x{1\} v )syntax-error( xxyx{1} "Incomplete quantifier" !ignore-error-message x{1 x{1 xxyx{1 [{"captures":["x{1"],"index":3}] x{1 u )syntax-error( xxyx{1 "Incomplete quantifier" !ignore-error-message +x{1 v )syntax-error( xxyx{1 "Incomplete quantifier" !ignore-error-message x{1 } x{1 } xxyx{1 } [{"captures":["x{1 }"],"index":3}] x{1 } u )syntax-error( xxyx{1 } "Incomplete quantifier" +x{1 } v )syntax-error( xxyx{1 } "Incomplete quantifier" x{ 1} x{ 1} xxyx{1 } [] x{ 1} u )syntax-error( xxyx{1 } "Incomplete quantifier" +x{ 1} v )syntax-error( xxyx{1 } "Incomplete quantifier" x{,} x{,} xxyx{,} [{"captures":["x{,}"],"index":3}] x{,} u )syntax-error( xxyx{,} "Incomplete quantifier" +x{,} v )syntax-error( xxyx{,} "Incomplete quantifier" x{a} x{a} xxyx{a} [{"captures":["x{a}"],"index":3}] x{a} u )syntax-error( xxyx{a} "Incomplete quantifier" +x{a} v )syntax-error( xxyx{a} "Incomplete quantifier" x{-1} x{-1} xxyx{-1} [{"captures":["x{-1}"],"index":3}] x{-1} u )syntax-error( xxyx{-1} "Incomplete quantifier" +x{-1} v )syntax-error( xxyx{-1} "Incomplete quantifier" x{1, x{1, xxyx{1, [{"captures":["x{1,"],"index":3}] x{1, u )syntax-error( xxyx{1, "Incomplete quantifier" !ignore-error-message +x{1, v )syntax-error( xxyx{1, "Incomplete quantifier" !ignore-error-message x{1, } x{1, } xxyx{1, } [{"captures":["x{1, }"],"index":3}] x{1, } u )syntax-error( xxyx{1, } "Incomplete quantifier" +x{1, } v )syntax-error( xxyx{1, } "Incomplete quantifier" x{a,} x{a,} xxyx{a,} [{"captures":["x{a,}"],"index":3}] x{a,} u )syntax-error( xxyx{a,} "Incomplete quantifier" +x{a,} v )syntax-error( xxyx{a,} "Incomplete quantifier" x{-1,} x{-1,} xxyx{-1,} [{"captures":["x{-1,}"],"index":3}] x{-1,} u )syntax-error( xxyx{-1,} "Incomplete quantifier" +x{-1,} v )syntax-error( xxyx{-1,} "Incomplete quantifier" x{1,2 x{1,2 xxyx{1,2 [{"captures":["x{1,2"],"index":3}] x{1,2 u )syntax-error( xxyx{1,2 "Incomplete quantifier" !ignore-error-message +x{1,2 v )syntax-error( xxyx{1,2 "Incomplete quantifier" !ignore-error-message x{1,a} x{1,a} xxyx{1,a} [{"captures":["x{1,a}"],"index":3}] x{1,a} u )syntax-error( xxyx{1,a} "Incomplete quantifier" +x{1,a} v )syntax-error( xxyx{1,a} "Incomplete quantifier" x{1,-1} x{1,-1} xxyx{1,-1} [{"captures":["x{1,-1}"],"index":3}] x{1,-1} u )syntax-error( xxyx{1,-1} "Incomplete quantifier" +x{1,-1} v )syntax-error( xxyx{1,-1} "Incomplete quantifier" x{a,1} x{a,1} xxyx{a,1} [{"captures":["x{a,1}"],"index":3}] x{a,1} u )syntax-error( xxyx{a,1} "Incomplete quantifier" +x{a,1} v )syntax-error( xxyx{a,1} "Incomplete quantifier" x{-1,1} x{-1,1} xxyx{-1,1} [{"captures":["x{-1,1}"],"index":3}] x{-1,1} u )syntax-error( xxyx{-1,1} "Incomplete quantifier" +x{-1,1} v )syntax-error( xxyx{-1,1} "Incomplete quantifier" x{,1 x{,1 xxyx{,1 [{"captures":["x{,1"],"index":3}] x{,1 u )syntax-error( xxyx{,1 "Incomplete quantifier" !ignore-error-message +x{,1 v )syntax-error( xxyx{,1 "Incomplete quantifier" !ignore-error-message x{,1} x{,1} xxyx{,1} [{"captures":["x{,1}"],"index":3}] x{,1} u )syntax-error( xxyx{,1} "Incomplete quantifier" +x{,1} v )syntax-error( xxyx{,1} "Incomplete quantifier" x{ 1,2} x{ 1,2} xxyx{ 1,2} [{"captures":["x{ 1,2}"],"index":3}] x{ 1,2} u )syntax-error( xxyx{ 1,2} "Incomplete quantifier" +x{ 1,2} v )syntax-error( xxyx{ 1,2} "Incomplete quantifier" x{1,2 } x{1,2 } xxyx{1,2 } [{"captures":["x{1,2 }"],"index":3}] x{1,2 } u )syntax-error( xxyx{1,2 } "Incomplete quantifier" +x{1,2 } v )syntax-error( xxyx{1,2 } "Incomplete quantifier" x{1 ,2} x{1 ,2} xxyx{1 ,2} [{"captures":["x{1 ,2}"],"index":3}] x{1 ,2} u )syntax-error( xxyx{1 ,2} "Incomplete quantifier" +x{1 ,2} v )syntax-error( xxyx{1 ,2} "Incomplete quantifier" x{1, 2} x{1, 2} xxyx{1, 2} [{"captures":["x{1, 2}"],"index":3}] x{1, 2} u )syntax-error( xxyx{1, 2} "Incomplete quantifier" +x{1, 2} v )syntax-error( xxyx{1, 2} "Incomplete quantifier" x{2,1} )syntax-error( xxyx{2,1} "numbers out of order in {} quantifier" x{2,1} u )syntax-error( xxyx{2,1} "numbers out of order in {} quantifier" +x{2,1} v )syntax-error( xxyx{2,1} "numbers out of order in {} quantifier" x{2,02} x{2,02} xxyx{2,02} [{"captures":["xx"],"index":0}] x{2,02} u x{2,02} xxyx{2,02} [{"captures":["xx"],"index":0}] +x{2,02} v )inconvertible( xxyx{2,02} [{"captures":["xx"],"index":0}] x{02,2} x{02,2} xxyx{02,2} [{"captures":["xx"],"index":0}] x{02,2} u x{02,2} xxyx{02,2} [{"captures":["xx"],"index":0}] +x{02,2} v )inconvertible( xxyx{02,2} [{"captures":["xx"],"index":0}] x{1,2147483647} x{1,2147483647} xxyx{2,1} [{"captures":["xx"],"index":0},{"captures":["x"],"index":3}] !skip-on-netframework # (the adapted pattern is correct but makes the Regex ctor hang on .NET Framework) x{1,2147483647} u x{1,2147483647} xxyx{2,1} [{"captures":["xx"],"index":0},{"captures":["x"],"index":3}] !skip-on-netframework # (the adapted pattern is correct but makes the Regex ctor hang on .NET Framework) +x{1,2147483647} v )inconvertible( xxyx{2,1} [{"captures":["xx"],"index":0},{"captures":["x"],"index":3}] !skip-on-netframework # (the adapted pattern is correct but makes the Regex ctor hang on .NET Framework) x{2147483647,} x{2147483647,} xxyx{2,1} [] !skip-on-netframework # (the adapted pattern is correct but makes the Regex ctor hang on .NET Framework) x{2147483647,} u x{2147483647,} xxyx{2,1} [] !skip-on-netframework # (the adapted pattern is correct but makes the Regex ctor hang on .NET Framework) +x{2147483647,} v )inconvertible( xxyx{2,1} [] !skip-on-netframework # (the adapted pattern is correct but makes the Regex ctor hang on .NET Framework) x{1,2147483648} )inconvertible( xxyx{2,1} [{"captures":["xx"],"index":0},{"captures":["x"],"index":3}] x{1,2147483648} u )inconvertible( xxyx{2,1} [{"captures":["xx"],"index":0},{"captures":["x"],"index":3}] +x{1,2147483648} v )inconvertible( xxyx{2,1} [{"captures":["xx"],"index":0},{"captures":["x"],"index":3}] x{2147483648,} )inconvertible( xxyx{2,1} [] x{2147483648,} u )inconvertible( xxyx{2,1} [] +x{2147483648,} v )inconvertible( xxyx{2,1} [] x{2147483647,2147483646} )syntax-error( xxyx{2,1} "numbers out of order in {} quantifier" x{2147483647,2147483646} u )syntax-error( xxyx{2,1} "numbers out of order in {} quantifier" +x{2147483647,2147483646} v )syntax-error( xxyx{2,1} "numbers out of order in {} quantifier" x{2147483648,2147483647} )inconvertible( xxyx{2,1} [] x{2147483648,2147483647} u )inconvertible( xxyx{2,1} [] +x{2147483648,2147483647} v )inconvertible( xxyx{2,1} [] \b.*([0-9]{4})\b "\\b[^\n\r\u2028\u2029]*([0-9]{4})\\b" 1112223333 3992991999 [{"captures":["1112223333 3992991999","1999"],"index":0}] \b.*([0-9]{4})\b u "\\b(?:[\ud800-\udbff][\udc00-\udfff]|[\ud800-\udbff](?![\udc00-\udfff])|(?>] v )syntax-error( "Invalid set operation in character class" +[??] v )syntax-error( "Invalid set operation in character class" +[@@] v )syntax-error( "Invalid set operation in character class" +[^^^] v )syntax-error( "Invalid set operation in character class" +[x^^] v )syntax-error( "Invalid set operation in character class" +[``] v )syntax-error( "Invalid set operation in character class" +[~~] v )syntax-error( "Invalid set operation in character class" + +[\q{&&}] v )syntax-error( "Invalid set operation in character class" +[\q{!!}] v )syntax-error( "Invalid set operation in character class" +[\q{##}] v )syntax-error( "Invalid set operation in character class" + +## Class set reserved punctuators + +[\&\-\!\#\%\,\:\;\<\=\>\@\`\~] v )inconvertible( &-!#%,:;<=>@`~ [{"captures":["&"],"index":0},{"captures":["-"],"index":1},{"captures":["!"],"index":2},{"captures":["#"],"index":3},{"captures":["%"],"index":4},{"captures":[","],"index":5},{"captures":[":"],"index":6},{"captures":[";"],"index":7},{"captures":["<"],"index":8},{"captures":["="],"index":9},{"captures":[">"],"index":10},{"captures":["@"],"index":11},{"captures":["`"],"index":12},{"captures":["~"],"index":13}] + +## Class set expression edge cases + +[a-] v )syntax-error( "Invalid character in character class" +[a-0] v )syntax-error( "Range out of order in character class" +[a-\0] v )syntax-error( "Range out of order in character class" +[a-\d] v )syntax-error( "Invalid character class" +[a-\k] v )syntax-error( "Invalid escape" +[a-\q{] v )syntax-error( "Invalid character in character class" +[a-\q{}] v )syntax-error( "Invalid character class" +[a-[] v )syntax-error( "Invalid character class" !ignore-error-message +[a-[]] v )syntax-error( "Invalid character class" +[a-&&] v )syntax-error( "Invalid set operation in character class" +[a-/] v )syntax-error( "Invalid character in character class" +[a-b-c] v )syntax-error( "Invalid character class" +[a-&&] v )syntax-error( "Invalid set operation in character class" +[a-##] v )syntax-error( "Invalid set operation in character class" +[a--] v )syntax-error( "Invalid character in character class" +[a---] v )syntax-error( "Invalid character in character class" +[a--b-] v )syntax-error( "Invalid set operation in character class" +[a--b-c] v )syntax-error( "Invalid set operation in character class" +[a--b--] v )syntax-error( "Invalid character in character class" +[a--b---] v )syntax-error( "Invalid character in character class" +[a--b&&c] v )syntax-error( "Invalid set operation in character class" +[a--b##c] v )syntax-error( "Invalid set operation in character class" +[a--##] v )syntax-error( "Invalid set operation in character class" +[a--\k] v )syntax-error( "Invalid escape" +[a&&b&] v )syntax-error( "Invalid set operation in character class" +[a&&b&c] v )syntax-error( "Invalid set operation in character class" +[a&&b&&] v )syntax-error( "Invalid character in character class" +[a&&b&&&] v )syntax-error( "Invalid character in character class" +[a&&b--c] v )syntax-error( "Invalid set operation in character class" +[a&&b##c] v )syntax-error( "Invalid set operation in character class" +[a&&##] v )syntax-error( "Invalid set operation in character class" +[a&&\k] v )syntax-error( "Invalid escape" +[a##] v )syntax-error( "Invalid set operation in character class" + +[za-] v )syntax-error( "Invalid character in character class" +[za-0] v )syntax-error( "Range out of order in character class" +[za-\0] v )syntax-error( "Range out of order in character class" +[za-\d] v )syntax-error( "Invalid character class" +[za-\k] v )syntax-error( "Invalid escape" +[za-\q{] v )syntax-error( "Invalid character in character class" +[za-\q{}] v )syntax-error( "Invalid character class" +[za-[] v )syntax-error( "Invalid character class" !ignore-error-message +[za-[]] v )syntax-error( "Invalid character class" +[za-&&] v )syntax-error( "Invalid set operation in character class" +[za-/] v )syntax-error( "Invalid character in character class" +[za-b-c] v )syntax-error( "Invalid character class" +[za-&&] v )syntax-error( "Invalid set operation in character class" +[za-##] v )syntax-error( "Invalid set operation in character class" +[za--] v )syntax-error( "Invalid set operation in character class" +[za---] v )syntax-error( "Invalid set operation in character class" +[za--b-] v )syntax-error( "Invalid set operation in character class" +[za--b-c] v )syntax-error( "Invalid set operation in character class" +[za--b--] v )syntax-error( "Invalid set operation in character class" +[za--b---] v )syntax-error( "Invalid set operation in character class" +[za--b&&c] v )syntax-error( "Invalid set operation in character class" +[za--b##c] v )syntax-error( "Invalid set operation in character class" +[za--##] v )syntax-error( "Invalid set operation in character class" +[za--\k] v )syntax-error( "Invalid set operation in character class" +[za&&b&] v )syntax-error( "Invalid set operation in character class" +[za&&b&c] v )syntax-error( "Invalid set operation in character class" +[za&&b&&] v )syntax-error( "Invalid set operation in character class" +[za&&b&&&] v )syntax-error( "Invalid set operation in character class" +[za&&b--c] v )syntax-error( "Invalid set operation in character class" +[za&&b##c] v )syntax-error( "Invalid set operation in character class" +[za&&##] v )syntax-error( "Invalid set operation in character class" +[za&&\k] v )syntax-error( "Invalid set operation in character class" +[za##] v )syntax-error( "Invalid set operation in character class" + +[[]-] v )syntax-error( "Invalid character class" +[[]-0] v )syntax-error( "Invalid character class" +[[]-\0] v )syntax-error( "Invalid character class" +[[]-\d] v )syntax-error( "Invalid character class" +[[]-\k] v )syntax-error( "Invalid character class" +[[]-\q{] v )syntax-error( "Invalid character class" +[[]-\q{}] v )syntax-error( "Invalid character class" +[[]-[] v )syntax-error( "Invalid character class" !ignore-error-message +[[]-[]] v )syntax-error( "Invalid character class" +[[]-&&] v )syntax-error( "Invalid character class" +[[]-/] v )syntax-error( "Invalid character class" +[[]-b-c] v )syntax-error( "Invalid character class" +[[]-&&] v )syntax-error( "Invalid character class" +[[]-##] v )syntax-error( "Invalid character class" +[[]--] v )syntax-error( "Invalid character in character class" +[[]---] v )syntax-error( "Invalid character in character class" +[[]--b-] v )syntax-error( "Invalid set operation in character class" +[[]--b-c] v )syntax-error( "Invalid set operation in character class" +[[]--b--] v )syntax-error( "Invalid character in character class" +[[]--b---] v )syntax-error( "Invalid character in character class" +[[]--b&&c] v )syntax-error( "Invalid set operation in character class" +[[]--b##c] v )syntax-error( "Invalid set operation in character class" +[[]--##] v )syntax-error( "Invalid set operation in character class" +[[]--\k] v )syntax-error( "Invalid escape" +[[]&&b&] v )syntax-error( "Invalid set operation in character class" +[[]&&b&c] v )syntax-error( "Invalid set operation in character class" +[[]&&b&&] v )syntax-error( "Invalid character in character class" +[[]&&b&&&] v )syntax-error( "Invalid character in character class" +[[]&&b--c] v )syntax-error( "Invalid set operation in character class" +[[]&&b##c] v )syntax-error( "Invalid set operation in character class" +[[]&&##] v )syntax-error( "Invalid set operation in character class" +[[]&&\k] v )syntax-error( "Invalid escape" +[[]##] v )syntax-error( "Invalid set operation in character class" + +[z[]-] v )syntax-error( "Invalid character class" +[z[]-0] v )syntax-error( "Invalid character class" +[z[]-\0] v )syntax-error( "Invalid character class" +[z[]-\d] v )syntax-error( "Invalid character class" +[z[]-\k] v )syntax-error( "Invalid character class" +[z[]-\q{] v )syntax-error( "Invalid character class" +[z[]-\q{}] v )syntax-error( "Invalid character class" +[z[]-[] v )syntax-error( "Invalid character class" !ignore-error-message +[z[]-[]] v )syntax-error( "Invalid character class" +[z[]-&&] v )syntax-error( "Invalid character class" +[z[]-/] v )syntax-error( "Invalid character class" +[z[]-b-c] v )syntax-error( "Invalid character class" +[z[]-&&] v )syntax-error( "Invalid character class" +[z[]-##] v )syntax-error( "Invalid character class" +[z[]--] v )syntax-error( "Invalid set operation in character class" +[z[]---] v )syntax-error( "Invalid set operation in character class" +[z[]--b-] v )syntax-error( "Invalid set operation in character class" +[z[]--b-c] v )syntax-error( "Invalid set operation in character class" +[z[]--b--] v )syntax-error( "Invalid set operation in character class" +[z[]--b---] v )syntax-error( "Invalid set operation in character class" +[z[]--b&&c] v )syntax-error( "Invalid set operation in character class" +[z[]--b##c] v )syntax-error( "Invalid set operation in character class" +[z[]--##] v )syntax-error( "Invalid set operation in character class" +[z[]--\k] v )syntax-error( "Invalid set operation in character class" +[z[]&&b&] v )syntax-error( "Invalid set operation in character class" +[z[]&&b&c] v )syntax-error( "Invalid set operation in character class" +[z[]&&b&&] v )syntax-error( "Invalid set operation in character class" +[z[]&&b&&&] v )syntax-error( "Invalid set operation in character class" +[z[]&&b--c] v )syntax-error( "Invalid set operation in character class" +[z[]&&b##c] v )syntax-error( "Invalid set operation in character class" +[z[]&&##] v )syntax-error( "Invalid set operation in character class" +[z[]&&\k] v )syntax-error( "Invalid set operation in character class" +[z[]##] v )syntax-error( "Invalid set operation in character class" + +## Class set disjunction edge cases + +\q v )syntax-error( q "Invalid escape" +\q{ v )syntax-error( q{ "Invalid escape" !ignore-error-message +\q{} v )syntax-error( \q{} "Invalid escape" + +[\q] v )syntax-error( [q] "Invalid escape" +[\q{] v )syntax-error( [q{] "Invalid character in character class" +[\q{}] v )inconvertible( [{"captures":[""],"index":0},{"captures":[""],"index":1}] +[\q{ }] v )inconvertible( [{"captures":[" "],"index":0}] +[\q{|}] v )inconvertible( [{"captures":[""],"index":0},{"captures":[""],"index":1},{"captures":[""],"index":2}] +[\q{ | }] v )inconvertible( [{"captures":[" "],"index":0},{"captures":[" "],"index":1}] +[\q{-}] v )syntax-error( - "Invalid character in character class" +[\q{--}] v )syntax-error( -- "Invalid character in character class" +[\q{&}] v )inconvertible( & [{"captures":["&"],"index":0}] +[\q{&&}] v )syntax-error( && "Invalid set operation in character class" +[\q{#}] v )inconvertible( ## [{"captures":["#"],"index":0},{"captures":["#"],"index":1}] +[\q{##}] v )syntax-error( ## "Invalid set operation in character class" +[\q{/}] v )syntax-error( // "Invalid character in character class" +[\q{/}] v )syntax-error( // "Invalid character in character class" +[\q{\}] v )syntax-error( \\ "Invalid character in character class" +[\q{\}] v )syntax-error( \\ "Invalid character in character class" +[\q{\0}] v )inconvertible( 0 [] +[\q{\d}] v )syntax-error( 0 "Invalid escape" +[\q{\p{Sc}}] v )syntax-error( 0 "Invalid escape" +[\q{\q{0}}] v )syntax-error( 0 "Invalid escape" + +[^\q{}] v )syntax-error( abc "Negated character class may contain strings" +[^\q{a}] v )inconvertible( abc [{"captures":["b"],"index":1},{"captures":["c"],"index":2}] +[^\q{ab|c}] v )syntax-error( abc "Negated character class may contain strings" +[^\q{a|b|c}] v )inconvertible( abc [] + +[[^\q{}]] v )syntax-error( abc "Negated character class may contain strings" +[[^\q{a}]] v )inconvertible( abc [{"captures":["b"],"index":1},{"captures":["c"],"index":2}] +[[^\q{ab|c}]] v )syntax-error( abc "Negated character class may contain strings" +[[^\q{a|b|c}]] v )inconvertible( abc [] + +/[^\q{a}--\q{a}]/v v )inconvertible( abc [] +/[^\q{a}--\q{ab}]/v v )inconvertible( abc [] +/[^\q{ab}--\q{ab}]/v v )syntax-error( abc "Negated character class may contain strings" +/[^\q{ab}--\q{a}]/v v )syntax-error( abc "Negated character class may contain strings" +/[^\q{ab|c}--\q{ab}]/v v )syntax-error( abc "Negated character class may contain strings" +/[^\q{a|b|c}--\q{ab}]/v v )inconvertible( abc [] + +/[^[\q{a}]--[\q{a}]]/v v )inconvertible( abc [] +/[^[\q{a}]--[\q{ab}]]/v v )inconvertible( abc [] +/[^[\q{ab}]--[\q{ab}]]/v v )syntax-error( abc "Negated character class may contain strings" +/[^[\q{ab}]--[\q{a}]]/v v )syntax-error( abc "Negated character class may contain strings" +/[^[\q{ab|c}]--[\q{ab}]]/v v )syntax-error( abc "Negated character class may contain strings" +/[^[\q{a|b|c}]--[\q{ab}]]/v v )inconvertible( abc [] + +/[^\q{a}&&\q{a}]/v v )inconvertible( abc [] +/[^\q{a}&&\q{ab}]/v v )inconvertible( abc [] +/[^\q{ab}&&\q{ab}]/v v )syntax-error( abc "Negated character class may contain strings" +/[^\q{ab}&&\q{a}]/v v )inconvertible( abc [] +/[^\q{ab|c}&&\q{ab}]/v v )syntax-error( abc "Negated character class may contain strings" +/[^\q{a|b|c}&&\q{ab}]/v v )inconvertible( abc [] + +/[^[\q{a}]&&[\q{a}]]/v v )inconvertible( abc [] +/[^[\q{a}]&&[\q{ab}]]/v v )inconvertible( abc [] +/[^[\q{ab}]&&[\q{ab}]]/v v )syntax-error( abc "Negated character class may contain strings" +/[^[\q{ab}]&&[\q{a}]]/v v )inconvertible( abc [] +/[^[\q{ab|c}]&&[\q{ab}]]/v v )syntax-error( abc "Negated character class may contain strings" +/[^[\q{a|b|c}]&&[\q{ab}]]/v v )inconvertible( abc [] + +/[^\q{a}--[\q{b}--[\q{c}]]]/v v )inconvertible( abc [] +/[^\q{ab|c}--[\q{ab}--[\q{c}]]]/v v )syntax-error( abc "Negated character class may contain strings" +/[^\q{a|b|c}--[\q{ab}--[\q{c}]]]/v v )inconvertible( abc [] + +/[^\q{a}--[\q{b}&&[\q{c}]]]/v v )inconvertible( abc [] +/[^\q{ab|c}--[\q{ab}&&[\q{c}]]]/v v )syntax-error( abc "Negated character class may contain strings" +/[^\q{a|b|c}--[\q{ab}&&[\q{c}]]]/v v )inconvertible( abc [] + +/[^\q{a}&&[\q{b}--[\q{c}]]]/v v )inconvertible( abc [] +/[^\q{ab|c}&&[\q{ab}--[\q{c}]]]/v v )syntax-error( abc "Negated character class may contain strings" +/[^\q{a|b|c}&&[\q{ab}--[\q{c}]]]/v v )inconvertible( abc [] + +/[^\q{a}&&[\q{b}&&[\q{c}]]]/v v )inconvertible( abc [] +/[^\q{ab|c}&&[\q{ab}&&[\q{c}]]]/v v )inconvertible( abc [] +/[^\q{a|b|c}&&[\q{ab}&&[\q{c}]]]/v v )inconvertible( abc [] + +# Class set success cases + +[a\\-b] v )inconvertible( abc123 [{"captures":["a"],"index":0},{"captures":["b"],"index":1}] + +[a&&b] v )inconvertible( abc123 [] +[a--b] v )inconvertible( abc123 [{"captures":["a"],"index":0}] +[[a-z]&&[aeiou]] v )inconvertible( abc123 [{"captures":["a"],"index":0}] +[[a-z]--[aeiou]] v )inconvertible( abc123 [{"captures":["b"],"index":1},{"captures":["c"],"index":2}] +[[a-f][0-9]] v )inconvertible( abc123 [{"captures":["a"],"index":0},{"captures":["b"],"index":1},{"captures":["c"],"index":2},{"captures":["1"],"index":3},{"captures":["2"],"index":4},{"captures":["3"],"index":5}] +[[[a-f]--[b]][0-9]] v )inconvertible( abc123 [{"captures":["a"],"index":0},{"captures":["c"],"index":2},{"captures":["1"],"index":3},{"captures":["2"],"index":4},{"captures":["3"],"index":5}] +[\\p{Decimal_Number}&&[0-9]] v )syntax-error( abc123 "Invalid character in character class" + + +[\\q{a}] v )syntax-error( abc123 "Invalid character in character class" +[\\q{a|}] v )syntax-error( "Invalid character in character class" +[\\q{|a}] v )syntax-error( "Invalid character in character class" +[\\q{abc|def}] v )syntax-error( abc123 "Invalid character in character class" +[\\q{abc|d|ef}] v )syntax-error( abc123 "Invalid character in character class" + # Issues ## https://github.com/sebastienros/esprima-dotnet/issues/358 ^[\\d--\\d]+$ )syntax-error( 012abc "Range out of order in character class" ^[\\d--\\d]+$ u )syntax-error( 012abc "Range out of order in character class" +^[\\d--\\d]+$ v )syntax-error( 012abc "Invalid set operation in character class" ^[\d--\d]+$ "^[\\d\\x2D\\x2D\\d]+$" 012abc [] ^[\d--\d]+$ u )syntax-error( 012abc "Invalid character class" +^[\d--\d]+$ v )inconvertible( 012abc [] ## https://github.com/sebastienros/esprima-dotnet/issues/371 \ [] \ u )syntax-error( "Invalid escape" +\ v )syntax-error( "Invalid escape" \ [{"captures":[""],"index":3}] \ u )syntax-error( "Invalid escape" +\ v )syntax-error( "Invalid escape" ## https://github.com/sebastienros/jint/issues/506 [^]?(:[rp][el]a[\w-]+)[^] "[\\s\\S]?(:[rp][el]a[\\w-]+)[\\s\\S]" :reagent- [{"captures":[":reagent-",":reagent"],"index":0}] [^]?(:[rp][el]a[\w-]+)[^] u "(?:[\ud800-\udbff][\udc00-\udfff]|[\ud800-\udbff](?![\udc00-\udfff])|(?(expr); + Assert.Null(expr.As().Value); + } + + [Fact] + public void FlagV_ConversionReportsSyntaxErrorsFirst() + { + // Syntax error should take precedence over conversion-not-supported error. + var ex = Assert.ThrowsAny(() => + Tokenizer.AdaptRegExp("[", "v", compiled: false, TimeSpan.FromSeconds(5), throwIfNotAdaptable: true)); + Assert.Contains("Unterminated character class", ex.Message); + } + + [Fact] + public void FlagV_IsMutuallyExclusiveWithUFlag() + { + var parser = new Parser(new ParserOptions + { + RegExpParseMode = RegExpParseMode.Validate, + Tolerant = false + }); + Assert.ThrowsAny(() => parser.ParseExpression("/abc/uv")); + } + + [Fact] + public void FlagV_IsSyntaxErrorBeforeES2024() + { + var parser = new Parser(new ParserOptions + { + RegExpParseMode = RegExpParseMode.Validate, + Tolerant = false, + EcmaVersion = EcmaVersion.ES2023 + }); + Assert.ThrowsAny(() => parser.ParseExpression("/abc/v")); + } }