From 4524c8c33d1f59eabc0ed0e5e87bd59eef0a871d Mon Sep 17 00:00:00 2001 From: Mark Davis Date: Mon, 22 Apr 2013 14:49:51 +0000 Subject: [PATCH] ICU-8474 tuned portuguese, bengali, latvian, romanian, zulu X-SVN-Rev: 33541 --- .../src/com/ibm/icu/text/PluralRules.java | 4 +- .../dev/test/format/PluralRulesFactory.java | 15 +- .../dev/test/format/WritePluralRulesData.java | 173 +- .../com/ibm/icu/dev/test/format/plurals.txt | 4324 +++++++++-------- 4 files changed, 2474 insertions(+), 2042 deletions(-) diff --git a/icu4j/main/classes/core/src/com/ibm/icu/text/PluralRules.java b/icu4j/main/classes/core/src/com/ibm/icu/text/PluralRules.java index 6420a7846f0..f0c1e29ee19 100644 --- a/icu4j/main/classes/core/src/com/ibm/icu/text/PluralRules.java +++ b/icu4j/main/classes/core/src/com/ibm/icu/text/PluralRules.java @@ -382,9 +382,11 @@ public class PluralRules implements Serializable { public final long fractionalDigits; public final long intValue; public final boolean hasIntegerValue; + public final boolean isNegative; public NumberInfo(double n, int v, int f) { - source = n; + isNegative = n < 0; + source = isNegative ? -n : n; visibleFractionDigitCount = v; fractionalDigits = f; intValue = (long)n; diff --git a/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/PluralRulesFactory.java b/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/PluralRulesFactory.java index cc771a4e636..2b9f2281218 100644 --- a/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/PluralRulesFactory.java +++ b/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/PluralRulesFactory.java @@ -65,8 +65,9 @@ public abstract class PluralRulesFactory { static Relation EXTRA_SAMPLES = Relation.of(new HashMap>(), HashSet.class); static { String[][] overrides = { - {"bn", ""}, - {"en,ca,de,et,fi,gl,it,nl,pt,sv,sw,ta,te,ur", "one: j is 1"}, + {"bn", "one: n within 0..1"}, + {"en,ca,de,et,fi,gl,it,nl,sv,sw,ta,te,ur", "one: j is 1"}, + {"pt", "one: n is 1 or f is 1"}, {"cs,sk", "one: j is 1; few: j in 2..4; many: v is not 0"}, {"cy", "one: n is 1; two: n is 2; few: n is 3; many: n is 6"}, //{"el", "one: j is 1 or i is 0 and f is 1"}, @@ -78,11 +79,10 @@ public abstract class PluralRulesFactory { // {"hr", "one: j mod 10 is 1 and j mod 100 is not 11; few: j mod 10 in 2..4 and j mod 100 not in 12..14; many: j mod 10 is 0 or j mod 10 in 5..9 or j mod 100 in 11..14"}, {"lv", "zero: n mod 10 is 0" + " or n mod 10 in 11..19" + - " or v in 1..6 and f is not 0 and f mod 10 is 0" + - " or v in 1..6 and f mod 10 in 11..19;" + + " or v is 2 and f mod 10 in 11..19;" + "one: n mod 10 is 1 and n mod 100 is not 11" + - " or v in 1..6 and f mod 10 is 1 and f mod 100 is not 11" + - " or v not in 0..6 and f mod 10 is 1"}, + " or v is 2 and f mod 10 is 1 and f mod 100 is not 11" + + " or v is not 2 and f mod 10 is 1"}, // {"lv", "zero: n mod 10 is 0" + // " or n mod 10 in 11..19" + // " or v in 1..6 and f is not 0 and f mod 10 is 0" + @@ -112,7 +112,7 @@ public abstract class PluralRulesFactory { // " or v in 1..6 and f mod 10 in 5..9" + // " or v in 1..6 and f mod 100 in 11..14" + // " or v not in 0..6 and f mod 10 in 5..9" - {"ro", "one: j is 1; few: n is 0 or n is not 1 and n mod 100 in 1..19"}, + {"ro", "one: j is 1; few: v is not 0 or n is 0 or n is not 1 and n mod 100 in 1..19"}, {"ru", "one: j mod 10 is 1 and j mod 100 is not 11;" + " many: j mod 10 is 0 or j mod 10 in 5..9 or j mod 100 in 11..14" // + "; many: j mod 10 is 0 or j mod 10 in 5..9 or j mod 100 in 11..14" @@ -120,6 +120,7 @@ public abstract class PluralRulesFactory { {"uk", "one: j mod 10 is 1 and j mod 100 is not 11; " + "few: j mod 10 in 2..4 and j mod 100 not in 12..14; " + "many: j mod 10 is 0 or j mod 10 in 5..9 or j mod 100 in 11..14"}, + {"zu", "one: n within 0..1"}, }; for (String[] pair : overrides) { for (String locale : pair[0].split("\\s*,\\s*")) { diff --git a/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/WritePluralRulesData.java b/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/WritePluralRulesData.java index cb8c03af24d..2d89452d693 100644 --- a/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/WritePluralRulesData.java +++ b/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/WritePluralRulesData.java @@ -48,7 +48,7 @@ import com.ibm.icu.util.ULocale; */ public class WritePluralRulesData { // TODO use options - public static final String TARGETDIR = "/Users/markdavis/Google Drive/Backup-2012-10-09/Documents/indigo/Generated/icu/plurals/"; + public static final String TARGETDIR = "/Users/markdavis/Google Drive/Backup-2012-10-09/Documents/indigo/Generated/icu/plural-verification/"; public static void main(String[] args) throws Exception { if (args.length == 0) { @@ -92,8 +92,8 @@ public class WritePluralRulesData { {"ar", "zero", "{0} ساعة"}, {"bg", "one", "{0} ден"}, {"bg", "other", "{0} дена"}, - {"bn", "other", "{0} টি আপেল"}, - //{"bn", "other", "আমার অনেকগুলি আপেল আছে"}, + {"bn", "one", "সসে {0}টি আপেল নিয়ে সেটা খেল"}, + {"bn", "other", "সসে {0}টি আপেল নিয়ে সেগুলি খেল"}, {"br", "few", "{0} deiz"}, {"br", "many", "{0} a zeizioù"}, {"br", "one", "{0} deiz"}, @@ -183,10 +183,10 @@ public class WritePluralRulesData { {"pl", "many", "{0} miesięcy"}, {"pl", "one", "{0} miesiąc"}, {"pl", "other", "{0} miesiąca"}, - {"pt", "one", "{0} dia"}, - {"pt", "other", "{0} dias"}, - {"pt_PT", "one", "{0} dia"}, - {"pt_PT", "other", "{0} dias"}, + {"pt", "one", "{0} ponto"}, + {"pt", "other", "{0} pontos"}, +// {"pt_PT", "one", "{0} dia"}, +// {"pt_PT", "other", "{0} dias"}, {"ro", "few", "{0} zile"}, {"ro", "one", "{0} zi"}, {"ro", "other", "{0} de zile"}, @@ -247,67 +247,69 @@ public class WritePluralRulesData { } static final String[][] ORIGINAL_SAMPLES = { - {"af", "0.0, 0.1, 0.3, 1.0, 1.3, 3.0, 3.1, 0.00, 0.01, 0.20, 0.21, 0.03, 1.00, 1.20, 1.21, 1.03, 3.00, 3.01, 0.000, 0.001, 0.020, 0.021, 0.003, 1.000, 1.020, 1.021, 1.003, 3.000, 3.001"}, - {"am", "0.0, 0.1, 0.3, 1.0, 1.3, 3.0, 3.1, 0.00, 0.01, 0.20, 0.21, 0.03, 1.00, 1.20, 1.21, 1.03, 3.00, 3.01, 0.000, 0.001, 0.020, 0.021, 0.003, 1.000, 1.020, 1.021, 1.003, 3.000, 3.001"}, - {"ar", "0.0, 0.1, 0.2, 0.4, 1.0, 1.2, 1.4, 2.0, 2.1, 2.4, 4.0, 4.1, 4.2, 12.0, 12.1, 12.2, 12.4, 101.0, 101.1, 101.2, 101.4, 0.00, 0.01, 0.02, 0.04, 0.30, 0.21, 0.22, 0.14, 1.00, 1.02, 1.04, 1.30, 1.21, 1.22, 1.14, 2.00, 2.01, 2.04, 2.30, 2.21, 2.22, 2.14, 4.00, 4.01, 4.02, 4.30, 4.21, 4.22, 4.14, 12.00, 12.01, 12.02, 12.04, 101.00, 101.01, 101.02, 101.04, 101.30, 101.21, 101.22, 101.14, 0.000, 0.001, 0.002, 0.110, 0.004, 0.030, 0.021, 0.022, 0.014, 0.200, 0.201, 0.202, 1.000, 1.002, 1.110, 1.004, 1.030, 1.021, 1.022, 1.014, 1.200, 1.201, 1.202, 2.000, 2.001, 2.110, 2.004, 2.030, 2.021, 2.022, 2.014, 2.200, 2.201, 2.202, 4.000, 4.001, 4.002, 4.030, 4.021, 4.022, 4.014, 4.200, 4.201, 4.202, 12.000, 12.001, 12.002, 12.110, 12.004, 12.200, 12.201, 12.202, 101.000, 101.001, 101.002, 101.110, 101.004, 101.030, 101.021, 101.022, 101.014"}, - {"bg", "0.0, 0.1, 0.3, 1.0, 1.3, 3.0, 3.1, 0.00, 0.01, 0.20, 0.21, 0.03, 1.00, 1.20, 1.21, 1.03, 3.00, 3.01, 0.000, 0.001, 0.020, 0.021, 0.003, 1.000, 1.020, 1.021, 1.003, 3.000, 3.001"}, - {"bn", "0.0, 0.1, 0.3, 1.0, 1.3, 3.0, 3.1, 0.00, 0.01, 0.20, 0.21, 0.03, 1.00, 1.20, 1.21, 1.03, 3.00, 3.01, 0.000, 0.001, 0.020, 0.021, 0.003, 1.000, 1.020, 1.021, 1.003, 3.000, 3.001"}, - {"br", "0.0, 0.4, 0.6, 21.0, 21.4, 21.6, 22.0, 22.4, 22.6, 4.0, 4.6, 1000000.0, 1000000.4, 1000000.6, 6.0, 6.4, 0.00, 0.21, 0.22, 0.04, 0.20, 0.71, 0.72, 0.14, 0.06, 21.00, 21.22, 21.04, 21.20, 21.71, 21.72, 21.14, 21.06, 22.00, 22.21, 22.04, 22.20, 22.71, 22.72, 22.14, 22.06, 4.00, 4.21, 4.22, 4.20, 4.71, 4.72, 4.14, 4.06, 1000000.00, 1000000.21, 1000000.22, 1000000.04, 1000000.20, 1000000.71, 1000000.72, 1000000.14, 1000000.06, 6.00, 6.21, 6.22, 6.04, 0.000, 0.021, 0.022, 0.004, 0.020, 0.071, 0.072, 0.014, 0.006, 21.000, 21.022, 21.004, 21.020, 21.071, 21.072, 21.014, 21.006, 22.000, 22.021, 22.004, 22.020, 22.071, 22.072, 22.014, 22.006, 4.000, 4.021, 4.022, 4.020, 4.071, 4.072, 4.014, 4.006, 1000000.000, 1000000.021, 1000000.022, 1000000.004, 1000000.020, 1000000.071, 1000000.072, 1000000.014, 1000000.006, 6.000, 6.021, 6.022, 6.004"}, - {"ca", "0.0, 0.1, 0.3, 1.0, 1.3, 3.0, 3.1, 0.00, 0.01, 0.20, 0.21, 0.03, 1.00, 1.20, 1.21, 1.03, 3.00, 3.01, 0.000, 0.001, 0.020, 0.021, 0.003, 1.000, 1.020, 1.021, 1.003, 3.000, 3.001"}, - {"cs", "0.0, 0.1, 0.3, 0.6, 1.0, 1.3, 1.6, 3.0, 3.1, 3.6, 6.0, 6.1, 6.3, 0.00, 0.01, 0.03, 0.20, 0.21, 0.13, 0.06, 1.00, 1.03, 1.20, 1.21, 1.13, 1.06, 3.00, 3.01, 3.20, 3.21, 3.13, 3.06, 6.00, 6.01, 6.03, 0.000, 0.001, 0.003, 0.020, 0.021, 0.013, 0.006, 1.000, 1.003, 1.020, 1.021, 1.013, 1.006, 3.000, 3.001, 3.020, 3.021, 3.013, 3.006, 6.000, 6.001, 6.003"}, - {"da", "0.0, 0.1, 0.3, 1.0, 1.3, 3.0, 3.1, 0.00, 0.01, 0.20, 0.21, 0.03, 1.00, 1.20, 1.21, 1.03, 3.00, 3.01, 0.000, 0.001, 0.020, 0.021, 0.003, 1.000, 1.020, 1.021, 1.003, 3.000, 3.001"}, - {"de", "0.0, 0.1, 0.3, 1.0, 1.3, 3.0, 3.1, 0.00, 0.01, 0.20, 0.21, 0.03, 1.00, 1.20, 1.21, 1.03, 3.00, 3.01, 0.000, 0.001, 0.020, 0.021, 0.003, 1.000, 1.020, 1.021, 1.003, 3.000, 3.001"}, - {"dz", "0.0, 0.2, 2.0, 0.00, 0.20, 0.02, 2.00, 0.000, 0.020, 0.002, 2.000"}, - {"el", "0.0, 0.1, 0.3, 1.0, 1.3, 3.0, 3.1, 0.00, 0.01, 0.20, 0.21, 0.03, 1.00, 1.20, 1.21, 1.03, 3.00, 3.01, 0.000, 0.001, 0.020, 0.021, 0.003, 1.000, 1.020, 1.021, 1.003, 3.000, 3.001"}, - {"es", "0.0, 0.1, 0.3, 1.0, 1.3, 3.0, 3.1, 0.00, 0.01, 0.20, 0.21, 0.03, 1.00, 1.20, 1.21, 1.03, 3.00, 3.01, 0.000, 0.001, 0.020, 0.021, 0.003, 1.000, 1.020, 1.021, 1.003, 3.000, 3.001"}, - {"et", "0.0, 0.1, 0.3, 1.0, 1.3, 3.0, 3.1, 0.00, 0.01, 0.20, 0.21, 0.03, 1.00, 1.20, 1.21, 1.03, 3.00, 3.01, 0.000, 0.001, 0.020, 0.021, 0.003, 1.000, 1.020, 1.021, 1.003, 3.000, 3.001"}, - {"eu", "0.0, 0.1, 0.3, 1.0, 1.3, 3.0, 3.1, 0.00, 0.01, 0.20, 0.21, 0.03, 1.00, 1.20, 1.21, 1.03, 3.00, 3.01, 0.000, 0.001, 0.020, 0.021, 0.003, 1.000, 1.020, 1.021, 1.003, 3.000, 3.001"}, - {"fa", "0.0, 0.2, 2.0, 0.00, 0.20, 0.02, 2.00, 0.000, 0.020, 0.002, 2.000"}, - {"fi", "0.0, 0.1, 0.3, 1.0, 1.3, 3.0, 3.1, 0.00, 0.01, 0.20, 0.21, 0.03, 1.00, 1.20, 1.21, 1.03, 3.00, 3.01, 0.000, 0.001, 0.020, 0.021, 0.003, 1.000, 1.020, 1.021, 1.003, 3.000, 3.001"}, - {"fil", "0.0, 0.1, 0.3, 1.0, 1.3, 3.0, 3.1, 0.00, 0.01, 0.20, 0.21, 0.03, 1.00, 1.20, 1.21, 1.03, 3.00, 3.01, 0.000, 0.001, 0.020, 0.021, 0.003, 1.000, 1.020, 1.021, 1.003, 3.000, 3.001"}, - {"fr", "0.0, 0.1, 0.3, 1.0, 1.3, 3.0, 3.1, 0.00, 0.01, 0.20, 0.21, 0.03, 1.00, 1.20, 1.21, 1.03, 3.00, 3.01, 0.000, 0.001, 0.020, 0.021, 0.003, 1.000, 1.020, 1.021, 1.003, 3.000, 3.001"}, - {"gl", "0.0, 0.1, 0.3, 1.0, 1.3, 3.0, 3.1, 0.00, 0.01, 0.20, 0.21, 0.03, 1.00, 1.20, 1.21, 1.03, 3.00, 3.01, 0.000, 0.001, 0.020, 0.021, 0.003, 1.000, 1.020, 1.021, 1.003, 3.000, 3.001"}, - {"gu", "0.0, 0.1, 0.3, 1.0, 1.3, 3.0, 3.1, 0.00, 0.01, 0.20, 0.21, 0.03, 1.00, 1.20, 1.21, 1.03, 3.00, 3.01, 0.000, 0.001, 0.020, 0.021, 0.003, 1.000, 1.020, 1.021, 1.003, 3.000, 3.001"}, - {"he", "0.0, 0.1, 0.2, 0.4, 1.0, 1.2, 1.4, 2.0, 2.1, 2.4, 20.0, 20.1, 20.2, 20.4, 4.0, 4.1, 4.2, 0.00, 0.01, 0.02, 0.20, 0.21, 0.22, 0.04, 1.00, 1.02, 1.20, 1.21, 1.22, 1.04, 2.00, 2.01, 2.20, 2.21, 2.22, 2.04, 20.00, 20.01, 20.02, 20.21, 20.22, 20.04, 4.00, 4.01, 4.02, 4.20, 0.000, 0.001, 0.002, 0.020, 0.021, 0.022, 0.004, 1.000, 1.002, 1.020, 1.021, 1.022, 1.004, 2.000, 2.001, 2.020, 2.021, 2.022, 2.004, 20.000, 20.001, 20.002, 20.021, 20.022, 20.004, 4.000, 4.001, 4.002, 4.020"}, - {"hi", "0.0, 0.1, 0.3, 1.0, 1.3, 3.0, 3.1, 0.00, 0.01, 0.20, 0.21, 0.03, 1.00, 1.20, 1.21, 1.03, 3.00, 3.01, 0.000, 0.001, 0.020, 0.021, 0.003, 1.000, 1.020, 1.021, 1.003, 3.000, 3.001"}, - {"hr", "0.0, 0.3, 0.6, 21.0, 21.3, 21.6, 3.0, 3.6, 6.0, 6.3, 0.00, 0.21, 0.03, 0.20, 0.13, 0.06, 21.00, 21.03, 21.20, 21.13, 21.06, 3.00, 3.21, 3.20, 3.13, 3.06, 6.00, 6.21, 6.03, 0.000, 0.021, 0.003, 0.020, 0.111, 0.013, 0.006, 21.000, 21.003, 21.020, 21.111, 21.013, 21.006, 3.000, 3.021, 3.020, 3.111, 3.013, 3.006, 6.000, 6.021, 6.003"}, - {"hu", "0.0, 0.2, 2.0, 0.00, 0.20, 0.02, 2.00, 0.000, 0.020, 0.002, 2.000"}, - {"id", "0.0, 0.2, 2.0, 0.00, 0.20, 0.02, 2.00, 0.000, 0.020, 0.002, 2.000"}, - {"is", "0.0, 0.1, 0.3, 1.0, 1.3, 3.0, 3.1, 0.00, 0.01, 0.20, 0.21, 0.03, 1.00, 1.20, 1.21, 1.03, 3.00, 3.01, 0.000, 0.001, 0.020, 0.021, 0.003, 1.000, 1.020, 1.021, 1.003, 3.000, 3.001"}, - {"it", "0.0, 0.1, 0.3, 1.0, 1.3, 3.0, 3.1, 0.00, 0.01, 0.20, 0.21, 0.03, 1.00, 1.20, 1.21, 1.03, 3.00, 3.01, 0.000, 0.001, 0.020, 0.021, 0.003, 1.000, 1.020, 1.021, 1.003, 3.000, 3.001"}, - {"ja", "0.0, 0.2, 2.0, 0.00, 0.20, 0.02, 2.00, 0.000, 0.020, 0.002, 2.000"}, - {"km", "0.0, 0.2, 2.0, 0.00, 0.20, 0.02, 2.00, 0.000, 0.020, 0.002, 2.000"}, - {"kn", "0.0, 0.2, 2.0, 0.00, 0.20, 0.02, 2.00, 0.000, 0.020, 0.002, 2.000"}, - {"ko", "0.0, 0.2, 2.0, 0.00, 0.20, 0.02, 2.00, 0.000, 0.020, 0.002, 2.000"}, - {"lo", "0.0, 0.2, 2.0, 0.00, 0.20, 0.02, 2.00, 0.000, 0.020, 0.002, 2.000"}, - {"lt", "0.0, 0.3, 21.0, 21.3, 3.0, 11.0, 11.3, 0.00, 0.21, 0.03, 0.20, 0.13, 21.00, 21.03, 21.20, 21.13, 3.00, 3.21, 3.20, 3.13, 11.00, 11.21, 11.03, 0.000, 0.021, 0.003, 0.020, 0.111, 0.013, 21.000, 21.003, 21.020, 21.111, 21.013, 3.000, 3.021, 3.020, 3.111, 3.013, 11.000, 11.021, 11.003"}, - {"lv", "0.0, 0.3, 21.0, 21.3, 3.0, 0.00, 0.21, 0.20, 0.03, 21.00, 21.20, 21.03, 3.00, 3.21, 0.000, 0.021, 0.020, 0.111, 0.003, 21.000, 21.020, 21.111, 21.003, 3.000, 3.021"}, - {"ml", "0.0, 0.1, 0.3, 1.0, 1.3, 3.0, 3.1, 0.00, 0.01, 0.20, 0.21, 0.03, 1.00, 1.20, 1.21, 1.03, 3.00, 3.01, 0.000, 0.001, 0.020, 0.021, 0.003, 1.000, 1.020, 1.021, 1.003, 3.000, 3.001"}, - {"mr", "0.0, 0.1, 0.3, 1.0, 1.3, 3.0, 3.1, 0.00, 0.01, 0.20, 0.21, 0.03, 1.00, 1.20, 1.21, 1.03, 3.00, 3.01, 0.000, 0.001, 0.020, 0.021, 0.003, 1.000, 1.020, 1.021, 1.003, 3.000, 3.001"}, - {"ms", "0.0, 0.2, 2.0, 0.00, 0.20, 0.02, 2.00, 0.000, 0.020, 0.002, 2.000"}, - {"nb", "0.0, 0.1, 0.3, 1.0, 1.3, 3.0, 3.1, 0.00, 0.01, 0.20, 0.21, 0.03, 1.00, 1.20, 1.21, 1.03, 3.00, 3.01, 0.000, 0.001, 0.020, 0.021, 0.003, 1.000, 1.020, 1.021, 1.003, 3.000, 3.001"}, - {"ne", "0.0, 0.1, 0.3, 1.0, 1.3, 3.0, 3.1, 0.00, 0.01, 0.20, 0.21, 0.03, 1.00, 1.20, 1.21, 1.03, 3.00, 3.01, 0.000, 0.001, 0.020, 0.021, 0.003, 1.000, 1.020, 1.021, 1.003, 3.000, 3.001"}, - {"nl", "0.0, 0.1, 0.3, 1.0, 1.3, 3.0, 3.1, 0.00, 0.01, 0.20, 0.21, 0.03, 1.00, 1.20, 1.21, 1.03, 3.00, 3.01, 0.000, 0.001, 0.020, 0.021, 0.003, 1.000, 1.020, 1.021, 1.003, 3.000, 3.001"}, - {"pl", "0.0, 0.1, 0.3, 0.6, 1.0, 1.3, 1.6, 3.0, 3.1, 3.6, 6.0, 6.1, 6.3, 0.00, 0.01, 0.03, 0.20, 0.21, 0.13, 0.06, 1.00, 1.03, 1.20, 1.21, 1.13, 1.06, 3.00, 3.01, 3.20, 3.21, 3.13, 3.06, 6.00, 6.01, 6.03, 0.000, 0.001, 0.003, 0.020, 0.021, 0.013, 0.006, 1.000, 1.003, 1.020, 1.021, 1.013, 1.006, 3.000, 3.001, 3.020, 3.021, 3.013, 3.006, 6.000, 6.001, 6.003"}, - {"pt", "0.0, 0.1, 0.3, 1.0, 1.3, 3.0, 3.1, 0.00, 0.01, 0.20, 0.21, 0.03, 1.00, 1.20, 1.21, 1.03, 3.00, 3.01, 0.000, 0.001, 0.020, 0.021, 0.003, 1.000, 1.020, 1.021, 1.003, 3.000, 3.001"}, - {"pt_PT", "0.0, 0.1, 0.3, 1.0, 1.3, 3.0, 3.1, 0.00, 0.01, 0.20, 0.21, 0.03, 1.00, 1.20, 1.21, 1.03, 3.00, 3.01, 0.000, 0.001, 0.020, 0.021, 0.003, 1.000, 1.020, 1.021, 1.003, 3.000, 3.001"}, - {"ro", "0.0, 0.1, 0.3, 1.0, 1.3, 3.0, 3.1, 21.0, 21.1, 21.3, 0.00, 0.01, 0.03, 0.30, 0.31, 0.23, 1.00, 1.03, 1.30, 1.31, 1.23, 3.00, 3.01, 3.30, 3.31, 3.23, 21.00, 21.01, 21.03, 0.000, 0.001, 0.110, 0.101, 0.003, 0.030, 0.031, 0.023, 1.000, 1.110, 1.101, 1.003, 1.030, 1.031, 1.023, 3.000, 3.001, 3.030, 3.031, 3.023, 21.000, 21.001, 21.110, 21.101, 21.003"}, - {"ru", "0.0, 0.3, 0.6, 21.0, 21.3, 21.6, 3.0, 3.6, 6.0, 6.3, 0.00, 0.21, 0.03, 0.20, 0.13, 0.06, 21.00, 21.03, 21.20, 21.13, 21.06, 3.00, 3.21, 3.20, 3.13, 3.06, 6.00, 6.21, 6.03, 0.000, 0.021, 0.003, 0.020, 0.111, 0.013, 0.006, 21.000, 21.003, 21.020, 21.111, 21.013, 21.006, 3.000, 3.021, 3.020, 3.111, 3.013, 3.006, 6.000, 6.021, 6.003"}, - {"si", "0.0, 0.2, 2.0, 0.00, 0.20, 0.02, 2.00, 0.000, 0.020, 0.002, 2.000"}, - {"sk", "0.0, 0.1, 0.3, 0.6, 1.0, 1.3, 1.6, 3.0, 3.1, 3.6, 6.0, 6.1, 6.3, 0.00, 0.01, 0.03, 0.20, 0.21, 0.13, 0.06, 1.00, 1.03, 1.20, 1.21, 1.13, 1.06, 3.00, 3.01, 3.20, 3.21, 3.13, 3.06, 6.00, 6.01, 6.03, 0.000, 0.001, 0.003, 0.020, 0.021, 0.013, 0.006, 1.000, 1.003, 1.020, 1.021, 1.013, 1.006, 3.000, 3.001, 3.020, 3.021, 3.013, 3.006, 6.000, 6.001, 6.003"}, - {"sl", "0.0, 0.4, 0.6, 101.0, 101.4, 101.6, 102.0, 102.4, 102.6, 4.0, 4.6, 6.0, 6.4, 0.00, 0.04, 0.20, 0.21, 0.22, 0.14, 0.06, 101.00, 101.04, 101.20, 101.21, 101.22, 101.14, 101.06, 102.00, 102.04, 102.20, 102.21, 102.22, 102.14, 102.06, 4.00, 4.20, 4.21, 4.22, 4.14, 4.06, 6.00, 6.04, 0.000, 0.101, 0.102, 0.004, 0.020, 0.021, 0.022, 0.014, 0.006, 101.000, 101.102, 101.004, 101.020, 101.021, 101.022, 101.014, 101.006, 102.000, 102.101, 102.004, 102.020, 102.021, 102.022, 102.014, 102.006, 4.000, 4.101, 4.102, 4.020, 4.021, 4.022, 4.014, 4.006, 6.000, 6.101, 6.102, 6.004"}, - {"sr", "0.0, 0.3, 0.6, 21.0, 21.3, 21.6, 3.0, 3.6, 6.0, 6.3, 0.00, 0.21, 0.03, 0.20, 0.13, 0.06, 21.00, 21.03, 21.20, 21.13, 21.06, 3.00, 3.21, 3.20, 3.13, 3.06, 6.00, 6.21, 6.03, 0.000, 0.021, 0.003, 0.020, 0.111, 0.013, 0.006, 21.000, 21.003, 21.020, 21.111, 21.013, 21.006, 3.000, 3.021, 3.020, 3.111, 3.013, 3.006, 6.000, 6.021, 6.003"}, - {"sv", "0.0, 0.1, 0.3, 1.0, 1.3, 3.0, 3.1, 0.00, 0.01, 0.20, 0.21, 0.03, 1.00, 1.20, 1.21, 1.03, 3.00, 3.01, 0.000, 0.001, 0.020, 0.021, 0.003, 1.000, 1.020, 1.021, 1.003, 3.000, 3.001"}, - {"sw", "0.0, 0.1, 0.3, 1.0, 1.3, 3.0, 3.1, 0.00, 0.01, 0.20, 0.21, 0.03, 1.00, 1.20, 1.21, 1.03, 3.00, 3.01, 0.000, 0.001, 0.020, 0.021, 0.003, 1.000, 1.020, 1.021, 1.003, 3.000, 3.001"}, - {"ta", "0.0, 0.1, 0.3, 1.0, 1.3, 3.0, 3.1, 0.00, 0.01, 0.20, 0.21, 0.03, 1.00, 1.20, 1.21, 1.03, 3.00, 3.01, 0.000, 0.001, 0.020, 0.021, 0.003, 1.000, 1.020, 1.021, 1.003, 3.000, 3.001"}, - {"te", "0.0, 0.1, 0.3, 1.0, 1.3, 3.0, 3.1, 0.00, 0.01, 0.20, 0.21, 0.03, 1.00, 1.20, 1.21, 1.03, 3.00, 3.01, 0.000, 0.001, 0.020, 0.021, 0.003, 1.000, 1.020, 1.021, 1.003, 3.000, 3.001"}, - {"th", "0.0, 0.2, 2.0, 0.00, 0.20, 0.02, 2.00, 0.000, 0.020, 0.002, 2.000"}, - {"tr", "0.0, 0.2, 2.0, 0.00, 0.20, 0.02, 2.00, 0.000, 0.020, 0.002, 2.000"}, - {"uk", "0.0, 0.3, 0.6, 21.0, 21.3, 21.6, 3.0, 3.6, 6.0, 6.3, 0.00, 0.21, 0.03, 0.20, 0.13, 0.06, 21.00, 21.03, 21.20, 21.13, 21.06, 3.00, 3.21, 3.20, 3.13, 3.06, 6.00, 6.21, 6.03, 0.000, 0.021, 0.003, 0.020, 0.111, 0.013, 0.006, 21.000, 21.003, 21.020, 21.111, 21.013, 21.006, 3.000, 3.021, 3.020, 3.111, 3.013, 3.006, 6.000, 6.021, 6.003"}, - {"ur", "0.0, 0.1, 0.3, 1.0, 1.3, 3.0, 3.1, 0.00, 0.01, 0.20, 0.21, 0.03, 1.00, 1.20, 1.21, 1.03, 3.00, 3.01, 0.000, 0.001, 0.020, 0.021, 0.003, 1.000, 1.020, 1.021, 1.003, 3.000, 3.001"}, - {"vi", "0.0, 0.2, 2.0, 0.00, 0.20, 0.02, 2.00, 0.000, 0.020, 0.002, 2.000"}, - {"zh", "0.0, 0.2, 2.0, 0.00, 0.20, 0.02, 2.00, 0.000, 0.020, 0.002, 2.000"}, - {"zh_Hant", "0.0, 0.2, 2.0, 0.00, 0.20, 0.02, 2.00, 0.000, 0.020, 0.002, 2.000"}, + {"af", "0, 0.00, 0.000, 0.001, 0.002, 0.01, 0.010, 0.011, 0.02, 0.1, 0.10, 0.11, 0.2, 1.0, 1.00, 1.000, 1.002, 1.010, 1.011, 1.02, 1.10, 1.11, 1.2, 2.0, 2.00, 2.000, 2.001, 2.01, 2.1"}, + {"am", "0.0, 0.00, 0.000, 0.001, 0.002, 0.01, 0.010, 0.011, 0.02, 0.1, 0.10, 0.11, 0.2, 2, 1.0, 1.00, 1.000, 1.002, 1.010, 1.011, 1.02, 1.10, 1.11, 1.2, 2.0, 2.00, 2.000, 2.001, 2.01, 2.1"}, + {"ar", "0, 0.0, 0.00, 0.000, 0.001, 0.002, 0.003, 0.01, 0.010, 0.011, 0.012, 0.013, 0.02, 0.020, 0.03, 0.1, 0.10, 0.100, 0.101, 0.102, 0.11, 0.12, 0.13, 0.2, 0.20, 0.3, 1.0, 1.00, 1.000, 1.002, 1.003, 1.010, 1.011, 1.012, 1.013, 1.02, 1.020, 1.03, 1.10, 1.100, 1.101, 1.102, 1.11, 1.12, 1.13, 1.2, 1.20, 1.3, 2.0, 2.00, 2.000, 2.001, 2.003, 2.01, 2.010, 2.011, 2.012, 2.013, 2.020, 2.03, 2.1, 2.10, 2.100, 2.101, 2.102, 2.11, 2.12, 2.13, 2.20, 2.3, 3.0, 3.00, 3.000, 3.001, 3.002, 3.01, 3.011, 3.012, 3.013, 3.02, 3.020, 3.1, 3.100, 3.101, 3.102, 3.11, 3.12, 3.13, 3.2, 3.20, 11.0, 11.00, 11.000, 11.001, 11.002, 11.003, 11.01, 11.010, 11.02, 11.03, 11.1, 11.10, 11.100, 11.101, 11.102, 11.2, 11.3, 100.0, 100.00, 100.000, 100.001, 100.002, 100.003, 100.01, 100.010, 100.011, 100.012, 100.013, 100.02, 100.020, 100.03, 100.1, 100.10, 100.11, 100.12, 100.13, 100.2, 100.20, 100.3"}, + {"bg", "0, 0.0, 0.00, 0.000, 0.001, 0.002, 0.01, 0.010, 0.011, 0.02, 0.1, 0.10, 0.11, 0.2, 1.0, 1.00, 1.000, 1.002, 1.010, 1.011, 1.02, 1.10, 1.11, 1.2, 2.0, 2.00, 2.000, 2.001, 2.01, 2.1"}, + {"br", "0.0, 0.00, 0.000, 0.001, 0.002, 0.003, 0.005, 0.01, 0.010, 0.011, 0.012, 0.013, 0.02, 0.03, 0.05, 0.1, 0.10, 0.11, 0.12, 0.13, 0.2, 0.3, 0.5, 1.0, 1.00, 1.000, 1.002, 1.003, 1.005, 1.010, 1.011, 1.012, 1.013, 1.02, 1.03, 1.05, 1.10, 1.11, 1.12, 1.13, 1.2, 1.3, 1.5, 2, 2.0, 2.00, 2.000, 2.001, 2.003, 2.005, 2.01, 2.010, 2.011, 2.012, 2.013, 2.03, 2.05, 2.1, 2.10, 2.11, 2.12, 2.13, 2.3, 2.5, 3.0, 3.00, 3.000, 3.001, 3.002, 3.005, 3.01, 3.010, 3.011, 3.012, 3.013, 3.02, 3.05, 3.1, 3.10, 3.11, 3.12, 3.13, 3.2, 3.5, 5.0, 5.00, 5.000, 5.001, 5.002, 5.003, 5.01, 5.02, 5.03, 5.1, 5.2, 5.3, 1000000.0, 1000000.00, 1000000.000, 1000000.001, 1000000.002, 1000000.003, 1000000.005, 1000000.01, 1000000.010, 1000000.011, 1000000.012, 1000000.013, 1000000.02, 1000000.03, 1000000.05, 1000000.1, 1000000.10, 1000000.11, 1000000.12, 1000000.13, 1000000.2, 1000000.3, 1000000.5"}, + {"ca", "0, 0.0, 0.00, 0.000, 0.001, 0.002, 0.01, 0.010, 0.011, 0.02, 0.1, 0.10, 0.11, 0.2, 1.0, 1.00, 1.000, 1.002, 1.010, 1.011, 1.02, 1.10, 1.11, 1.2, 2.0, 2.00, 2.000, 2.001, 2.01, 2.1"}, + {"cs", "0, 0.0, 0.00, 0.000, 0.001, 0.002, 0.005, 0.01, 0.010, 0.011, 0.012, 0.02, 0.05, 0.1, 0.10, 0.11, 0.12, 0.2, 0.5, 1.0, 1.00, 1.000, 1.002, 1.005, 1.010, 1.011, 1.012, 1.02, 1.05, 1.10, 1.11, 1.12, 1.2, 1.5, 2.0, 2.00, 2.000, 2.001, 2.005, 2.01, 2.010, 2.011, 2.012, 2.05, 2.1, 2.10, 2.11, 2.12, 2.5, 5.0, 5.00, 5.000, 5.001, 5.002, 5.01, 5.02, 5.1, 5.2"}, + {"cy", "0.0, 0.00, 0.000, 0.001, 0.002, 0.003, 0.004, 0.006, 0.01, 0.010, 0.011, 0.012, 0.013, 0.016, 0.02, 0.03, 0.04, 0.06, 0.1, 0.10, 0.11, 0.12, 0.13, 0.16, 0.2, 0.3, 0.4, 0.6, 1.0, 1.00, 1.000, 1.002, 1.003, 1.004, 1.006, 1.010, 1.011, 1.012, 1.013, 1.016, 1.02, 1.03, 1.04, 1.06, 1.10, 1.11, 1.12, 1.13, 1.16, 1.2, 1.3, 1.4, 1.6, 2.0, 2.00, 2.000, 2.001, 2.003, 2.004, 2.006, 2.01, 2.010, 2.011, 2.012, 2.013, 2.016, 2.03, 2.04, 2.06, 2.1, 2.10, 2.11, 2.12, 2.13, 2.16, 2.3, 2.4, 2.6, 3.0, 3.00, 3.000, 3.001, 3.002, 3.004, 3.006, 3.01, 3.010, 3.011, 3.012, 3.013, 3.016, 3.02, 3.04, 3.06, 3.1, 3.10, 3.11, 3.12, 3.13, 3.16, 3.2, 3.4, 3.6, 4.0, 4.00, 4.000, 4.001, 4.002, 4.003, 4.006, 4.01, 4.02, 4.03, 4.06, 4.1, 4.2, 4.3, 4.6, 6.0, 6.00, 6.000, 6.001, 6.002, 6.003, 6.004, 6.01, 6.010, 6.011, 6.012, 6.013, 6.016, 6.02, 6.03, 6.04, 6.1, 6.10, 6.11, 6.12, 6.13, 6.16, 6.2, 6.3, 6.4, 8"}, + {"da", "0, 0.0, 0.00, 0.000, 0.001, 0.002, 0.01, 0.010, 0.011, 0.02, 0.1, 0.10, 0.11, 0.2, 1.0, 1.00, 1.000, 1.002, 1.010, 1.011, 1.02, 1.10, 1.11, 1.2, 2.0, 2.00, 2.000, 2.001, 2.01, 2.1"}, + {"de", "0, 0.0, 0.00, 0.000, 0.001, 0.002, 0.01, 0.010, 0.011, 0.02, 0.1, 0.10, 0.11, 0.2, 1.0, 1.00, 1.000, 1.002, 1.010, 1.011, 1.02, 1.10, 1.11, 1.2, 2.0, 2.00, 2.000, 2.001, 2.01, 2.1"}, + {"dz", "0, 0.0, 0.00, 0.000, 0.001, 0.01, 0.010, 0.1, 0.10, 1.0, 1.00, 1.000"}, + {"el", "2, 0.0, 0.00, 0.000, 0.001, 0.002, 0.01, 0.010, 0.011, 0.02, 0.1, 0.10, 0.11, 0.2, 1.0, 1.00, 1.000, 1.002, 1.010, 1.011, 1.02, 1.10, 1.11, 1.2, 2.0, 2.00, 2.000, 2.001, 2.01, 2.1"}, + {"es", "0, 0.0, 0.00, 0.000, 0.001, 0.002, 0.01, 0.010, 0.011, 0.02, 0.1, 0.10, 0.11, 0.2, 1.0, 1.00, 1.000, 1.002, 1.010, 1.011, 1.02, 1.10, 1.11, 1.2, 2.0, 2.00, 2.000, 2.001, 2.01, 2.1"}, + {"et", "0, 0.0, 0.00, 0.000, 0.001, 0.002, 0.01, 0.010, 0.011, 0.02, 0.1, 0.10, 0.11, 0.2, 1.0, 1.00, 1.000, 1.002, 1.010, 1.011, 1.02, 1.10, 1.11, 1.2, 2.0, 2.00, 2.000, 2.001, 2.01, 2.1"}, + {"eu", "0.0, 0.00, 0.000, 0.001, 0.002, 0.01, 0.010, 0.011, 0.02, 0.1, 0.10, 0.11, 0.2, 1.0, 1.00, 1.000, 1.002, 1.010, 1.011, 1.02, 1.10, 1.11, 1.2, 2.0, 2.00, 2.000, 2.001, 2.01, 2.1, 4"}, + {"fa", "0, 0.0, 0.00, 0.000, 0.001, 0.01, 0.010, 0.1, 0.10, 1.0, 1.00, 1.000"}, + {"fi", "0, 0.0, 0.00, 0.000, 0.001, 0.002, 0.01, 0.010, 0.011, 0.02, 0.1, 0.10, 0.11, 0.2, 1.0, 1.00, 1.000, 1.002, 1.010, 1.011, 1.02, 1.10, 1.11, 1.2, 2.0, 2.00, 2.000, 2.001, 2.01, 2.1"}, + {"fil", "0.0, 0.00, 0.000, 0.001, 0.002, 0.01, 0.010, 0.011, 0.02, 0.1, 0.10, 0.11, 0.2, 0.5, 1.0, 1.00, 1.000, 1.002, 1.010, 1.011, 1.02, 1.10, 1.11, 1.2, 2.0, 2.00, 2.000, 2.001, 2.01, 2.1"}, + {"fr", "0.0, 0.00, 0.000, 0.001, 0.002, 0.01, 0.010, 0.011, 0.02, 0.1, 0.10, 0.11, 0.2, 1.0, 1.00, 1.000, 1.002, 1.010, 1.011, 1.02, 1.10, 1.11, 1.2, 2, 2.0, 2.00, 2.000, 2.001, 2.01, 2.1"}, + {"gl", "0, 0.0, 0.00, 0.000, 0.001, 0.002, 0.01, 0.010, 0.011, 0.02, 0.1, 0.10, 0.11, 0.2, 1.0, 1.00, 1.000, 1.002, 1.010, 1.011, 1.02, 1.10, 1.11, 1.2, 2.0, 2.00, 2.000, 2.001, 2.01, 2.1"}, + {"gu", "0, 0.0, 0.00, 0.000, 0.001, 0.002, 0.01, 0.010, 0.011, 0.02, 0.1, 0.10, 0.11, 0.2, 1.0, 1.00, 1.000, 1.002, 1.010, 1.011, 1.02, 1.10, 1.11, 1.2, 2.0, 2.00, 2.000, 2.001, 2.01, 2.1"}, + {"he", "0.0, 0.00, 0.000, 0.001, 0.002, 0.003, 0.01, 0.010, 0.011, 0.012, 0.02, 0.03, 0.1, 0.10, 0.11, 0.12, 0.2, 0.3, 1.0, 1.00, 1.000, 1.002, 1.003, 1.010, 1.011, 1.012, 1.02, 1.03, 1.10, 1.11, 1.12, 1.2, 1.3, 2.0, 2.00, 2.000, 2.001, 2.003, 2.01, 2.010, 2.011, 2.012, 2.03, 2.1, 2.10, 2.11, 2.12, 2.3, 3.0, 3.00, 3.000, 3.001, 3.002, 3.01, 3.010, 3.02, 3.1, 3.10, 3.2, 10.0, 10.00, 10.000, 10.001, 10.002, 10.003, 10.01, 10.011, 10.012, 10.02, 10.03, 10.1, 10.11, 10.12, 10.2, 10.3"}, + {"hi", "0.0, 0.00, 1.0, 0.001, 0.002, 0.01, 0.010, 0.011, 0.02, 0.1, 0.10, 0.11, 0.2, 1.0, 1.0, 1.0, 1.002, 1.010, 1.011, 1.02, 1.10, 1.11, 1.2, 2, 2.0, 2.00, 2.000, 2.001, 2.01, 2.1"}, + {"hr", "0.0, 0.00, 0.000, 0.001, 0.002, 0.005, 0.01, 0.010, 0.011, 0.012, 0.02, 0.05, 0.1, 0.10, 0.11, 0.12, 0.2, 0.5, 0.5, 1.0, 1.00, 1.000, 1.002, 1.005, 1.010, 1.011, 1.012, 1.02, 1.05, 1.10, 1.11, 1.12, 1.2, 1.5, 2.0, 2.00, 2.000, 2.001, 2.005, 2.01, 2.010, 2.011, 2.012, 2.05, 2.1, 2.10, 2.11, 2.12, 2.5, 5.0, 5.00, 5.000, 5.001, 5.002, 5.01, 5.02, 5.1, 5.2"}, + {"hu", "0, 0.0, 0.00, 0.000, 0.001, 0.01, 0.010, 0.1, 0.10, 1.0, 1.00, 1.000"}, + {"hy", "0, 0, 0, 0, 0.001, 0.002, 0.003, 0.01, 0.01, 0.011, 0.012, 0.013, 0.02, 0.02, 0.03, 0.1, 0.1, 0.1, 0.101, 0.102, 0.11, 0.12, 0.13, 0.2, 0.2, 0.3, 1, 1, 1, 1.002, 1.003, 1.01, 1.011, 1.012, 1.013, 1.02, 1.02, 1.03, 1.1, 1.1, 1.101, 1.102, 1.11, 1.12, 1.13, 1.2, 1.2, 1.3, 2, 2, 2, 2.001, 2.003, 2.01, 2.01, 2.011, 2.012, 2.013, 2.02, 2.03, 2.1, 2.1, 2.1, 2.101, 2.102, 2.11, 2.12, 2.13, 2.2, 2.3, 3, 3, 3, 3.001, 3.002, 3.01, 3.011, 3.012, 3.013, 3.02, 3.02, 3.1, 3.1, 3.101, 3.102, 3.11, 3.12, 3.13, 3.2, 3.2, 11, 11, 11, 11.001, 11.002, 11.003, 11.01, 11.01, 11.02, 11.03, 11.1, 11.1, 11.1, 11.101, 11.102, 11.2, 11.3, 100, 100, 100, 100.001, 100.002, 100.003, 100.01, 100.01, 100.011, 100.012, 100.013, 100.02, 100.02, 100.03, 100.1, 100.1, 100.11, 100.12, 100.13, 100.2, 100.2, 100.3"}, + {"id", "0, 0.0, 0.00, 0.000, 0.001, 0.01, 0.010, 0.1, 0.10, 1.0, 1.00, 1.000"}, + {"is", "0, 0.0, 0.00, 0.000, 0.001, 0.002, 0.01, 0.010, 0.011, 0.02, 0.1, 0.10, 0.11, 0.2, 1.0, 1.00, 1.000, 1.002, 1.010, 1.011, 1.02, 1.10, 1.11, 1.2, 2.0, 2.00, 2.000, 2.001, 2.01, 2.1"}, + {"it", "0, 0.0, 0.00, 0.000, 0.001, 0.002, 0.01, 0.010, 0.011, 0.02, 0.1, 0.10, 0.11, 0.2, 1.0, 1.00, 1.000, 1.002, 1.010, 1.011, 1.02, 1.10, 1.11, 1.2, 2.0, 2.00, 2.000, 2.001, 2.01, 2.1"}, + {"ja", "0, 0.0, 0.00, 0.000, 0.001, 0.01, 0.010, 0.1, 0.10, 1.0, 1.00, 1.000"}, + {"km", "0, 0.0, 0.00, 0.000, 0.001, 0.01, 0.010, 0.1, 0.10, 1.0, 1.00, 1.000"}, + {"kn", "0, 0.0, 0.00, 0.000, 0.001, 0.01, 0.010, 0.1, 0.10, 1.0, 1.00, 1.000"}, + {"ko", "0, 0.0, 0.00, 0.000, 0.001, 0.01, 0.010, 0.1, 0.10, 1.0, 1.00, 1.000"}, + {"lo", "0, 0.0, 0.00, 0.000, 0.001, 0.01, 0.010, 0.1, 0.10, 1.0, 1.00, 1.000"}, + {"lt", "0, 0.0, 0.00, 0.000, 0.001, 0.002, 0.01, 0.010, 0.011, 0.012, 0.02, 0.1, 0.10, 0.11, 0.12, 0.2, 1.0, 1.00, 1.000, 1.002, 1.010, 1.011, 1.012, 1.02, 1.10, 1.11, 1.12, 1.2, 2.0, 2.00, 2.000, 2.001, 2.01, 2.010, 2.011, 2.012, 2.1, 2.10, 2.11, 2.12, 10.0, 10.00, 10.000, 10.001, 10.002, 10.01, 10.02, 10.1, 10.2"}, + {"lv", "0, 0.0, 0.00, 0.000, 0.001, 0.002, 0.01, 0.010, 0.011, 0.02, 0.1, 0.10, 0.11, 0.2, 1.0, 1.00, 1.000, 1.002, 1.010, 1.011, 1.02, 1.10, 1.11, 1.2, 2.0, 2.00, 2.000, 2.001, 2.01, 2.1"}, + {"ml", "0.0, 0.00, 0.000, 0.001, 0.002, 0.01, 0.010, 0.011, 0.02, 0.1, 0.10, 0.11, 0.2, 1.0, 1.00, 1.000, 1.002, 1.010, 1.011, 1.02, 1.10, 1.11, 1.2, 2, 2.0, 2.00, 2.000, 2.001, 2.01, 2.1"}, + {"mr", "0, 0.0, 0.00, 0.000, 0.001, 0.002, 0.01, 0.010, 0.011, 0.02, 0.1, 0.10, 0.11, 0.2, 1.0, 1.00, 1.000, 1.002, 1.010, 1.011, 1.02, 1.10, 1.11, 1.2, 2.0, 2.00, 2.000, 2.001, 2.01, 2.1"}, + {"ms", "0, 0.0, 0.00, 0.000, 0.001, 0.01, 0.010, 0.1, 0.10, 1.0, 1.00, 1.000"}, + {"nb", "0, 0.0, 0.00, 0.000, 0.001, 0.002, 0.01, 0.010, 0.011, 0.02, 0.1, 0.10, 0.11, 0.2, 1.0, 1.00, 1.000, 1.002, 1.010, 1.011, 1.02, 1.10, 1.11, 1.2, 2.0, 2.00, 2.000, 2.001, 2.01, 2.1"}, + {"ne", "0.0, 0.00, 0.000, 0.001, 0.002, 0.01, 0.010, 0.011, 0.02, 0.1, 0.10, 0.11, 0.2, 1.0, 1.00, 1.000, 1.002, 1.010, 1.011, 1.02, 1.10, 1.11, 1.2, 2, 2.0, 2.00, 2.000, 2.001, 2.01, 2.1, 2, 1, 0, 2, 1, 0"}, + {"nl", "0, 0.0, 0.00, 0.000, 0.001, 0.002, 0.01, 0.010, 0.011, 0.02, 0.1, 0.10, 0.11, 0.2, 1.0, 1.00, 1.000, 1.002, 1.010, 1.011, 1.02, 1.10, 1.11, 1.2, 2.0, 2.00, 2.000, 2.001, 2.01, 2.1"}, + {"pl", "0.0, 0.00, 0.000, 0.001, 0.002, 0.005, 0.01, 0.010, 0.011, 0.012, 0.02, 0.05, 0.1, 0.10, 0.11, 0.12, 0.2, 0.5, 0.5, 1.0, 1.00, 1.000, 1.002, 1.005, 1.010, 1.011, 1.012, 1.02, 1.05, 1.10, 1.11, 1.12, 1.2, 1.5, 2.0, 2.00, 2.000, 2.001, 2.005, 2.01, 2.010, 2.011, 2.012, 2.05, 2.1, 2.10, 2.11, 2.12, 2.5, 5.0, 5.00, 5.000, 5.001, 5.002, 5.01, 5.02, 5.1, 5.2"}, + {"pt", "0, 0.0, 0.00, 0.000, 0.001, 0.002, 0.01, 0.010, 0.011, 0.02, 0.1, 0.10, 0.11, 0.2, 1.0, 1.00, 1.000, 1.002, 1.010, 1.011, 1.02, 1.10, 1.11, 1.2, 2.0, 2.00, 2.000, 2.001, 2.01, 2.1"}, + {"pt_PT", "0, 0.0, 0.00, 0.000, 0.001, 0.002, 0.01, 0.010, 0.011, 0.02, 0.1, 0.10, 0.11, 0.2, 1.0, 1.00, 1.000, 1.002, 1.010, 1.011, 1.02, 1.10, 1.11, 1.2, 2.0, 2.00, 2.000, 2.001, 2.01, 2.1"}, + {"ro", "0.0, 0.00, 0.000, 0.001, 0.002, 0.01, 0.010, 0.011, 0.02, 0.020, 0.021, 0.022, 0.1, 0.10, 0.11, 0.2, 0.20, 0.21, 0.22, 1.0, 1.00, 1.000, 1.002, 1.010, 1.011, 1.02, 1.020, 1.021, 1.022, 1.10, 1.11, 1.2, 1.20, 1.21, 1.22, 2.0, 2.00, 2.000, 2.001, 2.01, 2.020, 2.021, 2.022, 2.1, 2.20, 2.21, 2.22, 20, 20.0, 20.00, 20.000, 20.001, 20.002, 20.01, 20.010, 20.011, 20.02, 20.1, 20.10, 20.11, 20.2"}, + {"ru", "0.0, 0.00, 0.000, 0.001, 0.002, 0.005, 0.01, 0.010, 0.011, 0.012, 0.02, 0.05, 0.1, 0.10, 0.11, 0.12, 0.2, 0.5, 0.5, 1.0, 1.00, 1.000, 1.002, 1.005, 1.010, 1.011, 1.012, 1.02, 1.05, 1.10, 1.11, 1.12, 1.2, 1.5, 2.0, 2.00, 2.000, 2.001, 2.005, 2.01, 2.010, 2.011, 2.012, 2.05, 2.1, 2.10, 2.11, 2.12, 2.5, 5.0, 5.00, 5.000, 5.001, 5.002, 5.01, 5.02, 5.1, 5.2"}, + {"si", "0, 0.0, 0.00, 0.000, 0.001, 0.01, 0.010, 0.1, 0.10, 1.0, 1.00, 1.000"}, + {"sk", "0, 0.0, 0.00, 0.000, 0.001, 0.002, 0.005, 0.01, 0.010, 0.011, 0.012, 0.02, 0.05, 0.1, 0.10, 0.11, 0.12, 0.2, 0.5, 1.0, 1.00, 1.000, 1.002, 1.005, 1.010, 1.011, 1.012, 1.02, 1.05, 1.10, 1.11, 1.12, 1.2, 1.5, 2.0, 2.00, 2.000, 2.001, 2.005, 2.01, 2.010, 2.011, 2.012, 2.05, 2.1, 2.10, 2.11, 2.12, 2.5, 5.0, 5.00, 5.000, 5.001, 5.002, 5.01, 5.02, 5.1, 5.2"}, + {"sl", "0.0, 0.00, 0.000, 0.001, 0.002, 0.003, 0.005, 0.01, 0.010, 0.011, 0.012, 0.013, 0.02, 0.03, 0.05, 0.1, 0.10, 0.11, 0.12, 0.13, 0.2, 0.3, 0.5, 1.0, 1.00, 1.000, 1.002, 1.003, 1.005, 1.010, 1.011, 1.012, 1.013, 1.02, 1.03, 1.05, 1.10, 1.11, 1.12, 1.13, 1.2, 1.3, 1.5, 2, 2.0, 2.00, 2.000, 2.001, 2.003, 2.005, 2.01, 2.010, 2.011, 2.012, 2.013, 2.03, 2.05, 2.1, 2.10, 2.11, 2.12, 2.13, 2.3, 2.5, 3.0, 3.00, 3.000, 3.001, 3.002, 3.005, 3.01, 3.010, 3.011, 3.012, 3.013, 3.02, 3.05, 3.1, 3.10, 3.11, 3.12, 3.13, 3.2, 3.5, 5.0, 5.00, 5.000, 5.001, 5.002, 5.003, 5.01, 5.02, 5.03, 5.1, 5.2, 5.3"}, + {"sr", "0.0, 0.00, 0.000, 0.001, 0.002, 0.005, 0.01, 0.010, 0.011, 0.012, 0.02, 0.05, 0.1, 0.10, 0.11, 0.12, 0.2, 0.5, 0.5, 1.0, 1.00, 1.000, 1.002, 1.005, 1.010, 1.011, 1.012, 1.02, 1.05, 1.10, 1.11, 1.12, 1.2, 1.5, 2.0, 2.00, 2.000, 2.001, 2.005, 2.01, 2.010, 2.011, 2.012, 2.05, 2.1, 2.10, 2.11, 2.12, 2.5, 5.0, 5.00, 5.000, 5.001, 5.002, 5.01, 5.02, 5.1, 5.2"}, + {"sv", "0, 0.0, 0.00, 0.000, 0.001, 0.002, 0.01, 0.010, 0.011, 0.02, 0.1, 0.10, 0.11, 0.2, 1.0, 1.00, 1.000, 1.002, 1.010, 1.011, 1.02, 1.10, 1.11, 1.2, 2.0, 2.00, 2.000, 2.001, 2.01, 2.1"}, + {"sw", "0, 0.0, 0.00, 0.000, 0.001, 0.002, 0.01, 0.010, 0.011, 0.02, 0.1, 0.10, 0.11, 0.2, 1.0, 1.00, 1.000, 1.002, 1.010, 1.011, 1.02, 1.10, 1.11, 1.2, 2.0, 2.00, 2.000, 2.001, 2.01, 2.1"}, + {"ta", "0, 0.0, 0.00, 0.000, 0.001, 0.002, 0.01, 0.010, 0.011, 0.02, 0.1, 0.10, 0.11, 0.2, 1.0, 1.00, 1.000, 1.002, 1.010, 1.011, 1.02, 1.10, 1.11, 1.2, 2.0, 2.00, 2.000, 2.001, 2.01, 2.1"}, + {"te", "0, 0.0, 0.00, 0.000, 0.001, 0.002, 0.01, 0.010, 0.011, 0.02, 0.1, 0.10, 0.11, 0.2, 1.0, 1.00, 1.000, 1.002, 1.010, 1.011, 1.02, 1.10, 1.11, 1.2, 2.0, 2.00, 2.000, 2.001, 2.01, 2.1"}, + {"th", "0, 0.0, 0.00, 0.000, 0.001, 0.01, 0.010, 0.1, 0.10, 1.0, 1.00, 1.000"}, + {"tr", "0, 0.0, 0.00, 0.000, 0.001, 0.01, 0.010, 0.1, 0.10, 1.0, 1.00, 1.000"}, + {"uk", "0.0, 0.00, 0.000, 0.001, 0.002, 0.005, 0.01, 0.010, 0.011, 0.012, 0.02, 0.05, 0.1, 0.10, 0.11, 0.12, 0.2, 0.5, 0.5, 1.0, 1.00, 1.000, 1.002, 1.005, 1.010, 1.011, 1.012, 1.02, 1.05, 1.10, 1.11, 1.12, 1.2, 1.5, 2.0, 2.00, 2.000, 2.001, 2.005, 2.01, 2.010, 2.011, 2.012, 2.05, 2.1, 2.10, 2.11, 2.12, 2.5, 5.0, 5.00, 5.000, 5.001, 5.002, 5.01, 5.02, 5.1, 5.2"}, + {"ur", "0, 0.0, 0.00, 0.000, 0.001, 0.002, 0.01, 0.010, 0.011, 0.02, 0.1, 0.10, 0.11, 0.2, 1.0, 1.00, 1.000, 1.002, 1.010, 1.011, 1.02, 1.10, 1.11, 1.2, 2.0, 2.00, 2.000, 2.001, 2.01, 2.1"}, + {"vi", "0, 0.0, 0.00, 0.000, 0.001, 0.01, 0.010, 0.1, 0.10, 1.0, 1.00, 1.000"}, + {"zh", "0, 0.0, 0.00, 0.000, 0.001, 0.01, 0.010, 0.1, 0.10, 1.0, 1.00, 1.000"}, + {"zh_Hant", "0, 0.0, 0.00, 0.000, 0.001, 0.01, 0.010, 0.1, 0.10, 1.0, 1.00, 1.000"}, + {"zu", "0, 0.0, 0.00, 0.000, 0.001, 0.002, 0.01, 0.010, 0.011, 0.02, 0.1, 0.10, 0.11, 0.2, 1, 1.0, 1.00, 1.000, 1.002, 1.010, 1.011, 1.02, 1.10, 1.11, 1.2, 2, 2.0, 2.00, 2.000, 2.001, 2.01, 2.1, 10"}, }; static final Map> LOCALE_TO_ORIGINALS = new HashMap(); static { @@ -325,19 +327,32 @@ public class WritePluralRulesData { File file = new File("/Users/markdavis/workspace/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/plurals.txt"); BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(file))); Map localeToSamples = new TreeMap(); - Matcher m = Pattern.compile("\\d+[.]\\d+").matcher(""); + Matcher m = Pattern.compile("\\d+([.]\\d+)?").matcher(""); + int count = 0; while (true) { String line = br.readLine(); + ++count; if (line == null) break; + line = line.trim(); + if (line.startsWith("#")) { + continue; + } String[] parts = line.split("\t"); - String locale = parts[0]; - String pattern = parts[1]; - boolean found = m.reset(pattern).find(); - String sample = found - ? m.group() - : "-1"; - String samples = localeToSamples.get(locale); - localeToSamples.put(locale, samples == null ? sample : samples + ", " + sample); + try { + String locale = parts[0]; + String pattern = parts[1]; + boolean found = m.reset(pattern).find(); + if (parts.length != 2 || !found) { + throw new ArrayIndexOutOfBoundsException(); + } + String sample = found + ? m.group() + : "-1"; + String samples = localeToSamples.get(locale); + localeToSamples.put(locale, samples == null ? sample : samples + ", " + sample); + } catch (Exception e) { + throw new IllegalArgumentException(count + " Line <" + line + ">", e); + } } br.close(); for (Entry entry : localeToSamples.entrySet()) { @@ -603,9 +618,11 @@ public class WritePluralRulesData { for (String localeString : FOCUS_LOCALES) { ULocale locale = new ULocale(localeString); if (sampleStyle == SampleStyle.verify) { + String fileName = TARGETDIR + "fraction-" + locale + ".tsv"; + System.out.println(new File(fileName).getCanonicalPath()); writer = new BufferedWriter( new OutputStreamWriter( - new FileOutputStream(TARGETDIR + "fraction-" + locale + ".tsv"), Charset.forName("UTF-8"))); + new FileOutputStream(fileName), Charset.forName("UTF-8"))); writer.write("Plural Category\tEnglish Number\tFormatted Sample\tAcceptable?\tReplacement\n"); } diff --git a/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/plurals.txt b/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/plurals.txt index b2159bc2ff4..b938c33007d 100644 --- a/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/plurals.txt +++ b/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/plurals.txt @@ -1,1957 +1,2369 @@ # Copyright (C) 2013, Google Inc, International Business Machines Corporation and others -af 0.0 other other other -af 0.1 other one one -af 0.3 other other other -af 1.0 one other other -af 1.3 one other other -af 3.0 other other other -af 3.1 other one one -af 0.00 other other other -af 0.01 other one one -af 0.20 other other other -af 0.21 other other one -af 0.03 other other other -af 1.00 one other other -af 1.20 one other other -af 1.21 one other one -af 1.03 one other other -af 3.00 other other other -af 3.01 other one one -af 0.000 other other other -af 0.001 other one one -af 0.020 other other other -af 0.021 other other one -af 0.003 other other other -af 1.000 one other other -af 1.020 one other other -af 1.021 one other one -af 1.003 one other other -af 3.000 other other other -af 3.001 other one one -am 0.0 one one one -am 0.1 one one one -am 0.3 one other other -am 1.0 one one one -am 1.3 one other other -am 3.0 other one one -am 3.1 other one one -am 0.00 one one one -am 0.01 one one one -am 0.20 one other one -am 0.21 one other one -am 0.03 one other other -am 1.00 one one one -am 1.20 one other one -am 1.21 one other one -am 1.03 one other other -am 3.00 other one one -am 3.01 other one one -am 0.000 one one one -am 0.001 one one one -am 0.020 one other one -am 0.021 one other one -am 0.003 one other other -am 1.000 one one one -am 1.020 one other one -am 1.021 one other one -am 1.003 one other other -am 3.000 other one one -am 3.001 other one one -ar 0.0 zero zero zero -ar 0.1 zero one one -ar 0.2 zero two two -ar 0.4 zero few few -ar 1.0 one zero zero -ar 1.2 one two two -ar 1.4 one few few -ar 2.0 two zero zero -ar 2.1 two one one -ar 2.4 two few few -ar 4.0 few zero zero -ar 4.1 few one one -ar 4.2 few two two -ar 12.0 many zero zero -ar 12.1 many one one -ar 12.2 many two two -ar 12.4 many few few -ar 101.0 other zero zero -ar 101.1 other one one -ar 101.2 other two two -ar 101.4 other few few -ar 0.00 zero zero zero -ar 0.01 zero one one -ar 0.02 zero two two -ar 0.04 zero few few -ar 0.30 zero many zero -ar 0.21 zero many one -ar 0.22 zero many two -ar 0.14 zero many few -ar 1.00 one zero zero -ar 1.02 one two two -ar 1.04 one few few -ar 1.30 one many zero -ar 1.21 one many one -ar 1.22 one many two -ar 1.14 one many few -ar 2.00 two zero zero -ar 2.01 two one one -ar 2.04 two few few -ar 2.30 two many zero -ar 2.21 two many one -ar 2.22 two many two -ar 2.14 two many few -ar 4.00 few zero zero -ar 4.01 few one one -ar 4.02 few two two -ar 4.30 few many zero -ar 4.21 few many one -ar 4.22 few many two -ar 4.14 few many few -ar 12.00 many zero zero -ar 12.01 many one one -ar 12.02 many two two -ar 12.04 many few few -ar 101.00 other zero zero -ar 101.01 other one one -ar 101.02 other two two -ar 101.04 other few few -ar 101.30 other many zero -ar 101.21 other many one -ar 101.22 other many two -ar 101.14 other many few -ar 0.000 zero zero zero -ar 0.001 zero one one -ar 0.002 zero two two -ar 0.110 zero few zero -ar 0.004 zero few few -ar 0.030 zero many zero -ar 0.021 zero many one -ar 0.022 zero many two -ar 0.014 zero many few -ar 0.200 zero other zero -ar 0.201 zero other one -ar 0.202 zero other two -ar 1.000 one zero zero -ar 1.002 one two two -ar 1.110 one few zero -ar 1.004 one few few -ar 1.030 one many zero -ar 1.021 one many one -ar 1.022 one many two -ar 1.014 one many few -ar 1.200 one other zero -ar 1.201 one other one -ar 1.202 one other two -ar 2.000 two zero zero -ar 2.001 two one one -ar 2.110 two few zero -ar 2.004 two few few -ar 2.030 two many zero -ar 2.021 two many one -ar 2.022 two many two -ar 2.014 two many few -ar 2.200 two other zero -ar 2.201 two other one -ar 2.202 two other two -ar 4.000 few zero zero -ar 4.001 few one one -ar 4.002 few two two -ar 4.030 few many zero -ar 4.021 few many one -ar 4.022 few many two -ar 4.014 few many few -ar 4.200 few other zero -ar 4.201 few other one -ar 4.202 few other two -ar 12.000 many zero zero -ar 12.001 many one one -ar 12.002 many two two -ar 12.110 many few zero -ar 12.004 many few few -ar 12.200 many other zero -ar 12.201 many other one -ar 12.202 many other two -ar 101.000 other zero zero -ar 101.001 other one one -ar 101.002 other two two -ar 101.110 other few zero -ar 101.004 other few few -ar 101.030 other many zero -ar 101.021 other many one -ar 101.022 other many two -ar 101.014 other many few -bg 0.0 other other other -bg 0.1 other one one -bg 0.3 other other other -bg 1.0 one other other -bg 1.3 one other other -bg 3.0 other other other -bg 3.1 other one one -bg 0.00 other other other -bg 0.01 other one one -bg 0.20 other other other -bg 0.21 other other one -bg 0.03 other other other -bg 1.00 one other other -bg 1.20 one other other -bg 1.21 one other one -bg 1.03 one other other -bg 3.00 other other other -bg 3.01 other one one -bg 0.000 other other other -bg 0.001 other one one -bg 0.020 other other other -bg 0.021 other other one -bg 0.003 other other other -bg 1.000 one other other -bg 1.020 one other other -bg 1.021 one other one -bg 1.003 one other other -bg 3.000 other other other -bg 3.001 other one one -bn 0.0 other other other -bn 0.1 other one one -bn 0.3 other other other -bn 1.0 one other other -bn 1.3 one other other -bn 3.0 other other other -bn 3.1 other one one -bn 0.00 other other other -bn 0.01 other one one -bn 0.20 other other other -bn 0.21 other other one -bn 0.03 other other other -bn 1.00 one other other -bn 1.20 one other other -bn 1.21 one other one -bn 1.03 one other other -bn 3.00 other other other -bn 3.01 other one one -bn 0.000 other other other -bn 0.001 other one one -bn 0.020 other other other -bn 0.021 other other one -bn 0.003 other other other -bn 1.000 one other other -bn 1.020 one other other -bn 1.021 one other one -bn 1.003 one other other -bn 3.000 other other other -bn 3.001 other one one -br 0.0 other other other -br 0.4 other few few -br 0.6 other other other -br 21.0 one other other -br 21.4 one few few -br 21.6 one other other -br 22.0 two other other -br 22.4 two few few -br 22.6 two other other -br 4.0 few other other -br 4.6 few other other -br 1000000.0 many other other -br 1000000.4 many few few -br 1000000.6 many other other -br 6.0 other other other -br 6.4 other few few -br 0.00 other other other -br 0.21 other one one -br 0.22 other two two -br 0.04 other few few -br 0.20 other other other -br 0.71 other other one -br 0.72 other other two -br 0.14 other other few -br 0.06 other other other -br 21.00 one other other -br 21.22 one two two -br 21.04 one few few -br 21.20 one other other -br 21.71 one other one -br 21.72 one other two -br 21.14 one other few -br 21.06 one other other -br 22.00 two other other -br 22.21 two one one -br 22.04 two few few -br 22.20 two other other -br 22.71 two other one -br 22.72 two other two -br 22.14 two other few -br 22.06 two other other -br 4.00 few other other -br 4.21 few one one -br 4.22 few two two -br 4.20 few other other -br 4.71 few other one -br 4.72 few other two -br 4.14 few other few -br 4.06 few other other -br 1000000.00 many other other -br 1000000.21 many one one -br 1000000.22 many two two -br 1000000.04 many few few -br 1000000.20 many other other -br 1000000.71 many other one -br 1000000.72 many other two -br 1000000.14 many other few -br 1000000.06 many other other -br 6.00 other other other -br 6.21 other one one -br 6.22 other two two -br 6.04 other few few -br 0.000 other other other -br 0.021 other one one -br 0.022 other two two -br 0.004 other few few -br 0.020 other other other -br 0.071 other other one -br 0.072 other other two -br 0.014 other other few -br 0.006 other other other -br 21.000 one other other -br 21.022 one two two -br 21.004 one few few -br 21.020 one other other -br 21.071 one other one -br 21.072 one other two -br 21.014 one other few -br 21.006 one other other -br 22.000 two other other -br 22.021 two one one -br 22.004 two few few -br 22.020 two other other -br 22.071 two other one -br 22.072 two other two -br 22.014 two other few -br 22.006 two other other -br 4.000 few other other -br 4.021 few one one -br 4.022 few two two -br 4.020 few other other -br 4.071 few other one -br 4.072 few other two -br 4.014 few other few -br 4.006 few other other -br 1000000.000 many other other -br 1000000.021 many one one -br 1000000.022 many two two -br 1000000.004 many few few -br 1000000.020 many other other -br 1000000.071 many other one -br 1000000.072 many other two -br 1000000.014 many other few -br 1000000.006 many other other -br 6.000 other other other -br 6.021 other one one -br 6.022 other two two -br 6.004 other few few -ca 0.0 other other other -ca 0.1 other one one -ca 0.3 other other other -ca 1.0 one other other -ca 1.3 one other other -ca 3.0 other other other -ca 3.1 other one one -ca 0.00 other other other -ca 0.01 other one one -ca 0.20 other other other -ca 0.21 other other one -ca 0.03 other other other -ca 1.00 one other other -ca 1.20 one other other -ca 1.21 one other one -ca 1.03 one other other -ca 3.00 other other other -ca 3.01 other one one -ca 0.000 other other other -ca 0.001 other one one -ca 0.020 other other other -ca 0.021 other other one -ca 0.003 other other other -ca 1.000 one other other -ca 1.020 one other other -ca 1.021 one other one -ca 1.003 one other other -ca 3.000 other other other -ca 3.001 other one one -cs 0.0 other other other -cs 0.1 other one one -cs 0.3 other few few -cs 0.6 other other other -cs 1.0 one other other -cs 1.3 one few few -cs 1.6 one other other -cs 3.0 few other other -cs 3.1 few one one -cs 3.6 few other other -cs 6.0 other other other -cs 6.1 other one one -cs 6.3 other few few -cs 0.00 other other other -cs 0.01 other one one -cs 0.03 other few few -cs 0.20 other other other -cs 0.21 other other one -cs 0.13 other other few -cs 0.06 other other other -cs 1.00 one other other -cs 1.03 one few few -cs 1.20 one other other -cs 1.21 one other one -cs 1.13 one other few -cs 1.06 one other other -cs 3.00 few other other -cs 3.01 few one one -cs 3.20 few other other -cs 3.21 few other one -cs 3.13 few other few -cs 3.06 few other other -cs 6.00 other other other -cs 6.01 other one one -cs 6.03 other few few -cs 0.000 other other other -cs 0.001 other one one -cs 0.003 other few few -cs 0.020 other other other -cs 0.021 other other one -cs 0.013 other other few -cs 0.006 other other other -cs 1.000 one other other -cs 1.003 one few few -cs 1.020 one other other -cs 1.021 one other one -cs 1.013 one other few -cs 1.006 one other other -cs 3.000 few other other -cs 3.001 few one one -cs 3.020 few other other -cs 3.021 few other one -cs 3.013 few other few -cs 3.006 few other other -cs 6.000 other other other -cs 6.001 other one one -cs 6.003 other few few -da 0.0 other other other -da 0.1 other one one -da 0.3 other other other -da 1.0 one other other -da 1.3 one other other -da 3.0 other other other -da 3.1 other one one -da 0.00 other other other -da 0.01 other one one -da 0.20 other other other -da 0.21 other other one -da 0.03 other other other -da 1.00 one other other -da 1.20 one other other -da 1.21 one other one -da 1.03 one other other -da 3.00 other other other -da 3.01 other one one -da 0.000 other other other -da 0.001 other one one -da 0.020 other other other -da 0.021 other other one -da 0.003 other other other -da 1.000 one other other -da 1.020 one other other -da 1.021 one other one -da 1.003 one other other -da 3.000 other other other -da 3.001 other one one -de 0.0 other other other -de 0.1 other one one -de 0.3 other other other -de 1.0 one other other -de 1.3 one other other -de 3.0 other other other -de 3.1 other one one -de 0.00 other other other -de 0.01 other one one -de 0.20 other other other -de 0.21 other other one -de 0.03 other other other -de 1.00 one other other -de 1.20 one other other -de 1.21 one other one -de 1.03 one other other -de 3.00 other other other -de 3.01 other one one -de 0.000 other other other -de 0.001 other one one -de 0.020 other other other -de 0.021 other other one -de 0.003 other other other -de 1.000 one other other -de 1.020 one other other -de 1.021 one other one -de 1.003 one other other -de 3.000 other other other -de 3.001 other one one -dz 0.0 other other other -dz 0.2 other other other -dz 2.0 other other other -dz 0.00 other other other -dz 0.20 other other other -dz 0.02 other other other -dz 2.00 other other other -dz 0.000 other other other -dz 0.020 other other other -dz 0.002 other other other -dz 2.000 other other other -el 0.0 other other other -el 0.1 other one one -el 0.3 other other other -el 1.0 one other other -el 1.3 one other other -el 3.0 other other other -el 3.1 other one one -el 0.00 other other other -el 0.01 other one one -el 0.20 other other other -el 0.21 other other one -el 0.03 other other other -el 1.00 one other other -el 1.20 one other other -el 1.21 one other one -el 1.03 one other other -el 3.00 other other other -el 3.01 other one one -el 0.000 other other other -el 0.001 other one one -el 0.020 other other other -el 0.021 other other one -el 0.003 other other other -el 1.000 one other other -el 1.020 one other other -el 1.021 one other one -el 1.003 one other other -el 3.000 other other other -el 3.001 other one one -es 0.0 other other other -es 0.1 other one one -es 0.3 other other other -es 1.0 one other other -es 1.3 one other other -es 3.0 other other other -es 3.1 other one one -es 0.00 other other other -es 0.01 other one one -es 0.20 other other other -es 0.21 other other one -es 0.03 other other other -es 1.00 one other other -es 1.20 one other other -es 1.21 one other one -es 1.03 one other other -es 3.00 other other other -es 3.01 other one one -es 0.000 other other other -es 0.001 other one one -es 0.020 other other other -es 0.021 other other one -es 0.003 other other other -es 1.000 one other other -es 1.020 one other other -es 1.021 one other one -es 1.003 one other other -es 3.000 other other other -es 3.001 other one one -et 0.0 other other other -et 0.1 other one one -et 0.3 other other other -et 1.0 one other other -et 1.3 one other other -et 3.0 other other other -et 3.1 other one one -et 0.00 other other other -et 0.01 other one one -et 0.20 other other other -et 0.21 other other one -et 0.03 other other other -et 1.00 one other other -et 1.20 one other other -et 1.21 one other one -et 1.03 one other other -et 3.00 other other other -et 3.01 other one one -et 0.000 other other other -et 0.001 other one one -et 0.020 other other other -et 0.021 other other one -et 0.003 other other other -et 1.000 one other other -et 1.020 one other other -et 1.021 one other one -et 1.003 one other other -et 3.000 other other other -et 3.001 other one one -eu 0.0 other other other -eu 0.1 other one one -eu 0.3 other other other -eu 1.0 one other other -eu 1.3 one other other -eu 3.0 other other other -eu 3.1 other one one -eu 0.00 other other other -eu 0.01 other one one -eu 0.20 other other other -eu 0.21 other other one -eu 0.03 other other other -eu 1.00 one other other -eu 1.20 one other other -eu 1.21 one other one -eu 1.03 one other other -eu 3.00 other other other -eu 3.01 other one one -eu 0.000 other other other -eu 0.001 other one one -eu 0.020 other other other -eu 0.021 other other one -eu 0.003 other other other -eu 1.000 one other other -eu 1.020 one other other -eu 1.021 one other one -eu 1.003 one other other -eu 3.000 other other other -eu 3.001 other one one -fa 0.0 other other other -fa 0.2 other other other -fa 2.0 other other other -fa 0.00 other other other -fa 0.20 other other other -fa 0.02 other other other -fa 2.00 other other other -fa 0.000 other other other -fa 0.020 other other other -fa 0.002 other other other -fa 2.000 other other other -fi 0.0 other other other -fi 0.1 other one one -fi 0.3 other other other -fi 1.0 one other other -fi 1.3 one other other -fi 3.0 other other other -fi 3.1 other one one -fi 0.00 other other other -fi 0.01 other one one -fi 0.20 other other other -fi 0.21 other other one -fi 0.03 other other other -fi 1.00 one other other -fi 1.20 one other other -fi 1.21 one other one -fi 1.03 one other other -fi 3.00 other other other -fi 3.01 other one one -fi 0.000 other other other -fi 0.001 other one one -fi 0.020 other other other -fi 0.021 other other one -fi 0.003 other other other -fi 1.000 one other other -fi 1.020 one other other -fi 1.021 one other one -fi 1.003 one other other -fi 3.000 other other other -fi 3.001 other one one -fil 0.0 one one one -fil 0.1 one one one -fil 0.3 one other other -fil 1.0 one one one -fil 1.3 one other other -fil 3.0 other one one -fil 3.1 other one one -fil 0.00 one one one -fil 0.01 one one one -fil 0.20 one other one -fil 0.21 one other one -fil 0.03 one other other -fil 1.00 one one one -fil 1.20 one other one -fil 1.21 one other one -fil 1.03 one other other -fil 3.00 other one one -fil 3.01 other one one -fil 0.000 one one one -fil 0.001 one one one -fil 0.020 one other one -fil 0.021 one other one -fil 0.003 one other other -fil 1.000 one one one -fil 1.020 one other one -fil 1.021 one other one -fil 1.003 one other other -fil 3.000 other one one -fil 3.001 other one one -fr 0.0 one one one -fr 0.1 one one one -fr 0.3 one other other -fr 1.0 one one one -fr 1.3 one other other -fr 3.0 other one one -fr 3.1 other one one -fr 0.00 one one one -fr 0.01 one one one -fr 0.20 one other one -fr 0.21 one other one -fr 0.03 one other other -fr 1.00 one one one -fr 1.20 one other one -fr 1.21 one other one -fr 1.03 one other other -fr 3.00 other one one -fr 3.01 other one one -fr 0.000 one one one -fr 0.001 one one one -fr 0.020 one other one -fr 0.021 one other one -fr 0.003 one other other -fr 1.000 one one one -fr 1.020 one other one -fr 1.021 one other one -fr 1.003 one other other -fr 3.000 other one one -fr 3.001 other one one -gl 0.0 other other other -gl 0.1 other one one -gl 0.3 other other other -gl 1.0 one other other -gl 1.3 one other other -gl 3.0 other other other -gl 3.1 other one one -gl 0.00 other other other -gl 0.01 other one one -gl 0.20 other other other -gl 0.21 other other one -gl 0.03 other other other -gl 1.00 one other other -gl 1.20 one other other -gl 1.21 one other one -gl 1.03 one other other -gl 3.00 other other other -gl 3.01 other one one -gl 0.000 other other other -gl 0.001 other one one -gl 0.020 other other other -gl 0.021 other other one -gl 0.003 other other other -gl 1.000 one other other -gl 1.020 one other other -gl 1.021 one other one -gl 1.003 one other other -gl 3.000 other other other -gl 3.001 other one one -gu 0.0 other other other -gu 0.1 other one one -gu 0.3 other other other -gu 1.0 one other other -gu 1.3 one other other -gu 3.0 other other other -gu 3.1 other one one -gu 0.00 other other other -gu 0.01 other one one -gu 0.20 other other other -gu 0.21 other other one -gu 0.03 other other other -gu 1.00 one other other -gu 1.20 one other other -gu 1.21 one other one -gu 1.03 one other other -gu 3.00 other other other -gu 3.01 other one one -gu 0.000 other other other -gu 0.001 other one one -gu 0.020 other other other -gu 0.021 other other one -gu 0.003 other other other -gu 1.000 one other other -gu 1.020 one other other -gu 1.021 one other one -gu 1.003 one other other -gu 3.000 other other other -gu 3.001 other one one -he 0.0 other other other -he 0.1 other one one -he 0.2 other two two -he 0.4 other other other -he 1.0 one other other -he 1.2 one two two -he 1.4 one other other -he 2.0 two other other -he 2.1 two one one -he 2.4 two other other -he 20.0 many other other -he 20.1 many one one -he 20.2 many two two -he 20.4 many other other -he 4.0 other other other -he 4.1 other one one -he 4.2 other two two -he 0.00 other other other -he 0.01 other one one -he 0.02 other two two -he 0.20 other many other -he 0.21 other other one -he 0.22 other other two -he 0.04 other other other -he 1.00 one other other -he 1.02 one two two -he 1.20 one many other -he 1.21 one other one -he 1.22 one other two -he 1.04 one other other -he 2.00 two other other -he 2.01 two one one -he 2.20 two many other -he 2.21 two other one -he 2.22 two other two -he 2.04 two other other -he 20.00 many other other -he 20.01 many one one -he 20.02 many two two -he 20.21 many other one -he 20.22 many other two -he 20.04 many other other -he 4.00 other other other -he 4.01 other one one -he 4.02 other two two -he 4.20 other many other -he 0.000 other other other -he 0.001 other one one -he 0.002 other two two -he 0.020 other many other -he 0.021 other other one -he 0.022 other other two -he 0.004 other other other -he 1.000 one other other -he 1.002 one two two -he 1.020 one many other -he 1.021 one other one -he 1.022 one other two -he 1.004 one other other -he 2.000 two other other -he 2.001 two one one -he 2.020 two many other -he 2.021 two other one -he 2.022 two other two -he 2.004 two other other -he 20.000 many other other -he 20.001 many one one -he 20.002 many two two -he 20.021 many other one -he 20.022 many other two -he 20.004 many other other -he 4.000 other other other -he 4.001 other one one -he 4.002 other two two -he 4.020 other many other -hi 0.0 one one one -hi 0.1 one one one -hi 0.3 one other other -hi 1.0 one one one -hi 1.3 one other other -hi 3.0 other one one -hi 3.1 other one one -hi 0.00 one one one -hi 0.01 one one one -hi 0.20 one other one -hi 0.21 one other one -hi 0.03 one other other -hi 1.00 one one one -hi 1.20 one other one -hi 1.21 one other one -hi 1.03 one other other -hi 3.00 other one one -hi 3.01 other one one -hi 0.000 one one one -hi 0.001 one one one -hi 0.020 one other one -hi 0.021 one other one -hi 0.003 one other other -hi 1.000 one one one -hi 1.020 one other one -hi 1.021 one other one -hi 1.003 one other other -hi 3.000 other one one -hi 3.001 other one one -hr 0.0 many many many -hr 0.3 many few few -hr 0.6 many many many -hr 21.0 one many many -hr 21.3 one few few -hr 21.6 one many many -hr 3.0 few many many -hr 3.6 few many many -hr 6.0 many many many -hr 6.3 many few few -hr 0.00 many many many -hr 0.21 many one one -hr 0.03 many few few -hr 0.20 many many many -hr 0.13 many many few -hr 0.06 many many many -hr 21.00 one many many -hr 21.03 one few few -hr 21.20 one many many -hr 21.13 one many few -hr 21.06 one many many -hr 3.00 few many many -hr 3.21 few one one -hr 3.20 few many many -hr 3.13 few many few -hr 3.06 few many many -hr 6.00 many many many -hr 6.21 many one one -hr 6.03 many few few -hr 0.000 many many many -hr 0.021 many one one -hr 0.003 many few few -hr 0.020 many many many -hr 0.111 many many one -hr 0.013 many many few -hr 0.006 many many many -hr 21.000 one many many -hr 21.003 one few few -hr 21.020 one many many -hr 21.111 one many one -hr 21.013 one many few -hr 21.006 one many many -hr 3.000 few many many -hr 3.021 few one one -hr 3.020 few many many -hr 3.111 few many one -hr 3.013 few many few -hr 3.006 few many many -hr 6.000 many many many -hr 6.021 many one one -hr 6.003 many few few -hu 0.0 other other other -hu 0.2 other other other -hu 2.0 other other other -hu 0.00 other other other -hu 0.20 other other other -hu 0.02 other other other -hu 2.00 other other other -hu 0.000 other other other -hu 0.020 other other other -hu 0.002 other other other -hu 2.000 other other other -id 0.0 other other other -id 0.2 other other other -id 2.0 other other other -id 0.00 other other other -id 0.20 other other other -id 0.02 other other other -id 2.00 other other other -id 0.000 other other other -id 0.020 other other other -id 0.002 other other other -id 2.000 other other other -is 0.0 other other other -is 0.1 other one one -is 0.3 other other other -is 1.0 one other other -is 1.3 one other other -is 3.0 other other other -is 3.1 other one one -is 0.00 other other other -is 0.01 other one one -is 0.20 other other other -is 0.21 other other one -is 0.03 other other other -is 1.00 one other other -is 1.20 one other other -is 1.21 one other one -is 1.03 one other other -is 3.00 other other other -is 3.01 other one one -is 0.000 other other other -is 0.001 other one one -is 0.020 other other other -is 0.021 other other one -is 0.003 other other other -is 1.000 one other other -is 1.020 one other other -is 1.021 one other one -is 1.003 one other other -is 3.000 other other other -is 3.001 other one one -it 0.0 other other other -it 0.1 other one one -it 0.3 other other other -it 1.0 one other other -it 1.3 one other other -it 3.0 other other other -it 3.1 other one one -it 0.00 other other other -it 0.01 other one one -it 0.20 other other other -it 0.21 other other one -it 0.03 other other other -it 1.00 one other other -it 1.20 one other other -it 1.21 one other one -it 1.03 one other other -it 3.00 other other other -it 3.01 other one one -it 0.000 other other other -it 0.001 other one one -it 0.020 other other other -it 0.021 other other one -it 0.003 other other other -it 1.000 one other other -it 1.020 one other other -it 1.021 one other one -it 1.003 one other other -it 3.000 other other other -it 3.001 other one one -ja 0.0 other other other -ja 0.2 other other other -ja 2.0 other other other -ja 0.00 other other other -ja 0.20 other other other -ja 0.02 other other other -ja 2.00 other other other -ja 0.000 other other other -ja 0.020 other other other -ja 0.002 other other other -ja 2.000 other other other -km 0.0 other other other -km 0.2 other other other -km 2.0 other other other -km 0.00 other other other -km 0.20 other other other -km 0.02 other other other -km 2.00 other other other -km 0.000 other other other -km 0.020 other other other -km 0.002 other other other -km 2.000 other other other -kn 0.0 other other other -kn 0.2 other other other -kn 2.0 other other other -kn 0.00 other other other -kn 0.20 other other other -kn 0.02 other other other -kn 2.00 other other other -kn 0.000 other other other -kn 0.020 other other other -kn 0.002 other other other -kn 2.000 other other other -ko 0.0 other other other -ko 0.2 other other other -ko 2.0 other other other -ko 0.00 other other other -ko 0.20 other other other -ko 0.02 other other other -ko 2.00 other other other -ko 0.000 other other other -ko 0.020 other other other -ko 0.002 other other other -ko 2.000 other other other -lo 0.0 other other other -lo 0.2 other other other -lo 2.0 other other other -lo 0.00 other other other -lo 0.20 other other other -lo 0.02 other other other -lo 2.00 other other other -lo 0.000 other other other -lo 0.020 other other other -lo 0.002 other other other -lo 2.000 other other other -lt 0.0 other other other -lt 0.3 other few few -lt 21.0 one other other -lt 21.3 one few few -lt 3.0 few other other -lt 11.0 other other other -lt 11.3 other few few -lt 0.00 other other other -lt 0.21 other one one -lt 0.03 other few few -lt 0.20 other other other -lt 0.13 other other few -lt 21.00 one other other -lt 21.03 one few few -lt 21.20 one other other -lt 21.13 one other few -lt 3.00 few other other -lt 3.21 few one one -lt 3.20 few other other -lt 3.13 few other few -lt 11.00 other other other -lt 11.21 other one one -lt 11.03 other few few -lt 0.000 other other other -lt 0.021 other one one -lt 0.003 other few few -lt 0.020 other other other -lt 0.111 other other one -lt 0.013 other other few -lt 21.000 one other other -lt 21.003 one few few -lt 21.020 one other other -lt 21.111 one other one -lt 21.013 one other few -lt 3.000 few other other -lt 3.021 few one one -lt 3.020 few other other -lt 3.111 few other one -lt 3.013 few other few -lt 11.000 other other other -lt 11.021 other one one -lt 11.003 other few few -lv 0.0 zero zero zero -lv 0.3 zero other other -lv 21.0 one zero zero -lv 21.3 one other other -lv 3.0 other zero zero -lv 0.00 zero zero zero -lv 0.21 zero one one -lv 0.20 zero other zero -lv 0.03 zero other other -lv 21.00 one zero zero -lv 21.20 one other zero -lv 21.03 one other other -lv 3.00 other zero zero -lv 3.21 other one one -lv 0.000 zero zero zero -lv 0.021 zero one one -lv 0.020 zero other zero -lv 0.111 zero other one -lv 0.003 zero other other -lv 21.000 one zero zero -lv 21.020 one other zero -lv 21.111 one other one -lv 21.003 one other other -lv 3.000 other zero zero -lv 3.021 other one one -ml 0.0 other other other -ml 0.1 other one one -ml 0.3 other other other -ml 1.0 one other other -ml 1.3 one other other -ml 3.0 other other other -ml 3.1 other one one -ml 0.00 other other other -ml 0.01 other one one -ml 0.20 other other other -ml 0.21 other other one -ml 0.03 other other other -ml 1.00 one other other -ml 1.20 one other other -ml 1.21 one other one -ml 1.03 one other other -ml 3.00 other other other -ml 3.01 other one one -ml 0.000 other other other -ml 0.001 other one one -ml 0.020 other other other -ml 0.021 other other one -ml 0.003 other other other -ml 1.000 one other other -ml 1.020 one other other -ml 1.021 one other one -ml 1.003 one other other -ml 3.000 other other other -ml 3.001 other one one -mr 0.0 other other other -mr 0.1 other one one -mr 0.3 other other other -mr 1.0 one other other -mr 1.3 one other other -mr 3.0 other other other -mr 3.1 other one one -mr 0.00 other other other -mr 0.01 other one one -mr 0.20 other other other -mr 0.21 other other one -mr 0.03 other other other -mr 1.00 one other other -mr 1.20 one other other -mr 1.21 one other one -mr 1.03 one other other -mr 3.00 other other other -mr 3.01 other one one -mr 0.000 other other other -mr 0.001 other one one -mr 0.020 other other other -mr 0.021 other other one -mr 0.003 other other other -mr 1.000 one other other -mr 1.020 one other other -mr 1.021 one other one -mr 1.003 one other other -mr 3.000 other other other -mr 3.001 other one one -ms 0.0 other other other -ms 0.2 other other other -ms 2.0 other other other -ms 0.00 other other other -ms 0.20 other other other -ms 0.02 other other other -ms 2.00 other other other -ms 0.000 other other other -ms 0.020 other other other -ms 0.002 other other other -ms 2.000 other other other -nb 0.0 other other other -nb 0.1 other one one -nb 0.3 other other other -nb 1.0 one other other -nb 1.3 one other other -nb 3.0 other other other -nb 3.1 other one one -nb 0.00 other other other -nb 0.01 other one one -nb 0.20 other other other -nb 0.21 other other one -nb 0.03 other other other -nb 1.00 one other other -nb 1.20 one other other -nb 1.21 one other one -nb 1.03 one other other -nb 3.00 other other other -nb 3.01 other one one -nb 0.000 other other other -nb 0.001 other one one -nb 0.020 other other other -nb 0.021 other other one -nb 0.003 other other other -nb 1.000 one other other -nb 1.020 one other other -nb 1.021 one other one -nb 1.003 one other other -nb 3.000 other other other -nb 3.001 other one one -ne 0.0 other other other -ne 0.1 other one one -ne 0.3 other other other -ne 1.0 one other other -ne 1.3 one other other -ne 3.0 other other other -ne 3.1 other one one -ne 0.00 other other other -ne 0.01 other one one -ne 0.20 other other other -ne 0.21 other other one -ne 0.03 other other other -ne 1.00 one other other -ne 1.20 one other other -ne 1.21 one other one -ne 1.03 one other other -ne 3.00 other other other -ne 3.01 other one one -ne 0.000 other other other -ne 0.001 other one one -ne 0.020 other other other -ne 0.021 other other one -ne 0.003 other other other -ne 1.000 one other other -ne 1.020 one other other -ne 1.021 one other one -ne 1.003 one other other -ne 3.000 other other other -ne 3.001 other one one -nl 0.0 other other other -nl 0.1 other one one -nl 0.3 other other other -nl 1.0 one other other -nl 1.3 one other other -nl 3.0 other other other -nl 3.1 other one one -nl 0.00 other other other -nl 0.01 other one one -nl 0.20 other other other -nl 0.21 other other one -nl 0.03 other other other -nl 1.00 one other other -nl 1.20 one other other -nl 1.21 one other one -nl 1.03 one other other -nl 3.00 other other other -nl 3.01 other one one -nl 0.000 other other other -nl 0.001 other one one -nl 0.020 other other other -nl 0.021 other other one -nl 0.003 other other other -nl 1.000 one other other -nl 1.020 one other other -nl 1.021 one other one -nl 1.003 one other other -nl 3.000 other other other -nl 3.001 other one one -pl 0.0 many many many -pl 0.1 many one one -pl 0.3 many few few -pl 0.6 many many many -pl 1.0 one many many -pl 1.3 one few few -pl 1.6 one many many -pl 3.0 few many many -pl 3.1 few one one -pl 3.6 few many many -pl 6.0 many many many -pl 6.1 many one one -pl 6.3 many few few -pl 0.00 many many many -pl 0.01 many one one -pl 0.03 many few few -pl 0.20 many many many -pl 0.21 many many one -pl 0.13 many many few -pl 0.06 many many many -pl 1.00 one many many -pl 1.03 one few few -pl 1.20 one many many -pl 1.21 one many one -pl 1.13 one many few -pl 1.06 one many many -pl 3.00 few many many -pl 3.01 few one one -pl 3.20 few many many -pl 3.21 few many one -pl 3.13 few many few -pl 3.06 few many many -pl 6.00 many many many -pl 6.01 many one one -pl 6.03 many few few -pl 0.000 many many many -pl 0.001 many one one -pl 0.003 many few few -pl 0.020 many many many -pl 0.021 many many one -pl 0.013 many many few -pl 0.006 many many many -pl 1.000 one many many -pl 1.003 one few few -pl 1.020 one many many -pl 1.021 one many one -pl 1.013 one many few -pl 1.006 one many many -pl 3.000 few many many -pl 3.001 few one one -pl 3.020 few many many -pl 3.021 few many one -pl 3.013 few many few -pl 3.006 few many many -pl 6.000 many many many -pl 6.001 many one one -pl 6.003 many few few -pt 0.0 other other other -pt 0.1 other one one -pt 0.3 other other other -pt 1.0 one other other -pt 1.3 one other other -pt 3.0 other other other -pt 3.1 other one one -pt 0.00 other other other -pt 0.01 other one one -pt 0.20 other other other -pt 0.21 other other one -pt 0.03 other other other -pt 1.00 one other other -pt 1.20 one other other -pt 1.21 one other one -pt 1.03 one other other -pt 3.00 other other other -pt 3.01 other one one -pt 0.000 other other other -pt 0.001 other one one -pt 0.020 other other other -pt 0.021 other other one -pt 0.003 other other other -pt 1.000 one other other -pt 1.020 one other other -pt 1.021 one other one -pt 1.003 one other other -pt 3.000 other other other -pt 3.001 other one one -pt_PT 0.0 other other other -pt_PT 0.1 other one one -pt_PT 0.3 other other other -pt_PT 1.0 one other other -pt_PT 1.3 one other other -pt_PT 3.0 other other other -pt_PT 3.1 other one one -pt_PT 0.00 other other other -pt_PT 0.01 other one one -pt_PT 0.20 other other other -pt_PT 0.21 other other one -pt_PT 0.03 other other other -pt_PT 1.00 one other other -pt_PT 1.20 one other other -pt_PT 1.21 one other one -pt_PT 1.03 one other other -pt_PT 3.00 other other other -pt_PT 3.01 other one one -pt_PT 0.000 other other other -pt_PT 0.001 other one one -pt_PT 0.020 other other other -pt_PT 0.021 other other one -pt_PT 0.003 other other other -pt_PT 1.000 one other other -pt_PT 1.020 one other other -pt_PT 1.021 one other one -pt_PT 1.003 one other other -pt_PT 3.000 other other other -pt_PT 3.001 other one one -ro 0.0 few few few -ro 0.1 few one one -ro 0.3 few few few -ro 1.0 one few few -ro 1.3 one few few -ro 3.0 few few few -ro 3.1 few one one -ro 21.0 other few few -ro 21.1 other one one -ro 21.3 other few few -ro 0.00 few few few -ro 0.01 few one one -ro 0.03 few few few -ro 0.30 few other few -ro 0.31 few other one -ro 0.23 few other few -ro 1.00 one few few -ro 1.03 one few few -ro 1.30 one other few -ro 1.31 one other one -ro 1.23 one other few -ro 3.00 few few few -ro 3.01 few one one -ro 3.30 few other few -ro 3.31 few other one -ro 3.23 few other few -ro 21.00 other few few -ro 21.01 other one one -ro 21.03 other few few -ro 0.000 few few few -ro 0.001 few one one -ro 0.110 few few few -ro 0.101 few few one -ro 0.003 few few few -ro 0.030 few other few -ro 0.031 few other one -ro 0.023 few other few -ro 1.000 one few few -ro 1.110 one few few -ro 1.101 one few one -ro 1.003 one few few -ro 1.030 one other few -ro 1.031 one other one -ro 1.023 one other few -ro 3.000 few few few -ro 3.001 few one one -ro 3.030 few other few -ro 3.031 few other one -ro 3.023 few other few -ro 21.000 other few few -ro 21.001 other one one -ro 21.110 other few few -ro 21.101 other few one -ro 21.003 other few few -ru 0.0 many many many -ru 0.3 many few few -ru 0.6 many many many -ru 21.0 one many many -ru 21.3 one few few -ru 21.6 one many many -ru 3.0 few many many -ru 3.6 few many many -ru 6.0 many many many -ru 6.3 many few few -ru 0.00 many many many -ru 0.21 many one one -ru 0.03 many few few -ru 0.20 many many many -ru 0.13 many many few -ru 0.06 many many many -ru 21.00 one many many -ru 21.03 one few few -ru 21.20 one many many -ru 21.13 one many few -ru 21.06 one many many -ru 3.00 few many many -ru 3.21 few one one -ru 3.20 few many many -ru 3.13 few many few -ru 3.06 few many many -ru 6.00 many many many -ru 6.21 many one one -ru 6.03 many few few -ru 0.000 many many many -ru 0.021 many one one -ru 0.003 many few few -ru 0.020 many many many -ru 0.111 many many one -ru 0.013 many many few -ru 0.006 many many many -ru 21.000 one many many -ru 21.003 one few few -ru 21.020 one many many -ru 21.111 one many one -ru 21.013 one many few -ru 21.006 one many many -ru 3.000 few many many -ru 3.021 few one one -ru 3.020 few many many -ru 3.111 few many one -ru 3.013 few many few -ru 3.006 few many many -ru 6.000 many many many -ru 6.021 many one one -ru 6.003 many few few -si 0.0 other other other -si 0.2 other other other -si 2.0 other other other -si 0.00 other other other -si 0.20 other other other -si 0.02 other other other -si 2.00 other other other -si 0.000 other other other -si 0.020 other other other -si 0.002 other other other -si 2.000 other other other -sk 0.0 other other other -sk 0.1 other one one -sk 0.3 other few few -sk 0.6 other other other -sk 1.0 one other other -sk 1.3 one few few -sk 1.6 one other other -sk 3.0 few other other -sk 3.1 few one one -sk 3.6 few other other -sk 6.0 other other other -sk 6.1 other one one -sk 6.3 other few few -sk 0.00 other other other -sk 0.01 other one one -sk 0.03 other few few -sk 0.20 other other other -sk 0.21 other other one -sk 0.13 other other few -sk 0.06 other other other -sk 1.00 one other other -sk 1.03 one few few -sk 1.20 one other other -sk 1.21 one other one -sk 1.13 one other few -sk 1.06 one other other -sk 3.00 few other other -sk 3.01 few one one -sk 3.20 few other other -sk 3.21 few other one -sk 3.13 few other few -sk 3.06 few other other -sk 6.00 other other other -sk 6.01 other one one -sk 6.03 other few few -sk 0.000 other other other -sk 0.001 other one one -sk 0.003 other few few -sk 0.020 other other other -sk 0.021 other other one -sk 0.013 other other few -sk 0.006 other other other -sk 1.000 one other other -sk 1.003 one few few -sk 1.020 one other other -sk 1.021 one other one -sk 1.013 one other few -sk 1.006 one other other -sk 3.000 few other other -sk 3.001 few one one -sk 3.020 few other other -sk 3.021 few other one -sk 3.013 few other few -sk 3.006 few other other -sk 6.000 other other other -sk 6.001 other one one -sk 6.003 other few few -sl 0.0 other other other -sl 0.4 other few few -sl 0.6 other other other -sl 101.0 one other other -sl 101.4 one few few -sl 101.6 one other other -sl 102.0 two other other -sl 102.4 two few few -sl 102.6 two other other -sl 4.0 few other other -sl 4.6 few other other -sl 6.0 other other other -sl 6.4 other few few -sl 0.00 other other other -sl 0.04 other few few -sl 0.20 other other other -sl 0.21 other other one -sl 0.22 other other two -sl 0.14 other other few -sl 0.06 other other other -sl 101.00 one other other -sl 101.04 one few few -sl 101.20 one other other -sl 101.21 one other one -sl 101.22 one other two -sl 101.14 one other few -sl 101.06 one other other -sl 102.00 two other other -sl 102.04 two few few -sl 102.20 two other other -sl 102.21 two other one -sl 102.22 two other two -sl 102.14 two other few -sl 102.06 two other other -sl 4.00 few other other -sl 4.20 few other other -sl 4.21 few other one -sl 4.22 few other two -sl 4.14 few other few -sl 4.06 few other other -sl 6.00 other other other -sl 6.04 other few few -sl 0.000 other other other -sl 0.101 other one one -sl 0.102 other two two -sl 0.004 other few few -sl 0.020 other other other -sl 0.021 other other one -sl 0.022 other other two -sl 0.014 other other few -sl 0.006 other other other -sl 101.000 one other other -sl 101.102 one two two -sl 101.004 one few few -sl 101.020 one other other -sl 101.021 one other one -sl 101.022 one other two -sl 101.014 one other few -sl 101.006 one other other -sl 102.000 two other other -sl 102.101 two one one -sl 102.004 two few few -sl 102.020 two other other -sl 102.021 two other one -sl 102.022 two other two -sl 102.014 two other few -sl 102.006 two other other -sl 4.000 few other other -sl 4.101 few one one -sl 4.102 few two two -sl 4.020 few other other -sl 4.021 few other one -sl 4.022 few other two -sl 4.014 few other few -sl 4.006 few other other -sl 6.000 other other other -sl 6.101 other one one -sl 6.102 other two two -sl 6.004 other few few -sr 0.0 many many many -sr 0.3 many few few -sr 0.6 many many many -sr 21.0 one many many -sr 21.3 one few few -sr 21.6 one many many -sr 3.0 few many many -sr 3.6 few many many -sr 6.0 many many many -sr 6.3 many few few -sr 0.00 many many many -sr 0.21 many one one -sr 0.03 many few few -sr 0.20 many many many -sr 0.13 many many few -sr 0.06 many many many -sr 21.00 one many many -sr 21.03 one few few -sr 21.20 one many many -sr 21.13 one many few -sr 21.06 one many many -sr 3.00 few many many -sr 3.21 few one one -sr 3.20 few many many -sr 3.13 few many few -sr 3.06 few many many -sr 6.00 many many many -sr 6.21 many one one -sr 6.03 many few few -sr 0.000 many many many -sr 0.021 many one one -sr 0.003 many few few -sr 0.020 many many many -sr 0.111 many many one -sr 0.013 many many few -sr 0.006 many many many -sr 21.000 one many many -sr 21.003 one few few -sr 21.020 one many many -sr 21.111 one many one -sr 21.013 one many few -sr 21.006 one many many -sr 3.000 few many many -sr 3.021 few one one -sr 3.020 few many many -sr 3.111 few many one -sr 3.013 few many few -sr 3.006 few many many -sr 6.000 many many many -sr 6.021 many one one -sr 6.003 many few few -sv 0.0 other other other -sv 0.1 other one one -sv 0.3 other other other -sv 1.0 one other other -sv 1.3 one other other -sv 3.0 other other other -sv 3.1 other one one -sv 0.00 other other other -sv 0.01 other one one -sv 0.20 other other other -sv 0.21 other other one -sv 0.03 other other other -sv 1.00 one other other -sv 1.20 one other other -sv 1.21 one other one -sv 1.03 one other other -sv 3.00 other other other -sv 3.01 other one one -sv 0.000 other other other -sv 0.001 other one one -sv 0.020 other other other -sv 0.021 other other one -sv 0.003 other other other -sv 1.000 one other other -sv 1.020 one other other -sv 1.021 one other one -sv 1.003 one other other -sv 3.000 other other other -sv 3.001 other one one -sw 0.0 other other other -sw 0.1 other one one -sw 0.3 other other other -sw 1.0 one other other -sw 1.3 one other other -sw 3.0 other other other -sw 3.1 other one one -sw 0.00 other other other -sw 0.01 other one one -sw 0.20 other other other -sw 0.21 other other one -sw 0.03 other other other -sw 1.00 one other other -sw 1.20 one other other -sw 1.21 one other one -sw 1.03 one other other -sw 3.00 other other other -sw 3.01 other one one -sw 0.000 other other other -sw 0.001 other one one -sw 0.020 other other other -sw 0.021 other other one -sw 0.003 other other other -sw 1.000 one other other -sw 1.020 one other other -sw 1.021 one other one -sw 1.003 one other other -sw 3.000 other other other -sw 3.001 other one one -ta 0.0 other other other -ta 0.1 other one one -ta 0.3 other other other -ta 1.0 one other other -ta 1.3 one other other -ta 3.0 other other other -ta 3.1 other one one -ta 0.00 other other other -ta 0.01 other one one -ta 0.20 other other other -ta 0.21 other other one -ta 0.03 other other other -ta 1.00 one other other -ta 1.20 one other other -ta 1.21 one other one -ta 1.03 one other other -ta 3.00 other other other -ta 3.01 other one one -ta 0.000 other other other -ta 0.001 other one one -ta 0.020 other other other -ta 0.021 other other one -ta 0.003 other other other -ta 1.000 one other other -ta 1.020 one other other -ta 1.021 one other one -ta 1.003 one other other -ta 3.000 other other other -ta 3.001 other one one -te 0.0 other other other -te 0.1 other one one -te 0.3 other other other -te 1.0 one other other -te 1.3 one other other -te 3.0 other other other -te 3.1 other one one -te 0.00 other other other -te 0.01 other one one -te 0.20 other other other -te 0.21 other other one -te 0.03 other other other -te 1.00 one other other -te 1.20 one other other -te 1.21 one other one -te 1.03 one other other -te 3.00 other other other -te 3.01 other one one -te 0.000 other other other -te 0.001 other one one -te 0.020 other other other -te 0.021 other other one -te 0.003 other other other -te 1.000 one other other -te 1.020 one other other -te 1.021 one other one -te 1.003 one other other -te 3.000 other other other -te 3.001 other one one -th 0.0 other other other -th 0.2 other other other -th 2.0 other other other -th 0.00 other other other -th 0.20 other other other -th 0.02 other other other -th 2.00 other other other -th 0.000 other other other -th 0.020 other other other -th 0.002 other other other -th 2.000 other other other -tr 0.0 other other other -tr 0.2 other other other -tr 2.0 other other other -tr 0.00 other other other -tr 0.20 other other other -tr 0.02 other other other -tr 2.00 other other other -tr 0.000 other other other -tr 0.020 other other other -tr 0.002 other other other -tr 2.000 other other other -uk 0.0 many many many -uk 0.3 many few few -uk 0.6 many many many -uk 21.0 one many many -uk 21.3 one few few -uk 21.6 one many many -uk 3.0 few many many -uk 3.6 few many many -uk 6.0 many many many -uk 6.3 many few few -uk 0.00 many many many -uk 0.21 many one one -uk 0.03 many few few -uk 0.20 many many many -uk 0.13 many many few -uk 0.06 many many many -uk 21.00 one many many -uk 21.03 one few few -uk 21.20 one many many -uk 21.13 one many few -uk 21.06 one many many -uk 3.00 few many many -uk 3.21 few one one -uk 3.20 few many many -uk 3.13 few many few -uk 3.06 few many many -uk 6.00 many many many -uk 6.21 many one one -uk 6.03 many few few -uk 0.000 many many many -uk 0.021 many one one -uk 0.003 many few few -uk 0.020 many many many -uk 0.111 many many one -uk 0.013 many many few -uk 0.006 many many many -uk 21.000 one many many -uk 21.003 one few few -uk 21.020 one many many -uk 21.111 one many one -uk 21.013 one many few -uk 21.006 one many many -uk 3.000 few many many -uk 3.021 few one one -uk 3.020 few many many -uk 3.111 few many one -uk 3.013 few many few -uk 3.006 few many many -uk 6.000 many many many -uk 6.021 many one one -uk 6.003 many few few -ur 0.0 other other other -ur 0.1 other one one -ur 0.3 other other other -ur 1.0 one other other -ur 1.3 one other other -ur 3.0 other other other -ur 3.1 other one one -ur 0.00 other other other -ur 0.01 other one one -ur 0.20 other other other -ur 0.21 other other one -ur 0.03 other other other -ur 1.00 one other other -ur 1.20 one other other -ur 1.21 one other one -ur 1.03 one other other -ur 3.00 other other other -ur 3.01 other one one -ur 0.000 other other other -ur 0.001 other one one -ur 0.020 other other other -ur 0.021 other other one -ur 0.003 other other other -ur 1.000 one other other -ur 1.020 one other other -ur 1.021 one other one -ur 1.003 one other other -ur 3.000 other other other -ur 3.001 other one one -vi 0.0 other other other -vi 0.2 other other other -vi 2.0 other other other -vi 0.00 other other other -vi 0.20 other other other -vi 0.02 other other other -vi 2.00 other other other -vi 0.000 other other other -vi 0.020 other other other -vi 0.002 other other other -vi 2.000 other other other -zh 0.0 other other other -zh 0.2 other other other -zh 2.0 other other other -zh 0.00 other other other -zh 0.20 other other other -zh 0.02 other other other -zh 2.00 other other other -zh 0.000 other other other -zh 0.020 other other other -zh 0.002 other other other -zh 2.000 other other other -zh_Hant 0.0 other other other -zh_Hant 0.2 other other other -zh_Hant 2.0 other other other -zh_Hant 0.00 other other other -zh_Hant 0.20 other other other -zh_Hant 0.02 other other other -zh_Hant 2.00 other other other -zh_Hant 0.000 other other other -zh_Hant 0.020 other other other -zh_Hant 0.002 other other other -zh_Hant 2.000 other other other +af 0 dae +af 0.00 dae +af 0.000 dae +af 0.001 dae +af 0.002 dae +af 0.01 dae +af 0.010 dae +af 0.011 dae +af 0.02 dae +af 0.1 dae +af 0.10 dae +af 0.11 dae +af 0.2 dae +af 1.0 dag +af 1.00 dag +af 1.000 dag +af 1.002 dae +af 1.010 dae +af 1.011 dae +af 1.02 dae +af 1.10 dae +af 1.11 dae +af 1.2 dae +af 2.0 dae +af 2.00 dae +af 2.000 dae +af 2.001 dae +af 2.01 dae +af 2.1 dae +am 0.0 ቀን +am 0.00 ቀን +am 0.000 ቀን +am 0.001 ቀን +am 0.002 ቀን +am 0.01 ቀን +am 0.010 ቀን +am 0.011 ቀን +am 0.02 ቀን +am 0.1 ቀን +am 0.10 ቀን +am 0.11 ቀን +am 0.2 ቀን +am 2 ቀናት +am 1.0 ቀን +am 1.00 ቀን +am 1.000 ቀን +am 1.002 ቀናት +am 1.010 ቀናት +am 1.011 ቀናት +am 1.02 ቀናት +am 1.10 ቀናት +am 1.11 ቀናት +am 1.2 ቀናት +am 2.0 ቀናት +am 2.00 ቀናት +am 2.000 ቀናት +am 2.001 ቀናት +am 2.01 ቀናት +am 2.1 ቀናት +ar 0 ساعة +ar 0.0 ساعة +ar 0.00 ساعة +ar 0.000 ساعة +ar 0.001 ساعة +ar 0.002 ساعة +ar 0.003 ساعة +ar 0.01 ساعة +ar 0.010 ساعة +ar 0.011 ساعة +ar 0.012 ساعة +ar 0.013 ساعة +ar 0.02 ساعة +ar 0.020 ساعة +ar 0.03 ساعة +ar 0.1 ساعة +ar 0.10 ساعة +ar 0.100 ساعة +ar 0.101 ساعة +ar 0.102 ساعة +ar 0.11 ساعة +ar 0.12 ساعة +ar 0.13 ساعة +ar 0.2 ساعة +ar 0.20 ساعة +ar 0.3 ساعة +ar 1.0 ساعة +ar 1.00 ساعة +ar 1.000 ساعة +ar 1.002 ساعة +ar 1.003 ساعة +ar 1.010 ساعة +ar 1.011 ساعة +ar 1.012 ساعة +ar 1.013 ساعة +ar 1.02 ساعة +ar 1.020 ساعة +ar 1.03 ساعة +ar 1.10 ساعة +ar 1.100 ساعة +ar 1.101 ساعة +ar 1.102 ساعة +ar 1.11 ساعة +ar 1.12 ساعة +ar 1.13 ساعة +ar 1.2 ساعة +ar 1.20 ساعة +ar 1.3 ساعة +ar 2.0 ساعة +ar 2.00 ساعة +ar 2.000 ساعة +ar 2.001 ساعة +ar 2.003 ساعة +ar 2.01 ساعة +ar 2.010 ساعة +ar 2.011 ساعة +ar 2.012 ساعة +ar 2.013 ساعة +ar 2.020 ساعة +ar 2.03 ساعة +ar 2.1 ساعة +ar 2.10 ساعة +ar 2.100 ساعة +ar 2.101 ساعة +ar 2.102 ساعة +ar 2.11 ساعة +ar 2.12 ساعة +ar 2.13 ساعة +ar 2.20 ساعة +ar 2.3 ساعة +ar 3.0 ساعة +ar 3.00 ساعة +ar 3.000 ساعة +ar 3.001 ساعة +ar 3.002 ساعة +ar 3.01 ساعة +ar 3.011 ساعة +ar 3.012 ساعة +ar 3.013 ساعة +ar 3.02 ساعة +ar 3.020 ساعة +ar 3.1 ساعة +ar 3.100 ساعة +ar 3.101 ساعة +ar 3.102 ساعة +ar 3.11 ساعة +ar 3.12 ساعة +ar 3.13 ساعة +ar 3.2 ساعة +ar 3.20 ساعة +ar 11.0 ساعة +ar 11.00 ساعة +ar 11.000 ساعة +ar 11.001 ساعة +ar 11.002 ساعة +ar 11.003 ساعة +ar 11.01 ساعة +ar 11.010 ساعة +ar 11.02 ساعة +ar 11.03 ساعة +ar 11.1 ساعة +ar 11.10 ساعة +ar 11.100 ساعة +ar 11.101 ساعة +ar 11.102 ساعة +ar 11.2 ساعة +ar 11.3 ساعة +ar 100.0 ساعة +ar 100.00 ساعة +ar 100.000 ساعة +ar 100.001 ساعة +ar 100.002 ساعة +ar 100.003 ساعة +ar 100.01 ساعة +ar 100.010 ساعة +ar 100.011 ساعة +ar 100.012 ساعة +ar 100.013 ساعة +ar 100.02 ساعة +ar 100.020 ساعة +ar 100.03 ساعة +ar 100.1 ساعة +ar 100.10 ساعة +ar 100.11 ساعة +ar 100.12 ساعة +ar 100.13 ساعة +ar 100.2 ساعة +ar 100.20 ساعة +ar 100.3 ساعة +bg 0 дена +bg 0.0 дена +bg 0.00 дена +bg 0.000 дена +bg 0.001 дена +bg 0.002 дена +bg 0.01 дена +bg 0.010 дена +bg 0.011 дена +bg 0.02 дена +bg 0.1 дена +bg 0.10 дена +bg 0.11 дена +bg 0.2 дена +bg 1.0 ден +bg 1.00 ден +bg 1.000 ден +bg 1.002 дена +bg 1.010 дена +bg 1.011 дена +bg 1.02 дена +bg 1.10 дена +bg 1.11 дена +bg 1.2 дена +bg 2.0 дена +bg 2.00 дена +bg 2.000 дена +bg 2.001 дена +bg 2.01 дена +bg 2.1 дена +br 0.0 deiz +br 0.00 deiz +br 0.000 deiz +br 0.001 deiz +br 0.002 deiz +br 0.003 deiz +br 0.005 deiz +br 0.01 deiz +br 0.010 deiz +br 0.011 deiz +br 0.012 deiz +br 0.013 deiz +br 0.02 deiz +br 0.03 deiz +br 0.05 deiz +br 0.1 deiz +br 0.10 deiz +br 0.11 deiz +br 0.12 deiz +br 0.13 deiz +br 0.2 deiz +br 0.3 deiz +br 0.5 deiz +br 1.0 deiz +br 1.00 deiz +br 1.000 deiz +br 1.002 deiz +br 1.003 deiz +br 1.005 deiz +br 1.010 deiz +br 1.011 deiz +br 1.012 deiz +br 1.013 deiz +br 1.02 deiz +br 1.03 deiz +br 1.05 deiz +br 1.10 deiz +br 1.11 deiz +br 1.12 deiz +br 1.13 deiz +br 1.2 deiz +br 1.3 deiz +br 1.5 deiz +br 2 zeiz +br 2.0 zeiz +br 2.00 zeiz +br 2.000 zeiz +br 2.001 zeiz +br 2.003 zeiz +br 2.005 zeiz +br 2.01 zeiz +br 2.010 zeiz +br 2.011 zeiz +br 2.012 zeiz +br 2.013 zeiz +br 2.03 zeiz +br 2.05 zeiz +br 2.1 zeiz +br 2.10 zeiz +br 2.11 zeiz +br 2.12 zeiz +br 2.13 zeiz +br 2.3 zeiz +br 2.5 zeiz +br 3.0 deiz +br 3.00 deiz +br 3.000 deiz +br 3.001 deiz +br 3.002 deiz +br 3.005 deiz +br 3.01 deiz +br 3.010 deiz +br 3.011 deiz +br 3.012 deiz +br 3.013 deiz +br 3.02 deiz +br 3.05 deiz +br 3.1 deiz +br 3.10 deiz +br 3.11 deiz +br 3.12 deiz +br 3.13 deiz +br 3.2 deiz +br 3.5 deiz +br 5.0 deiz +br 5.00 deiz +br 5.000 deiz +br 5.001 deiz +br 5.002 deiz +br 5.003 deiz +br 5.01 deiz +br 5.02 deiz +br 5.03 deiz +br 5.1 deiz +br 5.2 deiz +br 5.3 deiz +br 1000000.0 a zeizioù +br 1000000.00 a zeizioù +br 1000000.000 a zeizioù +br 1000000.001 a zeizioù +br 1000000.002 a zeizioù +br 1000000.003 a zeizioù +br 1000000.005 a zeizioù +br 1000000.01 a zeizioù +br 1000000.010 a zeizioù +br 1000000.011 a zeizioù +br 1000000.012 a zeizioù +br 1000000.013 a zeizioù +br 1000000.02 a zeizioù +br 1000000.03 a zeizioù +br 1000000.05 a zeizioù +br 1000000.1 a zeizioù +br 1000000.10 a zeizioù +br 1000000.11 a zeizioù +br 1000000.12 a zeizioù +br 1000000.13 a zeizioù +br 1000000.2 a zeizioù +br 1000000.3 a zeizioù +br 1000000.5 a zeizioù +ca 0 dies +ca 0.0 dies +ca 0.00 dies +ca 0.000 dies +ca 0.001 dies +ca 0.002 dies +ca 0.01 dies +ca 0.010 dies +ca 0.011 dies +ca 0.02 dies +ca 0.1 dies +ca 0.10 dies +ca 0.11 dies +ca 0.2 dies +ca 1.0 dies +ca 1.00 dies +ca 1.000 dies +ca 1.002 dies +ca 1.010 dies +ca 1.011 dies +ca 1.02 dies +ca 1.10 dies +ca 1.11 dies +ca 1.2 dies +ca 2.0 dies +ca 2.00 dies +ca 2.000 dies +ca 2.001 dies +ca 2.01 dies +ca 2.1 dies +cs 0 dní +cs 0.0 dne +cs 0.00 dne +cs 0.000 dne +cs 0.001 dne +cs 0.002 dne +cs 0.005 dne +cs 0.01 dne +cs 0.010 dne +cs 0.011 dne +cs 0.012 dne +cs 0.02 dne +cs 0.05 dne +cs 0.1 dne +cs 0.10 dne +cs 0.11 dne +cs 0.12 dne +cs 0.2 dne +cs 0.5 dne +cs 1.0 dne +cs 1.00 dne +cs 1.000 dne +cs 1.002 dne +cs 1.005 dne +cs 1.010 dne +cs 1.011 dne +cs 1.012 dne +cs 1.02 dne +cs 1.05 dne +cs 1.10 dne +cs 1.11 dne +cs 1.12 dne +cs 1.2 dne +cs 1.5 dne +cs 2.0 dne +cs 2.00 dne +cs 2.000 dne +cs 2.001 dne +cs 2.005 dne +cs 2.01 dne +cs 2.010 dne +cs 2.011 dne +cs 2.012 dne +cs 2.05 dne +cs 2.1 dne +cs 2.10 dne +cs 2.11 dne +cs 2.12 dne +cs 2.5 dne +cs 5.0 dne +cs 5.00 dne +cs 5.000 dne +cs 5.001 dne +cs 5.002 dne +cs 5.01 dne +cs 5.02 dne +cs 5.1 dne +cs 5.2 dne +cy 0.0 cilo. 0.0 peint +cy 0.00 cilo. 0.00 peint +cy 0.000 cilo. 0.000 peint +cy 0.001 cilo. 0.001 peint +cy 0.002 cilo. 0.002 peint +cy 0.003 cilo. 0.003 peint +cy 0.004 cilo. 0.004 peint +cy 0.006 cilo. 0.006 peint +cy 0.01 cilo. 0.01 peint +cy 0.010 cilo. 0.010 peint +cy 0.011 cilo. 0.011 peint +cy 0.012 cilo. 0.012 peint +cy 0.013 cilo. 0.013 peint +cy 0.016 cilo. 0.016 peint +cy 0.02 cilo. 0.02 peint +cy 0.03 cilo. 0.03 peint +cy 0.04 cilo. 0.04 peint +cy 0.06 cilo. 0.06 peint +cy 0.1 cilo. 0.1 peint +cy 0.10 cilo. 0.10 peint +cy 0.11 cilo. 0.11 peint +cy 0.12 cilo. 0.12 peint +cy 0.13 cilo. 0.13 peint +cy 0.16 cilo. 0.16 peint +cy 0.2 cilo. 0.2 peint +cy 0.3 cilo. 0.3 peint +cy 0.4 cilo. 0.4 peint +cy 0.6 cilo. 0.6 peint +cy 1.0 cilo. 1.0 peint +cy 1.00 cilo. 1.00 peint +cy 1.000 cilo. 1.000 peint +cy 1.002 cilo. 1.002 peint +cy 1.003 cilo. 1.003 peint +cy 1.004 cilo. 1.004 peint +cy 1.006 cilo. 1.006 peint +cy 1.010 cilo. 1.010 peint +cy 1.011 cilo. 1.011 peint +cy 1.012 cilo. 1.012 peint +cy 1.013 cilo. 1.013 peint +cy 1.016 cilo. 1.016 peint +cy 1.02 cilo. 1.02 peint +cy 1.03 cilo. 1.03 peint +cy 1.04 cilo. 1.04 peint +cy 1.06 cilo. 1.06 peint +cy 1.10 cilo. 1.10 peint +cy 1.11 cilo. 1.11 peint +cy 1.12 cilo. 1.12 peint +cy 1.13 cilo. 1.13 peint +cy 1.16 cilo. 1.16 peint +cy 1.2 cilo. 1.2 peint +cy 1.3 cilo. 1.3 peint +cy 1.4 cilo. 1.4 peint +cy 1.6 cilo. 1.6 peint +cy 2.0 cilo. 2.0 peint +cy 2.00 cilo. 2.00 peint +cy 2.000 cilo. 2.000 peint +cy 2.001 cilo. 2.001 peint +cy 2.003 cilo. 2.003 peint +cy 2.004 cilo. 2.004 peint +cy 2.006 cilo. 2.006 peint +cy 2.01 cilo. 2.01 peint +cy 2.010 cilo. 2.010 peint +cy 2.011 cilo. 2.011 peint +cy 2.012 cilo. 2.012 peint +cy 2.013 cilo. 2.013 peint +cy 2.016 cilo. 2.016 peint +cy 2.03 cilo. 2.03 peint +cy 2.04 cilo. 2.04 peint +cy 2.06 cilo. 2.06 peint +cy 2.1 cilo. 2.1 peint +cy 2.10 cilo. 2.10 peint +cy 2.11 cilo. 2.11 peint +cy 2.12 cilo. 2.12 peint +cy 2.13 cilo. 2.13 peint +cy 2.16 cilo. 2.16 peint +cy 2.3 cilo. 2.3 peint +cy 2.4 cilo. 2.4 peint +cy 2.6 cilo. 2.6 peint +cy 3.0 cilo. 3.0 peint +cy 3.00 cilo. 3.00 peint +cy 3.000 cilo. 3.000 peint +cy 3.001 cilo. 3.001 peint +cy 3.002 cilo. 3.002 peint +cy 3.004 cilo. 3.004 peint +cy 3.006 cilo. 3.006 peint +cy 3.01 cilo. 3.01 peint +cy 3.010 cilo. 3.010 peint +cy 3.011 cilo. 3.011 peint +cy 3.012 cilo. 3.012 peint +cy 3.013 cilo. 3.013 peint +cy 3.016 cilo. 3.016 peint +cy 3.02 cilo. 3.02 peint +cy 3.04 cilo. 3.04 peint +cy 3.06 cilo. 3.06 peint +cy 3.1 cilo. 3.1 peint +cy 3.10 cilo. 3.10 peint +cy 3.11 cilo. 3.11 peint +cy 3.12 cilo. 3.12 peint +cy 3.13 cilo. 3.13 peint +cy 3.16 cilo. 3.16 peint +cy 3.2 cilo. 3.2 peint +cy 3.4 cilo. 3.4 peint +cy 3.6 cilo. 3.6 peint +cy 4.0 cilo. 4.0 peint +cy 4.00 cilo. 4.00 peint +cy 4.000 cilo. 4.000 peint +cy 4.001 cilo. 4.001 peint +cy 4.002 cilo. 4.002 peint +cy 4.003 cilo. 4.003 peint +cy 4.006 cilo. 4.006 peint +cy 4.01 cilo. 4.01 peint +cy 4.02 cilo. 4.02 peint +cy 4.03 cilo. 4.03 peint +cy 4.06 cilo. 4.06 peint +cy 4.1 cilo. 4.1 peint +cy 4.2 cilo. 4.2 peint +cy 4.3 cilo. 4.3 peint +cy 4.6 cilo. 4.6 peint +cy 6.0 cilo. 6.0 peint +cy 6.00 cilo. 6.00 peint +cy 6.000 cilo. 6.000 peint +cy 6.001 cilo. 6.001 peint +cy 6.002 cilo. 6.002 peint +cy 6.003 cilo. 6.003 peint +cy 6.004 cilo. 6.004 peint +cy 6.01 cilo. 6.01 peint +cy 6.010 cilo. 6.010 peint +cy 6.011 cilo. 6.011 peint +cy 6.012 cilo. 6.012 peint +cy 6.013 cilo. 6.013 peint +cy 6.016 cilo. 6.016 peint +cy 6.02 cilo. 6.02 peint +cy 6.03 cilo. 6.03 peint +cy 6.04 cilo. 6.04 peint +cy 6.1 cilo. 6.1 peint +cy 6.10 cilo. 6.10 peint +cy 6.11 cilo. 6.11 peint +cy 6.12 cilo. 6.12 peint +cy 6.13 cilo. 6.13 peint +cy 6.16 cilo. 6.16 peint +cy 6.2 cilo. 6.2 peint +cy 6.3 cilo. 6.3 peint +cy 6.4 cilo. 6.4 peint +cy 8 cadair (f) 8 peint (m) +da 0 dage +da 0.0 dage +da 0.00 dage +da 0.000 dage +da 0.001 dag +da 0.002 dage +da 0.01 dag +da 0.010 dage +da 0.011 dage +da 0.02 dage +da 0.1 dag +da 0.10 dage +da 0.11 dage +da 0.2 dage +da 1.0 dage +da 1.00 dage +da 1.000 dage +da 1.002 dage +da 1.010 dage +da 1.011 dage +da 1.02 dage +da 1.10 dage +da 1.11 dage +da 1.2 dage +da 2.0 dage +da 2.00 dage +da 2.000 dage +da 2.001 dag +da 2.01 dag +da 2.1 dag +de 0 Tage +de 0.0 Tage +de 0.00 Tage +de 0.000 Tage +de 0.001 Tage +de 0.002 Tage +de 0.01 Tage +de 0.010 Tage +de 0.011 Tage +de 0.02 Tage +de 0.1 Tage +de 0.10 Tage +de 0.11 Tage +de 0.2 Tage +de 1.0 Tage +de 1.00 Tage +de 1.000 Tage +de 1.002 Tage +de 1.010 Tage +de 1.011 Tage +de 1.02 Tage +de 1.10 Tage +de 1.11 Tage +de 1.2 Tage +de 2.0 Tage +de 2.00 Tage +de 2.000 Tage +de 2.001 Tage +de 2.01 Tage +de 2.1 Tage +dz ཉིནམ་ 0 +dz ཉིནམ་ 0.0 +dz ཉིནམ་ 0.00 +dz ཉིནམ་ 0.000 +dz ཉིནམ་ 0.001 +dz ཉིནམ་ 0.01 +dz ཉིནམ་ 0.010 +dz ཉིནམ་ 0.1 +dz ཉིནམ་ 0.10 +dz ཉིནམ་ 1.0 +dz ཉིནམ་ 1.00 +dz ཉིནམ་ 1.000 +el 2 ημέρες +el 0.0 ημέρες +el 0.00 ημέρες +el 0.000 ημέρες +el 0.001 ημέρες +el 0.002 ημέρες +el 0.01 ημέρες +el 0.010 ημέρες +el 0.011 ημέρες +el 0.02 ημέρες +el 0.1 ημέρες +el 0.10 ημέρες +el 0.11 ημέρες +el 0.2 ημέρες +el 1.0 ημέρα +el 1.00 ημέρα +el 1.000 ημέρα +el 1.002 ημέρες +el 1.010 ημέρες +el 1.011 ημέρες +el 1.02 ημέρες +el 1.10 ημέρες +el 1.11 ημέρες +el 1.2 ημέρες +el 2.0 ημέρες +el 2.00 ημέρες +el 2.000 ημέρες +el 2.001 ημέρες +el 2.01 ημέρες +el 2.1 ημέρες +es 0 días +es 0.0 días +es 0.00 días +es 0.000 días +es 0.001 días +es 0.002 días +es 0.01 días +es 0.010 días +es 0.011 días +es 0.02 días +es 0.1 días +es 0.10 días +es 0.11 días +es 0.2 días +es 1.0 día +es 1.00 día +es 1.000 día +es 1.002 días +es 1.010 días +es 1.011 días +es 1.02 días +es 1.10 días +es 1.11 días +es 1.2 días +es 2.0 días +es 2.00 días +es 2.000 días +es 2.001 días +es 2.01 días +es 2.1 días +et 0 ööpäeva +et 0.0 ööpäeva +et 0.00 ööpäeva +et 0.000 ööpäeva +et 0.001 ööpäeva +et 0.002 ööpäeva +et 0.01 ööpäeva +et 0.010 ööpäeva +et 0.011 ööpäeva +et 0.02 ööpäeva +et 0.1 ööpäeva +et 0.10 ööpäeva +et 0.11 ööpäeva +et 0.2 ööpäeva +et 1.0 ööpäeva +et 1.00 ööpäeva +et 1.000 ööpäeva +et 1.002 ööpäeva +et 1.010 ööpäeva +et 1.011 ööpäeva +et 1.02 ööpäeva +et 1.10 ööpäeva +et 1.11 ööpäeva +et 1.2 ööpäeva +et 2.0 ööpäeva +et 2.00 ööpäeva +et 2.000 ööpäeva +et 2.001 ööpäeva +et 2.01 ööpäeva +et 2.1 ööpäeva +eu Nire 0.0 lagunekin nago +eu Nire 0.00 lagunekin nago +eu Nire 0.000 lagunekin nago +eu Nire 0.001 lagunekin nago +eu Nire 0.002 lagunekin nago +eu Nire 0.01 lagunekin nago +eu Nire 0.010 lagunekin nago +eu Nire 0.011 lagunekin nago +eu Nire 0.02 lagunekin nago +eu Nire 0.1 lagunekin nago +eu Nire 0.10 lagunekin nago +eu Nire 0.11 lagunekin nago +eu Nire 0.2 lagunekin nago +eu Nire 1.0 lagunarekin nago +eu Nire 1.00 lagunarekin nago +eu Nire 1.000 lagunarekin nago +eu Nire 1.002 lagunekin nago +eu Nire 1.010 lagunekin nago +eu Nire 1.011 lagunekin nago +eu Nire 1.02 lagunekin nago +eu Nire 1.10 lagunekin nago +eu Nire 1.11 lagunekin nago +eu Nire 1.2 lagunekin nago +eu Nire 2.0 lagunekin nago +eu Nire 2.00 lagunekin nago +eu Nire 2.000 lagunekin nago +eu Nire 2.001 lagunekin nago +eu Nire 2.01 lagunekin nago +eu Nire 2.1 lagunekin nago +eu Nire 4 lagunekin nago +fa 0 روز +fa 0.0 روز +fa 0.00 روز +fa 0.000 روز +fa 0.001 روز +fa 0.01 روز +fa 0.010 روز +fa 0.1 روز +fa 0.10 روز +fa 1.0 روز +fa 1.00 روز +fa 1.000 روز +fi 0 päivää +fi 0.0 päivää +fi 0.00 päivää +fi 0.000 päivää +fi 0.001 päivää +fi 0.002 päivää +fi 0.01 päivää +fi 0.010 päivää +fi 0.011 päivää +fi 0.02 päivää +fi 0.1 päivää +fi 0.10 päivää +fi 0.11 päivää +fi 0.2 päivää +fi 1.0 päivää +fi 1.00 päivää +fi 1.000 päivää +fi 1.002 päivää +fi 1.010 päivää +fi 1.011 päivää +fi 1.02 päivää +fi 1.10 päivää +fi 1.11 päivää +fi 1.2 päivää +fi 2.0 päivää +fi 2.00 päivää +fi 2.000 päivää +fi 2.001 päivää +fi 2.01 päivää +fi 2.1 päivää +fil sa 0.0 (na) araw +fil sa 0.00 (na) araw +fil sa 0.000 (na) araw +fil sa 0.001 (na) araw +fil sa 0.002 (na) araw +fil sa 0.01 (na) araw +fil sa 0.010 (na) araw +fil sa 0.011 (na) araw +fil sa 0.02 (na) araw +fil sa 0.1 (na) araw +fil sa 0.10 (na) araw +fil sa 0.11 (na) araw +fil sa 0.2 (na) araw +fil sa 0.5 (na) araw +fil sa 1.0 (na) araw +fil sa 1.00 (na) araw +fil sa 1.000 (na) araw +fil sa 1.002 (na) araw +fil sa 1.010 (na) araw +fil sa 1.011 (na) araw +fil sa 1.02 (na) araw +fil sa 1.10 (na) araw +fil sa 1.11 (na) araw +fil sa 1.2 (na) araw +fil sa 2.0 (na) araw +fil sa 2.00 (na) araw +fil sa 2.000 (na) araw +fil sa 2.001 (na) araw +fil sa 2.01 (na) araw +fil sa 2.1 (na) araw +fr 0.0 jour +fr 0.00 jour +fr 0.000 jour +fr 0.001 jour +fr 0.002 jour +fr 0.01 jour +fr 0.010 jour +fr 0.011 jour +fr 0.02 jour +fr 0.1 jour +fr 0.10 jour +fr 0.11 jour +fr 0.2 jour +fr 1.0 jour +fr 1.00 jour +fr 1.000 jour +fr 1.002 jour +fr 1.010 jour +fr 1.011 jour +fr 1.02 jour +fr 1.10 jour +fr 1.11 jour +fr 1.2 jour +fr 2 jours +fr 2.0 jours +fr 2.00 jours +fr 2.000 jours +fr 2.001 jours +fr 2.01 jours +fr 2.1 jours +gl 0 días +gl 0.0 días +gl 0.00 días +gl 0.000 días +gl 0.001 días +gl 0.002 días +gl 0.01 días +gl 0.010 días +gl 0.011 días +gl 0.02 días +gl 0.1 días +gl 0.10 días +gl 0.11 días +gl 0.2 días +gl 1.0 días +gl 1.00 días +gl 1.000 días +gl 1.002 días +gl 1.010 días +gl 1.011 días +gl 1.02 días +gl 1.10 días +gl 1.11 días +gl 1.2 días +gl 2.0 días +gl 2.00 días +gl 2.000 días +gl 2.001 días +gl 2.01 días +gl 2.1 días +gu 0 અઠવાડિયા +gu 0.0 અઠવાડિયા +gu 0.00 અઠવાડિયા +gu 0.000 અઠવાડિયા +gu 0.001 અઠવાડિયા +gu 0.002 અઠવાડિયા +gu 0.01 અઠવાડિયા +gu 0.010 અઠવાડિયા +gu 0.011 અઠવાડિયા +gu 0.02 અઠવાડિયા +gu 0.1 અઠવાડિયા +gu 0.10 અઠવાડિયા +gu 0.11 અઠવાડિયા +gu 0.2 અઠવાડિયા +gu 1.0 અઠવાડિયું +gu 1.00 અઠવાડિયું +gu 1.000 અઠવાડિયું +gu 1.002 અઠવાડિયું +gu 1.010 અઠવાડિયું +gu 1.011 અઠવાડિયું +gu 1.02 અઠવાડિયું +gu 1.10 અઠવાડિયું +gu 1.11 અઠવાડિયું +gu 1.2 અઠવાડિયું +gu 2.0 અઠવાડિયા +gu 2.00 અઠવાડિયા +gu 2.000 અઠવાડિયા +gu 2.001 અઠવાડિયા +gu 2.01 અઠવાડિયા +gu 2.1 અઠવાડિયા +he 0.0 ימים +he 0.00 ימים +he 0.000 ימים +he 0.001 ימים +he 0.002 ימים +he 0.003 ימים +he 0.01 ימים +he 0.010 ימים +he 0.011 ימים +he 0.012 ימים +he 0.02 ימים +he 0.03 ימים +he 0.1 ימים +he 0.10 ימים +he 0.11 ימים +he 0.12 ימים +he 0.2 ימים +he 0.3 ימים +he 1.0 ימים +he 1.00 ימים +he 1.000 ימים +he 1.002 ימים +he 1.003 ימים +he 1.010 ימים +he 1.011 ימים +he 1.012 ימים +he 1.02 ימים +he 1.03 ימים +he 1.10 ימים +he 1.11 ימים +he 1.12 ימים +he 1.2 ימים +he 1.3 ימים +he 2.0 ימים +he 2.00 ימים +he 2.000 ימים +he 2.001 ימים +he 2.003 ימים +he 2.01 ימים +he 2.010 ימים +he 2.011 ימים +he 2.012 ימים +he 2.03 ימים +he 2.1 ימים +he 2.10 ימים +he 2.11 ימים +he 2.12 ימים +he 2.3 ימים +he 3.0 ימים +he 3.00 ימים +he 3.000 ימים +he 3.001 ימים +he 3.002 ימים +he 3.01 ימים +he 3.010 ימים +he 3.02 ימים +he 3.1 ימים +he 3.10 ימים +he 3.2 ימים +he 10.0 ימים +he 10.00 ימים +he 10.000 ימים +he 10.001 ימים +he 10.002 ימים +he 10.003 ימים +he 10.01 ימים +he 10.011 ימים +he 10.012 ימים +he 10.02 ימים +he 10.03 ימים +he 10.1 ימים +he 10.11 ימים +he 10.12 ימים +he 10.2 ימים +he 10.3 ימים +hi 0.0 घंटा +hi 0.00 घंटा +hi 1.0 घंटा +hi 0.001 घंटा +hi 0.002 घंटा +hi 0.01 घंटा +hi 0.010 घंटा +hi 0.011 घंटा +hi 0.02 घंटा +hi 0.1 घंटा +hi 0.10 घंटा +hi 0.11 घंटा +hi 0.2 घंटा +hi 1.0 घंटा +hi 1.0 घंटा +hi 1.0 घंटा +hi 1.002 घंटे +hi 1.010 घंटे +hi 1.011 घंटे +hi 1.02 घंटे +hi 1.10 घंटे +hi 1.11 घंटे +hi 1.2 घंटे +hi 2 घंटे +hi 2.0 घंटे +hi 2.00 घंटे +hi 2.000 घंटे +hi 2.001 घंटे +hi 2.01 घंटे +hi 2.1 घंटे +hr za sljedeći broj mjeseci: 0.0 +hr za sljedeći broj mjeseci: 0.00 +hr za sljedeći broj mjeseci: 0.000 +hr za sljedeći broj mjeseci: 0.001 +hr za sljedeći broj mjeseci: 0.002 +hr za sljedeći broj mjeseci: 0.005 +hr za sljedeći broj mjeseci: 0.01 +hr za sljedeći broj mjeseci: 0.010 +hr za sljedeći broj mjeseci: 0.011 +hr za sljedeći broj mjeseci: 0.012 +hr za sljedeći broj mjeseci: 0.02 +hr za sljedeći broj mjeseci: 0.05 +hr za sljedeći broj mjeseci: 0.1 +hr za sljedeći broj mjeseci: 0.10 +hr za sljedeći broj mjeseci: 0.11 +hr za sljedeći broj mjeseci: 0.12 +hr za sljedeći broj mjeseci: 0.2 +hr za sljedeći broj mjeseci: 0.5 +hr za sljedeći broj mjeseci: 0.5 +hr za sljedeći broj mjeseci: 1.0 +hr za sljedeći broj mjeseci: 1.00 +hr za sljedeći broj mjeseci: 1.000 +hr za sljedeći broj mjeseci: 1.002 +hr za sljedeći broj mjeseci: 1.005 +hr za sljedeći broj mjeseci: 1.010 +hr za sljedeći broj mjeseci: 1.011 +hr za sljedeći broj mjeseci: 1.012 +hr za sljedeći broj mjeseci: 1.02 +hr za sljedeći broj mjeseci: 1.05 +hr za sljedeći broj mjeseci: 1.10 +hr za sljedeći broj mjeseci: 1.11 +hr za sljedeći broj mjeseci: 1.12 +hr za sljedeći broj mjeseci: 1.2 +hr za sljedeći broj mjeseci: 1.5 +hr za sljedeći broj mjeseci: 2.0 +hr za sljedeći broj mjeseci: 2.00 +hr za sljedeći broj mjeseci: 2.000 +hr za sljedeći broj mjeseci: 2.001 +hr za sljedeći broj mjeseci: 2.005 +hr za sljedeći broj mjeseci: 2.01 +hr za sljedeći broj mjeseci: 2.010 +hr za sljedeći broj mjeseci: 2.011 +hr za sljedeći broj mjeseci: 2.012 +hr za sljedeći broj mjeseci: 2.05 +hr za sljedeći broj mjeseci: 2.1 +hr za sljedeći broj mjeseci: 2.10 +hr za sljedeći broj mjeseci: 2.11 +hr za sljedeći broj mjeseci: 2.12 +hr za sljedeći broj mjeseci: 2.5 +hr za sljedeći broj mjeseci: 5.0 +hr za sljedeći broj mjeseci: 5.00 +hr za sljedeći broj mjeseci: 5.000 +hr za sljedeći broj mjeseci: 5.001 +hr za sljedeći broj mjeseci: 5.002 +hr za sljedeći broj mjeseci: 5.01 +hr za sljedeći broj mjeseci: 5.02 +hr za sljedeći broj mjeseci: 5.1 +hr za sljedeći broj mjeseci: 5.2 +hu 0 nap +hu 0.0 nap +hu 0.00 nap +hu 0.000 nap +hu 0.001 nap +hu 0.01 nap +hu 0.010 nap +hu 0.1 nap +hu 0.10 nap +hu 1.0 nap +hu 1.00 nap +hu 1.000 nap +hy 0 օր +hy 0 օր +hy 0 օր +hy 0 օր +hy 0.001 օր +hy 0.002 օր +hy 0.003 օր +hy 0.01 օր +hy 0.01 օր +hy 0.011 օր +hy 0.012 օր +hy 0.013 օր +hy 0.02 օր +hy 0.02 օր +hy 0.03 օր +hy 0.1 օր +hy 0.1 օր +hy 0.1 օր +hy 0.101 օր +hy 0.102 օր +hy 0.11 օր +hy 0.12 օր +hy 0.13 օր +hy 0.2 օր +hy 0.2 օր +hy 0.3 օր +hy 1 օր +hy 1 օր +hy 1 օր +hy 1.002 օր +hy 1.003 օր +hy 1.01 օր +hy 1.011 օր +hy 1.012 օր +hy 1.013 օր +hy 1.02 օր +hy 1.02 օր +hy 1.03 օր +hy 1.1 օր +hy 1.1 օր +hy 1.101 օր +hy 1.102 օր +hy 1.11 օր +hy 1.12 օր +hy 1.13 օր +hy 1.2 օր +hy 1.2 օր +hy 1.3 օր +hy 2 օր +hy 2 օր +hy 2 օր +hy 2.001 օր +hy 2.003 օր +hy 2.01 օր +hy 2.01 օր +hy 2.011 օր +hy 2.012 օր +hy 2.013 օր +hy 2.02 օր +hy 2.03 օր +hy 2.1 օր +hy 2.1 օր +hy 2.1 օր +hy 2.101 օր +hy 2.102 օր +hy 2.11 օր +hy 2.12 օր +hy 2.13 օր +hy 2.2 օր +hy 2.3 օր +hy 3 օր +hy 3 օր +hy 3 օր +hy 3.001 օր +hy 3.002 օր +hy 3.01 օր +hy 3.011 օր +hy 3.012 օր +hy 3.013 օր +hy 3.02 օր +hy 3.02 օր +hy 3.1 օր +hy 3.1 օր +hy 3.101 օր +hy 3.102 օր +hy 3.11 օր +hy 3.12 օր +hy 3.13 օր +hy 3.2 օր +hy 3.2 օր +hy 11 օր +hy 11 օր +hy 11 օր +hy 11.001 օր +hy 11.002 օր +hy 11.003 օր +hy 11.01 օր +hy 11.01 օր +hy 11.02 օր +hy 11.03 օր +hy 11.1 օր +hy 11.1 օր +hy 11.1 օր +hy 11.101 օր +hy 11.102 օր +hy 11.2 օր +hy 11.3 օր +hy 100 օր +hy 100 օր +hy 100 օր +hy 100.001 օր +hy 100.002 օր +hy 100.003 օր +hy 100.01 օր +hy 100.01 օր +hy 100.011 օր +hy 100.012 օր +hy 100.013 օր +hy 100.02 օր +hy 100.02 օր +hy 100.03 օր +hy 100.1 օր +hy 100.1 օր +hy 100.11 օր +hy 100.12 օր +hy 100.13 օր +hy 100.2 օր +hy 100.2 օր +hy 100.3 օր +id 0 hari +id 0.0 hari +id 0.00 hari +id 0.000 hari +id 0.001 hari +id 0.01 hari +id 0.010 hari +id 0.1 hari +id 0.10 hari +id 1.0 hari +id 1.00 hari +id 1.000 hari +is 0 dagar +is 0.0 dagar +is 0.00 dagar +is 0.000 dagar +is 0.001 dagur +is 0.002 dagar +is 0.01 dagur +is 0.010 dagar +is 0.011 dagar +is 0.02 dagar +is 0.1 dagur +is 0.10 dagar +is 0.11 dagar +is 0.2 dagar +is 1.0 dagar +is 1.00 dagar +is 1.000 dagar +is 1.002 dagar +is 1.010 dagar +is 1.011 dagar +is 1.02 dagar +is 1.10 dagar +is 1.11 dagar +is 1.2 dagar +is 2.0 dagar +is 2.00 dagar +is 2.000 dagar +is 2.001 dagur +is 2.01 dagur +is 2.1 dagur +it 0 giorni +it 0.0 giorni +it 0.00 giorni +it 0.000 giorni +it 0.001 giorni +it 0.002 giorni +it 0.01 giorni +it 0.010 giorni +it 0.011 giorni +it 0.02 giorni +it 0.1 giorni +it 0.10 giorni +it 0.11 giorni +it 0.2 giorni +it 1.0 giorni +it 1.00 giorni +it 1.000 giorni +it 1.002 giorni +it 1.010 giorni +it 1.011 giorni +it 1.02 giorni +it 1.10 giorni +it 1.11 giorni +it 1.2 giorni +it 2.0 giorni +it 2.00 giorni +it 2.000 giorni +it 2.001 giorni +it 2.01 giorni +it 2.1 giorni +ja 0日 +ja 0.0日 +ja 0.00日 +ja 0.000日 +ja 0.001日 +ja 0.01日 +ja 0.010日 +ja 0.1日 +ja 0.10日 +ja 1.0日 +ja 1.00日 +ja 1.000日 +km 0 ថ្ងៃ +km 0.0 ថ្ងៃ +km 0.00 ថ្ងៃ +km 0.000 ថ្ងៃ +km 0.001 ថ្ងៃ +km 0.01 ថ្ងៃ +km 0.010 ថ្ងៃ +km 0.1 ថ្ងៃ +km 0.10 ថ្ងៃ +km 1.0 ថ្ងៃ +km 1.00 ថ្ងៃ +km 1.000 ថ្ងៃ +kn 0 ದಿನಗಳು +kn 0.0 ದಿನಗಳು +kn 0.00 ದಿನಗಳು +kn 0.000 ದಿನಗಳು +kn 0.001 ದಿನಗಳು +kn 0.01 ದಿನಗಳು +kn 0.010 ದಿನಗಳು +kn 0.1 ದಿನಗಳು +kn 0.10 ದಿನಗಳು +kn 1.0 ದಿನಗಳು +kn 1.00 ದಿನಗಳು +kn 1.000 ದಿನಗಳು +ko 0일 +ko 0.0일 +ko 0.00일 +ko 0.000일 +ko 0.001일 +ko 0.01일 +ko 0.010일 +ko 0.1일 +ko 0.10일 +ko 1.0일 +ko 1.00일 +ko 1.000일 +lo 0 ມື້ +lo 0.0 ມື້ +lo 0.00 ມື້ +lo 0.000 ມື້ +lo 0.001 ມື້ +lo 0.01 ມື້ +lo 0.010 ມື້ +lo 0.1 ມື້ +lo 0.10 ມື້ +lo 1.0 ມື້ +lo 1.00 ມື້ +lo 1.000 ມື້ +lt 0 dienų +lt 0.0 dienų +lt 0.00 dienų +lt 0.000 dienų +lt 0.001 dienos +lt 0.002 dienos +lt 0.01 dienos +lt 0.010 dienos +lt 0.011 dienos +lt 0.012 dienos +lt 0.02 dienos +lt 0.1 dienos +lt 0.10 dienos +lt 0.11 dienos +lt 0.12 dienos +lt 0.2 dienos +lt 1.0 diena +lt 1.00 diena +lt 1.000 diena +lt 1.002 dienos +lt 1.010 dienos +lt 1.011 dienos +lt 1.012 dienos +lt 1.02 dienos +lt 1.10 dienos +lt 1.11 dienos +lt 1.12 dienos +lt 1.2 dienos +lt 2.0 dienos +lt 2.00 dienos +lt 2.000 dienos +lt 2.001 dienos +lt 2.01 dienos +lt 2.010 dienos +lt 2.011 dienos +lt 2.012 dienos +lt 2.1 dienos +lt 2.10 dienos +lt 2.11 dienos +lt 2.12 dienos +lt 10.0 dienų +lt 10.00 dienų +lt 10.000 dienų +lt 10.001 dienos +lt 10.002 dienos +lt 10.01 dienos +lt 10.02 dienos +lt 10.1 dienos +lt 10.2 dienos +lv 0 diennaktis +lv 0.0 diennaktis +lv 0.00 diennaktis +lv 0.000 diennaktis +lv 0.001 diennakts +lv 0.002 diennaktis +lv 0.01 diennakts +lv 0.010 diennaktis +lv 0.011 diennaktis +lv 0.02 diennaktis +lv 0.1 diennakts +lv 0.10 diennaktis +lv 0.11 diennaktis +lv 0.2 diennaktis +lv 1.0 diennakts +lv 1.00 diennakts +lv 1.000 diennakts +lv 1.002 diennaktis +lv 1.010 diennaktis +lv 1.011 diennaktis +lv 1.02 diennaktis +lv 1.10 diennaktis +lv 1.11 diennaktis +lv 1.2 diennaktis +lv 2.0 diennaktis +lv 2.00 diennaktis +lv 2.000 diennaktis +lv 2.001 diennakts +lv 2.01 diennakts +lv 2.1 diennakts +ml 0.0 വ്യക്തികൾ +ml 0.00 വ്യക്തികൾ +ml 0.000 വ്യക്തികൾ +ml 0.001 വ്യക്തികൾ +ml 0.002 വ്യക്തികൾ +ml 0.01 വ്യക്തികൾ +ml 0.010 വ്യക്തികൾ +ml 0.011 വ്യക്തികൾ +ml 0.02 വ്യക്തികൾ +ml 0.1 വ്യക്തികൾ +ml 0.10 വ്യക്തികൾ +ml 0.11 വ്യക്തികൾ +ml 0.2 വ്യക്തികൾ +ml 1.0 വ്യക്തി +ml 1.00 വ്യക്തി +ml 1.000 വ്യക്തി +ml 1.002 വ്യക്തികൾ +ml 1.010 വ്യക്തികൾ +ml 1.011 വ്യക്തികൾ +ml 1.02 വ്യക്തികൾ +ml 1.10 വ്യക്തികൾ +ml 1.11 വ്യക്തികൾ +ml 1.2 വ്യക്തികൾ +ml 2 വ്യക്തികൾ +ml 2.0 വ്യക്തികൾ +ml 2.00 വ്യക്തികൾ +ml 2.000 വ്യക്തികൾ +ml 2.001 വ്യക്തികൾ +ml 2.01 വ്യക്തികൾ +ml 2.1 വ്യക്തികൾ +mr 0 घरे +mr 0.0 घरे +mr 0.00 घरे +mr 0.000 घरे +mr 0.001 घरे +mr 0.002 घरे +mr 0.01 घरे +mr 0.010 घरे +mr 0.011 घरे +mr 0.02 घरे +mr 0.1 घरे +mr 0.10 घरे +mr 0.11 घरे +mr 0.2 घरे +mr 1.0 घर +mr 1.00 घर +mr 1.000 घर +mr 1.002 घरे +mr 1.010 घरे +mr 1.011 घरे +mr 1.02 घरे +mr 1.10 घरे +mr 1.11 घरे +mr 1.2 घरे +mr 2.0 घरे +mr 2.00 घरे +mr 2.000 घरे +mr 2.001 घरे +mr 2.01 घरे +mr 2.1 घरे +ms 0 hari +ms 0.0 hari +ms 0.00 hari +ms 0.000 hari +ms 0.001 hari +ms 0.01 hari +ms 0.010 hari +ms 0.1 hari +ms 0.10 hari +ms 1.0 hari +ms 1.00 hari +ms 1.000 hari +nb 0 dager +nb 0.0 dager +nb 0.00 dager +nb 0.000 dager +nb 0.001 dager +nb 0.002 dager +nb 0.01 dager +nb 0.010 dager +nb 0.011 dager +nb 0.02 dager +nb 0.1 dager +nb 0.10 dager +nb 0.11 dager +nb 0.2 dager +nb 1.0 dag +nb 1.00 dag +nb 1.000 dag +nb 1.002 dager +nb 1.010 dager +nb 1.011 dager +nb 1.02 dager +nb 1.10 dager +nb 1.11 dager +nb 1.2 dager +nb 2.0 dager +nb 2.00 dager +nb 2.000 dager +nb 2.001 dager +nb 2.01 dager +nb 2.1 dager +ne तपाईंसँग 0.0 निमन्त्रणा छ +ne तपाईंसँग 0.00 निमन्त्रणा छ +ne तपाईंसँग 0.000 निमन्त्रणा छ +ne तपाईंसँग 0.001 निमन्त्रणा छ +ne तपाईंसँग 0.002 निमन्त्रणा छ +ne तपाईंसँग 0.01 निमन्त्रणा छ +ne तपाईंसँग 0.010 निमन्त्रणा छ +ne तपाईंसँग 0.011 निमन्त्रणा छ +ne तपाईंसँग 0.02 निमन्त्रणा छ +ne तपाईंसँग 0.1 निमन्त्रणा छ +ne तपाईंसँग 0.10 निमन्त्रणा छ +ne तपाईंसँग 0.11 निमन्त्रणा छ +ne तपाईंसँग 0.2 निमन्त्रणा छ +ne तपाईंसँग 1.0 निमन्त्रणा छ +ne तपाईंसँग 1.00 निमन्त्रणा छ +ne तपाईंसँग 1.000 निमन्त्रणा छ +ne तपाईँसँग 1.002 निमन्त्रणाहरू छन् +ne तपाईँसँग 1.010 निमन्त्रणाहरू छन् +ne तपाईँसँग 1.011 निमन्त्रणाहरू छन् +ne तपाईँसँग 1.02 निमन्त्रणाहरू छन् +ne तपाईँसँग 1.10 निमन्त्रणाहरू छन् +ne तपाईँसँग 1.11 निमन्त्रणाहरू छन् +ne तपाईँसँग 1.2 निमन्त्रणाहरू छन् +ne तपाईँसँग 2 निमन्त्रणाहरू छन् +ne तपाईँसँग 2.0 निमन्त्रणाहरू छन् +ne तपाईँसँग 2.00 निमन्त्रणाहरू छन् +ne तपाईँसँग 2.000 निमन्त्रणाहरू छन् +ne तपाईँसँग 2.001 निमन्त्रणाहरू छन् +ne तपाईँसँग 2.01 निमन्त्रणाहरू छन् +ne तपाईँसँग 2.1 निमन्त्रणाहरू छन् +ne 2 दिन बाँकी छ । +ne 1 दिन बाँकी छ । +ne 0 दिन बाँकी छ । +ne 2 जनाहरू पाहुना बाँकी छ । +ne 1 जना पाहुना बाँकी छ । +ne 0 जना पाहुना बाँकी छ । +nl 0 dagen +nl 0.0 dagen +nl 0.00 dagen +nl 0.000 dagen +nl 0.001 dagen +nl 0.002 dagen +nl 0.01 dagen +nl 0.010 dagen +nl 0.011 dagen +nl 0.02 dagen +nl 0.1 dagen +nl 0.10 dagen +nl 0.11 dagen +nl 0.2 dagen +nl 1.0 dagen +nl 1.00 dagen +nl 1.000 dagen +nl 1.002 dagen +nl 1.010 dagen +nl 1.011 dagen +nl 1.02 dagen +nl 1.10 dagen +nl 1.11 dagen +nl 1.2 dagen +nl 2.0 dagen +nl 2.00 dagen +nl 2.000 dagen +nl 2.001 dagen +nl 2.01 dagen +nl 2.1 dagen +pl 0.0 miesiąca +pl 0.00 miesiąca +pl 0.000 miesiąca +pl 0.001 miesiąca +pl 0.002 miesiąca +pl 0.005 miesiąca +pl 0.01 miesiąca +pl 0.010 miesiąca +pl 0.011 miesiąca +pl 0.012 miesiąca +pl 0.02 miesiąca +pl 0.05 miesiąca +pl 0.1 miesiąca +pl 0.10 miesiąca +pl 0.11 miesiąca +pl 0.12 miesiąca +pl 0.2 miesiąca +pl 0.5 miesiąca +pl 0.5 miesiąca +pl 1.0 miesiąca +pl 1.00 miesiąca +pl 1.000 miesiąca +pl 1.002 miesiąca +pl 1.005 miesiąca +pl 1.010 miesiąca +pl 1.011 miesiąca +pl 1.012 miesiąca +pl 1.02 miesiąca +pl 1.05 miesiąca +pl 1.10 miesiąca +pl 1.11 miesiąca +pl 1.12 miesiąca +pl 1.2 miesiąca +pl 1.5 miesiąca +pl 2.0 miesiąca +pl 2.00 miesiąca +pl 2.000 miesiąca +pl 2.001 miesiąca +pl 2.005 miesiąca +pl 2.01 miesiąca +pl 2.010 miesiąca +pl 2.011 miesiąca +pl 2.012 miesiąca +pl 2.05 miesiąca +pl 2.1 miesiąca +pl 2.10 miesiąca +pl 2.11 miesiąca +pl 2.12 miesiąca +pl 2.5 miesiąca +pl 5.0 miesiąca +pl 5.00 miesiąca +pl 5.000 miesiąca +pl 5.001 miesiąca +pl 5.002 miesiąca +pl 5.01 miesiąca +pl 5.02 miesiąca +pl 5.1 miesiąca +pl 5.2 miesiąca +pt 0 dias +pt 0.0 dias +pt 0.00 dias +pt 0.000 dias +pt 0.001 dias +pt 0.002 dias +pt 0.01 dias +pt 0.010 dias +pt 0.011 dias +pt 0.02 dias +pt 0.1 dias +pt 0.10 dias +pt 0.11 dias +pt 0.2 dias +pt 1.0 dias +pt 1.00 dias +pt 1.000 dias +pt 1.002 dias +pt 1.010 dias +pt 1.011 dias +pt 1.02 dias +pt 1.10 dias +pt 1.11 dias +pt 1.2 dias +pt 2.0 dias +pt 2.00 dias +pt 2.000 dias +pt 2.001 dias +pt 2.01 dias +pt 2.1 dias +pt_PT 0 dias +pt_PT 0.0 dias +pt_PT 0.00 dias +pt_PT 0.000 dias +pt_PT 0.001 dias +pt_PT 0.002 dias +pt_PT 0.01 dias +pt_PT 0.010 dias +pt_PT 0.011 dias +pt_PT 0.02 dias +pt_PT 0.1 dias +pt_PT 0.10 dias +pt_PT 0.11 dias +pt_PT 0.2 dias +pt_PT 1.0 dias +pt_PT 1.00 dias +pt_PT 1.000 dias +pt_PT 1.002 dias +pt_PT 1.010 dias +pt_PT 1.011 dias +pt_PT 1.02 dias +pt_PT 1.10 dias +pt_PT 1.11 dias +pt_PT 1.2 dias +pt_PT 2.0 dias +pt_PT 2.00 dias +pt_PT 2.000 dias +pt_PT 2.001 dias +pt_PT 2.01 dias +pt_PT 2.1 dias +ro 0.0 zile +ro 0.00 zile +ro 0.000 zile +ro 0.001 zile +ro 0.002 zile +ro 0.01 zile +ro 0.010 zile +ro 0.011 zile +ro 0.02 zile +ro 0.020 zile +ro 0.021 zile +ro 0.022 zile +ro 0.1 zile +ro 0.10 zile +ro 0.11 zile +ro 0.2 zile +ro 0.20 zile +ro 0.21 zile +ro 0.22 zile +ro 1.0 zile +ro 1.00 zile +ro 1.000 zile +ro 1.002 zile +ro 1.010 zile +ro 1.011 zile +ro 1.02 zile +ro 1.020 zile +ro 1.021 zile +ro 1.022 zile +ro 1.10 zile +ro 1.11 zile +ro 1.2 zile +ro 1.20 zile +ro 1.21 zile +ro 1.22 zile +ro 2.0 zile +ro 2.00 zile +ro 2.000 zile +ro 2.001 zile +ro 2.01 zile +ro 2.020 zile +ro 2.021 zile +ro 2.022 zile +ro 2.1 zile +ro 2.20 zile +ro 2.21 zile +ro 2.22 zile +ro 20 de zile +ro 20.0 zile +ro 20.00 zile +ro 20.000 zile +ro 20.001 zile +ro 20.002 zile +ro 20.01 zile +ro 20.010 zile +ro 20.011 zile +ro 20.02 zile +ro 20.1 zile +ro 20.10 zile +ro 20.11 zile +ro 20.2 zile +ru 0.0 года +ru 0.00 года +ru 0.000 года +ru 0.001 года +ru 0.002 года +ru 0.005 года +ru 0.01 года +ru 0.010 года +ru 0.011 года +ru 0.012 года +ru 0.02 года +ru 0.05 года +ru 0.1 года +ru 0.10 года +ru 0.11 года +ru 0.12 года +ru 0.2 года +ru 0.5 года +ru 0.5 года +ru 1.0 года +ru 1.00 года +ru 1.000 года +ru 1.002 года +ru 1.005 года +ru 1.010 года +ru 1.011 года +ru 1.012 года +ru 1.02 года +ru 1.05 года +ru 1.10 года +ru 1.11 года +ru 1.12 года +ru 1.2 года +ru 1.5 года +ru 2.0 года +ru 2.00 года +ru 2.000 года +ru 2.001 года +ru 2.005 года +ru 2.01 года +ru 2.010 года +ru 2.011 года +ru 2.012 года +ru 2.05 года +ru 2.1 года +ru 2.10 года +ru 2.11 года +ru 2.12 года +ru 2.5 года +ru 5.0 года +ru 5.00 года +ru 5.000 года +ru 5.001 года +ru 5.002 года +ru 5.01 года +ru 5.02 года +ru 5.1 года +ru 5.2 года +si දින 0ක් +si දින 0.0ක් +si දින 0.00ක් +si දින 0.000ක් +si දින 0.001ක් +si දින 0.01ක් +si දින 0.010ක් +si දින 0.1ක් +si දින 0.10ක් +si දින 1.0ක් +si දින 1.00ක් +si දින 1.000ක් +sk 0 dní +sk 0.0 dňa +sk 0.00 dňa +sk 0.000 dňa +sk 0.001 dňa +sk 0.002 dňa +sk 0.005 dňa +sk 0.01 dňa +sk 0.010 dňa +sk 0.011 dňa +sk 0.012 dňa +sk 0.02 dňa +sk 0.05 dňa +sk 0.1 dňa +sk 0.10 dňa +sk 0.11 dňa +sk 0.12 dňa +sk 0.2 dňa +sk 0.5 dňa +sk 1.0 dňa +sk 1.00 dňa +sk 1.000 dňa +sk 1.002 dňa +sk 1.005 dňa +sk 1.010 dňa +sk 1.011 dňa +sk 1.012 dňa +sk 1.02 dňa +sk 1.05 dňa +sk 1.10 dňa +sk 1.11 dňa +sk 1.12 dňa +sk 1.2 dňa +sk 1.5 dňa +sk 2.0 dňa +sk 2.00 dňa +sk 2.000 dňa +sk 2.001 dňa +sk 2.005 dňa +sk 2.01 dňa +sk 2.010 dňa +sk 2.011 dňa +sk 2.012 dňa +sk 2.05 dňa +sk 2.1 dňa +sk 2.10 dňa +sk 2.11 dňa +sk 2.12 dňa +sk 2.5 dňa +sk 5.0 dňa +sk 5.00 dňa +sk 5.000 dňa +sk 5.001 dňa +sk 5.002 dňa +sk 5.01 dňa +sk 5.02 dňa +sk 5.1 dňa +sk 5.2 dňa +sl 0.0 ure +sl 0.00 ure +sl 0.000 ure +sl 0.001 ure +sl 0.002 ure +sl 0.003 ure +sl 0.005 ure +sl 0.01 ure +sl 0.010 ure +sl 0.011 ure +sl 0.012 ure +sl 0.013 ure +sl 0.02 ure +sl 0.03 ure +sl 0.05 ure +sl 0.1 ure +sl 0.10 ure +sl 0.11 ure +sl 0.12 ure +sl 0.13 ure +sl 0.2 ure +sl 0.3 ure +sl 0.5 ure +sl 1.0 ure +sl 1.00 ure +sl 1.000 ure +sl 1.002 ure +sl 1.003 ure +sl 1.005 ure +sl 1.010 ure +sl 1.011 ure +sl 1.012 ure +sl 1.013 ure +sl 1.02 ure +sl 1.03 ure +sl 1.05 ure +sl 1.10 ure +sl 1.11 ure +sl 1.12 ure +sl 1.13 ure +sl 1.2 ure +sl 1.3 ure +sl 1.5 ure +sl 2 uri +sl 2.0 ure +sl 2.00 ure +sl 2.000 ure +sl 2.001 ure +sl 2.003 ure +sl 2.005 ure +sl 2.01 ure +sl 2.010 ure +sl 2.011 ure +sl 2.012 ure +sl 2.013 ure +sl 2.03 ure +sl 2.05 ure +sl 2.1 ure +sl 2.10 ure +sl 2.11 ure +sl 2.12 ure +sl 2.13 ure +sl 2.3 ure +sl 2.5 ure +sl 3.0 ure +sl 3.00 ure +sl 3.000 ure +sl 3.001 ure +sl 3.002 ure +sl 3.005 ure +sl 3.01 ure +sl 3.010 ure +sl 3.011 ure +sl 3.012 ure +sl 3.013 ure +sl 3.02 ure +sl 3.05 ure +sl 3.1 ure +sl 3.10 ure +sl 3.11 ure +sl 3.12 ure +sl 3.13 ure +sl 3.2 ure +sl 3.5 ure +sl 5.0 ure +sl 5.00 ure +sl 5.000 ure +sl 5.001 ure +sl 5.002 ure +sl 5.003 ure +sl 5.01 ure +sl 5.02 ure +sl 5.03 ure +sl 5.1 ure +sl 5.2 ure +sl 5.3 ure +sr 0.0 сати +sr 0.00 сати +sr 0.000 сати +sr 0.001 сат +sr 0.002 сата +sr 0.005 сати +sr 0.01 сат +sr 0.010 сати +sr 0.011 сати +sr 0.012 сати +sr 0.02 сата +sr 0.05 сати +sr 0.1 сат +sr 0.10 сати +sr 0.11 сати +sr 0.12 сати +sr 0.2 сата +sr 0.5 сати +sr 0.5 сати +sr 1.0 сати +sr 1.00 сати +sr 1.000 сати +sr 1.002 сатa +sr 1.005 сати +sr 1.010 сати +sr 1.011 сати +sr 1.012 сати +sr 1.02 сата +sr 1.05 сати +sr 1.10 сати +sr 1.11 сати +sr 1.12 сати +sr 1.2 сата +sr 1.5 сати +sr 2.0 сати +sr 2.00 сати +sr 2.000 сати +sr 2.001 сат +sr 2.005 сати +sr 2.01 сат +sr 2.010 сати +sr 2.011 сати +sr 2.012 сати +sr 2.05 сати +sr 2.1 сат +sr 2.10 сати +sr 2.11 сати +sr 2.12 сати +sr 2.5 сати +sr 5.0 сати +sr 5.00 сати +sr 5.000 сати +sr 5.001 сат +sr 5.002 сата +sr 5.01 сат +sr 5.02 сата +sr 5.1 сат +sr 5.2 сата +sv om 0 dagar +sv om 0.0 dagar +sv om 0.00 dagar +sv om 0.000 dagar +sv om 0.001 dagar +sv om 0.002 dagar +sv om 0.01 dagar +sv om 0.010 dagar +sv om 0.011 dagar +sv om 0.02 dagar +sv om 0.1 dagar +sv om 0.10 dagar +sv om 0.11 dagar +sv om 0.2 dagar +sv om 1.0 dagar +sv om 1.00 dagar +sv om 1.000 dagar +sv om 1.002 dagar +sv om 1.010 dagar +sv om 1.011 dagar +sv om 1.02 dagar +sv om 1.10 dagar +sv om 1.11 dagar +sv om 1.2 dagar +sv om 2.0 dagar +sv om 2.00 dagar +sv om 2.000 dagar +sv om 2.001 dagar +sv om 2.01 dagar +sv om 2.1 dagar +sw siku 0 zilizopita +sw siku 0.0 zilizopita +sw siku 0.00 zilizopita +sw siku 0.000 zilizopita +sw siku 0.001 zilizopita +sw siku 0.002 zilizopita +sw siku 0.01 zilizopita +sw siku 0.010 zilizopita +sw siku 0.011 zilizopita +sw siku 0.02 zilizopita +sw siku 0.1 zilizopita +sw siku 0.10 zilizopita +sw siku 0.11 zilizopita +sw siku 0.2 zilizopita +sw siku 1.0 zilizopita +sw siku 1.00 zilizopita +sw siku 1.000 zilizopita +sw siku 1.002 zilizopita +sw siku 1.010 zilizopita +sw siku 1.011 zilizopita +sw siku 1.02 zilizopita +sw siku 1.10 zilizopita +sw siku 1.11 zilizopita +sw siku 1.2 zilizopita +sw siku 2.0 zilizopita +sw siku 2.00 zilizopita +sw siku 2.000 zilizopita +sw siku 2.001 zilizopita +sw siku 2.01 zilizopita +sw siku 2.1 zilizopita +ta 0 நாட்கள் +ta 0.0 நாட்கள் +ta 0.00 நாட்கள் +ta 0.000 நாட்கள் +ta 0.001 நாட்கள் +ta 0.002 நாட்கள் +ta 0.01 நாட்கள் +ta 0.010 நாட்கள் +ta 0.011 நாட்கள் +ta 0.02 நாட்கள் +ta 0.1 நாட்கள் +ta 0.10 நாட்கள் +ta 0.11 நாட்கள் +ta 0.2 நாட்கள் +ta 1.0 நாட்கள் +ta 1.00 நாட்கள் +ta 1.000 நாட்கள் +ta 1.002 நாட்கள் +ta 1.010 நாட்கள் +ta 1.011 நாட்கள் +ta 1.02 நாட்கள் +ta 1.10 நாட்கள் +ta 1.11 நாட்கள் +ta 1.2 நாட்கள் +ta 2.0 நாட்கள் +ta 2.00 நாட்கள் +ta 2.000 நாட்கள் +ta 2.001 நாட்கள் +ta 2.01 நாட்கள் +ta 2.1 நாட்கள் +te 0 రోజులు +te 0.0 రోజులు +te 0.00 రోజులు +te 0.000 రోజులు +te 0.001 రోజులు +te 0.002 రోజులు +te 0.01 రోజులు +te 0.010 రోజులు +te 0.011 రోజులు +te 0.02 రోజులు +te 0.1 రోజులు +te 0.10 రోజులు +te 0.11 రోజులు +te 0.2 రోజులు +te 1.0 రోజులు +te 1.00 రోజులు +te 1.000 రోజులు +te 1.002 రోజులు +te 1.010 రోజులు +te 1.011 రోజులు +te 1.02 రోజులు +te 1.10 రోజులు +te 1.11 రోజులు +te 1.2 రోజులు +te 2.0 రోజులు +te 2.00 రోజులు +te 2.000 రోజులు +te 2.001 రోజులు +te 2.01 రోజులు +te 2.1 రోజులు +th 0 วัน +th 0.0 วัน +th 0.00 วัน +th 0.000 วัน +th 0.001 วัน +th 0.01 วัน +th 0.010 วัน +th 0.1 วัน +th 0.10 วัน +th 1.0 วัน +th 1.00 วัน +th 1.000 วัน +tr 0 gün +tr 0.0 gün +tr 0.00 gün +tr 0.000 gün +tr 0.001 gün +tr 0.01 gün +tr 0.010 gün +tr 0.1 gün +tr 0.10 gün +tr 1.0 gün +tr 1.00 gün +tr 1.000 gün +uk 0.0 дня +uk 0.00 дня +uk 0.000 дня +uk 0.001 дня +uk 0.002 дня +uk 0.005 дня +uk 0.01 дня +uk 0.010 дня +uk 0.011 дня +uk 0.012 дня +uk 0.02 дня +uk 0.05 дня +uk 0.1 дня +uk 0.10 дня +uk 0.11 дня +uk 0.12 дня +uk 0.2 дня +uk 0.5 дня +uk 0.5 дня +uk 1.0 дня +uk 1.00 дня +uk 1.000 дня +uk 1.002 дня +uk 1.005 дня +uk 1.010 дня +uk 1.011 дня +uk 1.012 дня +uk 1.02 дня +uk 1.05 дня +uk 1.10 дня +uk 1.11 дня +uk 1.12 дня +uk 1.2 дня +uk 1.5 дня +uk 2.0 дня +uk 2.00 дня +uk 2.000 дня +uk 2.001 дня +uk 2.005 дня +uk 2.01 дня +uk 2.010 дня +uk 2.011 дня +uk 2.012 дня +uk 2.05 дня +uk 2.1 дня +uk 2.10 дня +uk 2.11 дня +uk 2.12 дня +uk 2.5 дня +uk 5.0 дня +uk 5.00 дня +uk 5.000 дня +uk 5.001 дня +uk 5.002 дня +uk 5.01 дня +uk 5.02 дня +uk 5.1 дня +uk 5.2 дня +ur 0 گھنٹے +ur 0.0 گھنٹے +ur 0.00 گھنٹے +ur 0.000 گھنٹے +ur 0.001 گھنٹے +ur 0.002 گھنٹے +ur 0.01 گھنٹے +ur 0.010 گھنٹے +ur 0.011 گھنٹے +ur 0.02 گھنٹے +ur 0.1 گھنٹے +ur 0.10 گھنٹے +ur 0.11 گھنٹے +ur 0.2 گھنٹے +ur 1.0 گھنٹے +ur 1.00 گھنٹے +ur 1.000 گھنٹے +ur 1.002 گھنٹے +ur 1.010 گھنٹے +ur 1.011 گھنٹے +ur 1.02 گھنٹے +ur 1.10 گھنٹے +ur 1.11 گھنٹے +ur 1.2 گھنٹے +ur 2.0 گھنٹے +ur 2.00 گھنٹے +ur 2.000 گھنٹے +ur 2.001 گھنٹے +ur 2.01 گھنٹے +ur 2.1 گھنٹے +vi 0 ngày +vi 0.0 ngày +vi 0.00 ngày +vi 0.000 ngày +vi 0.001 ngày +vi 0.01 ngày +vi 0.010 ngày +vi 0.1 ngày +vi 0.10 ngày +vi 1.0 ngày +vi 1.00 ngày +vi 1.000 ngày +zh 0 天 +zh 0.0 天 +zh 0.00 天 +zh 0.000 天 +zh 0.001 天 +zh 0.01 天 +zh 0.010 天 +zh 0.1 天 +zh 0.10 天 +zh 1.0 天 +zh 1.00 天 +zh 1.000 天 +zh_Hant 0 日 +zh_Hant 0.0 日 +zh_Hant 0.00 日 +zh_Hant 0.000 日 +zh_Hant 0.001 日 +zh_Hant 0.01 日 +zh_Hant 0.010 日 +zh_Hant 0.1 日 +zh_Hant 0.10 日 +zh_Hant 1.0 日 +zh_Hant 1.00 日 +zh_Hant 1.000 日 +zu 0 usuku +zu 0.0 usuku +zu 0.00 usuku +zu 0.000 usuku +zu 0.001 usuku +zu 0.002 usuku +zu 0.01 usuku +zu 0.010 usuku +zu 0.011 usuku +zu 0.02 usuku +zu 0.1 usuku +zu 0.10 usuku +zu 0.11 usuku +zu 0.2 usuku +zu 1 usuku +zu 1.0 usuku +zu 1.00 usuku +zu 1.000 usuku +zu 1.002 izinsuku +zu 1.010 izinsuku +zu 1.011 izinsuku +zu 1.02 izinsuku +zu 1.10 izinsuku +zu 1.11 izinsuku +zu 1.2 izinsuku +zu 2 izinsuku +zu 2.0 izinsuku +zu 2.00 izinsuku +zu 2.000 izinsuku +zu 2.001 izinsuku +zu 2.01 izinsuku +zu 2.1 izinsuku +zu 10 izinsuku \ No newline at end of file