@ledvance/group-ui-biz-bundle 1.0.141 → 1.0.142
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/modules/biorhythm/IconSelect.tsx +92 -29
- package/src/modules/energyConsumption/EnergyConsumptionActions.ts +1 -1
- package/src/modules/energyConsumption/EnergyConsumptionChart/ChartSection.tsx +61 -69
- package/src/modules/energyConsumption/EnergyConsumptionChart/LandscapeView.tsx +1 -0
- package/src/modules/energyConsumption/EnergyConsumptionChart/styles.ts +8 -4
- package/src/modules/energyConsumption/EnergyConsumptionChart/useEnergyData.ts +4 -2
- package/src/modules/energyConsumption/component/DateSwitch.tsx +10 -8
- package/src/modules/energyConsumption/component/NewBarChart.tsx +23 -3
- package/src/modules/flags/FlagInfo.tsx +1180 -1174
|
@@ -39,159 +39,161 @@ export const defFlagList: FlagUiInfo[] = [
|
|
|
39
39
|
{
|
|
40
40
|
id: 231,
|
|
41
41
|
name: I18n.getLang('flag_leverkusen'),
|
|
42
|
-
|
|
43
|
-
|
|
42
|
+
colors: [{ h: 360, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 60, s: 100, v: 100 }],
|
|
43
|
+
...defFlagConfig
|
|
44
44
|
},
|
|
45
45
|
{
|
|
46
46
|
id: 255,
|
|
47
47
|
name: I18n.getLang('country_DE'),
|
|
48
48
|
...defFlagConfig,
|
|
49
|
-
colors: [{h: 48, s: 100, v: 100},{h: 360, s: 100, v: 100},{h: 0, s: 0, v:0}],
|
|
49
|
+
colors: [{ h: 48, s: 100, v: 100 }, { h: 360, s: 100, v: 100 }, { h: 0, s: 0, v: 0 }],
|
|
50
50
|
},
|
|
51
51
|
{
|
|
52
52
|
id: 254,
|
|
53
53
|
name: I18n.getLang('country_BE'),
|
|
54
54
|
...defFlagConfig,
|
|
55
|
-
colors: [{h: 360, s: 100, v: 100}, {h: 48, s: 100, v: 100}, {h: 0, s: 0, v: 0}]
|
|
55
|
+
colors: [{ h: 360, s: 100, v: 100 }, { h: 48, s: 100, v: 100 }, { h: 0, s: 0, v: 0 }]
|
|
56
56
|
},
|
|
57
57
|
{
|
|
58
58
|
id: 253,
|
|
59
59
|
name: I18n.getLang('country_FR'),
|
|
60
60
|
...defFlagConfig,
|
|
61
|
-
colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 212, s: 100, v: 100}]
|
|
61
|
+
colors: [{ h: 360, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 212, s: 100, v: 100 }]
|
|
62
62
|
},
|
|
63
63
|
{
|
|
64
64
|
id: 252,
|
|
65
65
|
name: I18n.getLang('country_PT'),
|
|
66
66
|
...defFlagConfig,
|
|
67
|
-
colors: [{h: 360, s: 100, v: 100}, {h: 360, s: 100, v: 100}, {h: 120, s: 100, v: 64}]
|
|
67
|
+
colors: [{ h: 360, s: 100, v: 100 }, { h: 360, s: 100, v: 100 }, { h: 120, s: 100, v: 64 }]
|
|
68
68
|
},
|
|
69
69
|
{
|
|
70
70
|
id: 251,
|
|
71
71
|
name: I18n.getLang('country_scotland'),
|
|
72
72
|
...defFlagConfig,
|
|
73
|
-
colors: [{h: 209, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 209, s: 100, v: 100}]
|
|
73
|
+
colors: [{ h: 209, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 209, s: 100, v: 100 }]
|
|
74
74
|
},
|
|
75
75
|
{
|
|
76
76
|
id: 250,
|
|
77
77
|
name: I18n.getLang('country_ES'),
|
|
78
78
|
...defFlagConfig,
|
|
79
|
-
colors: [{h: 360, s: 100, v: 100}, {h: 47, s: 100, v: 100}, {h: 360, s: 100, v: 100}]
|
|
79
|
+
colors: [{ h: 360, s: 100, v: 100 }, { h: 47, s: 100, v: 100 }, { h: 360, s: 100, v: 100 }]
|
|
80
80
|
},
|
|
81
81
|
{
|
|
82
82
|
id: 249,
|
|
83
83
|
name: I18n.getLang('country_TR'),
|
|
84
84
|
...defFlagConfig,
|
|
85
|
-
colors: [{h: 360, s: 100, v: 100}, {h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}]
|
|
85
|
+
colors: [{ h: 360, s: 100, v: 100 }, { h: 360, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }]
|
|
86
86
|
},
|
|
87
87
|
{
|
|
88
88
|
id: 248,
|
|
89
89
|
name: I18n.getLang('country_AT'),
|
|
90
90
|
...defFlagConfig,
|
|
91
|
-
colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 360, s: 100, v: 100}]
|
|
91
|
+
colors: [{ h: 360, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 360, s: 100, v: 100 }]
|
|
92
92
|
},
|
|
93
93
|
{
|
|
94
94
|
id: 247,
|
|
95
95
|
name: I18n.getLang('country_england'),
|
|
96
96
|
...defFlagConfig,
|
|
97
|
-
colors: [{h: 0, s: 0, v: 100}, {h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}]
|
|
97
|
+
colors: [{ h: 0, s: 0, v: 100 }, { h: 360, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }]
|
|
98
98
|
},
|
|
99
99
|
{
|
|
100
100
|
id: 246,
|
|
101
101
|
name: I18n.getLang('country_HU'),
|
|
102
102
|
...defFlagConfig,
|
|
103
|
-
colors: [{h: 120, s: 100, v: 64}, {h: 0, s: 0, v: 100}, {h: 360, s: 100, v: 100}]
|
|
103
|
+
colors: [{ h: 120, s: 100, v: 64 }, { h: 0, s: 0, v: 100 }, { h: 360, s: 100, v: 100 }]
|
|
104
104
|
},
|
|
105
105
|
{
|
|
106
106
|
id: 245,
|
|
107
107
|
name: I18n.getLang('country_SK'),
|
|
108
108
|
...defFlagConfig,
|
|
109
|
-
colors: [{h: 360, s: 100, v: 100}, {h: 213, s:
|
|
109
|
+
colors: [{ h: 360, s: 100, v: 100 }, { h: 213, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }]
|
|
110
110
|
},
|
|
111
111
|
{
|
|
112
112
|
id: 244,
|
|
113
113
|
name: I18n.getLang('country_AL'),
|
|
114
114
|
...defFlagConfig,
|
|
115
|
-
colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v:0}, {h: 360, s: 100, v: 100}]
|
|
115
|
+
colors: [{ h: 360, s: 100, v: 100 }, { h: 0, s: 0, v: 0 }, { h: 360, s: 100, v: 100 }]
|
|
116
116
|
},
|
|
117
117
|
{
|
|
118
118
|
id: 243,
|
|
119
119
|
name: I18n.getLang('country_DK'),
|
|
120
120
|
...defFlagConfig,
|
|
121
|
-
colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v:100}, {h: 360, s: 100, v: 100}]
|
|
121
|
+
colors: [{ h: 360, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 360, s: 100, v: 100 }]
|
|
122
122
|
},
|
|
123
123
|
{
|
|
124
124
|
id: 242,
|
|
125
125
|
name: I18n.getLang('country_NL'),
|
|
126
126
|
...defFlagConfig,
|
|
127
|
-
colors: [{h: 217, s: 100, v: 100}, {h: 0, s: 0, v:100}, {h: 360, s: 100, v: 100}]
|
|
127
|
+
colors: [{ h: 217, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 360, s: 100, v: 100 }]
|
|
128
128
|
},
|
|
129
129
|
{
|
|
130
130
|
id: 241,
|
|
131
131
|
name: I18n.getLang('country_RO'),
|
|
132
132
|
...defFlagConfig,
|
|
133
|
-
colors: [{h: 360, s: 100, v: 100}, {h: 48, s: 91, v: 100}, {h: 219, s: 100, v: 100}]
|
|
133
|
+
colors: [{ h: 360, s: 100, v: 100 }, { h: 48, s: 91, v: 100 }, { h: 219, s: 100, v: 100 }]
|
|
134
134
|
},
|
|
135
135
|
{
|
|
136
136
|
id: 240,
|
|
137
137
|
name: I18n.getLang('country_CH'),
|
|
138
138
|
...defFlagConfig,
|
|
139
|
-
colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 360, s: 100, v: 100}]
|
|
139
|
+
colors: [{ h: 360, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 360, s: 100, v: 100 }]
|
|
140
140
|
},
|
|
141
141
|
{
|
|
142
142
|
id: 239,
|
|
143
143
|
name: I18n.getLang('country_RS'),
|
|
144
144
|
...defFlagConfig,
|
|
145
|
-
colors: [{h: 0, s: 0, v: 100}, {h: 210, s:
|
|
145
|
+
colors: [{ h: 0, s: 0, v: 100 }, { h: 210, s: 100, v: 100 }, { h: 360, s: 100, v: 100 }]
|
|
146
146
|
},
|
|
147
147
|
{
|
|
148
148
|
id: 238,
|
|
149
149
|
name: I18n.getLang('country_IT'),
|
|
150
150
|
...defFlagConfig,
|
|
151
|
-
colors: [{h: 360, s: 100, v: 100}, {h: 212, s: 4, v: 100}, {h: 120, s: 100, v: 64}]
|
|
151
|
+
colors: [{ h: 360, s: 100, v: 100 }, { h: 212, s: 4, v: 100 }, { h: 120, s: 100, v: 64 }]
|
|
152
152
|
},
|
|
153
153
|
{
|
|
154
154
|
id: 237,
|
|
155
155
|
name: I18n.getLang('country_CZ'),
|
|
156
156
|
...defFlagConfig,
|
|
157
|
-
colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 211, s:
|
|
157
|
+
colors: [{ h: 360, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 211, s: 100, v: 100 }]
|
|
158
158
|
},
|
|
159
159
|
{
|
|
160
160
|
id: 236,
|
|
161
161
|
name: I18n.getLang('country_SI'),
|
|
162
162
|
...defFlagConfig,
|
|
163
|
-
colors: [{h: 360, s: 100, v: 100}, {h: 217, s: 100, v: 100}, {h: 0, s: 0, v: 100}]
|
|
163
|
+
colors: [{ h: 360, s: 100, v: 100 }, { h: 217, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }]
|
|
164
164
|
},
|
|
165
165
|
{
|
|
166
166
|
id: 235,
|
|
167
167
|
name: I18n.getLang('country_HR'),
|
|
168
168
|
...defFlagConfig,
|
|
169
|
-
colors: [{h: 220, s: 89, v: 100},{h: 0, s: 0, v: 100}, {h: 360, s: 100, v: 100}]
|
|
169
|
+
colors: [{ h: 220, s: 89, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 360, s: 100, v: 100 }]
|
|
170
170
|
},
|
|
171
171
|
{
|
|
172
172
|
id: 234,
|
|
173
173
|
name: I18n.getLang('country_SE'),
|
|
174
174
|
...defFlagConfig,
|
|
175
|
-
colors: [{h: 201, s: 100, v: 100}, {h: 48, s: 99, v: 100}, {h: 201, s: 100, v: 100}]
|
|
175
|
+
colors: [{ h: 201, s: 100, v: 100 }, { h: 48, s: 99, v: 100 }, { h: 201, s: 100, v: 100 }]
|
|
176
176
|
},
|
|
177
177
|
{
|
|
178
178
|
id: 233,
|
|
179
179
|
name: I18n.getLang('country_NO'),
|
|
180
180
|
...defFlagConfig,
|
|
181
|
-
colors: [{h: 218, s: 100, v: 100},{h: 0, s: 0, v: 100}, {h: 360, s: 100, v: 100}]
|
|
181
|
+
colors: [{ h: 218, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 360, s: 100, v: 100 }]
|
|
182
182
|
},
|
|
183
183
|
{
|
|
184
184
|
id: 232,
|
|
185
185
|
name: I18n.getLang('country_PL'),
|
|
186
186
|
...defFlagConfig,
|
|
187
|
-
colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}]
|
|
187
|
+
colors: [{ h: 360, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }]
|
|
188
188
|
},
|
|
189
189
|
{
|
|
190
190
|
id: 230,
|
|
191
191
|
name: I18n.getLang('country_UA'),
|
|
192
192
|
...defFlagConfig,
|
|
193
|
-
colors: [{h: 50, s: 100, v: 100}, {h: 211, s: 100, v: 100}]
|
|
193
|
+
colors: [{ h: 50, s: 100, v: 100 }, { h: 211, s: 100, v: 100 }]
|
|
194
194
|
},
|
|
195
|
+
|
|
196
|
+
|
|
195
197
|
{
|
|
196
198
|
id: 229,
|
|
197
199
|
name: I18n.getLang('country_gb'),
|
|
@@ -609,1151 +611,1155 @@ export const defFlagList: FlagUiInfo[] = [
|
|
|
609
611
|
]
|
|
610
612
|
|
|
611
613
|
export const def2Pids = ['k588eygmfkdzmpzm']
|
|
614
|
+
// 统一使用与设备相同的数据
|
|
615
|
+
export const def2FlagList: FlagUiInfo[] = defFlagList
|
|
612
616
|
// k588eygmfkdzmpzm
|
|
613
|
-
export const def2FlagList: FlagUiInfo[] = [
|
|
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
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
]
|
|
1185
|
-
|
|
1186
|
-
export const def3Pids = ['uzoammz8zm0onv1i', '85bmfxhxpmwj7exf']
|
|
1187
|
-
//
|
|
1188
|
-
export const def3FlagList: FlagUiInfo[] =
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
|
|
1564
|
-
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
|
-
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
|
|
1611
|
-
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
|
-
|
|
1630
|
-
|
|
1631
|
-
|
|
1632
|
-
|
|
1633
|
-
|
|
1634
|
-
|
|
1635
|
-
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
|
|
1705
|
-
|
|
1706
|
-
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
|
|
1713
|
-
|
|
1714
|
-
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
]
|
|
617
|
+
// export const def2FlagList: FlagUiInfo[] = [
|
|
618
|
+
// {
|
|
619
|
+
// id: 231,
|
|
620
|
+
// name: I18n.getLang('flag_leverkusen'),
|
|
621
|
+
// ...defFlagConfig,
|
|
622
|
+
// colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 0, s: 0, v: 100}, {h: 60, s: 100, v: 100}]
|
|
623
|
+
// },
|
|
624
|
+
// {
|
|
625
|
+
// id: 255,
|
|
626
|
+
// name: I18n.getLang('country_DE'),
|
|
627
|
+
// ...defFlagConfig,
|
|
628
|
+
// colors: [{h: 48, s: 100, v: 100},{h: 360, s: 100, v: 100},{h: 0, s: 85, v: 46},{h: 0, s: 0, v:0}],
|
|
629
|
+
// },
|
|
630
|
+
// {
|
|
631
|
+
// id: 254,
|
|
632
|
+
// name: I18n.getLang('country_BE'),
|
|
633
|
+
// ...defFlagConfig,
|
|
634
|
+
// colors: [{h: 360, s: 100, v: 100}, {h: 48, s: 100, v: 100}, {h: 48, s: 99, v: 58}, {h: 0, s: 0, v: 0}]
|
|
635
|
+
// },
|
|
636
|
+
// {
|
|
637
|
+
// id: 253,
|
|
638
|
+
// name: I18n.getLang('country_FR'),
|
|
639
|
+
// ...defFlagConfig,
|
|
640
|
+
// colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 0, s: 0, v: 100}, {h: 212, s: 100, v: 100}]
|
|
641
|
+
// },
|
|
642
|
+
// {
|
|
643
|
+
// id: 252,
|
|
644
|
+
// name: I18n.getLang('country_PT'),
|
|
645
|
+
// ...defFlagConfig,
|
|
646
|
+
// colors: [{h: 360, s: 100, v: 100}, {h: 360, s: 100, v: 100}, {h: 360, s: 100, v: 100}, {h: 120, s: 100, v: 64}]
|
|
647
|
+
// },
|
|
648
|
+
// {
|
|
649
|
+
// id: 251,
|
|
650
|
+
// name: I18n.getLang('country_scotland'),
|
|
651
|
+
// ...defFlagConfig,
|
|
652
|
+
// colors: [{h: 209, s: 86, v: 100}, {h: 0, s: 0, v: 100}, {h: 0, s: 0, v: 100}, {h: 209, s: 86, v: 100}]
|
|
653
|
+
// },
|
|
654
|
+
// {
|
|
655
|
+
// id: 250,
|
|
656
|
+
// name: I18n.getLang('country_ES'),
|
|
657
|
+
// ...defFlagConfig,
|
|
658
|
+
// colors: [{h: 360, s: 100, v: 100}, {h: 47, s: 100, v: 100}, {h: 47, s: 100, v: 100}, {h: 360, s: 100, v: 100}]
|
|
659
|
+
// },
|
|
660
|
+
// {
|
|
661
|
+
// id: 249,
|
|
662
|
+
// name: I18n.getLang('country_TR'),
|
|
663
|
+
// ...defFlagConfig,
|
|
664
|
+
// colors: [{h: 360, s: 100, v: 100}, {h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 360, s: 100, v: 100}]
|
|
665
|
+
// },
|
|
666
|
+
// {
|
|
667
|
+
// id: 248,
|
|
668
|
+
// name: I18n.getLang('country_AT'),
|
|
669
|
+
// ...defFlagConfig,
|
|
670
|
+
// colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 0, s: 0, v: 100}, {h: 360, s: 100, v: 100}]
|
|
671
|
+
// },
|
|
672
|
+
// {
|
|
673
|
+
// id: 247,
|
|
674
|
+
// name: I18n.getLang('country_england'),
|
|
675
|
+
// ...defFlagConfig,
|
|
676
|
+
// colors: [{h: 0, s: 0, v: 100}, {h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 0, s: 0, v: 100}]
|
|
677
|
+
// },
|
|
678
|
+
// {
|
|
679
|
+
// id: 246,
|
|
680
|
+
// name: I18n.getLang('country_HU'),
|
|
681
|
+
// ...defFlagConfig,
|
|
682
|
+
// colors: [{h: 120, s: 100, v: 64}, {h: 0, s: 0, v: 100}, {h: 0, s: 0, v: 100},{h: 360, s: 100, v: 100}]
|
|
683
|
+
// },
|
|
684
|
+
// {
|
|
685
|
+
// id: 245,
|
|
686
|
+
// name: I18n.getLang('country_SK'),
|
|
687
|
+
// ...defFlagConfig,
|
|
688
|
+
// colors: [{h: 360, s: 100, v: 100}, {h: 213, s: 93, v: 100}, {h: 0, s: 0, v: 100}, {h: 0, s: 0, v: 100}]
|
|
689
|
+
// },
|
|
690
|
+
// {
|
|
691
|
+
// id: 244,
|
|
692
|
+
// name: I18n.getLang('country_AL'),
|
|
693
|
+
// ...defFlagConfig,
|
|
694
|
+
// colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v:0}, {h: 0, s: 0, v:0}, {h: 360, s: 100, v: 100}]
|
|
695
|
+
// },
|
|
696
|
+
// {
|
|
697
|
+
// id: 243,
|
|
698
|
+
// name: I18n.getLang('country_DK'),
|
|
699
|
+
// ...defFlagConfig,
|
|
700
|
+
// colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v:100}, {h: 0, s: 0, v:100}, {h: 360, s: 100, v: 100}]
|
|
701
|
+
// },
|
|
702
|
+
// {
|
|
703
|
+
// id: 242,
|
|
704
|
+
// name: I18n.getLang('country_NL'),
|
|
705
|
+
// ...defFlagConfig,
|
|
706
|
+
// colors: [{h: 217, s: 100, v: 100}, {h: 0, s: 0, v:100}, {h: 0, s: 0, v:100}, {h: 360, s: 100, v: 100}]
|
|
707
|
+
// },
|
|
708
|
+
// {
|
|
709
|
+
// id: 241,
|
|
710
|
+
// name: I18n.getLang('country_RO'),
|
|
711
|
+
// ...defFlagConfig,
|
|
712
|
+
// colors: [{h: 360, s: 100, v: 100}, {h: 48, s: 91, v: 100}, {h: 219, s: 100, v: 100}]
|
|
713
|
+
// },
|
|
714
|
+
// {
|
|
715
|
+
// id: 240,
|
|
716
|
+
// name: I18n.getLang('country_CH'),
|
|
717
|
+
// ...defFlagConfig,
|
|
718
|
+
// colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 360, s: 100, v: 100}]
|
|
719
|
+
// },
|
|
720
|
+
// {
|
|
721
|
+
// id: 239,
|
|
722
|
+
// name: I18n.getLang('country_RS'),
|
|
723
|
+
// ...defFlagConfig,
|
|
724
|
+
// colors: [{h: 360, s: 100, v: 100}, {h: 231, s: 100, v: 100}, {h: 0, s: 0, v: 100},{h: 0, s: 0, v: 100}]
|
|
725
|
+
// },
|
|
726
|
+
// {
|
|
727
|
+
// id: 238,
|
|
728
|
+
// name: I18n.getLang('country_IT'),
|
|
729
|
+
// ...defFlagConfig,
|
|
730
|
+
// colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100},{h: 0, s: 0, v: 100}, {h: 120, s: 100, v: 64}]
|
|
731
|
+
// },
|
|
732
|
+
// {
|
|
733
|
+
// id: 237,
|
|
734
|
+
// name: I18n.getLang('country_CZ'),
|
|
735
|
+
// ...defFlagConfig,
|
|
736
|
+
// colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 0, s: 0, v: 100}, {h: 211, s: 99, v: 100}]
|
|
737
|
+
// },
|
|
738
|
+
// {
|
|
739
|
+
// id: 236,
|
|
740
|
+
// name: I18n.getLang('country_SI'),
|
|
741
|
+
// ...defFlagConfig,
|
|
742
|
+
// colors: [{h: 360, s: 100, v: 100}, {h: 217, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 0, s: 0, v: 100}]
|
|
743
|
+
// },
|
|
744
|
+
// {
|
|
745
|
+
// id: 235,
|
|
746
|
+
// name: I18n.getLang('country_HR'),
|
|
747
|
+
// ...defFlagConfig,
|
|
748
|
+
// colors: [{h: 231, s: 100, v: 100}, {h: 0, s: 0, v: 100},{h: 0, s: 0, v: 100}, {h: 360, s: 100, v: 100}]
|
|
749
|
+
// },
|
|
750
|
+
// {
|
|
751
|
+
// id: 234,
|
|
752
|
+
// name: I18n.getLang('country_SE'),
|
|
753
|
+
// ...defFlagConfig,
|
|
754
|
+
// colors: [{h: 201, s: 100, v: 100}, {h: 48, s: 99, v: 100},{h: 48, s: 99, v: 100}, {h: 201, s: 100, v: 100}]
|
|
755
|
+
// },
|
|
756
|
+
// {
|
|
757
|
+
// id: 233,
|
|
758
|
+
// name: I18n.getLang('country_NO'),
|
|
759
|
+
// ...defFlagConfig,
|
|
760
|
+
// colors: [{h: 231, s: 100, v: 100}, {h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 360, s: 100, v: 100}]
|
|
761
|
+
// },
|
|
762
|
+
// {
|
|
763
|
+
// id: 232,
|
|
764
|
+
// name: I18n.getLang('country_PL'),
|
|
765
|
+
// ...defFlagConfig,
|
|
766
|
+
// colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}]
|
|
767
|
+
// },
|
|
768
|
+
// {
|
|
769
|
+
// id: 230,
|
|
770
|
+
// name: I18n.getLang('country_UA'),
|
|
771
|
+
// ...defFlagConfig,
|
|
772
|
+
// colors: [{h: 50, s: 100, v: 100}, {h: 211, s: 100, v: 100}]
|
|
773
|
+
// },
|
|
774
|
+
// {
|
|
775
|
+
// id: 229,
|
|
776
|
+
// name: I18n.getLang('country_gb'),
|
|
777
|
+
// ...defFlagConfig,
|
|
778
|
+
// colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 205, s: 100, v: 100 }],
|
|
779
|
+
// },
|
|
780
|
+
// {
|
|
781
|
+
// id: 228,
|
|
782
|
+
// name: I18n.getLang('country_IE'),
|
|
783
|
+
// ...defFlagConfig,
|
|
784
|
+
// colors: [{ h: 45, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 147, s: 100, v: 64 }],
|
|
785
|
+
// },
|
|
786
|
+
// {
|
|
787
|
+
// id: 227,
|
|
788
|
+
// name: I18n.getLang('country_IL'),
|
|
789
|
+
// ...defFlagConfig,
|
|
790
|
+
// colors: [{ h: 210, s: 65, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 210, s: 65, v: 100 }],
|
|
791
|
+
// },
|
|
792
|
+
// {
|
|
793
|
+
// id: 226,
|
|
794
|
+
// name: I18n.getLang('country_US'),
|
|
795
|
+
// ...defFlagConfig,
|
|
796
|
+
// colors: [{ h: 210, s: 78, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 }],
|
|
797
|
+
// },
|
|
798
|
+
// {
|
|
799
|
+
// id: 225,
|
|
800
|
+
// name: I18n.getLang('country_CA'),
|
|
801
|
+
// ...defFlagConfig,
|
|
802
|
+
// colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
803
|
+
// },
|
|
804
|
+
// {
|
|
805
|
+
// id: 224,
|
|
806
|
+
// name: I18n.getLang('country_MX'),
|
|
807
|
+
// ...defFlagConfig,
|
|
808
|
+
// colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 103, s: 73, v: 64 },],
|
|
809
|
+
// },
|
|
810
|
+
// {
|
|
811
|
+
// id: 223,
|
|
812
|
+
// name: I18n.getLang('country_SA'),
|
|
813
|
+
// ...defFlagConfig,
|
|
814
|
+
// colors: [{ h: 0, s: 0, v: 100 }, { h: 103, s: 73, v: 64 },],
|
|
815
|
+
// },
|
|
816
|
+
// {
|
|
817
|
+
// id: 222,
|
|
818
|
+
// name: I18n.getLang('country_AE'),
|
|
819
|
+
// ...defFlagConfig,
|
|
820
|
+
// colors: [{ h: 0, s: 0, v: 0 }, { h: 0, s: 0, v: 100 }, { h: 103, s: 73, v: 64 }, { h: 0, s: 100, v: 100 },],
|
|
821
|
+
// },
|
|
822
|
+
// {
|
|
823
|
+
// id: 221,
|
|
824
|
+
// name: I18n.getLang('country_AU'),
|
|
825
|
+
// ...defFlagConfig,
|
|
826
|
+
// colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 199, s: 84, v: 100 },],
|
|
827
|
+
// },
|
|
828
|
+
// {
|
|
829
|
+
// id: 220,
|
|
830
|
+
// name: I18n.getLang('country_JP'),
|
|
831
|
+
// ...defFlagConfig,
|
|
832
|
+
// colors: [{ h: 360, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }],
|
|
833
|
+
// },
|
|
834
|
+
// {
|
|
835
|
+
// id: 219,
|
|
836
|
+
// name: I18n.getLang('country_BR'),
|
|
837
|
+
// ...defFlagConfig,
|
|
838
|
+
// colors: [{ h: 60, s: 100, v: 100 }, { h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 },],
|
|
839
|
+
// },
|
|
840
|
+
// {
|
|
841
|
+
// id: 218,
|
|
842
|
+
// name: I18n.getLang('country_AR'),
|
|
843
|
+
// ...defFlagConfig,
|
|
844
|
+
// colors: [{ h: 210, s: 65, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 210, s: 65, v: 100 },],
|
|
845
|
+
// },
|
|
846
|
+
// {
|
|
847
|
+
// id: 217,
|
|
848
|
+
// name: I18n.getLang('country_AF'),
|
|
849
|
+
// ...defFlagConfig,
|
|
850
|
+
// colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 0 },],
|
|
851
|
+
// },
|
|
852
|
+
// {
|
|
853
|
+
// id: 216,
|
|
854
|
+
// name: I18n.getLang('country_EG'),
|
|
855
|
+
// ...defFlagConfig,
|
|
856
|
+
// colors: [{ h: 0, s: 0, v: 0 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
857
|
+
// },
|
|
858
|
+
// {
|
|
859
|
+
// id: 215,
|
|
860
|
+
// name: I18n.getLang('country_ET'),
|
|
861
|
+
// ...defFlagConfig,
|
|
862
|
+
// colors: [{ h: 0, s: 100, v: 100 }, { h: 60, s: 100, v: 100 }, { h: 147, s: 100, v: 64 },],
|
|
863
|
+
// },
|
|
864
|
+
// {
|
|
865
|
+
// id: 214,
|
|
866
|
+
// name: I18n.getLang('country_BB'),
|
|
867
|
+
// ...defFlagConfig,
|
|
868
|
+
// colors: [{ h: 220, s: 100, v: 100 }, { h: 60, s: 100, v: 100 }, { h: 220, s: 100, v: 100 },],
|
|
869
|
+
// },
|
|
870
|
+
// {
|
|
871
|
+
// id: 213,
|
|
872
|
+
// name: I18n.getLang('country_BO'),
|
|
873
|
+
// ...defFlagConfig,
|
|
874
|
+
// colors: [{ h: 147, s: 100, v: 64 }, { h: 60, s: 100, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
875
|
+
// },
|
|
876
|
+
// {
|
|
877
|
+
// id: 212,
|
|
878
|
+
// name: I18n.getLang('country_CN'),
|
|
879
|
+
// ...defFlagConfig,
|
|
880
|
+
// colors: [{ h: 60, s: 100, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
881
|
+
// },
|
|
882
|
+
// {
|
|
883
|
+
// id: 211,
|
|
884
|
+
// name: I18n.getLang('country_EC'),
|
|
885
|
+
// ...defFlagConfig,
|
|
886
|
+
// colors: [{ h: 0, s: 100, v: 100 }, { h: 210, s: 78, v: 100 }, { h: 60, s: 100, v: 100 },],
|
|
887
|
+
// },
|
|
888
|
+
// {
|
|
889
|
+
// id: 210,
|
|
890
|
+
// name: I18n.getLang('country_SV'),
|
|
891
|
+
// ...defFlagConfig,
|
|
892
|
+
// colors: [{ h: 205, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 205, s: 100, v: 100 },],
|
|
893
|
+
// },
|
|
894
|
+
// {
|
|
895
|
+
// id: 209,
|
|
896
|
+
// name: I18n.getLang('country_CI'),
|
|
897
|
+
// ...defFlagConfig,
|
|
898
|
+
// colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 }, { h: 45, s: 100, v: 100 },],
|
|
899
|
+
// },
|
|
900
|
+
// {
|
|
901
|
+
// id: 208,
|
|
902
|
+
// name: I18n.getLang('country_GH'),
|
|
903
|
+
// ...defFlagConfig,
|
|
904
|
+
// colors: [{ h: 128, s: 77, v: 64 }, { h: 60, s: 100, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
905
|
+
// },
|
|
906
|
+
// {
|
|
907
|
+
// id: 207,
|
|
908
|
+
// name: I18n.getLang('country_GL'),
|
|
909
|
+
// ...defFlagConfig,
|
|
910
|
+
// colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 },],
|
|
911
|
+
// },
|
|
912
|
+
// {
|
|
913
|
+
// id: 206,
|
|
914
|
+
// name: I18n.getLang('country_GT'),
|
|
915
|
+
// ...defFlagConfig,
|
|
916
|
+
// colors: [{ h: 0, s: 0, v: 100 }, { h: 196, s: 100, v: 100 },],
|
|
917
|
+
// },
|
|
918
|
+
// {
|
|
919
|
+
// id: 205,
|
|
920
|
+
// name: I18n.getLang('country_HK'),
|
|
921
|
+
// ...defFlagConfig,
|
|
922
|
+
// colors: [{ h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
923
|
+
// },
|
|
924
|
+
// {
|
|
925
|
+
// id: 204,
|
|
926
|
+
// name: I18n.getLang('country_IN'),
|
|
927
|
+
// ...defFlagConfig,
|
|
928
|
+
// colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 }, { h: 45, s: 100, v: 100 },],
|
|
929
|
+
// },
|
|
930
|
+
// {
|
|
931
|
+
// id: 203,
|
|
932
|
+
// name: I18n.getLang('country_ID'),
|
|
933
|
+
// ...defFlagConfig,
|
|
934
|
+
// colors: [{ h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
935
|
+
// },
|
|
936
|
+
// {
|
|
937
|
+
// id: 202,
|
|
938
|
+
// name: I18n.getLang('country_ir'),
|
|
939
|
+
// ...defFlagConfig,
|
|
940
|
+
// colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 147, s: 100, v: 64 },],
|
|
941
|
+
// },
|
|
942
|
+
// {
|
|
943
|
+
// id: 201,
|
|
944
|
+
// name: I18n.getLang('country_IS'),
|
|
945
|
+
// ...defFlagConfig,
|
|
946
|
+
// colors: [{ h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 }, { h: 205, s: 100, v: 100 },],
|
|
947
|
+
// },
|
|
948
|
+
// {
|
|
949
|
+
// id: 200,
|
|
950
|
+
// name: I18n.getLang('country_JM'),
|
|
951
|
+
// ...defFlagConfig,
|
|
952
|
+
// colors: [{ h: 60, s: 100, v: 100 }, { h: 0, s: 0, v: 0 }, { h: 147, s: 100, v: 64 },],
|
|
953
|
+
// },
|
|
954
|
+
// {
|
|
955
|
+
// id: 199,
|
|
956
|
+
// name: I18n.getLang('country_CY'),
|
|
957
|
+
// ...defFlagConfig,
|
|
958
|
+
// colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 }, { h: 45, s: 100, v: 100 },],
|
|
959
|
+
// },
|
|
960
|
+
// {
|
|
961
|
+
// id: 198,
|
|
962
|
+
// name: I18n.getLang('country_QA'),
|
|
963
|
+
// ...defFlagConfig,
|
|
964
|
+
// colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 },],
|
|
965
|
+
// },
|
|
966
|
+
// {
|
|
967
|
+
// id: 197,
|
|
968
|
+
// name: I18n.getLang('country_KE'),
|
|
969
|
+
// ...defFlagConfig,
|
|
970
|
+
// colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 0 },],
|
|
971
|
+
// },
|
|
972
|
+
// {
|
|
973
|
+
// id: 196,
|
|
974
|
+
// name: I18n.getLang('country_CO'),
|
|
975
|
+
// ...defFlagConfig,
|
|
976
|
+
// colors: [{ h: 0, s: 100, v: 100 }, { h: 210, s: 78, v: 100 }, { h: 60, s: 100, v: 100 },],
|
|
977
|
+
// },
|
|
978
|
+
// {
|
|
979
|
+
// id: 195,
|
|
980
|
+
// name: I18n.getLang('country_CG'),
|
|
981
|
+
// ...defFlagConfig,
|
|
982
|
+
// colors: [{ h: 0, s: 100, v: 100 }, { h: 60, s: 100, v: 100 }, { h: 147, s: 100, v: 64 },],
|
|
983
|
+
// },
|
|
984
|
+
// {
|
|
985
|
+
// id: 194,
|
|
986
|
+
// name: I18n.getLang('country_cu'),
|
|
987
|
+
// ...defFlagConfig,
|
|
988
|
+
// colors: [{ h: 210, s: 78, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
989
|
+
// },
|
|
990
|
+
// {
|
|
991
|
+
// id: 193,
|
|
992
|
+
// name: I18n.getLang('country_LV'),
|
|
993
|
+
// ...defFlagConfig,
|
|
994
|
+
// colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
995
|
+
// },
|
|
996
|
+
// {
|
|
997
|
+
// id: 192,
|
|
998
|
+
// name: I18n.getLang('country_LY'),
|
|
999
|
+
// ...defFlagConfig,
|
|
1000
|
+
// colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 0 }, { h: 0, s: 100, v: 100 },],
|
|
1001
|
+
// },
|
|
1002
|
+
// {
|
|
1003
|
+
// id: 191,
|
|
1004
|
+
// name: I18n.getLang('country_LT'),
|
|
1005
|
+
// ...defFlagConfig,
|
|
1006
|
+
// colors: [{ h: 0, s: 100, v: 100 }, { h: 147, s: 100, v: 64 }, { h: 60, s: 100, v: 100 },],
|
|
1007
|
+
// },
|
|
1008
|
+
// {
|
|
1009
|
+
// id: 190,
|
|
1010
|
+
// name: I18n.getLang('country_LU'),
|
|
1011
|
+
// ...defFlagConfig,
|
|
1012
|
+
// colors: [{ h: 196, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1013
|
+
// },
|
|
1014
|
+
// {
|
|
1015
|
+
// id: 189,
|
|
1016
|
+
// name: I18n.getLang('country_MG'),
|
|
1017
|
+
// ...defFlagConfig,
|
|
1018
|
+
// colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 },],
|
|
1019
|
+
// },
|
|
1020
|
+
// {
|
|
1021
|
+
// id: 188,
|
|
1022
|
+
// name: I18n.getLang('country_MT'),
|
|
1023
|
+
// ...defFlagConfig,
|
|
1024
|
+
// colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 },],
|
|
1025
|
+
// },
|
|
1026
|
+
// {
|
|
1027
|
+
// id: 187,
|
|
1028
|
+
// name: I18n.getLang('country_MA'),
|
|
1029
|
+
// ...defFlagConfig,
|
|
1030
|
+
// colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 100, v: 100 },],
|
|
1031
|
+
// },
|
|
1032
|
+
// {
|
|
1033
|
+
// id: 186,
|
|
1034
|
+
// name: I18n.getLang('country_VN'),
|
|
1035
|
+
// ...defFlagConfig,
|
|
1036
|
+
// colors: [{ h: 60, s: 100, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1037
|
+
// },
|
|
1038
|
+
// {
|
|
1039
|
+
// id: 185,
|
|
1040
|
+
// name: I18n.getLang('country_NA'),
|
|
1041
|
+
// ...defFlagConfig,
|
|
1042
|
+
// colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 60, s: 100, v: 100 }, { h: 220, s: 100, v: 100 },],
|
|
1043
|
+
// },
|
|
1044
|
+
// {
|
|
1045
|
+
// id: 184,
|
|
1046
|
+
// name: I18n.getLang('country_NZ'),
|
|
1047
|
+
// ...defFlagConfig,
|
|
1048
|
+
// colors: [{ h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 }, { h: 220, s: 100, v: 100 },],
|
|
1049
|
+
// },
|
|
1050
|
+
// {
|
|
1051
|
+
// id: 183,
|
|
1052
|
+
// name: I18n.getLang('country_NG'),
|
|
1053
|
+
// ...defFlagConfig,
|
|
1054
|
+
// colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 }, { h: 147, s: 100, v: 64 },],
|
|
1055
|
+
// },
|
|
1056
|
+
// {
|
|
1057
|
+
// id: 182,
|
|
1058
|
+
// name: I18n.getLang('country_PK'),
|
|
1059
|
+
// ...defFlagConfig,
|
|
1060
|
+
// colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 },],
|
|
1061
|
+
// },
|
|
1062
|
+
// {
|
|
1063
|
+
// id: 181,
|
|
1064
|
+
// name: I18n.getLang('country_PS'),
|
|
1065
|
+
// ...defFlagConfig,
|
|
1066
|
+
// colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 0, v: 0 }, { h: 0, s: 100, v: 100 },],
|
|
1067
|
+
// },
|
|
1068
|
+
// {
|
|
1069
|
+
// id: 180,
|
|
1070
|
+
// name: I18n.getLang('country_PY'),
|
|
1071
|
+
// ...defFlagConfig,
|
|
1072
|
+
// colors: [{ h: 205, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1073
|
+
// },
|
|
1074
|
+
// {
|
|
1075
|
+
// id: 179,
|
|
1076
|
+
// name: I18n.getLang('country_pe'),
|
|
1077
|
+
// ...defFlagConfig,
|
|
1078
|
+
// colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1079
|
+
// },
|
|
1080
|
+
// {
|
|
1081
|
+
// id: 178,
|
|
1082
|
+
// name: I18n.getLang('country_PH'),
|
|
1083
|
+
// ...defFlagConfig,
|
|
1084
|
+
// colors: [{ h: 0, s: 100, v: 100 }, { h: 205, s: 100, v: 100 }, { h: 0, s: 0, v: 100 },],
|
|
1085
|
+
// },
|
|
1086
|
+
// {
|
|
1087
|
+
// id: 177,
|
|
1088
|
+
// name: I18n.getLang('country_PR'),
|
|
1089
|
+
// ...defFlagConfig,
|
|
1090
|
+
// colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 205, s: 100, v: 100 },],
|
|
1091
|
+
// },
|
|
1092
|
+
// {
|
|
1093
|
+
// id: 176,
|
|
1094
|
+
// name: I18n.getLang('country_RU'),
|
|
1095
|
+
// ...defFlagConfig,
|
|
1096
|
+
// colors: [{ h: 0, s: 100, v: 100 }, { h: 205, s: 100, v: 100 }, { h: 0, s: 0, v: 100 },],
|
|
1097
|
+
// },
|
|
1098
|
+
// {
|
|
1099
|
+
// id: 175,
|
|
1100
|
+
// name: I18n.getLang('country_ZA'),
|
|
1101
|
+
// ...defFlagConfig,
|
|
1102
|
+
// colors: [{ h: 0, s: 0, v: 0 },{ h: 60, s: 100, v: 100 },{ h: 205, s: 100, v: 100 }, { h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1103
|
+
// },
|
|
1104
|
+
// {
|
|
1105
|
+
// id: 174,
|
|
1106
|
+
// name: I18n.getLang('country_sy'),
|
|
1107
|
+
// ...defFlagConfig,
|
|
1108
|
+
// colors: [{ h: 0, s: 0, v: 0 }, { h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1109
|
+
// },
|
|
1110
|
+
// {
|
|
1111
|
+
// id: 173,
|
|
1112
|
+
// name: I18n.getLang('country_TH'),
|
|
1113
|
+
// ...defFlagConfig,
|
|
1114
|
+
// colors: [{ h: 205, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1115
|
+
// },
|
|
1116
|
+
// {
|
|
1117
|
+
// id: 172,
|
|
1118
|
+
// name: I18n.getLang('country_TN'),
|
|
1119
|
+
// ...defFlagConfig,
|
|
1120
|
+
// colors: [{ h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1121
|
+
// },
|
|
1122
|
+
// {
|
|
1123
|
+
// id: 171,
|
|
1124
|
+
// name: I18n.getLang('country_UG'),
|
|
1125
|
+
// ...defFlagConfig,
|
|
1126
|
+
// colors: [{ h: 0, s: 100, v: 100 }, { h: 60, s: 100, v: 100 }, { h: 0, s: 0, v: 0 },],
|
|
1127
|
+
// },
|
|
1128
|
+
// {
|
|
1129
|
+
// id: 170,
|
|
1130
|
+
// name: I18n.getLang('country_UY'),
|
|
1131
|
+
// ...defFlagConfig,
|
|
1132
|
+
// colors: [{ h: 20, s: 100, v: 100 }, { h: 60, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 205, s: 100, v: 100 },],
|
|
1133
|
+
// },
|
|
1134
|
+
// {
|
|
1135
|
+
// id: 169,
|
|
1136
|
+
// name: I18n.getLang('country_VE'),
|
|
1137
|
+
// ...defFlagConfig,
|
|
1138
|
+
// colors: [{ h: 0, s: 100, v: 100 }, { h: 205, s: 100, v: 100 }, { h: 60, s: 100, v: 100 },],
|
|
1139
|
+
// },
|
|
1140
|
+
// {
|
|
1141
|
+
// id: 168,
|
|
1142
|
+
// name: I18n.getLang('country_JO'),
|
|
1143
|
+
// ...defFlagConfig,
|
|
1144
|
+
// colors: [{"h":150,"s":100,"v":48}, {"h":0,"s":0,"v":100}, {"h":0,"s":0,"v":0},{"h":353,"s":92,"v":81}],
|
|
1145
|
+
// },
|
|
1146
|
+
// {
|
|
1147
|
+
// id: 167,
|
|
1148
|
+
// name: I18n.getLang('country_CV'),
|
|
1149
|
+
// ...defFlagConfig,
|
|
1150
|
+
// colors: [{"h":49,"s":100,"v":100}, {"h":356,"s":79,"v":94}, {"h":0,"s":0,"v":100},{"h":218,"s":100,"v":65}],
|
|
1151
|
+
// },
|
|
1152
|
+
// {
|
|
1153
|
+
// id: 166,
|
|
1154
|
+
// name: I18n.getLang('country_PA'),
|
|
1155
|
+
// ...defFlagConfig,
|
|
1156
|
+
// colors: [{"h":219,"s":92,"v":34}, {"h":0,"s":0,"v":100}, {"h":358,"s":92,"v":85}],
|
|
1157
|
+
// },
|
|
1158
|
+
// {
|
|
1159
|
+
// id: 165,
|
|
1160
|
+
// name: I18n.getLang('country_northern_ireland'),
|
|
1161
|
+
// ...defFlagConfig,
|
|
1162
|
+
// colors: [{"h":0,"s":0,"v":100}, {"h":0,"s":100,"v":82}, {"h":0,"s":0,"v":100}],
|
|
1163
|
+
// },
|
|
1164
|
+
// {
|
|
1165
|
+
// id: 164,
|
|
1166
|
+
// name: I18n.getLang('country_wales'),
|
|
1167
|
+
// ...defFlagConfig,
|
|
1168
|
+
// colors: [{"h":142,"s":100,"v":69}, {"h":350,"s":92,"v":78}, {"h":0,"s":0,"v":100}],
|
|
1169
|
+
// },
|
|
1170
|
+
// {
|
|
1171
|
+
// id: 163,
|
|
1172
|
+
// name: I18n.getLang('country_BA'),
|
|
1173
|
+
// ...defFlagConfig,
|
|
1174
|
+
// colors: [{"h":0,"s":0,"v":100}, {"h":214,"s":100,"v":42}, {"h":48,"s":100,"v":100}],
|
|
1175
|
+
// },
|
|
1176
|
+
// {
|
|
1177
|
+
// id: 162,
|
|
1178
|
+
// name: I18n.getLang('country_north_macedonia'),
|
|
1179
|
+
// ...defFlagConfig,
|
|
1180
|
+
// colors: [{"h":56,"s":81,"v":97}, {"h":358,"s":85,"v":85}],
|
|
1181
|
+
// },
|
|
1182
|
+
// {
|
|
1183
|
+
// id: 161,
|
|
1184
|
+
// name: I18n.getLang('country_werder_bremen'),
|
|
1185
|
+
// ...defFlagConfig,
|
|
1186
|
+
// colors: [{"h":0,"s":0,"v":100}, {"h":160,"s":80,"v":34}],
|
|
1187
|
+
// },
|
|
1188
|
+
// ]
|
|
1189
|
+
|
|
1190
|
+
export const def3Pids = ['uzoammz8zm0onv1i', '85bmfxhxpmwj7exf']
|
|
1191
|
+
// 统一使用与设备相同的数据
|
|
1192
|
+
export const def3FlagList: FlagUiInfo[] = defFlagList
|
|
1193
|
+
// uzoammz8zm0onv1i 85bmfxhxpmwj7exf
|
|
1194
|
+
// export const def3FlagList: FlagUiInfo[] = [
|
|
1195
|
+
// {
|
|
1196
|
+
// id: 231,
|
|
1197
|
+
// name: I18n.getLang('flag_leverkusen'),
|
|
1198
|
+
// ...defFlagConfig,
|
|
1199
|
+
// colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 60, s: 100, v: 100}]
|
|
1200
|
+
// },
|
|
1201
|
+
// {
|
|
1202
|
+
// id: 255,
|
|
1203
|
+
// name: I18n.getLang('country_DE'),
|
|
1204
|
+
// ...defFlagConfig,
|
|
1205
|
+
// colors: [{h: 48, s: 100, v: 100},{h: 360, s: 100, v: 100},{h: 0, s: 0, v:0}],
|
|
1206
|
+
// },
|
|
1207
|
+
// {
|
|
1208
|
+
// id: 254,
|
|
1209
|
+
// name: I18n.getLang('country_BE'),
|
|
1210
|
+
// ...defFlagConfig,
|
|
1211
|
+
// colors: [{h: 360, s: 100, v: 100}, {h: 48, s: 100, v: 100}, {h: 0, s: 0, v: 0}]
|
|
1212
|
+
// },
|
|
1213
|
+
// {
|
|
1214
|
+
// id: 253,
|
|
1215
|
+
// name: I18n.getLang('country_FR'),
|
|
1216
|
+
// ...defFlagConfig,
|
|
1217
|
+
// colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 212, s: 100, v: 100}]
|
|
1218
|
+
// },
|
|
1219
|
+
// {
|
|
1220
|
+
// id: 252,
|
|
1221
|
+
// name: I18n.getLang('country_PT'),
|
|
1222
|
+
// ...defFlagConfig,
|
|
1223
|
+
// colors: [{h: 360, s: 100, v: 100}, {h: 360, s: 100, v: 100}, {h: 120, s: 100, v: 64}]
|
|
1224
|
+
// },
|
|
1225
|
+
// {
|
|
1226
|
+
// id: 251,
|
|
1227
|
+
// name: I18n.getLang('country_scotland'),
|
|
1228
|
+
// ...defFlagConfig,
|
|
1229
|
+
// colors: [{h: 209, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 209, s: 100, v: 100}]
|
|
1230
|
+
// },
|
|
1231
|
+
// {
|
|
1232
|
+
// id: 250,
|
|
1233
|
+
// name: I18n.getLang('country_ES'),
|
|
1234
|
+
// ...defFlagConfig,
|
|
1235
|
+
// colors: [{h: 360, s: 100, v: 100}, {h: 47, s: 100, v: 100}, {h: 360, s: 100, v: 100}]
|
|
1236
|
+
// },
|
|
1237
|
+
// {
|
|
1238
|
+
// id: 249,
|
|
1239
|
+
// name: I18n.getLang('country_TR'),
|
|
1240
|
+
// ...defFlagConfig,
|
|
1241
|
+
// colors: [{h: 360, s: 100, v: 100}, {h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}]
|
|
1242
|
+
// },
|
|
1243
|
+
// {
|
|
1244
|
+
// id: 248,
|
|
1245
|
+
// name: I18n.getLang('country_AT'),
|
|
1246
|
+
// ...defFlagConfig,
|
|
1247
|
+
// colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 360, s: 100, v: 100}]
|
|
1248
|
+
// },
|
|
1249
|
+
// {
|
|
1250
|
+
// id: 247,
|
|
1251
|
+
// name: I18n.getLang('country_england'),
|
|
1252
|
+
// ...defFlagConfig,
|
|
1253
|
+
// colors: [{h: 0, s: 0, v: 100}, {h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}]
|
|
1254
|
+
// },
|
|
1255
|
+
// {
|
|
1256
|
+
// id: 246,
|
|
1257
|
+
// name: I18n.getLang('country_HU'),
|
|
1258
|
+
// ...defFlagConfig,
|
|
1259
|
+
// colors: [{h: 120, s: 100, v: 64}, {h: 0, s: 0, v: 100}, {h: 360, s: 100, v: 100}]
|
|
1260
|
+
// },
|
|
1261
|
+
// {
|
|
1262
|
+
// id: 245,
|
|
1263
|
+
// name: I18n.getLang('country_SK'),
|
|
1264
|
+
// ...defFlagConfig,
|
|
1265
|
+
// colors: [{h: 360, s: 100, v: 100}, {h: 213, s: 100, v: 84}, {h: 0, s: 0, v: 100}]
|
|
1266
|
+
// },
|
|
1267
|
+
// {
|
|
1268
|
+
// id: 244,
|
|
1269
|
+
// name: I18n.getLang('country_AL'),
|
|
1270
|
+
// ...defFlagConfig,
|
|
1271
|
+
// colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v:0}, {h: 360, s: 100, v: 100}]
|
|
1272
|
+
// },
|
|
1273
|
+
// {
|
|
1274
|
+
// id: 243,
|
|
1275
|
+
// name: I18n.getLang('country_DK'),
|
|
1276
|
+
// ...defFlagConfig,
|
|
1277
|
+
// colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v:100}, {h: 360, s: 100, v: 100}, {h: 0, s: 0, v:100}]
|
|
1278
|
+
// },
|
|
1279
|
+
// {
|
|
1280
|
+
// id: 242,
|
|
1281
|
+
// name: I18n.getLang('country_NL'),
|
|
1282
|
+
// ...defFlagConfig,
|
|
1283
|
+
// colors: [{h: 217, s: 100, v: 77}, {h: 0, s: 0, v:100}, {h: 360, s: 100, v: 100}]
|
|
1284
|
+
// },
|
|
1285
|
+
// {
|
|
1286
|
+
// id: 241,
|
|
1287
|
+
// name: I18n.getLang('country_RO'),
|
|
1288
|
+
// ...defFlagConfig,
|
|
1289
|
+
// colors: [{h: 360, s: 100, v: 100}, {h: 48, s: 91, v: 100}, {h: 219, s: 100, v: 100}]
|
|
1290
|
+
// },
|
|
1291
|
+
// {
|
|
1292
|
+
// id: 240,
|
|
1293
|
+
// name: I18n.getLang('country_CH'),
|
|
1294
|
+
// ...defFlagConfig,
|
|
1295
|
+
// colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 360, s: 100, v: 100}]
|
|
1296
|
+
// },
|
|
1297
|
+
// {
|
|
1298
|
+
// id: 239,
|
|
1299
|
+
// name: I18n.getLang('country_RS'),
|
|
1300
|
+
// ...defFlagConfig,
|
|
1301
|
+
// colors: [{h: 0, s: 0, v: 100}, {h: 210, s: 100, v: 100}, {h: 360, s: 100, v: 100}]
|
|
1302
|
+
// },
|
|
1303
|
+
// {
|
|
1304
|
+
// id: 238,
|
|
1305
|
+
// name: I18n.getLang('country_IT'),
|
|
1306
|
+
// ...defFlagConfig,
|
|
1307
|
+
// colors: [{h: 360, s: 100, v: 100}, {h: 212, s: 4, v: 100}, {h: 120, s: 100, v: 64}]
|
|
1308
|
+
// },
|
|
1309
|
+
// {
|
|
1310
|
+
// id: 237,
|
|
1311
|
+
// name: I18n.getLang('country_CZ'),
|
|
1312
|
+
// ...defFlagConfig,
|
|
1313
|
+
// colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 211, s: 100, v: 100}]
|
|
1314
|
+
// },
|
|
1315
|
+
// {
|
|
1316
|
+
// id: 236,
|
|
1317
|
+
// name: I18n.getLang('country_SI'),
|
|
1318
|
+
// ...defFlagConfig,
|
|
1319
|
+
// colors: [{h: 360, s: 100, v: 100}, {h: 217, s: 100, v: 100}, {h: 0, s: 0, v: 100}]
|
|
1320
|
+
// },
|
|
1321
|
+
// {
|
|
1322
|
+
// id: 235,
|
|
1323
|
+
// name: I18n.getLang('country_HR'),
|
|
1324
|
+
// ...defFlagConfig,
|
|
1325
|
+
// colors: [{h: 220, s: 89, v: 100},{h: 0, s: 0, v: 100}, {h: 360, s: 100, v: 100}]
|
|
1326
|
+
// },
|
|
1327
|
+
// {
|
|
1328
|
+
// id: 234,
|
|
1329
|
+
// name: I18n.getLang('country_SE'),
|
|
1330
|
+
// ...defFlagConfig,
|
|
1331
|
+
// colors: [{h: 201, s: 100, v: 100}, {h: 48, s: 99, v: 100}, {h: 201, s: 100, v: 100}]
|
|
1332
|
+
// },
|
|
1333
|
+
// {
|
|
1334
|
+
// id: 233,
|
|
1335
|
+
// name: I18n.getLang('country_NO'),
|
|
1336
|
+
// ...defFlagConfig,
|
|
1337
|
+
// colors: [{h: 218, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 360, s: 100, v: 100}]
|
|
1338
|
+
// },
|
|
1339
|
+
// {
|
|
1340
|
+
// id: 232,
|
|
1341
|
+
// name: I18n.getLang('country_PL'),
|
|
1342
|
+
// ...defFlagConfig,
|
|
1343
|
+
// colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}]
|
|
1344
|
+
// },
|
|
1345
|
+
// {
|
|
1346
|
+
// id: 230,
|
|
1347
|
+
// name: I18n.getLang('country_UA'),
|
|
1348
|
+
// ...defFlagConfig,
|
|
1349
|
+
// colors: [{h: 50, s: 100, v: 100}, {h: 211, s: 100, v: 100}]
|
|
1350
|
+
// },
|
|
1351
|
+
// {
|
|
1352
|
+
// id: 229,
|
|
1353
|
+
// name: I18n.getLang('country_gb'),
|
|
1354
|
+
// ...defFlagConfig,
|
|
1355
|
+
// colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 205, s: 100, v: 100 }],
|
|
1356
|
+
// },
|
|
1357
|
+
// {
|
|
1358
|
+
// id: 228,
|
|
1359
|
+
// name: I18n.getLang('country_IE'),
|
|
1360
|
+
// ...defFlagConfig,
|
|
1361
|
+
// colors: [{ h: 45, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 147, s: 100, v: 64 }],
|
|
1362
|
+
// },
|
|
1363
|
+
// {
|
|
1364
|
+
// id: 227,
|
|
1365
|
+
// name: I18n.getLang('country_IL'),
|
|
1366
|
+
// ...defFlagConfig,
|
|
1367
|
+
// colors: [{ h: 210, s: 65, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 210, s: 65, v: 100 }],
|
|
1368
|
+
// },
|
|
1369
|
+
// {
|
|
1370
|
+
// id: 226,
|
|
1371
|
+
// name: I18n.getLang('country_US'),
|
|
1372
|
+
// ...defFlagConfig,
|
|
1373
|
+
// colors: [{ h: 210, s: 78, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 }],
|
|
1374
|
+
// },
|
|
1375
|
+
// {
|
|
1376
|
+
// id: 225,
|
|
1377
|
+
// name: I18n.getLang('country_CA'),
|
|
1378
|
+
// ...defFlagConfig,
|
|
1379
|
+
// colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1380
|
+
// },
|
|
1381
|
+
// {
|
|
1382
|
+
// id: 224,
|
|
1383
|
+
// name: I18n.getLang('country_MX'),
|
|
1384
|
+
// ...defFlagConfig,
|
|
1385
|
+
// colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 103, s: 73, v: 64 },],
|
|
1386
|
+
// },
|
|
1387
|
+
// {
|
|
1388
|
+
// id: 223,
|
|
1389
|
+
// name: I18n.getLang('country_SA'),
|
|
1390
|
+
// ...defFlagConfig,
|
|
1391
|
+
// colors: [{ h: 0, s: 0, v: 100 }, { h: 103, s: 73, v: 64 },],
|
|
1392
|
+
// },
|
|
1393
|
+
// {
|
|
1394
|
+
// id: 222,
|
|
1395
|
+
// name: I18n.getLang('country_AE'),
|
|
1396
|
+
// ...defFlagConfig,
|
|
1397
|
+
// colors: [{ h: 0, s: 0, v: 0 }, { h: 0, s: 0, v: 100 }, { h: 103, s: 73, v: 64 }, { h: 0, s: 100, v: 100 },],
|
|
1398
|
+
// },
|
|
1399
|
+
// {
|
|
1400
|
+
// id: 221,
|
|
1401
|
+
// name: I18n.getLang('country_AU'),
|
|
1402
|
+
// ...defFlagConfig,
|
|
1403
|
+
// colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 199, s: 84, v: 100 },],
|
|
1404
|
+
// },
|
|
1405
|
+
// {
|
|
1406
|
+
// id: 220,
|
|
1407
|
+
// name: I18n.getLang('country_JP'),
|
|
1408
|
+
// ...defFlagConfig,
|
|
1409
|
+
// colors: [{ h: 360, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }],
|
|
1410
|
+
// },
|
|
1411
|
+
// {
|
|
1412
|
+
// id: 219,
|
|
1413
|
+
// name: I18n.getLang('country_BR'),
|
|
1414
|
+
// ...defFlagConfig,
|
|
1415
|
+
// colors: [{ h: 60, s: 100, v: 100 }, { h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 },],
|
|
1416
|
+
// },
|
|
1417
|
+
// {
|
|
1418
|
+
// id: 218,
|
|
1419
|
+
// name: I18n.getLang('country_AR'),
|
|
1420
|
+
// ...defFlagConfig,
|
|
1421
|
+
// colors: [{ h: 210, s: 65, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 210, s: 65, v: 100 },],
|
|
1422
|
+
// },
|
|
1423
|
+
// {
|
|
1424
|
+
// id: 217,
|
|
1425
|
+
// name: I18n.getLang('country_AF'),
|
|
1426
|
+
// ...defFlagConfig,
|
|
1427
|
+
// colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 0 },],
|
|
1428
|
+
// },
|
|
1429
|
+
// {
|
|
1430
|
+
// id: 216,
|
|
1431
|
+
// name: I18n.getLang('country_EG'),
|
|
1432
|
+
// ...defFlagConfig,
|
|
1433
|
+
// colors: [{ h: 0, s: 0, v: 0 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1434
|
+
// },
|
|
1435
|
+
// {
|
|
1436
|
+
// id: 215,
|
|
1437
|
+
// name: I18n.getLang('country_ET'),
|
|
1438
|
+
// ...defFlagConfig,
|
|
1439
|
+
// colors: [{ h: 0, s: 100, v: 100 }, { h: 60, s: 100, v: 100 }, { h: 147, s: 100, v: 64 },],
|
|
1440
|
+
// },
|
|
1441
|
+
// {
|
|
1442
|
+
// id: 214,
|
|
1443
|
+
// name: I18n.getLang('country_BB'),
|
|
1444
|
+
// ...defFlagConfig,
|
|
1445
|
+
// colors: [{ h: 220, s: 100, v: 100 }, { h: 60, s: 100, v: 100 }, { h: 220, s: 100, v: 100 },],
|
|
1446
|
+
// },
|
|
1447
|
+
// {
|
|
1448
|
+
// id: 213,
|
|
1449
|
+
// name: I18n.getLang('country_BO'),
|
|
1450
|
+
// ...defFlagConfig,
|
|
1451
|
+
// colors: [{ h: 147, s: 100, v: 64 }, { h: 60, s: 100, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1452
|
+
// },
|
|
1453
|
+
// {
|
|
1454
|
+
// id: 212,
|
|
1455
|
+
// name: I18n.getLang('country_CN'),
|
|
1456
|
+
// ...defFlagConfig,
|
|
1457
|
+
// colors: [{ h: 60, s: 100, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1458
|
+
// },
|
|
1459
|
+
// {
|
|
1460
|
+
// id: 211,
|
|
1461
|
+
// name: I18n.getLang('country_EC'),
|
|
1462
|
+
// ...defFlagConfig,
|
|
1463
|
+
// colors: [{ h: 0, s: 100, v: 100 }, { h: 210, s: 78, v: 100 }, { h: 60, s: 100, v: 100 },],
|
|
1464
|
+
// },
|
|
1465
|
+
// {
|
|
1466
|
+
// id: 210,
|
|
1467
|
+
// name: I18n.getLang('country_SV'),
|
|
1468
|
+
// ...defFlagConfig,
|
|
1469
|
+
// colors: [{ h: 205, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 205, s: 100, v: 100 },],
|
|
1470
|
+
// },
|
|
1471
|
+
// {
|
|
1472
|
+
// id: 209,
|
|
1473
|
+
// name: I18n.getLang('country_CI'),
|
|
1474
|
+
// ...defFlagConfig,
|
|
1475
|
+
// colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 }, { h: 45, s: 100, v: 100 },],
|
|
1476
|
+
// },
|
|
1477
|
+
// {
|
|
1478
|
+
// id: 208,
|
|
1479
|
+
// name: I18n.getLang('country_GH'),
|
|
1480
|
+
// ...defFlagConfig,
|
|
1481
|
+
// colors: [{ h: 128, s: 77, v: 64 }, { h: 60, s: 100, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1482
|
+
// },
|
|
1483
|
+
// {
|
|
1484
|
+
// id: 207,
|
|
1485
|
+
// name: I18n.getLang('country_GL'),
|
|
1486
|
+
// ...defFlagConfig,
|
|
1487
|
+
// colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 },],
|
|
1488
|
+
// },
|
|
1489
|
+
// {
|
|
1490
|
+
// id: 206,
|
|
1491
|
+
// name: I18n.getLang('country_GT'),
|
|
1492
|
+
// ...defFlagConfig,
|
|
1493
|
+
// colors: [{ h: 0, s: 0, v: 100 }, { h: 196, s: 100, v: 100 },],
|
|
1494
|
+
// },
|
|
1495
|
+
// {
|
|
1496
|
+
// id: 205,
|
|
1497
|
+
// name: I18n.getLang('country_HK'),
|
|
1498
|
+
// ...defFlagConfig,
|
|
1499
|
+
// colors: [{ h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1500
|
+
// },
|
|
1501
|
+
// {
|
|
1502
|
+
// id: 204,
|
|
1503
|
+
// name: I18n.getLang('country_IN'),
|
|
1504
|
+
// ...defFlagConfig,
|
|
1505
|
+
// colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 }, { h: 45, s: 100, v: 100 },],
|
|
1506
|
+
// },
|
|
1507
|
+
// {
|
|
1508
|
+
// id: 203,
|
|
1509
|
+
// name: I18n.getLang('country_ID'),
|
|
1510
|
+
// ...defFlagConfig,
|
|
1511
|
+
// colors: [{ h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1512
|
+
// },
|
|
1513
|
+
// {
|
|
1514
|
+
// id: 202,
|
|
1515
|
+
// name: I18n.getLang('country_ir'),
|
|
1516
|
+
// ...defFlagConfig,
|
|
1517
|
+
// colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 147, s: 100, v: 64 },],
|
|
1518
|
+
// },
|
|
1519
|
+
// {
|
|
1520
|
+
// id: 201,
|
|
1521
|
+
// name: I18n.getLang('country_IS'),
|
|
1522
|
+
// ...defFlagConfig,
|
|
1523
|
+
// colors: [{ h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 }, { h: 205, s: 100, v: 100 },],
|
|
1524
|
+
// },
|
|
1525
|
+
// {
|
|
1526
|
+
// id: 200,
|
|
1527
|
+
// name: I18n.getLang('country_JM'),
|
|
1528
|
+
// ...defFlagConfig,
|
|
1529
|
+
// colors: [{ h: 60, s: 100, v: 100 }, { h: 0, s: 0, v: 0 }, { h: 147, s: 100, v: 64 },],
|
|
1530
|
+
// },
|
|
1531
|
+
// {
|
|
1532
|
+
// id: 199,
|
|
1533
|
+
// name: I18n.getLang('country_CY'),
|
|
1534
|
+
// ...defFlagConfig,
|
|
1535
|
+
// colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 }, { h: 45, s: 100, v: 100 },],
|
|
1536
|
+
// },
|
|
1537
|
+
// {
|
|
1538
|
+
// id: 198,
|
|
1539
|
+
// name: I18n.getLang('country_QA'),
|
|
1540
|
+
// ...defFlagConfig,
|
|
1541
|
+
// colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 },],
|
|
1542
|
+
// },
|
|
1543
|
+
// {
|
|
1544
|
+
// id: 197,
|
|
1545
|
+
// name: I18n.getLang('country_KE'),
|
|
1546
|
+
// ...defFlagConfig,
|
|
1547
|
+
// colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 0 },],
|
|
1548
|
+
// },
|
|
1549
|
+
// {
|
|
1550
|
+
// id: 196,
|
|
1551
|
+
// name: I18n.getLang('country_CO'),
|
|
1552
|
+
// ...defFlagConfig,
|
|
1553
|
+
// colors: [{ h: 0, s: 100, v: 100 }, { h: 210, s: 78, v: 100 }, { h: 60, s: 100, v: 100 },],
|
|
1554
|
+
// },
|
|
1555
|
+
// {
|
|
1556
|
+
// id: 195,
|
|
1557
|
+
// name: I18n.getLang('country_CG'),
|
|
1558
|
+
// ...defFlagConfig,
|
|
1559
|
+
// colors: [{ h: 0, s: 100, v: 100 }, { h: 60, s: 100, v: 100 }, { h: 147, s: 100, v: 64 },],
|
|
1560
|
+
// },
|
|
1561
|
+
// {
|
|
1562
|
+
// id: 194,
|
|
1563
|
+
// name: I18n.getLang('country_cu'),
|
|
1564
|
+
// ...defFlagConfig,
|
|
1565
|
+
// colors: [{ h: 210, s: 78, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1566
|
+
// },
|
|
1567
|
+
// {
|
|
1568
|
+
// id: 193,
|
|
1569
|
+
// name: I18n.getLang('country_LV'),
|
|
1570
|
+
// ...defFlagConfig,
|
|
1571
|
+
// colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1572
|
+
// },
|
|
1573
|
+
// {
|
|
1574
|
+
// id: 192,
|
|
1575
|
+
// name: I18n.getLang('country_LY'),
|
|
1576
|
+
// ...defFlagConfig,
|
|
1577
|
+
// colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 0 }, { h: 0, s: 100, v: 100 },],
|
|
1578
|
+
// },
|
|
1579
|
+
// {
|
|
1580
|
+
// id: 191,
|
|
1581
|
+
// name: I18n.getLang('country_LT'),
|
|
1582
|
+
// ...defFlagConfig,
|
|
1583
|
+
// colors: [{ h: 0, s: 100, v: 100 }, { h: 147, s: 100, v: 64 }, { h: 60, s: 100, v: 100 },],
|
|
1584
|
+
// },
|
|
1585
|
+
// {
|
|
1586
|
+
// id: 190,
|
|
1587
|
+
// name: I18n.getLang('country_LU'),
|
|
1588
|
+
// ...defFlagConfig,
|
|
1589
|
+
// colors: [{ h: 196, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1590
|
+
// },
|
|
1591
|
+
// {
|
|
1592
|
+
// id: 189,
|
|
1593
|
+
// name: I18n.getLang('country_MG'),
|
|
1594
|
+
// ...defFlagConfig,
|
|
1595
|
+
// colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 },],
|
|
1596
|
+
// },
|
|
1597
|
+
// {
|
|
1598
|
+
// id: 188,
|
|
1599
|
+
// name: I18n.getLang('country_MT'),
|
|
1600
|
+
// ...defFlagConfig,
|
|
1601
|
+
// colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 },],
|
|
1602
|
+
// },
|
|
1603
|
+
// {
|
|
1604
|
+
// id: 187,
|
|
1605
|
+
// name: I18n.getLang('country_MA'),
|
|
1606
|
+
// ...defFlagConfig,
|
|
1607
|
+
// colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 100, v: 100 },],
|
|
1608
|
+
// },
|
|
1609
|
+
// {
|
|
1610
|
+
// id: 186,
|
|
1611
|
+
// name: I18n.getLang('country_VN'),
|
|
1612
|
+
// ...defFlagConfig,
|
|
1613
|
+
// colors: [{ h: 60, s: 100, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1614
|
+
// },
|
|
1615
|
+
// {
|
|
1616
|
+
// id: 185,
|
|
1617
|
+
// name: I18n.getLang('country_NA'),
|
|
1618
|
+
// ...defFlagConfig,
|
|
1619
|
+
// colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 60, s: 100, v: 100 }, { h: 220, s: 100, v: 100 },],
|
|
1620
|
+
// },
|
|
1621
|
+
// {
|
|
1622
|
+
// id: 184,
|
|
1623
|
+
// name: I18n.getLang('country_NZ'),
|
|
1624
|
+
// ...defFlagConfig,
|
|
1625
|
+
// colors: [{ h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 }, { h: 220, s: 100, v: 100 },],
|
|
1626
|
+
// },
|
|
1627
|
+
// {
|
|
1628
|
+
// id: 183,
|
|
1629
|
+
// name: I18n.getLang('country_NG'),
|
|
1630
|
+
// ...defFlagConfig,
|
|
1631
|
+
// colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 }, { h: 147, s: 100, v: 64 },],
|
|
1632
|
+
// },
|
|
1633
|
+
// {
|
|
1634
|
+
// id: 182,
|
|
1635
|
+
// name: I18n.getLang('country_PK'),
|
|
1636
|
+
// ...defFlagConfig,
|
|
1637
|
+
// colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 },],
|
|
1638
|
+
// },
|
|
1639
|
+
// {
|
|
1640
|
+
// id: 181,
|
|
1641
|
+
// name: I18n.getLang('country_PS'),
|
|
1642
|
+
// ...defFlagConfig,
|
|
1643
|
+
// colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 0, v: 0 }, { h: 0, s: 100, v: 100 },],
|
|
1644
|
+
// },
|
|
1645
|
+
// {
|
|
1646
|
+
// id: 180,
|
|
1647
|
+
// name: I18n.getLang('country_PY'),
|
|
1648
|
+
// ...defFlagConfig,
|
|
1649
|
+
// colors: [{ h: 205, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1650
|
+
// },
|
|
1651
|
+
// {
|
|
1652
|
+
// id: 179,
|
|
1653
|
+
// name: I18n.getLang('country_pe'),
|
|
1654
|
+
// ...defFlagConfig,
|
|
1655
|
+
// colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1656
|
+
// },
|
|
1657
|
+
// {
|
|
1658
|
+
// id: 178,
|
|
1659
|
+
// name: I18n.getLang('country_PH'),
|
|
1660
|
+
// ...defFlagConfig,
|
|
1661
|
+
// colors: [{ h: 0, s: 100, v: 100 }, { h: 205, s: 100, v: 100 }, { h: 0, s: 0, v: 100 },],
|
|
1662
|
+
// },
|
|
1663
|
+
// {
|
|
1664
|
+
// id: 177,
|
|
1665
|
+
// name: I18n.getLang('country_PR'),
|
|
1666
|
+
// ...defFlagConfig,
|
|
1667
|
+
// colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 205, s: 100, v: 100 },],
|
|
1668
|
+
// },
|
|
1669
|
+
// {
|
|
1670
|
+
// id: 176,
|
|
1671
|
+
// name: I18n.getLang('country_RU'),
|
|
1672
|
+
// ...defFlagConfig,
|
|
1673
|
+
// colors: [{ h: 0, s: 100, v: 100 }, { h: 205, s: 100, v: 100 }, { h: 0, s: 0, v: 100 },],
|
|
1674
|
+
// },
|
|
1675
|
+
// {
|
|
1676
|
+
// id: 175,
|
|
1677
|
+
// name: I18n.getLang('country_ZA'),
|
|
1678
|
+
// ...defFlagConfig,
|
|
1679
|
+
// colors: [{ h: 0, s: 0, v: 0 },{ h: 60, s: 100, v: 100 },{ h: 205, s: 100, v: 100 }, { h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1680
|
+
// },
|
|
1681
|
+
// {
|
|
1682
|
+
// id: 174,
|
|
1683
|
+
// name: I18n.getLang('country_sy'),
|
|
1684
|
+
// ...defFlagConfig,
|
|
1685
|
+
// colors: [{ h: 0, s: 0, v: 0 }, { h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1686
|
+
// },
|
|
1687
|
+
// {
|
|
1688
|
+
// id: 173,
|
|
1689
|
+
// name: I18n.getLang('country_TH'),
|
|
1690
|
+
// ...defFlagConfig,
|
|
1691
|
+
// colors: [{ h: 205, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1692
|
+
// },
|
|
1693
|
+
// {
|
|
1694
|
+
// id: 172,
|
|
1695
|
+
// name: I18n.getLang('country_TN'),
|
|
1696
|
+
// ...defFlagConfig,
|
|
1697
|
+
// colors: [{ h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1698
|
+
// },
|
|
1699
|
+
// {
|
|
1700
|
+
// id: 171,
|
|
1701
|
+
// name: I18n.getLang('country_UG'),
|
|
1702
|
+
// ...defFlagConfig,
|
|
1703
|
+
// colors: [{ h: 0, s: 100, v: 100 }, { h: 60, s: 100, v: 100 }, { h: 0, s: 0, v: 0 },],
|
|
1704
|
+
// },
|
|
1705
|
+
// {
|
|
1706
|
+
// id: 170,
|
|
1707
|
+
// name: I18n.getLang('country_UY'),
|
|
1708
|
+
// ...defFlagConfig,
|
|
1709
|
+
// colors: [{ h: 20, s: 100, v: 100 }, { h: 60, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 205, s: 100, v: 100 },],
|
|
1710
|
+
// },
|
|
1711
|
+
// {
|
|
1712
|
+
// id: 169,
|
|
1713
|
+
// name: I18n.getLang('country_VE'),
|
|
1714
|
+
// ...defFlagConfig,
|
|
1715
|
+
// colors: [{ h: 0, s: 100, v: 100 }, { h: 205, s: 100, v: 100 }, { h: 60, s: 100, v: 100 },],
|
|
1716
|
+
// },
|
|
1717
|
+
// {
|
|
1718
|
+
// id: 168,
|
|
1719
|
+
// name: I18n.getLang('country_JO'),
|
|
1720
|
+
// ...defFlagConfig,
|
|
1721
|
+
// colors: [{"h":150,"s":100,"v":48}, {"h":0,"s":0,"v":100}, {"h":0,"s":0,"v":0},{"h":353,"s":92,"v":81}],
|
|
1722
|
+
// },
|
|
1723
|
+
// {
|
|
1724
|
+
// id: 167,
|
|
1725
|
+
// name: I18n.getLang('country_CV'),
|
|
1726
|
+
// ...defFlagConfig,
|
|
1727
|
+
// colors: [{"h":49,"s":100,"v":100}, {"h":356,"s":79,"v":94}, {"h":0,"s":0,"v":100},{"h":218,"s":100,"v":65}],
|
|
1728
|
+
// },
|
|
1729
|
+
// {
|
|
1730
|
+
// id: 166,
|
|
1731
|
+
// name: I18n.getLang('country_PA'),
|
|
1732
|
+
// ...defFlagConfig,
|
|
1733
|
+
// colors: [{"h":219,"s":92,"v":34}, {"h":0,"s":0,"v":100}, {"h":358,"s":92,"v":85}],
|
|
1734
|
+
// },
|
|
1735
|
+
// {
|
|
1736
|
+
// id: 165,
|
|
1737
|
+
// name: I18n.getLang('country_northern_ireland'),
|
|
1738
|
+
// ...defFlagConfig,
|
|
1739
|
+
// colors: [{"h":0,"s":0,"v":100}, {"h":0,"s":100,"v":82}, {"h":0,"s":0,"v":100}],
|
|
1740
|
+
// },
|
|
1741
|
+
// {
|
|
1742
|
+
// id: 164,
|
|
1743
|
+
// name: I18n.getLang('country_wales'),
|
|
1744
|
+
// ...defFlagConfig,
|
|
1745
|
+
// colors: [{"h":142,"s":100,"v":69}, {"h":350,"s":92,"v":78}, {"h":0,"s":0,"v":100}],
|
|
1746
|
+
// },
|
|
1747
|
+
// {
|
|
1748
|
+
// id: 163,
|
|
1749
|
+
// name: I18n.getLang('country_BA'),
|
|
1750
|
+
// ...defFlagConfig,
|
|
1751
|
+
// colors: [{"h":0,"s":0,"v":100}, {"h":214,"s":100,"v":42}, {"h":48,"s":100,"v":100}],
|
|
1752
|
+
// },
|
|
1753
|
+
// {
|
|
1754
|
+
// id: 162,
|
|
1755
|
+
// name: I18n.getLang('country_north_macedonia'),
|
|
1756
|
+
// ...defFlagConfig,
|
|
1757
|
+
// colors: [{"h":56,"s":81,"v":97}, {"h":358,"s":85,"v":85}],
|
|
1758
|
+
// },
|
|
1759
|
+
// {
|
|
1760
|
+
// id: 161,
|
|
1761
|
+
// name: I18n.getLang('country_werder_bremen'),
|
|
1762
|
+
// ...defFlagConfig,
|
|
1763
|
+
// colors: [{"h":0,"s":0,"v":100}, {"h":160,"s":80,"v":34}],
|
|
1764
|
+
// },
|
|
1765
|
+
// ]
|