Passed
Push — main ( d71083...2cb152 )
by TARIQ
26:26
created
brighty/vendor/nikic/php-parser/lib/PhpParser/PrettyPrinter/Standard.php 1 patch
Indentation   +88 added lines, -88 removed lines patch added patch discarded remove patch
@@ -19,18 +19,18 @@  discard block
 block discarded – undo
19 19
 
20 20
     protected function pParam(Node\Param $node) {
21 21
         return $this->pAttrGroups($node->attrGroups, true)
22
-             . $this->pModifiers($node->flags)
23
-             . ($node->type ? $this->p($node->type) . ' ' : '')
24
-             . ($node->byRef ? '&' : '')
25
-             . ($node->variadic ? '...' : '')
26
-             . $this->p($node->var)
27
-             . ($node->default ? ' = ' . $this->p($node->default) : '');
22
+                . $this->pModifiers($node->flags)
23
+                . ($node->type ? $this->p($node->type) . ' ' : '')
24
+                . ($node->byRef ? '&' : '')
25
+                . ($node->variadic ? '...' : '')
26
+                . $this->p($node->var)
27
+                . ($node->default ? ' = ' . $this->p($node->default) : '');
28 28
     }
29 29
 
30 30
     protected function pArg(Node\Arg $node) {
31 31
         return ($node->name ? $node->name->toString() . ': ' : '')
32
-             . ($node->byRef ? '&' : '') . ($node->unpack ? '...' : '')
33
-             . $this->p($node->value);
32
+                . ($node->byRef ? '&' : '') . ($node->unpack ? '...' : '')
33
+                . $this->p($node->value);
34 34
     }
35 35
 
36 36
     protected function pVariadicPlaceholder(Node\VariadicPlaceholder $node) {
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
 
64 64
     protected function pAttribute(Node\Attribute $node) {
65 65
         return $this->p($node->name)
66
-             . ($node->args ? '(' . $this->pCommaSeparated($node->args) . ')' : '');
66
+                . ($node->args ? '(' . $this->pCommaSeparated($node->args) . ')' : '');
67 67
     }
68 68
 
69 69
     protected function pAttributeGroup(Node\AttributeGroup $node) {
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
                     }
132 132
 
133 133
                     return "<<<'$label'\n$node->value\n$label"
134
-                         . $this->docStringEndToken;
134
+                            . $this->docStringEndToken;
135 135
                 }
136 136
                 /* break missing intentionally */
137 137
             case Scalar\String_::KIND_SINGLE_QUOTED:
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
 
146 146
                     $escaped = $this->escapeString($node->value, null);
147 147
                     return "<<<$label\n" . $escaped . "\n$label"
148
-                         . $this->docStringEndToken;
148
+                            . $this->docStringEndToken;
149 149
                 }
150 150
             /* break missing intentionally */
151 151
             case Scalar\String_::KIND_DOUBLE_QUOTED:
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
                 }
167 167
 
168 168
                 return "<<<$label\n" . $this->pEncapsList($node->parts, null) . "\n$label"
169
-                     . $this->docStringEndToken;
169
+                        . $this->docStringEndToken;
170 170
             }
171 171
         }
172 172
         return '"' . $this->pEncapsList($node->parts, '"') . '"';
@@ -407,8 +407,8 @@  discard block
 block discarded – undo
407 407
     protected function pExpr_Instanceof(Expr\Instanceof_ $node) {
408 408
         list($precedence, $associativity) = $this->precedenceMap[Expr\Instanceof_::class];
409 409
         return $this->pPrec($node->expr, $precedence, $associativity, -1)
410
-             . ' instanceof '
411
-             . $this->pNewVariable($node->class);
410
+                . ' instanceof '
411
+                . $this->pNewVariable($node->class);
412 412
     }
413 413
 
414 414
     // Unary expressions
@@ -507,12 +507,12 @@  discard block
 block discarded – undo
507 507
 
508 508
     protected function pExpr_FuncCall(Expr\FuncCall $node) {
509 509
         return $this->pCallLhs($node->name)
510
-             . '(' . $this->pMaybeMultiline($node->args) . ')';
510
+                . '(' . $this->pMaybeMultiline($node->args) . ')';
511 511
     }
512 512
 
513 513
     protected function pExpr_MethodCall(Expr\MethodCall $node) {
514 514
         return $this->pDereferenceLhs($node->var) . '->' . $this->pObjectProperty($node->name)
515
-             . '(' . $this->pMaybeMultiline($node->args) . ')';
515
+                . '(' . $this->pMaybeMultiline($node->args) . ')';
516 516
     }
517 517
 
518 518
     protected function pExpr_NullsafeMethodCall(Expr\NullsafeMethodCall $node) {
@@ -522,12 +522,12 @@  discard block
 block discarded – undo
522 522
 
523 523
     protected function pExpr_StaticCall(Expr\StaticCall $node) {
524 524
         return $this->pDereferenceLhs($node->class) . '::'
525
-             . ($node->name instanceof Expr
525
+                . ($node->name instanceof Expr
526 526
                 ? ($node->name instanceof Expr\Variable
527 527
                    ? $this->p($node->name)
528 528
                    : '{' . $this->p($node->name) . '}')
529 529
                 : $node->name)
530
-             . '(' . $this->pMaybeMultiline($node->args) . ')';
530
+                . '(' . $this->pMaybeMultiline($node->args) . ')';
531 531
     }
532 532
 
533 533
     protected function pExpr_Empty(Expr\Empty_ $node) {
@@ -583,14 +583,14 @@  discard block
 block discarded – undo
583 583
 
584 584
     protected function pExpr_ArrayItem(Expr\ArrayItem $node) {
585 585
         return (null !== $node->key ? $this->p($node->key) . ' => ' : '')
586
-             . ($node->byRef ? '&' : '')
587
-             . ($node->unpack ? '...' : '')
588
-             . $this->p($node->value);
586
+                . ($node->byRef ? '&' : '')
587
+                . ($node->unpack ? '...' : '')
588
+                . $this->p($node->value);
589 589
     }
590 590
 
591 591
     protected function pExpr_ArrayDimFetch(Expr\ArrayDimFetch $node) {
592 592
         return $this->pDereferenceLhs($node->var)
593
-             . '[' . (null !== $node->dim ? $this->p($node->dim) : '') . ']';
593
+                . '[' . (null !== $node->dim ? $this->p($node->dim) : '') . ']';
594 594
     }
595 595
 
596 596
     protected function pExpr_ConstFetch(Expr\ConstFetch $node) {
@@ -619,12 +619,12 @@  discard block
 block discarded – undo
619 619
 
620 620
     protected function pExpr_Closure(Expr\Closure $node) {
621 621
         return $this->pAttrGroups($node->attrGroups, true)
622
-             . ($node->static ? 'static ' : '')
623
-             . 'function ' . ($node->byRef ? '&' : '')
624
-             . '(' . $this->pCommaSeparated($node->params) . ')'
625
-             . (!empty($node->uses) ? ' use(' . $this->pCommaSeparated($node->uses) . ')' : '')
626
-             . (null !== $node->returnType ? ' : ' . $this->p($node->returnType) : '')
627
-             . ' {' . $this->pStmts($node->stmts) . $this->nl . '}';
622
+                . ($node->static ? 'static ' : '')
623
+                . 'function ' . ($node->byRef ? '&' : '')
624
+                . '(' . $this->pCommaSeparated($node->params) . ')'
625
+                . (!empty($node->uses) ? ' use(' . $this->pCommaSeparated($node->uses) . ')' : '')
626
+                . (null !== $node->returnType ? ' : ' . $this->p($node->returnType) : '')
627
+                . ' {' . $this->pStmts($node->stmts) . $this->nl . '}';
628 628
     }
629 629
 
630 630
     protected function pExpr_Match(Expr\Match_ $node) {
@@ -677,7 +677,7 @@  discard block
 block discarded – undo
677 677
     protected function pExpr_Exit(Expr\Exit_ $node) {
678 678
         $kind = $node->getAttribute('kind', Expr\Exit_::KIND_DIE);
679 679
         return ($kind === Expr\Exit_::KIND_EXIT ? 'exit' : 'die')
680
-             . (null !== $node->expr ? '(' . $this->p($node->expr) . ')' : '');
680
+                . (null !== $node->expr ? '(' . $this->p($node->expr) . ')' : '');
681 681
     }
682 682
 
683 683
     protected function pExpr_Throw(Expr\Throw_ $node) {
@@ -690,9 +690,9 @@  discard block
 block discarded – undo
690 690
         } else {
691 691
             // this is a bit ugly, but currently there is no way to detect whether the parentheses are necessary
692 692
             return '(yield '
693
-                 . ($node->key !== null ? $this->p($node->key) . ' => ' : '')
694
-                 . $this->p($node->value)
695
-                 . ')';
693
+                    . ($node->key !== null ? $this->p($node->key) . ' => ' : '')
694
+                    . $this->p($node->value)
695
+                    . ')';
696 696
         }
697 697
     }
698 698
 
@@ -701,26 +701,26 @@  discard block
 block discarded – undo
701 701
     protected function pStmt_Namespace(Stmt\Namespace_ $node) {
702 702
         if ($this->canUseSemicolonNamespaces) {
703 703
             return 'namespace ' . $this->p($node->name) . ';'
704
-                 . $this->nl . $this->pStmts($node->stmts, false);
704
+                    . $this->nl . $this->pStmts($node->stmts, false);
705 705
         } else {
706 706
             return 'namespace' . (null !== $node->name ? ' ' . $this->p($node->name) : '')
707
-                 . ' {' . $this->pStmts($node->stmts) . $this->nl . '}';
707
+                    . ' {' . $this->pStmts($node->stmts) . $this->nl . '}';
708 708
         }
709 709
     }
710 710
 
711 711
     protected function pStmt_Use(Stmt\Use_ $node) {
712 712
         return 'use ' . $this->pUseType($node->type)
713
-             . $this->pCommaSeparated($node->uses) . ';';
713
+                . $this->pCommaSeparated($node->uses) . ';';
714 714
     }
715 715
 
716 716
     protected function pStmt_GroupUse(Stmt\GroupUse $node) {
717 717
         return 'use ' . $this->pUseType($node->type) . $this->pName($node->prefix)
718
-             . '\{' . $this->pCommaSeparated($node->uses) . '};';
718
+                . '\{' . $this->pCommaSeparated($node->uses) . '};';
719 719
     }
720 720
 
721 721
     protected function pStmt_UseUse(Stmt\UseUse $node) {
722 722
         return $this->pUseType($node->type) . $this->p($node->name)
723
-             . (null !== $node->alias ? ' as ' . $node->alias : '');
723
+                . (null !== $node->alias ? ' as ' . $node->alias : '');
724 724
     }
725 725
 
726 726
     protected function pUseType($type) {
@@ -730,17 +730,17 @@  discard block
 block discarded – undo
730 730
 
731 731
     protected function pStmt_Interface(Stmt\Interface_ $node) {
732 732
         return $this->pAttrGroups($node->attrGroups)
733
-             . 'interface ' . $node->name
734
-             . (!empty($node->extends) ? ' extends ' . $this->pCommaSeparated($node->extends) : '')
735
-             . $this->nl . '{' . $this->pStmts($node->stmts) . $this->nl . '}';
733
+                . 'interface ' . $node->name
734
+                . (!empty($node->extends) ? ' extends ' . $this->pCommaSeparated($node->extends) : '')
735
+                . $this->nl . '{' . $this->pStmts($node->stmts) . $this->nl . '}';
736 736
     }
737 737
 
738 738
     protected function pStmt_Enum(Stmt\Enum_ $node) {
739 739
         return $this->pAttrGroups($node->attrGroups)
740
-             . 'enum ' . $node->name
741
-             . ($node->scalarType ? " : $node->scalarType" : '')
742
-             . (!empty($node->implements) ? ' implements ' . $this->pCommaSeparated($node->implements) : '')
743
-             . $this->nl . '{' . $this->pStmts($node->stmts) . $this->nl . '}';
740
+                . 'enum ' . $node->name
741
+                . ($node->scalarType ? " : $node->scalarType" : '')
742
+                . (!empty($node->implements) ? ' implements ' . $this->pCommaSeparated($node->implements) : '')
743
+                . $this->nl . '{' . $this->pStmts($node->stmts) . $this->nl . '}';
744 744
     }
745 745
 
746 746
     protected function pStmt_Class(Stmt\Class_ $node) {
@@ -749,35 +749,35 @@  discard block
 block discarded – undo
749 749
 
750 750
     protected function pStmt_Trait(Stmt\Trait_ $node) {
751 751
         return $this->pAttrGroups($node->attrGroups)
752
-             . 'trait ' . $node->name
753
-             . $this->nl . '{' . $this->pStmts($node->stmts) . $this->nl . '}';
752
+                . 'trait ' . $node->name
753
+                . $this->nl . '{' . $this->pStmts($node->stmts) . $this->nl . '}';
754 754
     }
755 755
 
756 756
     protected function pStmt_EnumCase(Stmt\EnumCase $node) {
757 757
         return $this->pAttrGroups($node->attrGroups)
758
-             . 'case ' . $node->name
759
-             . ($node->expr ? ' = ' . $this->p($node->expr) : '')
760
-             . ';';
758
+                . 'case ' . $node->name
759
+                . ($node->expr ? ' = ' . $this->p($node->expr) : '')
760
+                . ';';
761 761
     }
762 762
 
763 763
     protected function pStmt_TraitUse(Stmt\TraitUse $node) {
764 764
         return 'use ' . $this->pCommaSeparated($node->traits)
765
-             . (empty($node->adaptations)
765
+                . (empty($node->adaptations)
766 766
                 ? ';'
767 767
                 : ' {' . $this->pStmts($node->adaptations) . $this->nl . '}');
768 768
     }
769 769
 
770 770
     protected function pStmt_TraitUseAdaptation_Precedence(Stmt\TraitUseAdaptation\Precedence $node) {
771 771
         return $this->p($node->trait) . '::' . $node->method
772
-             . ' insteadof ' . $this->pCommaSeparated($node->insteadof) . ';';
772
+                . ' insteadof ' . $this->pCommaSeparated($node->insteadof) . ';';
773 773
     }
774 774
 
775 775
     protected function pStmt_TraitUseAdaptation_Alias(Stmt\TraitUseAdaptation\Alias $node) {
776 776
         return (null !== $node->trait ? $this->p($node->trait) . '::' : '')
777
-             . $node->method . ' as'
778
-             . (null !== $node->newModifier ? ' ' . rtrim($this->pModifiers($node->newModifier), ' ') : '')
779
-             . (null !== $node->newName     ? ' ' . $node->newName                        : '')
780
-             . ';';
777
+                . $node->method . ' as'
778
+                . (null !== $node->newModifier ? ' ' . rtrim($this->pModifiers($node->newModifier), ' ') : '')
779
+                . (null !== $node->newName     ? ' ' . $node->newName                        : '')
780
+                . ';';
781 781
     }
782 782
 
783 783
     protected function pStmt_Property(Stmt\Property $node) {
@@ -789,32 +789,32 @@  discard block
 block discarded – undo
789 789
 
790 790
     protected function pStmt_PropertyProperty(Stmt\PropertyProperty $node) {
791 791
         return '$' . $node->name
792
-             . (null !== $node->default ? ' = ' . $this->p($node->default) : '');
792
+                . (null !== $node->default ? ' = ' . $this->p($node->default) : '');
793 793
     }
794 794
 
795 795
     protected function pStmt_ClassMethod(Stmt\ClassMethod $node) {
796 796
         return $this->pAttrGroups($node->attrGroups)
797
-             . $this->pModifiers($node->flags)
798
-             . 'function ' . ($node->byRef ? '&' : '') . $node->name
799
-             . '(' . $this->pMaybeMultiline($node->params) . ')'
800
-             . (null !== $node->returnType ? ' : ' . $this->p($node->returnType) : '')
801
-             . (null !== $node->stmts
797
+                . $this->pModifiers($node->flags)
798
+                . 'function ' . ($node->byRef ? '&' : '') . $node->name
799
+                . '(' . $this->pMaybeMultiline($node->params) . ')'
800
+                . (null !== $node->returnType ? ' : ' . $this->p($node->returnType) : '')
801
+                . (null !== $node->stmts
802 802
                 ? $this->nl . '{' . $this->pStmts($node->stmts) . $this->nl . '}'
803 803
                 : ';');
804 804
     }
805 805
 
806 806
     protected function pStmt_ClassConst(Stmt\ClassConst $node) {
807 807
         return $this->pAttrGroups($node->attrGroups)
808
-             . $this->pModifiers($node->flags)
809
-             . 'const ' . $this->pCommaSeparated($node->consts) . ';';
808
+                . $this->pModifiers($node->flags)
809
+                . 'const ' . $this->pCommaSeparated($node->consts) . ';';
810 810
     }
811 811
 
812 812
     protected function pStmt_Function(Stmt\Function_ $node) {
813 813
         return $this->pAttrGroups($node->attrGroups)
814
-             . 'function ' . ($node->byRef ? '&' : '') . $node->name
815
-             . '(' . $this->pCommaSeparated($node->params) . ')'
816
-             . (null !== $node->returnType ? ' : ' . $this->p($node->returnType) : '')
817
-             . $this->nl . '{' . $this->pStmts($node->stmts) . $this->nl . '}';
814
+                . 'function ' . ($node->byRef ? '&' : '') . $node->name
815
+                . '(' . $this->pCommaSeparated($node->params) . ')'
816
+                . (null !== $node->returnType ? ' : ' . $this->p($node->returnType) : '')
817
+                . $this->nl . '{' . $this->pStmts($node->stmts) . $this->nl . '}';
818 818
     }
819 819
 
820 820
     protected function pStmt_Const(Stmt\Const_ $node) {
@@ -823,7 +823,7 @@  discard block
 block discarded – undo
823 823
 
824 824
     protected function pStmt_Declare(Stmt\Declare_ $node) {
825 825
         return 'declare (' . $this->pCommaSeparated($node->declares) . ')'
826
-             . (null !== $node->stmts ? ' {' . $this->pStmts($node->stmts) . $this->nl . '}' : ';');
826
+                . (null !== $node->stmts ? ' {' . $this->pStmts($node->stmts) . $this->nl . '}' : ';');
827 827
     }
828 828
 
829 829
     protected function pStmt_DeclareDeclare(Stmt\DeclareDeclare $node) {
@@ -834,14 +834,14 @@  discard block
 block discarded – undo
834 834
 
835 835
     protected function pStmt_If(Stmt\If_ $node) {
836 836
         return 'if (' . $this->p($node->cond) . ') {'
837
-             . $this->pStmts($node->stmts) . $this->nl . '}'
838
-             . ($node->elseifs ? ' ' . $this->pImplode($node->elseifs, ' ') : '')
839
-             . (null !== $node->else ? ' ' . $this->p($node->else) : '');
837
+                . $this->pStmts($node->stmts) . $this->nl . '}'
838
+                . ($node->elseifs ? ' ' . $this->pImplode($node->elseifs, ' ') : '')
839
+                . (null !== $node->else ? ' ' . $this->p($node->else) : '');
840 840
     }
841 841
 
842 842
     protected function pStmt_ElseIf(Stmt\ElseIf_ $node) {
843 843
         return 'elseif (' . $this->p($node->cond) . ') {'
844
-             . $this->pStmts($node->stmts) . $this->nl . '}';
844
+                . $this->pStmts($node->stmts) . $this->nl . '}';
845 845
     }
846 846
 
847 847
     protected function pStmt_Else(Stmt\Else_ $node) {
@@ -850,49 +850,49 @@  discard block
 block discarded – undo
850 850
 
851 851
     protected function pStmt_For(Stmt\For_ $node) {
852 852
         return 'for ('
853
-             . $this->pCommaSeparated($node->init) . ';' . (!empty($node->cond) ? ' ' : '')
854
-             . $this->pCommaSeparated($node->cond) . ';' . (!empty($node->loop) ? ' ' : '')
855
-             . $this->pCommaSeparated($node->loop)
856
-             . ') {' . $this->pStmts($node->stmts) . $this->nl . '}';
853
+                . $this->pCommaSeparated($node->init) . ';' . (!empty($node->cond) ? ' ' : '')
854
+                . $this->pCommaSeparated($node->cond) . ';' . (!empty($node->loop) ? ' ' : '')
855
+                . $this->pCommaSeparated($node->loop)
856
+                . ') {' . $this->pStmts($node->stmts) . $this->nl . '}';
857 857
     }
858 858
 
859 859
     protected function pStmt_Foreach(Stmt\Foreach_ $node) {
860 860
         return 'foreach (' . $this->p($node->expr) . ' as '
861
-             . (null !== $node->keyVar ? $this->p($node->keyVar) . ' => ' : '')
862
-             . ($node->byRef ? '&' : '') . $this->p($node->valueVar) . ') {'
863
-             . $this->pStmts($node->stmts) . $this->nl . '}';
861
+                . (null !== $node->keyVar ? $this->p($node->keyVar) . ' => ' : '')
862
+                . ($node->byRef ? '&' : '') . $this->p($node->valueVar) . ') {'
863
+                . $this->pStmts($node->stmts) . $this->nl . '}';
864 864
     }
865 865
 
866 866
     protected function pStmt_While(Stmt\While_ $node) {
867 867
         return 'while (' . $this->p($node->cond) . ') {'
868
-             . $this->pStmts($node->stmts) . $this->nl . '}';
868
+                . $this->pStmts($node->stmts) . $this->nl . '}';
869 869
     }
870 870
 
871 871
     protected function pStmt_Do(Stmt\Do_ $node) {
872 872
         return 'do {' . $this->pStmts($node->stmts) . $this->nl
873
-             . '} while (' . $this->p($node->cond) . ');';
873
+                . '} while (' . $this->p($node->cond) . ');';
874 874
     }
875 875
 
876 876
     protected function pStmt_Switch(Stmt\Switch_ $node) {
877 877
         return 'switch (' . $this->p($node->cond) . ') {'
878
-             . $this->pStmts($node->cases) . $this->nl . '}';
878
+                . $this->pStmts($node->cases) . $this->nl . '}';
879 879
     }
880 880
 
881 881
     protected function pStmt_Case(Stmt\Case_ $node) {
882 882
         return (null !== $node->cond ? 'case ' . $this->p($node->cond) : 'default') . ':'
883
-             . $this->pStmts($node->stmts);
883
+                . $this->pStmts($node->stmts);
884 884
     }
885 885
 
886 886
     protected function pStmt_TryCatch(Stmt\TryCatch $node) {
887 887
         return 'try {' . $this->pStmts($node->stmts) . $this->nl . '}'
888
-             . ($node->catches ? ' ' . $this->pImplode($node->catches, ' ') : '')
889
-             . ($node->finally !== null ? ' ' . $this->p($node->finally) : '');
888
+                . ($node->catches ? ' ' . $this->pImplode($node->catches, ' ') : '')
889
+                . ($node->finally !== null ? ' ' . $this->p($node->finally) : '');
890 890
     }
891 891
 
892 892
     protected function pStmt_Catch(Stmt\Catch_ $node) {
893 893
         return 'catch (' . $this->pImplode($node->types, '|')
894
-             . ($node->var !== null ? ' ' . $this->p($node->var) : '')
895
-             . ') {' . $this->pStmts($node->stmts) . $this->nl . '}';
894
+                . ($node->var !== null ? ' ' . $this->p($node->var) : '')
895
+                . ') {' . $this->pStmts($node->stmts) . $this->nl . '}';
896 896
     }
897 897
 
898 898
     protected function pStmt_Finally(Stmt\Finally_ $node) {
@@ -943,7 +943,7 @@  discard block
 block discarded – undo
943 943
 
944 944
     protected function pStmt_StaticVar(Stmt\StaticVar $node) {
945 945
         return $this->p($node->var)
946
-             . (null !== $node->default ? ' = ' . $this->p($node->default) : '');
946
+                . (null !== $node->default ? ' = ' . $this->p($node->default) : '');
947 947
     }
948 948
 
949 949
     protected function pStmt_Unset(Stmt\Unset_ $node) {
Please login to merge, or discard this patch.
brighty/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor/NameResolver.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@
 block discarded – undo
86 86
 
87 87
             $this->resolveAttrGroups($node);
88 88
             $this->addNamespacedName($node);
89
-         } elseif ($node instanceof Stmt\Enum_) {
89
+            } elseif ($node instanceof Stmt\Enum_) {
90 90
             foreach ($node->implements as &$interface) {
91 91
                 $interface = $this->resolveClassName($interface);
92 92
             }
Please login to merge, or discard this patch.
brighty/vendor/nikic/php-parser/grammar/phpyLang.php 1 patch
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
             if ('stackAttributes' === $name) {
72 72
                 assertArgs(1, $args, $name);
73 73
                 return '$this->startAttributeStack[' . $args[0] . ']'
74
-                       . ' + $this->endAttributeStack[' . $args[0] . ']';
74
+                        . ' + $this->endAttributeStack[' . $args[0] . ']';
75 75
             }
76 76
 
77 77
             if ('init' === $name) {
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
                 assertArgs(2, $args, $name);
89 89
 
90 90
                 return 'if (is_array(' . $args[1] . ')) { $$ = array_merge(' . $args[0] . ', ' . $args[1] . '); }'
91
-                       . ' else { ' . $args[0] . '[] = ' . $args[1] . '; $$ = ' . $args[0] . '; }';
91
+                        . ' else { ' . $args[0] . '[] = ' . $args[1] . '; $$ = ' . $args[0] . '; }';
92 92
             }
93 93
 
94 94
             if ('toArray' == $name) {
@@ -107,42 +107,42 @@  discard block
 block discarded – undo
107 107
                 assertArgs(3, $args, $name);
108 108
 
109 109
                 return 'foreach (' . $args[0] . ' as $s) { if ($s instanceof Node\Scalar\EncapsedStringPart) {'
110
-                       . ' $s->value = Node\Scalar\String_::parseEscapeSequences($s->value, ' . $args[1] . ', ' . $args[2] . '); } }';
110
+                        . ' $s->value = Node\Scalar\String_::parseEscapeSequences($s->value, ' . $args[1] . ', ' . $args[2] . '); } }';
111 111
             }
112 112
 
113 113
             if ('makeNop' === $name) {
114 114
                 assertArgs(3, $args, $name);
115 115
 
116 116
                 return '$startAttributes = ' . $args[1] . ';'
117
-                       . ' if (isset($startAttributes[\'comments\']))'
118
-                       . ' { ' . $args[0] . ' = new Stmt\Nop($startAttributes + ' . $args[2] . '); }'
119
-                       . ' else { ' . $args[0] . ' = null; }';
117
+                        . ' if (isset($startAttributes[\'comments\']))'
118
+                        . ' { ' . $args[0] . ' = new Stmt\Nop($startAttributes + ' . $args[2] . '); }'
119
+                        . ' else { ' . $args[0] . ' = null; }';
120 120
             }
121 121
 
122 122
             if ('makeZeroLengthNop' == $name) {
123 123
                 assertArgs(2, $args, $name);
124 124
 
125 125
                 return '$startAttributes = ' . $args[1] . ';'
126
-                       . ' if (isset($startAttributes[\'comments\']))'
127
-                       . ' { ' . $args[0] . ' = new Stmt\Nop($this->createCommentNopAttributes($startAttributes[\'comments\'])); }'
128
-                       . ' else { ' . $args[0] . ' = null; }';
126
+                        . ' if (isset($startAttributes[\'comments\']))'
127
+                        . ' { ' . $args[0] . ' = new Stmt\Nop($this->createCommentNopAttributes($startAttributes[\'comments\'])); }'
128
+                        . ' else { ' . $args[0] . ' = null; }';
129 129
             }
130 130
 
131 131
             if ('strKind' === $name) {
132 132
                 assertArgs(1, $args, $name);
133 133
 
134 134
                 return '(' . $args[0] . '[0] === "\'" || (' . $args[0] . '[1] === "\'" && '
135
-                       . '(' . $args[0] . '[0] === \'b\' || ' . $args[0] . '[0] === \'B\')) '
136
-                       . '? Scalar\String_::KIND_SINGLE_QUOTED : Scalar\String_::KIND_DOUBLE_QUOTED)';
135
+                        . '(' . $args[0] . '[0] === \'b\' || ' . $args[0] . '[0] === \'B\')) '
136
+                        . '? Scalar\String_::KIND_SINGLE_QUOTED : Scalar\String_::KIND_DOUBLE_QUOTED)';
137 137
             }
138 138
 
139 139
             if ('prependLeadingComments' === $name) {
140 140
                 assertArgs(1, $args, $name);
141 141
 
142 142
                 return '$attrs = $this->startAttributeStack[#1]; $stmts = ' . $args[0] . '; '
143
-                       . 'if (!empty($attrs[\'comments\'])) {'
144
-                       . '$stmts[0]->setAttribute(\'comments\', '
145
-                       . 'array_merge($attrs[\'comments\'], $stmts[0]->getAttribute(\'comments\', []))); }';
143
+                        . 'if (!empty($attrs[\'comments\'])) {'
144
+                        . '$stmts[0]->setAttribute(\'comments\', '
145
+                        . 'array_merge($attrs[\'comments\'], $stmts[0]->getAttribute(\'comments\', []))); }';
146 146
             }
147 147
 
148 148
             return $matches[0];
Please login to merge, or discard this patch.
brighty/vendor/symfony/polyfill-intl-normalizer/Normalizer.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -274,7 +274,7 @@
 block discarded – undo
274 274
                 $j = (($uchr[1] - 224) << 12) + (($uchr[2] - 128) << 6) + $uchr[3] - 0xAC80;
275 275
 
276 276
                 $uchr = "\xE1\x84".\chr(0x80 + (int) ($j / 588))
277
-                       ."\xE1\x85".\chr(0xA1 + (int) (($j % 588) / 28));
277
+                        ."\xE1\x85".\chr(0xA1 + (int) (($j % 588) / 28));
278 278
 
279 279
                 if ($j %= 28) {
280 280
                     $uchr .= $j < 25
Please login to merge, or discard this patch.
brighty/vendor/composer/xdebug-handler/src/Status.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
     /** @var bool */
45 45
     private $modeOff;
46 46
 
47
-     /** @var float */
47
+        /** @var float */
48 48
     private $time;
49 49
 
50 50
     /**
Please login to merge, or discard this patch.
brighty/vendor/predis/predis/examples/shared.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -34,15 +34,15 @@
 block discarded – undo
34 34
 
35 35
 $multiple_servers = array(
36 36
     array(
37
-       'host' => '127.0.0.1',
38
-       'port' => 6379,
39
-       'database' => 15,
40
-       'alias' => 'first',
37
+        'host' => '127.0.0.1',
38
+        'port' => 6379,
39
+        'database' => 15,
40
+        'alias' => 'first',
41 41
     ),
42 42
     array(
43
-       'host' => '127.0.0.1',
44
-       'port' => 6380,
45
-       'database' => 15,
46
-       'alias' => 'second',
43
+        'host' => '127.0.0.1',
44
+        'port' => 6380,
45
+        'database' => 15,
46
+        'alias' => 'second',
47 47
     ),
48 48
 );
Please login to merge, or discard this patch.
brighty/vendor/predis/predis/examples/pubsub_consumer.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
                 }
44 44
             } else {
45 45
                 echo "Received the following message from {$message->channel}:",
46
-                     PHP_EOL, "  {$message->payload}", PHP_EOL, PHP_EOL;
46
+                        PHP_EOL, "  {$message->payload}", PHP_EOL, PHP_EOL;
47 47
             }
48 48
             break;
49 49
     }
Please login to merge, or discard this patch.
vendor/kint-php/kint/src/Zval/Representation/ColorRepresentation.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -221,7 +221,7 @@
 block discarded – undo
221 221
                 $hex_alpha = \sprintf('%02x%02x%02x%02x', $this->r, $this->g, $this->b, \round($this->a * 0xFF));
222 222
 
223 223
                 return \array_search($hex, self::$color_map, true) ?: \array_search($hex_alpha, self::$color_map, true);
224
-           case self::COLOR_HEX_3:
224
+            case self::COLOR_HEX_3:
225 225
                 if (0 === $this->r % 0x11 && 0 === $this->g % 0x11 && 0 === $this->b % 0x11) {
226 226
                     return \sprintf(
227 227
                         '#%1X%1X%1X',
Please login to merge, or discard this patch.
brighty/vendor/symfony/polyfill-mbstring/Resources/unidata/upperCase.php 1 patch
Indentation   +1485 added lines, -1485 removed lines patch added patch discarded remove patch
@@ -1,1489 +1,1489 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 return array (
4
-  'a' => 'A',
5
-  'b' => 'B',
6
-  'c' => 'C',
7
-  'd' => 'D',
8
-  'e' => 'E',
9
-  'f' => 'F',
10
-  'g' => 'G',
11
-  'h' => 'H',
12
-  'i' => 'I',
13
-  'j' => 'J',
14
-  'k' => 'K',
15
-  'l' => 'L',
16
-  'm' => 'M',
17
-  'n' => 'N',
18
-  'o' => 'O',
19
-  'p' => 'P',
20
-  'q' => 'Q',
21
-  'r' => 'R',
22
-  's' => 'S',
23
-  't' => 'T',
24
-  'u' => 'U',
25
-  'v' => 'V',
26
-  'w' => 'W',
27
-  'x' => 'X',
28
-  'y' => 'Y',
29
-  'z' => 'Z',
30
-  'µ' => 'Μ',
31
-  'à' => 'À',
32
-  'á' => 'Á',
33
-  'â' => 'Â',
34
-  'ã' => 'Ã',
35
-  'ä' => 'Ä',
36
-  'å' => 'Å',
37
-  'æ' => 'Æ',
38
-  'ç' => 'Ç',
39
-  'è' => 'È',
40
-  'é' => 'É',
41
-  'ê' => 'Ê',
42
-  'ë' => 'Ë',
43
-  'ì' => 'Ì',
44
-  'í' => 'Í',
45
-  'î' => 'Î',
46
-  'ï' => 'Ï',
47
-  'ð' => 'Ð',
48
-  'ñ' => 'Ñ',
49
-  'ò' => 'Ò',
50
-  'ó' => 'Ó',
51
-  'ô' => 'Ô',
52
-  'õ' => 'Õ',
53
-  'ö' => 'Ö',
54
-  'ø' => 'Ø',
55
-  'ù' => 'Ù',
56
-  'ú' => 'Ú',
57
-  'û' => 'Û',
58
-  'ü' => 'Ü',
59
-  'ý' => 'Ý',
60
-  'þ' => 'Þ',
61
-  'ÿ' => 'Ÿ',
62
-  'ā' => 'Ā',
63
-  'ă' => 'Ă',
64
-  'ą' => 'Ą',
65
-  'ć' => 'Ć',
66
-  'ĉ' => 'Ĉ',
67
-  'ċ' => 'Ċ',
68
-  'č' => 'Č',
69
-  'ď' => 'Ď',
70
-  'đ' => 'Đ',
71
-  'ē' => 'Ē',
72
-  'ĕ' => 'Ĕ',
73
-  'ė' => 'Ė',
74
-  'ę' => 'Ę',
75
-  'ě' => 'Ě',
76
-  'ĝ' => 'Ĝ',
77
-  'ğ' => 'Ğ',
78
-  'ġ' => 'Ġ',
79
-  'ģ' => 'Ģ',
80
-  'ĥ' => 'Ĥ',
81
-  'ħ' => 'Ħ',
82
-  'ĩ' => 'Ĩ',
83
-  'ī' => 'Ī',
84
-  'ĭ' => 'Ĭ',
85
-  'į' => 'Į',
86
-  'ı' => 'I',
87
-  'ij' => 'IJ',
88
-  'ĵ' => 'Ĵ',
89
-  'ķ' => 'Ķ',
90
-  'ĺ' => 'Ĺ',
91
-  'ļ' => 'Ļ',
92
-  'ľ' => 'Ľ',
93
-  'ŀ' => 'Ŀ',
94
-  'ł' => 'Ł',
95
-  'ń' => 'Ń',
96
-  'ņ' => 'Ņ',
97
-  'ň' => 'Ň',
98
-  'ŋ' => 'Ŋ',
99
-  'ō' => 'Ō',
100
-  'ŏ' => 'Ŏ',
101
-  'ő' => 'Ő',
102
-  'œ' => 'Œ',
103
-  'ŕ' => 'Ŕ',
104
-  'ŗ' => 'Ŗ',
105
-  'ř' => 'Ř',
106
-  'ś' => 'Ś',
107
-  'ŝ' => 'Ŝ',
108
-  'ş' => 'Ş',
109
-  'š' => 'Š',
110
-  'ţ' => 'Ţ',
111
-  'ť' => 'Ť',
112
-  'ŧ' => 'Ŧ',
113
-  'ũ' => 'Ũ',
114
-  'ū' => 'Ū',
115
-  'ŭ' => 'Ŭ',
116
-  'ů' => 'Ů',
117
-  'ű' => 'Ű',
118
-  'ų' => 'Ų',
119
-  'ŵ' => 'Ŵ',
120
-  'ŷ' => 'Ŷ',
121
-  'ź' => 'Ź',
122
-  'ż' => 'Ż',
123
-  'ž' => 'Ž',
124
-  'ſ' => 'S',
125
-  'ƀ' => 'Ƀ',
126
-  'ƃ' => 'Ƃ',
127
-  'ƅ' => 'Ƅ',
128
-  'ƈ' => 'Ƈ',
129
-  'ƌ' => 'Ƌ',
130
-  'ƒ' => 'Ƒ',
131
-  'ƕ' => 'Ƕ',
132
-  'ƙ' => 'Ƙ',
133
-  'ƚ' => 'Ƚ',
134
-  'ƞ' => 'Ƞ',
135
-  'ơ' => 'Ơ',
136
-  'ƣ' => 'Ƣ',
137
-  'ƥ' => 'Ƥ',
138
-  'ƨ' => 'Ƨ',
139
-  'ƭ' => 'Ƭ',
140
-  'ư' => 'Ư',
141
-  'ƴ' => 'Ƴ',
142
-  'ƶ' => 'Ƶ',
143
-  'ƹ' => 'Ƹ',
144
-  'ƽ' => 'Ƽ',
145
-  'ƿ' => 'Ƿ',
146
-  'Dž' => 'DŽ',
147
-  'dž' => 'DŽ',
148
-  'Lj' => 'LJ',
149
-  'lj' => 'LJ',
150
-  'Nj' => 'NJ',
151
-  'nj' => 'NJ',
152
-  'ǎ' => 'Ǎ',
153
-  'ǐ' => 'Ǐ',
154
-  'ǒ' => 'Ǒ',
155
-  'ǔ' => 'Ǔ',
156
-  'ǖ' => 'Ǖ',
157
-  'ǘ' => 'Ǘ',
158
-  'ǚ' => 'Ǚ',
159
-  'ǜ' => 'Ǜ',
160
-  'ǝ' => 'Ǝ',
161
-  'ǟ' => 'Ǟ',
162
-  'ǡ' => 'Ǡ',
163
-  'ǣ' => 'Ǣ',
164
-  'ǥ' => 'Ǥ',
165
-  'ǧ' => 'Ǧ',
166
-  'ǩ' => 'Ǩ',
167
-  'ǫ' => 'Ǫ',
168
-  'ǭ' => 'Ǭ',
169
-  'ǯ' => 'Ǯ',
170
-  'Dz' => 'DZ',
171
-  'dz' => 'DZ',
172
-  'ǵ' => 'Ǵ',
173
-  'ǹ' => 'Ǹ',
174
-  'ǻ' => 'Ǻ',
175
-  'ǽ' => 'Ǽ',
176
-  'ǿ' => 'Ǿ',
177
-  'ȁ' => 'Ȁ',
178
-  'ȃ' => 'Ȃ',
179
-  'ȅ' => 'Ȅ',
180
-  'ȇ' => 'Ȇ',
181
-  'ȉ' => 'Ȉ',
182
-  'ȋ' => 'Ȋ',
183
-  'ȍ' => 'Ȍ',
184
-  'ȏ' => 'Ȏ',
185
-  'ȑ' => 'Ȑ',
186
-  'ȓ' => 'Ȓ',
187
-  'ȕ' => 'Ȕ',
188
-  'ȗ' => 'Ȗ',
189
-  'ș' => 'Ș',
190
-  'ț' => 'Ț',
191
-  'ȝ' => 'Ȝ',
192
-  'ȟ' => 'Ȟ',
193
-  'ȣ' => 'Ȣ',
194
-  'ȥ' => 'Ȥ',
195
-  'ȧ' => 'Ȧ',
196
-  'ȩ' => 'Ȩ',
197
-  'ȫ' => 'Ȫ',
198
-  'ȭ' => 'Ȭ',
199
-  'ȯ' => 'Ȯ',
200
-  'ȱ' => 'Ȱ',
201
-  'ȳ' => 'Ȳ',
202
-  'ȼ' => 'Ȼ',
203
-  'ȿ' => 'Ȿ',
204
-  'ɀ' => 'Ɀ',
205
-  'ɂ' => 'Ɂ',
206
-  'ɇ' => 'Ɇ',
207
-  'ɉ' => 'Ɉ',
208
-  'ɋ' => 'Ɋ',
209
-  'ɍ' => 'Ɍ',
210
-  'ɏ' => 'Ɏ',
211
-  'ɐ' => 'Ɐ',
212
-  'ɑ' => 'Ɑ',
213
-  'ɒ' => 'Ɒ',
214
-  'ɓ' => 'Ɓ',
215
-  'ɔ' => 'Ɔ',
216
-  'ɖ' => 'Ɖ',
217
-  'ɗ' => 'Ɗ',
218
-  'ə' => 'Ə',
219
-  'ɛ' => 'Ɛ',
220
-  'ɜ' => 'Ɜ',
221
-  'ɠ' => 'Ɠ',
222
-  'ɡ' => 'Ɡ',
223
-  'ɣ' => 'Ɣ',
224
-  'ɥ' => 'Ɥ',
225
-  'ɦ' => 'Ɦ',
226
-  'ɨ' => 'Ɨ',
227
-  'ɩ' => 'Ɩ',
228
-  'ɪ' => 'Ɪ',
229
-  'ɫ' => 'Ɫ',
230
-  'ɬ' => 'Ɬ',
231
-  'ɯ' => 'Ɯ',
232
-  'ɱ' => 'Ɱ',
233
-  'ɲ' => 'Ɲ',
234
-  'ɵ' => 'Ɵ',
235
-  'ɽ' => 'Ɽ',
236
-  'ʀ' => 'Ʀ',
237
-  'ʂ' => 'Ʂ',
238
-  'ʃ' => 'Ʃ',
239
-  'ʇ' => 'Ʇ',
240
-  'ʈ' => 'Ʈ',
241
-  'ʉ' => 'Ʉ',
242
-  'ʊ' => 'Ʊ',
243
-  'ʋ' => 'Ʋ',
244
-  'ʌ' => 'Ʌ',
245
-  'ʒ' => 'Ʒ',
246
-  'ʝ' => 'Ʝ',
247
-  'ʞ' => 'Ʞ',
248
-  'ͅ' => 'Ι',
249
-  'ͱ' => 'Ͱ',
250
-  'ͳ' => 'Ͳ',
251
-  'ͷ' => 'Ͷ',
252
-  'ͻ' => 'Ͻ',
253
-  'ͼ' => 'Ͼ',
254
-  'ͽ' => 'Ͽ',
255
-  'ά' => 'Ά',
256
-  'έ' => 'Έ',
257
-  'ή' => 'Ή',
258
-  'ί' => 'Ί',
259
-  'α' => 'Α',
260
-  'β' => 'Β',
261
-  'γ' => 'Γ',
262
-  'δ' => 'Δ',
263
-  'ε' => 'Ε',
264
-  'ζ' => 'Ζ',
265
-  'η' => 'Η',
266
-  'θ' => 'Θ',
267
-  'ι' => 'Ι',
268
-  'κ' => 'Κ',
269
-  'λ' => 'Λ',
270
-  'μ' => 'Μ',
271
-  'ν' => 'Ν',
272
-  'ξ' => 'Ξ',
273
-  'ο' => 'Ο',
274
-  'π' => 'Π',
275
-  'ρ' => 'Ρ',
276
-  'ς' => 'Σ',
277
-  'σ' => 'Σ',
278
-  'τ' => 'Τ',
279
-  'υ' => 'Υ',
280
-  'φ' => 'Φ',
281
-  'χ' => 'Χ',
282
-  'ψ' => 'Ψ',
283
-  'ω' => 'Ω',
284
-  'ϊ' => 'Ϊ',
285
-  'ϋ' => 'Ϋ',
286
-  'ό' => 'Ό',
287
-  'ύ' => 'Ύ',
288
-  'ώ' => 'Ώ',
289
-  'ϐ' => 'Β',
290
-  'ϑ' => 'Θ',
291
-  'ϕ' => 'Φ',
292
-  'ϖ' => 'Π',
293
-  'ϗ' => 'Ϗ',
294
-  'ϙ' => 'Ϙ',
295
-  'ϛ' => 'Ϛ',
296
-  'ϝ' => 'Ϝ',
297
-  'ϟ' => 'Ϟ',
298
-  'ϡ' => 'Ϡ',
299
-  'ϣ' => 'Ϣ',
300
-  'ϥ' => 'Ϥ',
301
-  'ϧ' => 'Ϧ',
302
-  'ϩ' => 'Ϩ',
303
-  'ϫ' => 'Ϫ',
304
-  'ϭ' => 'Ϭ',
305
-  'ϯ' => 'Ϯ',
306
-  'ϰ' => 'Κ',
307
-  'ϱ' => 'Ρ',
308
-  'ϲ' => 'Ϲ',
309
-  'ϳ' => 'Ϳ',
310
-  'ϵ' => 'Ε',
311
-  'ϸ' => 'Ϸ',
312
-  'ϻ' => 'Ϻ',
313
-  'а' => 'А',
314
-  'б' => 'Б',
315
-  'в' => 'В',
316
-  'г' => 'Г',
317
-  'д' => 'Д',
318
-  'е' => 'Е',
319
-  'ж' => 'Ж',
320
-  'з' => 'З',
321
-  'и' => 'И',
322
-  'й' => 'Й',
323
-  'к' => 'К',
324
-  'л' => 'Л',
325
-  'м' => 'М',
326
-  'н' => 'Н',
327
-  'о' => 'О',
328
-  'п' => 'П',
329
-  'р' => 'Р',
330
-  'с' => 'С',
331
-  'т' => 'Т',
332
-  'у' => 'У',
333
-  'ф' => 'Ф',
334
-  'х' => 'Х',
335
-  'ц' => 'Ц',
336
-  'ч' => 'Ч',
337
-  'ш' => 'Ш',
338
-  'щ' => 'Щ',
339
-  'ъ' => 'Ъ',
340
-  'ы' => 'Ы',
341
-  'ь' => 'Ь',
342
-  'э' => 'Э',
343
-  'ю' => 'Ю',
344
-  'я' => 'Я',
345
-  'ѐ' => 'Ѐ',
346
-  'ё' => 'Ё',
347
-  'ђ' => 'Ђ',
348
-  'ѓ' => 'Ѓ',
349
-  'є' => 'Є',
350
-  'ѕ' => 'Ѕ',
351
-  'і' => 'І',
352
-  'ї' => 'Ї',
353
-  'ј' => 'Ј',
354
-  'љ' => 'Љ',
355
-  'њ' => 'Њ',
356
-  'ћ' => 'Ћ',
357
-  'ќ' => 'Ќ',
358
-  'ѝ' => 'Ѝ',
359
-  'ў' => 'Ў',
360
-  'џ' => 'Џ',
361
-  'ѡ' => 'Ѡ',
362
-  'ѣ' => 'Ѣ',
363
-  'ѥ' => 'Ѥ',
364
-  'ѧ' => 'Ѧ',
365
-  'ѩ' => 'Ѩ',
366
-  'ѫ' => 'Ѫ',
367
-  'ѭ' => 'Ѭ',
368
-  'ѯ' => 'Ѯ',
369
-  'ѱ' => 'Ѱ',
370
-  'ѳ' => 'Ѳ',
371
-  'ѵ' => 'Ѵ',
372
-  'ѷ' => 'Ѷ',
373
-  'ѹ' => 'Ѹ',
374
-  'ѻ' => 'Ѻ',
375
-  'ѽ' => 'Ѽ',
376
-  'ѿ' => 'Ѿ',
377
-  'ҁ' => 'Ҁ',
378
-  'ҋ' => 'Ҋ',
379
-  'ҍ' => 'Ҍ',
380
-  'ҏ' => 'Ҏ',
381
-  'ґ' => 'Ґ',
382
-  'ғ' => 'Ғ',
383
-  'ҕ' => 'Ҕ',
384
-  'җ' => 'Җ',
385
-  'ҙ' => 'Ҙ',
386
-  'қ' => 'Қ',
387
-  'ҝ' => 'Ҝ',
388
-  'ҟ' => 'Ҟ',
389
-  'ҡ' => 'Ҡ',
390
-  'ң' => 'Ң',
391
-  'ҥ' => 'Ҥ',
392
-  'ҧ' => 'Ҧ',
393
-  'ҩ' => 'Ҩ',
394
-  'ҫ' => 'Ҫ',
395
-  'ҭ' => 'Ҭ',
396
-  'ү' => 'Ү',
397
-  'ұ' => 'Ұ',
398
-  'ҳ' => 'Ҳ',
399
-  'ҵ' => 'Ҵ',
400
-  'ҷ' => 'Ҷ',
401
-  'ҹ' => 'Ҹ',
402
-  'һ' => 'Һ',
403
-  'ҽ' => 'Ҽ',
404
-  'ҿ' => 'Ҿ',
405
-  'ӂ' => 'Ӂ',
406
-  'ӄ' => 'Ӄ',
407
-  'ӆ' => 'Ӆ',
408
-  'ӈ' => 'Ӈ',
409
-  'ӊ' => 'Ӊ',
410
-  'ӌ' => 'Ӌ',
411
-  'ӎ' => 'Ӎ',
412
-  'ӏ' => 'Ӏ',
413
-  'ӑ' => 'Ӑ',
414
-  'ӓ' => 'Ӓ',
415
-  'ӕ' => 'Ӕ',
416
-  'ӗ' => 'Ӗ',
417
-  'ә' => 'Ә',
418
-  'ӛ' => 'Ӛ',
419
-  'ӝ' => 'Ӝ',
420
-  'ӟ' => 'Ӟ',
421
-  'ӡ' => 'Ӡ',
422
-  'ӣ' => 'Ӣ',
423
-  'ӥ' => 'Ӥ',
424
-  'ӧ' => 'Ӧ',
425
-  'ө' => 'Ө',
426
-  'ӫ' => 'Ӫ',
427
-  'ӭ' => 'Ӭ',
428
-  'ӯ' => 'Ӯ',
429
-  'ӱ' => 'Ӱ',
430
-  'ӳ' => 'Ӳ',
431
-  'ӵ' => 'Ӵ',
432
-  'ӷ' => 'Ӷ',
433
-  'ӹ' => 'Ӹ',
434
-  'ӻ' => 'Ӻ',
435
-  'ӽ' => 'Ӽ',
436
-  'ӿ' => 'Ӿ',
437
-  'ԁ' => 'Ԁ',
438
-  'ԃ' => 'Ԃ',
439
-  'ԅ' => 'Ԅ',
440
-  'ԇ' => 'Ԇ',
441
-  'ԉ' => 'Ԉ',
442
-  'ԋ' => 'Ԋ',
443
-  'ԍ' => 'Ԍ',
444
-  'ԏ' => 'Ԏ',
445
-  'ԑ' => 'Ԑ',
446
-  'ԓ' => 'Ԓ',
447
-  'ԕ' => 'Ԕ',
448
-  'ԗ' => 'Ԗ',
449
-  'ԙ' => 'Ԙ',
450
-  'ԛ' => 'Ԛ',
451
-  'ԝ' => 'Ԝ',
452
-  'ԟ' => 'Ԟ',
453
-  'ԡ' => 'Ԡ',
454
-  'ԣ' => 'Ԣ',
455
-  'ԥ' => 'Ԥ',
456
-  'ԧ' => 'Ԧ',
457
-  'ԩ' => 'Ԩ',
458
-  'ԫ' => 'Ԫ',
459
-  'ԭ' => 'Ԭ',
460
-  'ԯ' => 'Ԯ',
461
-  'ա' => 'Ա',
462
-  'բ' => 'Բ',
463
-  'գ' => 'Գ',
464
-  'դ' => 'Դ',
465
-  'ե' => 'Ե',
466
-  'զ' => 'Զ',
467
-  'է' => 'Է',
468
-  'ը' => 'Ը',
469
-  'թ' => 'Թ',
470
-  'ժ' => 'Ժ',
471
-  'ի' => 'Ի',
472
-  'լ' => 'Լ',
473
-  'խ' => 'Խ',
474
-  'ծ' => 'Ծ',
475
-  'կ' => 'Կ',
476
-  'հ' => 'Հ',
477
-  'ձ' => 'Ձ',
478
-  'ղ' => 'Ղ',
479
-  'ճ' => 'Ճ',
480
-  'մ' => 'Մ',
481
-  'յ' => 'Յ',
482
-  'ն' => 'Ն',
483
-  'շ' => 'Շ',
484
-  'ո' => 'Ո',
485
-  'չ' => 'Չ',
486
-  'պ' => 'Պ',
487
-  'ջ' => 'Ջ',
488
-  'ռ' => 'Ռ',
489
-  'ս' => 'Ս',
490
-  'վ' => 'Վ',
491
-  'տ' => 'Տ',
492
-  'ր' => 'Ր',
493
-  'ց' => 'Ց',
494
-  'ւ' => 'Ւ',
495
-  'փ' => 'Փ',
496
-  'ք' => 'Ք',
497
-  'օ' => 'Օ',
498
-  'ֆ' => 'Ֆ',
499
-  'ა' => 'Ა',
500
-  'ბ' => 'Ბ',
501
-  'გ' => 'Გ',
502
-  'დ' => 'Დ',
503
-  'ე' => 'Ე',
504
-  'ვ' => 'Ვ',
505
-  'ზ' => 'Ზ',
506
-  'თ' => 'Თ',
507
-  'ი' => 'Ი',
508
-  'კ' => 'Კ',
509
-  'ლ' => 'Ლ',
510
-  'მ' => 'Მ',
511
-  'ნ' => 'Ნ',
512
-  'ო' => 'Ო',
513
-  'პ' => 'Პ',
514
-  'ჟ' => 'Ჟ',
515
-  'რ' => 'Რ',
516
-  'ს' => 'Ს',
517
-  'ტ' => 'Ტ',
518
-  'უ' => 'Უ',
519
-  'ფ' => 'Ფ',
520
-  'ქ' => 'Ქ',
521
-  'ღ' => 'Ღ',
522
-  'ყ' => 'Ყ',
523
-  'შ' => 'Შ',
524
-  'ჩ' => 'Ჩ',
525
-  'ც' => 'Ც',
526
-  'ძ' => 'Ძ',
527
-  'წ' => 'Წ',
528
-  'ჭ' => 'Ჭ',
529
-  'ხ' => 'Ხ',
530
-  'ჯ' => 'Ჯ',
531
-  'ჰ' => 'Ჰ',
532
-  'ჱ' => 'Ჱ',
533
-  'ჲ' => 'Ჲ',
534
-  'ჳ' => 'Ჳ',
535
-  'ჴ' => 'Ჴ',
536
-  'ჵ' => 'Ჵ',
537
-  'ჶ' => 'Ჶ',
538
-  'ჷ' => 'Ჷ',
539
-  'ჸ' => 'Ჸ',
540
-  'ჹ' => 'Ჹ',
541
-  'ჺ' => 'Ჺ',
542
-  'ჽ' => 'Ჽ',
543
-  'ჾ' => 'Ჾ',
544
-  'ჿ' => 'Ჿ',
545
-  'ᏸ' => 'Ᏸ',
546
-  'ᏹ' => 'Ᏹ',
547
-  'ᏺ' => 'Ᏺ',
548
-  'ᏻ' => 'Ᏻ',
549
-  'ᏼ' => 'Ᏼ',
550
-  'ᏽ' => 'Ᏽ',
551
-  'ᲀ' => 'В',
552
-  'ᲁ' => 'Д',
553
-  'ᲂ' => 'О',
554
-  'ᲃ' => 'С',
555
-  'ᲄ' => 'Т',
556
-  'ᲅ' => 'Т',
557
-  'ᲆ' => 'Ъ',
558
-  'ᲇ' => 'Ѣ',
559
-  'ᲈ' => 'Ꙋ',
560
-  'ᵹ' => 'Ᵹ',
561
-  'ᵽ' => 'Ᵽ',
562
-  'ᶎ' => 'Ᶎ',
563
-  'ḁ' => 'Ḁ',
564
-  'ḃ' => 'Ḃ',
565
-  'ḅ' => 'Ḅ',
566
-  'ḇ' => 'Ḇ',
567
-  'ḉ' => 'Ḉ',
568
-  'ḋ' => 'Ḋ',
569
-  'ḍ' => 'Ḍ',
570
-  'ḏ' => 'Ḏ',
571
-  'ḑ' => 'Ḑ',
572
-  'ḓ' => 'Ḓ',
573
-  'ḕ' => 'Ḕ',
574
-  'ḗ' => 'Ḗ',
575
-  'ḙ' => 'Ḙ',
576
-  'ḛ' => 'Ḛ',
577
-  'ḝ' => 'Ḝ',
578
-  'ḟ' => 'Ḟ',
579
-  'ḡ' => 'Ḡ',
580
-  'ḣ' => 'Ḣ',
581
-  'ḥ' => 'Ḥ',
582
-  'ḧ' => 'Ḧ',
583
-  'ḩ' => 'Ḩ',
584
-  'ḫ' => 'Ḫ',
585
-  'ḭ' => 'Ḭ',
586
-  'ḯ' => 'Ḯ',
587
-  'ḱ' => 'Ḱ',
588
-  'ḳ' => 'Ḳ',
589
-  'ḵ' => 'Ḵ',
590
-  'ḷ' => 'Ḷ',
591
-  'ḹ' => 'Ḹ',
592
-  'ḻ' => 'Ḻ',
593
-  'ḽ' => 'Ḽ',
594
-  'ḿ' => 'Ḿ',
595
-  'ṁ' => 'Ṁ',
596
-  'ṃ' => 'Ṃ',
597
-  'ṅ' => 'Ṅ',
598
-  'ṇ' => 'Ṇ',
599
-  'ṉ' => 'Ṉ',
600
-  'ṋ' => 'Ṋ',
601
-  'ṍ' => 'Ṍ',
602
-  'ṏ' => 'Ṏ',
603
-  'ṑ' => 'Ṑ',
604
-  'ṓ' => 'Ṓ',
605
-  'ṕ' => 'Ṕ',
606
-  'ṗ' => 'Ṗ',
607
-  'ṙ' => 'Ṙ',
608
-  'ṛ' => 'Ṛ',
609
-  'ṝ' => 'Ṝ',
610
-  'ṟ' => 'Ṟ',
611
-  'ṡ' => 'Ṡ',
612
-  'ṣ' => 'Ṣ',
613
-  'ṥ' => 'Ṥ',
614
-  'ṧ' => 'Ṧ',
615
-  'ṩ' => 'Ṩ',
616
-  'ṫ' => 'Ṫ',
617
-  'ṭ' => 'Ṭ',
618
-  'ṯ' => 'Ṯ',
619
-  'ṱ' => 'Ṱ',
620
-  'ṳ' => 'Ṳ',
621
-  'ṵ' => 'Ṵ',
622
-  'ṷ' => 'Ṷ',
623
-  'ṹ' => 'Ṹ',
624
-  'ṻ' => 'Ṻ',
625
-  'ṽ' => 'Ṽ',
626
-  'ṿ' => 'Ṿ',
627
-  'ẁ' => 'Ẁ',
628
-  'ẃ' => 'Ẃ',
629
-  'ẅ' => 'Ẅ',
630
-  'ẇ' => 'Ẇ',
631
-  'ẉ' => 'Ẉ',
632
-  'ẋ' => 'Ẋ',
633
-  'ẍ' => 'Ẍ',
634
-  'ẏ' => 'Ẏ',
635
-  'ẑ' => 'Ẑ',
636
-  'ẓ' => 'Ẓ',
637
-  'ẕ' => 'Ẕ',
638
-  'ẛ' => 'Ṡ',
639
-  'ạ' => 'Ạ',
640
-  'ả' => 'Ả',
641
-  'ấ' => 'Ấ',
642
-  'ầ' => 'Ầ',
643
-  'ẩ' => 'Ẩ',
644
-  'ẫ' => 'Ẫ',
645
-  'ậ' => 'Ậ',
646
-  'ắ' => 'Ắ',
647
-  'ằ' => 'Ằ',
648
-  'ẳ' => 'Ẳ',
649
-  'ẵ' => 'Ẵ',
650
-  'ặ' => 'Ặ',
651
-  'ẹ' => 'Ẹ',
652
-  'ẻ' => 'Ẻ',
653
-  'ẽ' => 'Ẽ',
654
-  'ế' => 'Ế',
655
-  'ề' => 'Ề',
656
-  'ể' => 'Ể',
657
-  'ễ' => 'Ễ',
658
-  'ệ' => 'Ệ',
659
-  'ỉ' => 'Ỉ',
660
-  'ị' => 'Ị',
661
-  'ọ' => 'Ọ',
662
-  'ỏ' => 'Ỏ',
663
-  'ố' => 'Ố',
664
-  'ồ' => 'Ồ',
665
-  'ổ' => 'Ổ',
666
-  'ỗ' => 'Ỗ',
667
-  'ộ' => 'Ộ',
668
-  'ớ' => 'Ớ',
669
-  'ờ' => 'Ờ',
670
-  'ở' => 'Ở',
671
-  'ỡ' => 'Ỡ',
672
-  'ợ' => 'Ợ',
673
-  'ụ' => 'Ụ',
674
-  'ủ' => 'Ủ',
675
-  'ứ' => 'Ứ',
676
-  'ừ' => 'Ừ',
677
-  'ử' => 'Ử',
678
-  'ữ' => 'Ữ',
679
-  'ự' => 'Ự',
680
-  'ỳ' => 'Ỳ',
681
-  'ỵ' => 'Ỵ',
682
-  'ỷ' => 'Ỷ',
683
-  'ỹ' => 'Ỹ',
684
-  'ỻ' => 'Ỻ',
685
-  'ỽ' => 'Ỽ',
686
-  'ỿ' => 'Ỿ',
687
-  'ἀ' => 'Ἀ',
688
-  'ἁ' => 'Ἁ',
689
-  'ἂ' => 'Ἂ',
690
-  'ἃ' => 'Ἃ',
691
-  'ἄ' => 'Ἄ',
692
-  'ἅ' => 'Ἅ',
693
-  'ἆ' => 'Ἆ',
694
-  'ἇ' => 'Ἇ',
695
-  'ἐ' => 'Ἐ',
696
-  'ἑ' => 'Ἑ',
697
-  'ἒ' => 'Ἒ',
698
-  'ἓ' => 'Ἓ',
699
-  'ἔ' => 'Ἔ',
700
-  'ἕ' => 'Ἕ',
701
-  'ἠ' => 'Ἠ',
702
-  'ἡ' => 'Ἡ',
703
-  'ἢ' => 'Ἢ',
704
-  'ἣ' => 'Ἣ',
705
-  'ἤ' => 'Ἤ',
706
-  'ἥ' => 'Ἥ',
707
-  'ἦ' => 'Ἦ',
708
-  'ἧ' => 'Ἧ',
709
-  'ἰ' => 'Ἰ',
710
-  'ἱ' => 'Ἱ',
711
-  'ἲ' => 'Ἲ',
712
-  'ἳ' => 'Ἳ',
713
-  'ἴ' => 'Ἴ',
714
-  'ἵ' => 'Ἵ',
715
-  'ἶ' => 'Ἶ',
716
-  'ἷ' => 'Ἷ',
717
-  'ὀ' => 'Ὀ',
718
-  'ὁ' => 'Ὁ',
719
-  'ὂ' => 'Ὂ',
720
-  'ὃ' => 'Ὃ',
721
-  'ὄ' => 'Ὄ',
722
-  'ὅ' => 'Ὅ',
723
-  'ὑ' => 'Ὑ',
724
-  'ὓ' => 'Ὓ',
725
-  'ὕ' => 'Ὕ',
726
-  'ὗ' => 'Ὗ',
727
-  'ὠ' => 'Ὠ',
728
-  'ὡ' => 'Ὡ',
729
-  'ὢ' => 'Ὢ',
730
-  'ὣ' => 'Ὣ',
731
-  'ὤ' => 'Ὤ',
732
-  'ὥ' => 'Ὥ',
733
-  'ὦ' => 'Ὦ',
734
-  'ὧ' => 'Ὧ',
735
-  'ὰ' => 'Ὰ',
736
-  'ά' => 'Ά',
737
-  'ὲ' => 'Ὲ',
738
-  'έ' => 'Έ',
739
-  'ὴ' => 'Ὴ',
740
-  'ή' => 'Ή',
741
-  'ὶ' => 'Ὶ',
742
-  'ί' => 'Ί',
743
-  'ὸ' => 'Ὸ',
744
-  'ό' => 'Ό',
745
-  'ὺ' => 'Ὺ',
746
-  'ύ' => 'Ύ',
747
-  'ὼ' => 'Ὼ',
748
-  'ώ' => 'Ώ',
749
-  'ᾀ' => 'ἈΙ',
750
-  'ᾁ' => 'ἉΙ',
751
-  'ᾂ' => 'ἊΙ',
752
-  'ᾃ' => 'ἋΙ',
753
-  'ᾄ' => 'ἌΙ',
754
-  'ᾅ' => 'ἍΙ',
755
-  'ᾆ' => 'ἎΙ',
756
-  'ᾇ' => 'ἏΙ',
757
-  'ᾐ' => 'ἨΙ',
758
-  'ᾑ' => 'ἩΙ',
759
-  'ᾒ' => 'ἪΙ',
760
-  'ᾓ' => 'ἫΙ',
761
-  'ᾔ' => 'ἬΙ',
762
-  'ᾕ' => 'ἭΙ',
763
-  'ᾖ' => 'ἮΙ',
764
-  'ᾗ' => 'ἯΙ',
765
-  'ᾠ' => 'ὨΙ',
766
-  'ᾡ' => 'ὩΙ',
767
-  'ᾢ' => 'ὪΙ',
768
-  'ᾣ' => 'ὫΙ',
769
-  'ᾤ' => 'ὬΙ',
770
-  'ᾥ' => 'ὭΙ',
771
-  'ᾦ' => 'ὮΙ',
772
-  'ᾧ' => 'ὯΙ',
773
-  'ᾰ' => 'Ᾰ',
774
-  'ᾱ' => 'Ᾱ',
775
-  'ᾳ' => 'ΑΙ',
776
-  'ι' => 'Ι',
777
-  'ῃ' => 'ΗΙ',
778
-  'ῐ' => 'Ῐ',
779
-  'ῑ' => 'Ῑ',
780
-  'ῠ' => 'Ῠ',
781
-  'ῡ' => 'Ῡ',
782
-  'ῥ' => 'Ῥ',
783
-  'ῳ' => 'ΩΙ',
784
-  'ⅎ' => 'Ⅎ',
785
-  'ⅰ' => 'Ⅰ',
786
-  'ⅱ' => 'Ⅱ',
787
-  'ⅲ' => 'Ⅲ',
788
-  'ⅳ' => 'Ⅳ',
789
-  'ⅴ' => 'Ⅴ',
790
-  'ⅵ' => 'Ⅵ',
791
-  'ⅶ' => 'Ⅶ',
792
-  'ⅷ' => 'Ⅷ',
793
-  'ⅸ' => 'Ⅸ',
794
-  'ⅹ' => 'Ⅹ',
795
-  'ⅺ' => 'Ⅺ',
796
-  'ⅻ' => 'Ⅻ',
797
-  'ⅼ' => 'Ⅼ',
798
-  'ⅽ' => 'Ⅽ',
799
-  'ⅾ' => 'Ⅾ',
800
-  'ⅿ' => 'Ⅿ',
801
-  'ↄ' => 'Ↄ',
802
-  'ⓐ' => 'Ⓐ',
803
-  'ⓑ' => 'Ⓑ',
804
-  'ⓒ' => 'Ⓒ',
805
-  'ⓓ' => 'Ⓓ',
806
-  'ⓔ' => 'Ⓔ',
807
-  'ⓕ' => 'Ⓕ',
808
-  'ⓖ' => 'Ⓖ',
809
-  'ⓗ' => 'Ⓗ',
810
-  'ⓘ' => 'Ⓘ',
811
-  'ⓙ' => 'Ⓙ',
812
-  'ⓚ' => 'Ⓚ',
813
-  'ⓛ' => 'Ⓛ',
814
-  'ⓜ' => 'Ⓜ',
815
-  'ⓝ' => 'Ⓝ',
816
-  'ⓞ' => 'Ⓞ',
817
-  'ⓟ' => 'Ⓟ',
818
-  'ⓠ' => 'Ⓠ',
819
-  'ⓡ' => 'Ⓡ',
820
-  'ⓢ' => 'Ⓢ',
821
-  'ⓣ' => 'Ⓣ',
822
-  'ⓤ' => 'Ⓤ',
823
-  'ⓥ' => 'Ⓥ',
824
-  'ⓦ' => 'Ⓦ',
825
-  'ⓧ' => 'Ⓧ',
826
-  'ⓨ' => 'Ⓨ',
827
-  'ⓩ' => 'Ⓩ',
828
-  'ⰰ' => 'Ⰰ',
829
-  'ⰱ' => 'Ⰱ',
830
-  'ⰲ' => 'Ⰲ',
831
-  'ⰳ' => 'Ⰳ',
832
-  'ⰴ' => 'Ⰴ',
833
-  'ⰵ' => 'Ⰵ',
834
-  'ⰶ' => 'Ⰶ',
835
-  'ⰷ' => 'Ⰷ',
836
-  'ⰸ' => 'Ⰸ',
837
-  'ⰹ' => 'Ⰹ',
838
-  'ⰺ' => 'Ⰺ',
839
-  'ⰻ' => 'Ⰻ',
840
-  'ⰼ' => 'Ⰼ',
841
-  'ⰽ' => 'Ⰽ',
842
-  'ⰾ' => 'Ⰾ',
843
-  'ⰿ' => 'Ⰿ',
844
-  'ⱀ' => 'Ⱀ',
845
-  'ⱁ' => 'Ⱁ',
846
-  'ⱂ' => 'Ⱂ',
847
-  'ⱃ' => 'Ⱃ',
848
-  'ⱄ' => 'Ⱄ',
849
-  'ⱅ' => 'Ⱅ',
850
-  'ⱆ' => 'Ⱆ',
851
-  'ⱇ' => 'Ⱇ',
852
-  'ⱈ' => 'Ⱈ',
853
-  'ⱉ' => 'Ⱉ',
854
-  'ⱊ' => 'Ⱊ',
855
-  'ⱋ' => 'Ⱋ',
856
-  'ⱌ' => 'Ⱌ',
857
-  'ⱍ' => 'Ⱍ',
858
-  'ⱎ' => 'Ⱎ',
859
-  'ⱏ' => 'Ⱏ',
860
-  'ⱐ' => 'Ⱐ',
861
-  'ⱑ' => 'Ⱑ',
862
-  'ⱒ' => 'Ⱒ',
863
-  'ⱓ' => 'Ⱓ',
864
-  'ⱔ' => 'Ⱔ',
865
-  'ⱕ' => 'Ⱕ',
866
-  'ⱖ' => 'Ⱖ',
867
-  'ⱗ' => 'Ⱗ',
868
-  'ⱘ' => 'Ⱘ',
869
-  'ⱙ' => 'Ⱙ',
870
-  'ⱚ' => 'Ⱚ',
871
-  'ⱛ' => 'Ⱛ',
872
-  'ⱜ' => 'Ⱜ',
873
-  'ⱝ' => 'Ⱝ',
874
-  'ⱞ' => 'Ⱞ',
875
-  'ⱡ' => 'Ⱡ',
876
-  'ⱥ' => 'Ⱥ',
877
-  'ⱦ' => 'Ⱦ',
878
-  'ⱨ' => 'Ⱨ',
879
-  'ⱪ' => 'Ⱪ',
880
-  'ⱬ' => 'Ⱬ',
881
-  'ⱳ' => 'Ⱳ',
882
-  'ⱶ' => 'Ⱶ',
883
-  'ⲁ' => 'Ⲁ',
884
-  'ⲃ' => 'Ⲃ',
885
-  'ⲅ' => 'Ⲅ',
886
-  'ⲇ' => 'Ⲇ',
887
-  'ⲉ' => 'Ⲉ',
888
-  'ⲋ' => 'Ⲋ',
889
-  'ⲍ' => 'Ⲍ',
890
-  'ⲏ' => 'Ⲏ',
891
-  'ⲑ' => 'Ⲑ',
892
-  'ⲓ' => 'Ⲓ',
893
-  'ⲕ' => 'Ⲕ',
894
-  'ⲗ' => 'Ⲗ',
895
-  'ⲙ' => 'Ⲙ',
896
-  'ⲛ' => 'Ⲛ',
897
-  'ⲝ' => 'Ⲝ',
898
-  'ⲟ' => 'Ⲟ',
899
-  'ⲡ' => 'Ⲡ',
900
-  'ⲣ' => 'Ⲣ',
901
-  'ⲥ' => 'Ⲥ',
902
-  'ⲧ' => 'Ⲧ',
903
-  'ⲩ' => 'Ⲩ',
904
-  'ⲫ' => 'Ⲫ',
905
-  'ⲭ' => 'Ⲭ',
906
-  'ⲯ' => 'Ⲯ',
907
-  'ⲱ' => 'Ⲱ',
908
-  'ⲳ' => 'Ⲳ',
909
-  'ⲵ' => 'Ⲵ',
910
-  'ⲷ' => 'Ⲷ',
911
-  'ⲹ' => 'Ⲹ',
912
-  'ⲻ' => 'Ⲻ',
913
-  'ⲽ' => 'Ⲽ',
914
-  'ⲿ' => 'Ⲿ',
915
-  'ⳁ' => 'Ⳁ',
916
-  'ⳃ' => 'Ⳃ',
917
-  'ⳅ' => 'Ⳅ',
918
-  'ⳇ' => 'Ⳇ',
919
-  'ⳉ' => 'Ⳉ',
920
-  'ⳋ' => 'Ⳋ',
921
-  'ⳍ' => 'Ⳍ',
922
-  'ⳏ' => 'Ⳏ',
923
-  'ⳑ' => 'Ⳑ',
924
-  'ⳓ' => 'Ⳓ',
925
-  'ⳕ' => 'Ⳕ',
926
-  'ⳗ' => 'Ⳗ',
927
-  'ⳙ' => 'Ⳙ',
928
-  'ⳛ' => 'Ⳛ',
929
-  'ⳝ' => 'Ⳝ',
930
-  'ⳟ' => 'Ⳟ',
931
-  'ⳡ' => 'Ⳡ',
932
-  'ⳣ' => 'Ⳣ',
933
-  'ⳬ' => 'Ⳬ',
934
-  'ⳮ' => 'Ⳮ',
935
-  'ⳳ' => 'Ⳳ',
936
-  'ⴀ' => 'Ⴀ',
937
-  'ⴁ' => 'Ⴁ',
938
-  'ⴂ' => 'Ⴂ',
939
-  'ⴃ' => 'Ⴃ',
940
-  'ⴄ' => 'Ⴄ',
941
-  'ⴅ' => 'Ⴅ',
942
-  'ⴆ' => 'Ⴆ',
943
-  'ⴇ' => 'Ⴇ',
944
-  'ⴈ' => 'Ⴈ',
945
-  'ⴉ' => 'Ⴉ',
946
-  'ⴊ' => 'Ⴊ',
947
-  'ⴋ' => 'Ⴋ',
948
-  'ⴌ' => 'Ⴌ',
949
-  'ⴍ' => 'Ⴍ',
950
-  'ⴎ' => 'Ⴎ',
951
-  'ⴏ' => 'Ⴏ',
952
-  'ⴐ' => 'Ⴐ',
953
-  'ⴑ' => 'Ⴑ',
954
-  'ⴒ' => 'Ⴒ',
955
-  'ⴓ' => 'Ⴓ',
956
-  'ⴔ' => 'Ⴔ',
957
-  'ⴕ' => 'Ⴕ',
958
-  'ⴖ' => 'Ⴖ',
959
-  'ⴗ' => 'Ⴗ',
960
-  'ⴘ' => 'Ⴘ',
961
-  'ⴙ' => 'Ⴙ',
962
-  'ⴚ' => 'Ⴚ',
963
-  'ⴛ' => 'Ⴛ',
964
-  'ⴜ' => 'Ⴜ',
965
-  'ⴝ' => 'Ⴝ',
966
-  'ⴞ' => 'Ⴞ',
967
-  'ⴟ' => 'Ⴟ',
968
-  'ⴠ' => 'Ⴠ',
969
-  'ⴡ' => 'Ⴡ',
970
-  'ⴢ' => 'Ⴢ',
971
-  'ⴣ' => 'Ⴣ',
972
-  'ⴤ' => 'Ⴤ',
973
-  'ⴥ' => 'Ⴥ',
974
-  'ⴧ' => 'Ⴧ',
975
-  'ⴭ' => 'Ⴭ',
976
-  'ꙁ' => 'Ꙁ',
977
-  'ꙃ' => 'Ꙃ',
978
-  'ꙅ' => 'Ꙅ',
979
-  'ꙇ' => 'Ꙇ',
980
-  'ꙉ' => 'Ꙉ',
981
-  'ꙋ' => 'Ꙋ',
982
-  'ꙍ' => 'Ꙍ',
983
-  'ꙏ' => 'Ꙏ',
984
-  'ꙑ' => 'Ꙑ',
985
-  'ꙓ' => 'Ꙓ',
986
-  'ꙕ' => 'Ꙕ',
987
-  'ꙗ' => 'Ꙗ',
988
-  'ꙙ' => 'Ꙙ',
989
-  'ꙛ' => 'Ꙛ',
990
-  'ꙝ' => 'Ꙝ',
991
-  'ꙟ' => 'Ꙟ',
992
-  'ꙡ' => 'Ꙡ',
993
-  'ꙣ' => 'Ꙣ',
994
-  'ꙥ' => 'Ꙥ',
995
-  'ꙧ' => 'Ꙧ',
996
-  'ꙩ' => 'Ꙩ',
997
-  'ꙫ' => 'Ꙫ',
998
-  'ꙭ' => 'Ꙭ',
999
-  'ꚁ' => 'Ꚁ',
1000
-  'ꚃ' => 'Ꚃ',
1001
-  'ꚅ' => 'Ꚅ',
1002
-  'ꚇ' => 'Ꚇ',
1003
-  'ꚉ' => 'Ꚉ',
1004
-  'ꚋ' => 'Ꚋ',
1005
-  'ꚍ' => 'Ꚍ',
1006
-  'ꚏ' => 'Ꚏ',
1007
-  'ꚑ' => 'Ꚑ',
1008
-  'ꚓ' => 'Ꚓ',
1009
-  'ꚕ' => 'Ꚕ',
1010
-  'ꚗ' => 'Ꚗ',
1011
-  'ꚙ' => 'Ꚙ',
1012
-  'ꚛ' => 'Ꚛ',
1013
-  'ꜣ' => 'Ꜣ',
1014
-  'ꜥ' => 'Ꜥ',
1015
-  'ꜧ' => 'Ꜧ',
1016
-  'ꜩ' => 'Ꜩ',
1017
-  'ꜫ' => 'Ꜫ',
1018
-  'ꜭ' => 'Ꜭ',
1019
-  'ꜯ' => 'Ꜯ',
1020
-  'ꜳ' => 'Ꜳ',
1021
-  'ꜵ' => 'Ꜵ',
1022
-  'ꜷ' => 'Ꜷ',
1023
-  'ꜹ' => 'Ꜹ',
1024
-  'ꜻ' => 'Ꜻ',
1025
-  'ꜽ' => 'Ꜽ',
1026
-  'ꜿ' => 'Ꜿ',
1027
-  'ꝁ' => 'Ꝁ',
1028
-  'ꝃ' => 'Ꝃ',
1029
-  'ꝅ' => 'Ꝅ',
1030
-  'ꝇ' => 'Ꝇ',
1031
-  'ꝉ' => 'Ꝉ',
1032
-  'ꝋ' => 'Ꝋ',
1033
-  'ꝍ' => 'Ꝍ',
1034
-  'ꝏ' => 'Ꝏ',
1035
-  'ꝑ' => 'Ꝑ',
1036
-  'ꝓ' => 'Ꝓ',
1037
-  'ꝕ' => 'Ꝕ',
1038
-  'ꝗ' => 'Ꝗ',
1039
-  'ꝙ' => 'Ꝙ',
1040
-  'ꝛ' => 'Ꝛ',
1041
-  'ꝝ' => 'Ꝝ',
1042
-  'ꝟ' => 'Ꝟ',
1043
-  'ꝡ' => 'Ꝡ',
1044
-  'ꝣ' => 'Ꝣ',
1045
-  'ꝥ' => 'Ꝥ',
1046
-  'ꝧ' => 'Ꝧ',
1047
-  'ꝩ' => 'Ꝩ',
1048
-  'ꝫ' => 'Ꝫ',
1049
-  'ꝭ' => 'Ꝭ',
1050
-  'ꝯ' => 'Ꝯ',
1051
-  'ꝺ' => 'Ꝺ',
1052
-  'ꝼ' => 'Ꝼ',
1053
-  'ꝿ' => 'Ꝿ',
1054
-  'ꞁ' => 'Ꞁ',
1055
-  'ꞃ' => 'Ꞃ',
1056
-  'ꞅ' => 'Ꞅ',
1057
-  'ꞇ' => 'Ꞇ',
1058
-  'ꞌ' => 'Ꞌ',
1059
-  'ꞑ' => 'Ꞑ',
1060
-  'ꞓ' => 'Ꞓ',
1061
-  'ꞔ' => 'Ꞔ',
1062
-  'ꞗ' => 'Ꞗ',
1063
-  'ꞙ' => 'Ꞙ',
1064
-  'ꞛ' => 'Ꞛ',
1065
-  'ꞝ' => 'Ꞝ',
1066
-  'ꞟ' => 'Ꞟ',
1067
-  'ꞡ' => 'Ꞡ',
1068
-  'ꞣ' => 'Ꞣ',
1069
-  'ꞥ' => 'Ꞥ',
1070
-  'ꞧ' => 'Ꞧ',
1071
-  'ꞩ' => 'Ꞩ',
1072
-  'ꞵ' => 'Ꞵ',
1073
-  'ꞷ' => 'Ꞷ',
1074
-  'ꞹ' => 'Ꞹ',
1075
-  'ꞻ' => 'Ꞻ',
1076
-  'ꞽ' => 'Ꞽ',
1077
-  'ꞿ' => 'Ꞿ',
1078
-  'ꟃ' => 'Ꟃ',
1079
-  'ꟈ' => 'Ꟈ',
1080
-  'ꟊ' => 'Ꟊ',
1081
-  'ꟶ' => 'Ꟶ',
1082
-  'ꭓ' => 'Ꭓ',
1083
-  'ꭰ' => 'Ꭰ',
1084
-  'ꭱ' => 'Ꭱ',
1085
-  'ꭲ' => 'Ꭲ',
1086
-  'ꭳ' => 'Ꭳ',
1087
-  'ꭴ' => 'Ꭴ',
1088
-  'ꭵ' => 'Ꭵ',
1089
-  'ꭶ' => 'Ꭶ',
1090
-  'ꭷ' => 'Ꭷ',
1091
-  'ꭸ' => 'Ꭸ',
1092
-  'ꭹ' => 'Ꭹ',
1093
-  'ꭺ' => 'Ꭺ',
1094
-  'ꭻ' => 'Ꭻ',
1095
-  'ꭼ' => 'Ꭼ',
1096
-  'ꭽ' => 'Ꭽ',
1097
-  'ꭾ' => 'Ꭾ',
1098
-  'ꭿ' => 'Ꭿ',
1099
-  'ꮀ' => 'Ꮀ',
1100
-  'ꮁ' => 'Ꮁ',
1101
-  'ꮂ' => 'Ꮂ',
1102
-  'ꮃ' => 'Ꮃ',
1103
-  'ꮄ' => 'Ꮄ',
1104
-  'ꮅ' => 'Ꮅ',
1105
-  'ꮆ' => 'Ꮆ',
1106
-  'ꮇ' => 'Ꮇ',
1107
-  'ꮈ' => 'Ꮈ',
1108
-  'ꮉ' => 'Ꮉ',
1109
-  'ꮊ' => 'Ꮊ',
1110
-  'ꮋ' => 'Ꮋ',
1111
-  'ꮌ' => 'Ꮌ',
1112
-  'ꮍ' => 'Ꮍ',
1113
-  'ꮎ' => 'Ꮎ',
1114
-  'ꮏ' => 'Ꮏ',
1115
-  'ꮐ' => 'Ꮐ',
1116
-  'ꮑ' => 'Ꮑ',
1117
-  'ꮒ' => 'Ꮒ',
1118
-  'ꮓ' => 'Ꮓ',
1119
-  'ꮔ' => 'Ꮔ',
1120
-  'ꮕ' => 'Ꮕ',
1121
-  'ꮖ' => 'Ꮖ',
1122
-  'ꮗ' => 'Ꮗ',
1123
-  'ꮘ' => 'Ꮘ',
1124
-  'ꮙ' => 'Ꮙ',
1125
-  'ꮚ' => 'Ꮚ',
1126
-  'ꮛ' => 'Ꮛ',
1127
-  'ꮜ' => 'Ꮜ',
1128
-  'ꮝ' => 'Ꮝ',
1129
-  'ꮞ' => 'Ꮞ',
1130
-  'ꮟ' => 'Ꮟ',
1131
-  'ꮠ' => 'Ꮠ',
1132
-  'ꮡ' => 'Ꮡ',
1133
-  'ꮢ' => 'Ꮢ',
1134
-  'ꮣ' => 'Ꮣ',
1135
-  'ꮤ' => 'Ꮤ',
1136
-  'ꮥ' => 'Ꮥ',
1137
-  'ꮦ' => 'Ꮦ',
1138
-  'ꮧ' => 'Ꮧ',
1139
-  'ꮨ' => 'Ꮨ',
1140
-  'ꮩ' => 'Ꮩ',
1141
-  'ꮪ' => 'Ꮪ',
1142
-  'ꮫ' => 'Ꮫ',
1143
-  'ꮬ' => 'Ꮬ',
1144
-  'ꮭ' => 'Ꮭ',
1145
-  'ꮮ' => 'Ꮮ',
1146
-  'ꮯ' => 'Ꮯ',
1147
-  'ꮰ' => 'Ꮰ',
1148
-  'ꮱ' => 'Ꮱ',
1149
-  'ꮲ' => 'Ꮲ',
1150
-  'ꮳ' => 'Ꮳ',
1151
-  'ꮴ' => 'Ꮴ',
1152
-  'ꮵ' => 'Ꮵ',
1153
-  'ꮶ' => 'Ꮶ',
1154
-  'ꮷ' => 'Ꮷ',
1155
-  'ꮸ' => 'Ꮸ',
1156
-  'ꮹ' => 'Ꮹ',
1157
-  'ꮺ' => 'Ꮺ',
1158
-  'ꮻ' => 'Ꮻ',
1159
-  'ꮼ' => 'Ꮼ',
1160
-  'ꮽ' => 'Ꮽ',
1161
-  'ꮾ' => 'Ꮾ',
1162
-  'ꮿ' => 'Ꮿ',
1163
-  'a' => 'A',
1164
-  'b' => 'B',
1165
-  'c' => 'C',
1166
-  'd' => 'D',
1167
-  'e' => 'E',
1168
-  'f' => 'F',
1169
-  'g' => 'G',
1170
-  'h' => 'H',
1171
-  'i' => 'I',
1172
-  'j' => 'J',
1173
-  'k' => 'K',
1174
-  'l' => 'L',
1175
-  'm' => 'M',
1176
-  'n' => 'N',
1177
-  'o' => 'O',
1178
-  'p' => 'P',
1179
-  'q' => 'Q',
1180
-  'r' => 'R',
1181
-  's' => 'S',
1182
-  't' => 'T',
1183
-  'u' => 'U',
1184
-  'v' => 'V',
1185
-  'w' => 'W',
1186
-  'x' => 'X',
1187
-  'y' => 'Y',
1188
-  'z' => 'Z',
1189
-  '
Please login to merge, or discard this patch.