This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
check for PA* in both branches of case
[perl5.git] / regen / feature.pl
CommitLineData
69bcf1d3
FC
1#!/usr/bin/perl
2#
3# Regenerate (overwriting only if changed):
4#
5# lib/feature.pm
f2c01b15 6# feature.h
69bcf1d3 7#
3489ea76 8# from information hardcoded into this script and from two #defines
d73d634c 9# in perl.h.
69bcf1d3
FC
10#
11# This script is normally invoked from regen.pl.
12
13BEGIN {
14 require 'regen/regen_lib.pl';
15 push @INC, './lib';
16}
17use strict ;
18
c452a42f
FC
19
20###########################################################################
21# Hand-editable data
22
c6b36e45 23# (feature name) => (internal name, used in %^H and macro names)
69bcf1d3 24my %feature = (
67bdaa9e
FC
25 say => 'say',
26 state => 'state',
27 switch => 'switch',
28 evalbytes => 'evalbytes',
3fff3427 29 array_base => 'arybase',
67bdaa9e
FC
30 current_sub => '__SUB__',
31 unicode_eval => 'unieval',
32 unicode_strings => 'unicode',
2a4315f8 33 fc => 'fc',
69bcf1d3
FC
34);
35
40e4d872
FC
36# NOTE: If a feature is ever enabled in a non-contiguous range of Perl
37# versions, any code below that uses %BundleRanges will have to
38# be changed to account.
39
69bcf1d3 40my %feature_bundle = (
39ec54a5 41 all => [ keys %feature ],
3fff3427 42 default => [qw(array_base)],
69bcf1d3
FC
43 "5.9.5" => [qw(say state switch array_base)],
44 "5.10" => [qw(say state switch array_base)],
45 "5.11" => [qw(say state switch unicode_strings array_base)],
46 "5.12" => [qw(say state switch unicode_strings array_base)],
47 "5.13" => [qw(say state switch unicode_strings array_base)],
48 "5.14" => [qw(say state switch unicode_strings array_base)],
49 "5.15" => [qw(say state switch unicode_strings unicode_eval
2a4315f8 50 evalbytes current_sub fc)],
69bcf1d3 51 "5.16" => [qw(say state switch unicode_strings unicode_eval
2a4315f8 52 evalbytes current_sub fc)],
69bcf1d3
FC
53);
54
c452a42f 55
69bcf1d3 56###########################################################################
c452a42f 57# More data generated from the above
69bcf1d3 58
f2c01b15
FC
59my %UniqueBundles; # "say state switch" => 5.10
60my %Aliases; # 5.12 => 5.11
61for( sort keys %feature_bundle ) {
62 my $value = join(' ', sort @{$feature_bundle{$_}});
63 if (exists $UniqueBundles{$value}) {
64 $Aliases{$_} = $UniqueBundles{$value};
65 }
66 else {
67 $UniqueBundles{$value} = $_;
68 }
69}
40e4d872
FC
70 # start end
71my %BundleRanges; # say => ['5.10', '5.15'] # unique bundles for values
72for my $bund (
73 sort { $a eq 'default' ? -1 : $b eq 'default' ? 1 : $a cmp $b }
74 values %UniqueBundles
75) {
03222170 76 next if $bund =~ /[^\d.]/ and $bund ne 'default';
40e4d872
FC
77 for (@{$feature_bundle{$bund}}) {
78 if (@{$BundleRanges{$_} ||= []} == 2) {
79 $BundleRanges{$_}[1] = $bund
80 }
81 else {
82 push @{$BundleRanges{$_}}, $bund;
83 }
84 }
85}
69bcf1d3 86
47222a2d 87my $HintShift;
ada44f8c 88my $HintMask;
3489ea76 89my $Uni8Bit;
47222a2d
FC
90
91open "perl.h", "perl.h" or die "$0 cannot open perl.h: $!";
3489ea76
FC
92while (readline "perl.h") {
93 next unless /#\s*define\s+(HINT_FEATURE_MASK|HINT_UNI_8_BIT)/;
94 my $is_u8b = $1 =~ 8;
95 /(0x[A-Fa-f0-9]+)/ or die "No hex number in:\n\n$_\n ";
96 if ($is_u8b) {
97 $Uni8Bit = $1;
98 }
99 else {
ada44f8c 100 my $hex = $HintMask = $1;
47222a2d
FC
101 my $bits = sprintf "%b", oct $1;
102 $bits =~ /^0*1+(0*)\z/
103 or die "Non-contiguous bits in $bits (binary for $hex):\n\n$_\n ";
104 $HintShift = length $1;
105 my $bits_needed =
106 length sprintf "%b", scalar keys %UniqueBundles;
107 $bits =~ /1{$bits_needed}/
108 or die "Not enough bits (need $bits_needed)"
5d826eae 109 . " in $bits (binary for $hex):\n\n$_\n ";
47222a2d 110 }
3489ea76 111 if ($Uni8Bit && $HintMask) { last }
47222a2d 112}
3489ea76
FC
113die "No HINT_FEATURE_MASK defined in perl.h" unless $HintMask;
114die "No HINT_UNI_8_BIT defined in perl.h" unless $Uni8Bit;
115
47222a2d
FC
116close "perl.h";
117
ada44f8c
FC
118my @HintedBundles =
119 ('default', grep !/[^\d.]/, sort values %UniqueBundles);
120
47222a2d 121
f2c01b15 122###########################################################################
c452a42f 123# Open files to be generated
f2c01b15
FC
124
125my ($pm, $h) = map {
69bcf1d3 126 open_new($_, '>', { by => 'regen/feature.pl' });
f2c01b15 127} 'lib/feature.pm', 'feature.h';
69bcf1d3
FC
128
129
c452a42f
FC
130###########################################################################
131# Generate lib/feature.pm
132
69bcf1d3
FC
133while (<DATA>) {
134 last if /^FEATURES$/ ;
135 print $pm $_ ;
136}
137
138sub longest {
139 my $long;
140 for(@_) {
141 if (!defined $long or length $long < length) {
142 $long = $_;
143 }
144 }
145 $long;
146}
147
0bb01b05 148print $pm "our %feature = (\n";
69bcf1d3
FC
149my $width = length longest keys %feature;
150for(sort { length $a <=> length $b } keys %feature) {
67bdaa9e
FC
151 print $pm " $_" . " "x($width-length)
152 . " => 'feature_$feature{$_}',\n";
69bcf1d3
FC
153}
154print $pm ");\n\n";
155
69bcf1d3 156print $pm "our %feature_bundle = (\n";
88da30d7
FC
157$width = length longest values %UniqueBundles;
158for( sort { $UniqueBundles{$a} cmp $UniqueBundles{$b} }
159 keys %UniqueBundles ) {
160 my $bund = $UniqueBundles{$_};
161 print $pm qq' "$bund"' . " "x($width-length $bund)
162 . qq' => [qw($_)],\n';
69bcf1d3
FC
163}
164print $pm ");\n\n";
165
88da30d7
FC
166for (sort keys %Aliases) {
167 print $pm
168 qq'\$feature_bundle{"$_"} = \$feature_bundle{"$Aliases{$_}"};\n';
169};
69bcf1d3 170
ada44f8c
FC
171print $pm <<EOPM;
172
0bb01b05
FC
173our \$hint_shift = $HintShift;
174our \$hint_mask = $HintMask;
175our \@hint_bundles = qw( @HintedBundles );
3489ea76
FC
176
177# This gets set (for now) in \$^H as well as in %^H,
178# for runtime speed of the uc/lc/ucfirst/lcfirst functions.
179# See HINT_UNI_8_BIT in perl.h.
180our \$hint_uni8bit = $Uni8Bit;
ada44f8c
FC
181EOPM
182
69bcf1d3
FC
183
184while (<DATA>) {
2b3fe414
FC
185 last if /^PODTURES$/ ;
186 print $pm $_ ;
187}
188
189select +(select($pm), $~ = 'PODTURES')[0];
190format PODTURES =
191 ^<<<<<<<< ^<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<~~
192$::bundle, $::feature
193.
194
195for ('default', sort grep /\.\d[02468]/, keys %feature_bundle) {
196 $::bundle = ":$_";
197 $::feature = join ' ', @{$feature_bundle{$_}};
198 write $pm;
199 print $pm "\n";
200}
201
202while (<DATA>) {
69bcf1d3
FC
203 print $pm $_ ;
204}
205
206read_only_bottom_close_and_rename($pm);
207
c452a42f
FC
208
209###########################################################################
210# Generate feature.h
211
f2c01b15
FC
212print $h <<EOH;
213
214#if defined(PERL_CORE) || defined (PERL_EXT)
215
216#define HINT_FEATURE_SHIFT $HintShift
217
f2c01b15
FC
218EOH
219
220my $count;
016d11cb
FC
221for (@HintedBundles) {
222 (my $key = uc) =~ y/.//d;
223 print $h "#define FEATURE_BUNDLE_$key ", $count++, "\n";
f2c01b15
FC
224}
225
7d058bc9 226print $h <<'EOH';
2b9e0ab7 227#define FEATURE_BUNDLE_CUSTOM (HINT_FEATURE_MASK >> HINT_FEATURE_SHIFT)
f2c01b15 228
7d058bc9 229#define CURRENT_HINTS \
d1fd0100 230 (PL_curcop == &PL_compiling ? PL_hints : PL_curcop->cop_hints)
035b6821
FC
231#define CURRENT_FEATURE_BUNDLE \
232 ((CURRENT_HINTS & HINT_FEATURE_MASK) >> HINT_FEATURE_SHIFT)
d1fd0100 233
fc4b5f72
NC
234/* Avoid using ... && Perl_feature_is_enabled(...) as that triggers a bug in
235 the HP-UX cc on PA-RISC */
7d058bc9 236#define FEATURE_IS_ENABLED(name) \
ef744b29 237 ((CURRENT_HINTS \
7d058bc9 238 & HINT_LOCALIZE_HH) \
fc4b5f72 239 ? Perl_feature_is_enabled(aTHX_ STR_WITH_LEN(name)) : FALSE)
7d058bc9 240/* The longest string we pass in. */
03222170
FC
241EOH
242
1b6e8741
FC
243my $longest_internal_feature_name = longest values %feature;
244print $h <<EOL;
245#define MAX_FEATURE_LEN (sizeof("$longest_internal_feature_name")-1)
246
247EOL
248
03222170 249for (
3fff3427 250 sort { length $a <=> length $b } keys %feature
03222170
FC
251) {
252 my($first,$last) =
253 map { (my $__ = uc) =~ y/.//d; $__ } @{$BundleRanges{$_}};
3fff3427 254 my $name = $feature{$_};
03222170 255 my $NAME = uc $name;
beda0318
FC
256 if ($last && $first eq 'DEFAULT') { # ‘>= DEFAULT’ warns
257 print $h <<EOI;
258#define FEATURE_$NAME\_IS_ENABLED \\
259 ( \\
260 CURRENT_FEATURE_BUNDLE <= FEATURE_BUNDLE_$last \\
261 || (CURRENT_FEATURE_BUNDLE == FEATURE_BUNDLE_CUSTOM && \\
3fff3427 262 FEATURE_IS_ENABLED("$name")) \\
beda0318
FC
263 )
264
265EOI
266 }
267 elsif ($last) {
03222170
FC
268 print $h <<EOH3;
269#define FEATURE_$NAME\_IS_ENABLED \\
270 ( \\
271 (CURRENT_FEATURE_BUNDLE >= FEATURE_BUNDLE_$first && \\
272 CURRENT_FEATURE_BUNDLE <= FEATURE_BUNDLE_$last) \\
273 || (CURRENT_FEATURE_BUNDLE == FEATURE_BUNDLE_CUSTOM && \\
3fff3427 274 FEATURE_IS_ENABLED("$name")) \\
03222170
FC
275 )
276
277EOH3
278 }
279 else {
280 print $h <<EOH4;
281#define FEATURE_$NAME\_IS_ENABLED \\
282 ( \\
283 CURRENT_FEATURE_BUNDLE == FEATURE_BUNDLE_$first \\
284 || (CURRENT_FEATURE_BUNDLE == FEATURE_BUNDLE_CUSTOM && \\
3fff3427 285 FEATURE_IS_ENABLED("$name")) \\
03222170
FC
286 )
287
288EOH4
289 }
290}
291
292print $h <<EOH;
293
f2c01b15 294#endif /* PERL_CORE or PERL_EXT */
4160ddbd
FC
295
296#ifdef PERL_IN_OP_C
297PERL_STATIC_INLINE void
298S_enable_feature_bundle(pTHX_ SV *ver)
299{
300 SV *comp_ver = sv_newmortal();
301 PL_hints = (PL_hints &~ HINT_FEATURE_MASK)
302 | (
f2c01b15
FC
303EOH
304
4160ddbd
FC
305for (reverse @HintedBundles[1..$#HintedBundles]) { # skip default
306 my $numver = $_;
307 if ($numver eq '5.10') { $numver = '5.009005' } # special case
308 else { $numver =~ s/\./.0/ } # 5.11 => 5.011
309 (my $macrover = $_) =~ y/.//d;
310 print $h <<" EOK";
311 (sv_setnv(comp_ver, $numver),
312 vcmp(ver, upg_version(comp_ver, FALSE)) >= 0)
313 ? FEATURE_BUNDLE_$macrover :
314 EOK
315}
316
317print $h <<EOJ;
318 FEATURE_BUNDLE_DEFAULT
319 ) << HINT_FEATURE_SHIFT;
6389c777
FC
320 /* special case */
321 assert(PL_curcop == &PL_compiling);
322 if (FEATURE_UNICODE_IS_ENABLED) PL_hints |= HINT_UNI_8_BIT;
323 else PL_hints &= ~HINT_UNI_8_BIT;
4160ddbd
FC
324}
325#endif /* PERL_IN_OP_C */
326EOJ
327
f2c01b15
FC
328read_only_bottom_close_and_rename($h);
329
c452a42f
FC
330
331###########################################################################
332# Template for feature.pm
333
69bcf1d3
FC
334__END__
335package feature;
336
39ec54a5 337our $VERSION = '1.27';
69bcf1d3
FC
338
339FEATURES
340
69bcf1d3
FC
341# TODO:
342# - think about versioned features (use feature switch => 2)
343
344=head1 NAME
345
346feature - Perl pragma to enable new features
347
348=head1 SYNOPSIS
349
350 use feature qw(say switch);
351 given ($foo) {
352 when (1) { say "\$foo == 1" }
353 when ([2,3]) { say "\$foo == 2 || \$foo == 3" }
354 when (/^a[bc]d$/) { say "\$foo eq 'abd' || \$foo eq 'acd'" }
355 when ($_ > 100) { say "\$foo > 100" }
356 default { say "None of the above" }
357 }
358
359 use feature ':5.10'; # loads all features available in perl 5.10
360
361 use v5.10; # implicitly loads :5.10 feature bundle
362
363=head1 DESCRIPTION
364
365It is usually impossible to add new syntax to Perl without breaking
366some existing programs. This pragma provides a way to minimize that
367risk. New syntactic constructs, or new semantic meanings to older
368constructs, can be enabled by C<use feature 'foo'>, and will be parsed
369only when the appropriate feature pragma is in scope. (Nevertheless, the
370C<CORE::> prefix provides access to all Perl keywords, regardless of this
371pragma.)
372
373=head2 Lexical effect
374
375Like other pragmas (C<use strict>, for example), features have a lexical
376effect. C<use feature qw(foo)> will only make the feature "foo" available
377from that point to the end of the enclosing block.
378
379 {
380 use feature 'say';
381 say "say is available here";
382 }
383 print "But not here.\n";
384
385=head2 C<no feature>
386
387Features can also be turned off by using C<no feature "foo">. This too
388has lexical effect.
389
390 use feature 'say';
391 say "say is available here";
392 {
393 no feature 'say';
394 print "But not here.\n";
395 }
396 say "Yet it is here.";
397
39ec54a5
RS
398C<no feature> with no features specified will reset to the default group. To
399disable I<all> features (an unusual request!) use C<no feature ':all'>.
69bcf1d3
FC
400
401=head1 AVAILABLE FEATURES
402
403=head2 The 'say' feature
404
405C<use feature 'say'> tells the compiler to enable the Perl 6 style
406C<say> function.
407
408See L<perlfunc/say> for details.
409
410This feature is available starting with Perl 5.10.
411
412=head2 The 'state' feature
413
414C<use feature 'state'> tells the compiler to enable C<state>
415variables.
416
417See L<perlsub/"Persistent Private Variables"> for details.
418
419This feature is available starting with Perl 5.10.
420
421=head2 The 'switch' feature
422
423C<use feature 'switch'> tells the compiler to enable the Perl 6
424given/when construct.
425
48238296 426See L<perlsyn/"Switch Statements"> for details.
69bcf1d3
FC
427
428This feature is available starting with Perl 5.10.
429
430=head2 The 'unicode_strings' feature
431
432C<use feature 'unicode_strings'> tells the compiler to use Unicode semantics
433in all string operations executed within its scope (unless they are also
434within the scope of either C<use locale> or C<use bytes>). The same applies
435to all regular expressions compiled within the scope, even if executed outside
436it.
437
438C<no feature 'unicode_strings'> tells the compiler to use the traditional
439Perl semantics wherein the native character set semantics is used unless it is
440clear to Perl that Unicode is desired. This can lead to some surprises
441when the behavior suddenly changes. (See
442L<perlunicode/The "Unicode Bug"> for details.) For this reason, if you are
443potentially using Unicode in your program, the
444C<use feature 'unicode_strings'> subpragma is B<strongly> recommended.
445
2e2b2571
KW
446This feature is available starting with Perl 5.12; was almost fully
447implemented in Perl 5.14; and extended in Perl 5.16 to cover C<quotemeta>.
69bcf1d3
FC
448
449=head2 The 'unicode_eval' and 'evalbytes' features
450
451Under the C<unicode_eval> feature, Perl's C<eval> function, when passed a
452string, will evaluate it as a string of characters, ignoring any
453C<use utf8> declarations. C<use utf8> exists to declare the encoding of
454the script, which only makes sense for a stream of bytes, not a string of
455characters. Source filters are forbidden, as they also really only make
456sense on strings of bytes. Any attempt to activate a source filter will
457result in an error.
458
459The C<evalbytes> feature enables the C<evalbytes> keyword, which evaluates
460the argument passed to it as a string of bytes. It dies if the string
461contains any characters outside the 8-bit range. Source filters work
462within C<evalbytes>: they apply to the contents of the string being
463evaluated.
464
465Together, these two features are intended to replace the historical C<eval>
466function, which has (at least) two bugs in it, that cannot easily be fixed
467without breaking existing programs:
468
469=over
470
471=item *
472
473C<eval> behaves differently depending on the internal encoding of the
474string, sometimes treating its argument as a string of bytes, and sometimes
475as a string of characters.
476
477=item *
478
479Source filters activated within C<eval> leak out into whichever I<file>
480scope is currently being compiled. To give an example with the CPAN module
481L<Semi::Semicolons>:
482
483 BEGIN { eval "use Semi::Semicolons; # not filtered here " }
484 # filtered here!
485
486C<evalbytes> fixes that to work the way one would expect:
487
488 use feature "evalbytes";
489 BEGIN { evalbytes "use Semi::Semicolons; # filtered " }
490 # not filtered
491
492=back
493
494These two features are available starting with Perl 5.16.
495
496=head2 The 'current_sub' feature
497
498This provides the C<__SUB__> token that returns a reference to the current
499subroutine or C<undef> outside of a subroutine.
500
501This feature is available starting with Perl 5.16.
502
503=head2 The 'array_base' feature
504
505This feature supports the legacy C<$[> variable. See L<perlvar/$[> and
506L<arybase>. It is on by default but disabled under C<use v5.16> (see
507L</IMPLICIT LOADING>, below).
508
509This feature is available under this name starting with Perl 5.16. In
510previous versions, it was simply on all the time, and this pragma knew
511nothing about it.
512
2a4315f8
BF
513=head2 The 'fc' feature
514
515C<use feature 'fc'> tells the compiler to enable the C<fc> function,
516which implements Unicode casefolding.
517
518See L<perlfunc/fc> for details.
519
520This feature is available from Perl 5.16 onwards.
521
69bcf1d3
FC
522=head1 FEATURE BUNDLES
523
524It's possible to load multiple features together, using
525a I<feature bundle>. The name of a feature bundle is prefixed with
526a colon, to distinguish it from an actual feature.
527
528 use feature ":5.10";
529
530The following feature bundles are available:
531
532 bundle features included
533 --------- -----------------
2b3fe414 534PODTURES
69bcf1d3
FC
535The C<:default> bundle represents the feature set that is enabled before
536any C<use feature> or C<no feature> declaration.
537
538Specifying sub-versions such as the C<0> in C<5.14.0> in feature bundles has
539no effect. Feature bundles are guaranteed to be the same for all sub-versions.
540
541 use feature ":5.14.0"; # same as ":5.14"
542 use feature ":5.14.1"; # same as ":5.14"
543
544=head1 IMPLICIT LOADING
545
546Instead of loading feature bundles by name, it is easier to let Perl do
547implicit loading of a feature bundle for you.
548
549There are two ways to load the C<feature> pragma implicitly:
550
551=over 4
552
553=item *
554
555By using the C<-E> switch on the Perl command-line instead of C<-e>.
556That will enable the feature bundle for that version of Perl in the
557main compilation unit (that is, the one-liner that follows C<-E>).
558
559=item *
560
561By explicitly requiring a minimum Perl version number for your program, with
562the C<use VERSION> construct. That is,
563
564 use v5.10.0;
565
566will do an implicit
567
39ec54a5 568 no feature ':all';
69bcf1d3
FC
569 use feature ':5.10';
570
571and so on. Note how the trailing sub-version
572is automatically stripped from the
573version.
574
575But to avoid portability warnings (see L<perlfunc/use>), you may prefer:
576
577 use 5.010;
578
579with the same effect.
580
581If the required version is older than Perl 5.10, the ":default" feature
582bundle is automatically loaded instead.
583
584=back
585
586=cut
587
588sub import {
589 my $class = shift;
36143a0c
NC
590
591 if (!@_) {
69bcf1d3
FC
592 croak("No features specified");
593 }
36143a0c 594
d3757264 595 __common(1, @_);
69bcf1d3
FC
596}
597
598sub unimport {
599 my $class = shift;
600
39ec54a5 601 # A bare C<no feature> should reset to the default bundle
69bcf1d3 602 if (!@_) {
39ec54a5
RS
603 $^H &= ~($hint_uni8bit|$hint_mask);
604 return;
69bcf1d3
FC
605 }
606
d3757264
NC
607 __common(0, @_);
608}
609
610
611sub __common {
612 my $import = shift;
0c8d5017
NC
613 my $bundle_number = $^H & $hint_mask;
614 my $features = $bundle_number != $hint_mask
615 && $feature_bundle{$hint_bundles[$bundle_number >> $hint_shift]};
616 if ($features) {
da5b5421 617 # Features are enabled implicitly via bundle hints.
d9ee6ccb
NC
618 # Delete any keys that may be left over from last time.
619 delete @^H{ values(%feature) };
620 $^H |= $hint_mask;
621 for (@$features) {
622 $^H{$feature{$_}} = 1;
623 $^H |= $hint_uni8bit if $_ eq 'unicode_strings';
624 }
da5b5421 625 }
69bcf1d3
FC
626 while (@_) {
627 my $name = shift;
628 if (substr($name, 0, 1) eq ":") {
629 my $v = substr($name, 1);
630 if (!exists $feature_bundle{$v}) {
631 $v =~ s/^([0-9]+)\.([0-9]+).[0-9]+$/$1.$2/;
632 if (!exists $feature_bundle{$v}) {
633 unknown_feature_bundle(substr($name, 1));
634 }
635 }
636 unshift @_, @{$feature_bundle{$v}};
637 next;
638 }
36143a0c 639 if (!exists $feature{$name}) {
69bcf1d3 640 unknown_feature($name);
69bcf1d3 641 }
d3757264
NC
642 if ($import) {
643 $^H{$feature{$name}} = 1;
644 $^H |= $hint_uni8bit if $name eq 'unicode_strings';
645 } else {
69bcf1d3
FC
646 delete $^H{$feature{$name}};
647 $^H &= ~ $hint_uni8bit if $name eq 'unicode_strings';
648 }
649 }
650}
651
652sub unknown_feature {
653 my $feature = shift;
654 croak(sprintf('Feature "%s" is not supported by Perl %vd',
655 $feature, $^V));
656}
657
658sub unknown_feature_bundle {
659 my $feature = shift;
660 croak(sprintf('Feature bundle "%s" is not supported by Perl %vd',
661 $feature, $^V));
662}
663
664sub croak {
665 require Carp;
666 Carp::croak(@_);
667}
668
6691;