wip(growth): improve data parsing

1. Fetch common data for all indicators
2. Remove headers during merge

Also, re-generate files.
This commit is contained in:
João Paulo Dubas 2024-06-04 23:55:03 +00:00
parent 2fedb4ecf0
commit 9c8e1d20ee
Signed by: joao.dubas
SSH Key Fingerprint: SHA256:V1mixgOGRc/YMhGx/DNkOSmJxgA2vHNrDZEk3wt/kOA
9 changed files with 1125 additions and 1131 deletions

View File

@ -247,25 +247,47 @@ defmodule Growth.Indicators.Download do
end
end
@common_header ~w(source gender age_unit age l m s sd3neg sd2neg sd1neg sd0 sd1 sd2 sd3)
def convert([header | rows], gender, url) do
age = header |> hd() |> String.downcase()
age_unit = header |> hd() |> String.downcase()
fixed_header = header |> tl() |> Enum.map(&String.downcase/1) |> Enum.map(&String.trim/1)
parsed_header = ["source" | ["gender" | ["age_unit" | ["age" | fixed_header]]]]
# NOTE: (jpd): parsing the rows consist in:
# 1. convert row values to decimal
# 2. prepend the values url source, gender, and age unit
# 3. convert row to keyword list using the parsed header
# 4. convert from keyword list to map
# 5. fetch common values based on common headers
# 6. sort row values based on common headers
parsed_rows =
Enum.map(rows, fn row ->
parsed_row = Enum.map(row, &Decimal.new/1)
[url | [gender | [age | parsed_row]]]
rows
|> Stream.map(fn row -> Enum.map(row, &Decimal.new/1) end)
|> Stream.map(&[url | [gender | [age_unit | &1]]])
|> Stream.map(&Enum.zip(parsed_header, &1))
|> Stream.map(&Map.new/1)
|> Stream.map(&Map.take(&1, @common_header))
|> Enum.map(fn row ->
Enum.map(@common_header, fn key -> Map.get(row, key) end)
end)
[parsed_header | parsed_rows]
[@common_header | parsed_rows]
end
def merge(datum) do
Enum.reduce(datum, [], fn data, accum ->
datum
|> Stream.with_index()
|> Stream.map(fn
{data, 0} ->
data
{[_ | data], _} ->
data
end)
|> Enum.reduce([], fn data, accum ->
Enum.concat(accum, data)
end)
end

View File

@ -57,7 +57,6 @@ https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standard
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,58,-0.17330000000000001,16.753900000000002,0.092619999999999994,12.8,14,15.3,16.8,18.399999999999999,20.2,22.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,59,-0.17330000000000001,16.8034,0.093009999999999995,12.8,14,15.3,16.8,18.5,20.3,22.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,female,month,60,-0.17330000000000001,16.852599999999999,0.093410000000000007,12.8,14,15.4,16.899999999999999,18.5,20.399999999999999,22.5
source,gender,age_unit,age,l,m,s,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,3,0.39279999999999998,13.4817,0.074749999999999997,10.7,11.6,12.5,13.5,14.5,15.6,16.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,4,0.34749999999999998,13.809699999999999,0.075230000000000005,10.9,11.8,12.8,13.8,14.9,16,17.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,male,month,5,0.30919999999999997,14.0585,0.075660000000000005,11.1,12,13,14.1,15.2,16.3,17.5

1 source gender age_unit age l m s sd3neg sd2neg sd1neg sd0 sd1 sd2 sd3
57 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 58 -0.17330000000000001 16.753900000000002 0.092619999999999994 12.8 14 15.3 16.8 18.399999999999999 20.2 22.3
58 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 59 -0.17330000000000001 16.8034 0.093009999999999995 12.8 14 15.3 16.8 18.5 20.3 22.4
59 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx female month 60 -0.17330000000000001 16.852599999999999 0.093410000000000007 12.8 14 15.4 16.899999999999999 18.5 20.399999999999999 22.5
source gender age_unit age l m s sd3neg sd2neg sd1neg sd0 sd1 sd2 sd3
60 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 3 0.39279999999999998 13.4817 0.074749999999999997 10.7 11.6 12.5 13.5 14.5 15.6 16.7
61 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 4 0.34749999999999998 13.809699999999999 0.075230000000000005 10.9 11.8 12.8 13.8 14.9 16 17.2
62 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx male month 5 0.30919999999999997 14.0585 0.075660000000000005 11.1 12 13 14.1 15.2 16.3 17.5

View File

@ -13,7 +13,6 @@ https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standard
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-13-weeks_zscores.xlsx,female,week,11,0.1118,16.127700000000001,0.093039999999999998,12.1,13.4,14.7,16.100000000000001,17.7,19.399999999999999,21.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-13-weeks_zscores.xlsx,female,week,12,0.0877,16.2485,0.092789999999999997,12.3,13.5,14.8,16.2,17.8,19.5,21.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-13-weeks_zscores.xlsx,female,week,13,0.065199999999999994,16.353100000000001,0.092549999999999993,12.4,13.6,14.9,16.399999999999999,17.899999999999999,19.7,21.5
source,gender,age_unit,age,l,m,s,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-2-years_zscores.xlsx,female,month,0,-0.063100000000000003,13.3363,0.092719999999999997,10.1,11.1,12.2,13.3,14.6,16.100000000000001,17.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-2-years_zscores.xlsx,female,month,1,0.3448,14.5679,0.095560000000000006,10.8,12,13.2,14.6,16,17.5,19.100000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-2-years_zscores.xlsx,female,month,2,0.1749,15.767899999999999,0.093710000000000002,11.8,13,14.3,15.8,17.3,19,20.7
@ -39,7 +38,6 @@ https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standard
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-2-years_zscores.xlsx,female,month,22,-0.56950000000000001,15.4787,0.085769999999999999,12.2,13.1,14.2,15.5,16.899999999999999,18.5,20.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-2-years_zscores.xlsx,female,month,23,-0.58460000000000001,15.438000000000001,0.085599999999999996,12.2,13.1,14.2,15.4,16.899999999999999,18.5,20.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_0-to-2-years_zscores.xlsx,female,month,24,-0.59889999999999999,15.405200000000001,0.085449999999999998,12.1,13.1,14.2,15.4,16.8,18.399999999999999,20.3
source,gender,age_unit,age,l,m,s,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_2-to-5-years_zscores.xlsx,female,month,24,-0.56840000000000002,15.6881,0.084540000000000004,12.4,13.3,14.4,15.7,17.100000000000001,18.7,20.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_2-to-5-years_zscores.xlsx,female,month,25,-0.56840000000000002,15.659000000000001,0.084519999999999998,12.4,13.3,14.4,15.7,17.100000000000001,18.7,20.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_2-to-5-years_zscores.xlsx,female,month,26,-0.56840000000000002,15.630800000000001,0.084489999999999996,12.3,13.3,14.4,15.6,17,18.7,20.6
@ -77,176 +75,174 @@ https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standard
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_2-to-5-years_zscores.xlsx,female,month,58,-0.56840000000000002,15.2653,0.097089999999999996,11.7,12.7,13.9,15.3,16.899999999999999,18.8,21
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_2-to-5-years_zscores.xlsx,female,month,59,-0.56840000000000002,15.2698,0.097500000000000003,11.6,12.7,13.9,15.3,16.899999999999999,18.8,21
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_girls_2-to-5-years_zscores.xlsx,female,month,60,-0.56840000000000002,15.274699999999999,0.097890000000000005,11.6,12.7,13.9,15.3,16.899999999999999,18.8,21.1
source,gender,age_unit,age,l,m,s,sd4neg,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3,sd4
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,61,-0.88859999999999995,15.2441,0.096920000000000006,10.792999999999999,11.77,12.747999999999999,13.891,15.244,16.87,18.858000000000001,21.34,23.821000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,62,-0.90680000000000005,15.243399999999999,0.097379999999999994,10.786,11.763,12.741,13.885,15.243,16.879000000000001,18.885999999999999,21.402999999999999,23.92
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,63,-0.92479999999999996,15.2433,0.09783,10.78,11.757,12.734,13.881,15.243,16.888999999999999,18.914999999999999,21.468,24.02
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,64,-0.94269999999999998,15.2438,0.098290000000000002,10.775,11.752000000000001,12.728,13.875999999999999,15.244,16.899999999999999,18.946000000000002,21.535,24.123000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,65,-0.96050000000000002,15.2448,0.098750000000000004,10.77,11.746,12.723000000000001,13.872,15.244999999999999,16.911000000000001,18.977,21.603000000000002,24.23
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,66,-0.97799999999999998,15.2464,0.099199999999999997,10.765000000000001,11.742000000000001,12.718,13.869,15.246,16.922999999999998,19.009,21.672999999999998,24.337
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,67,-0.99539999999999995,15.248699999999999,0.099659999999999999,10.760999999999999,11.737,12.714,13.866,15.249000000000001,16.936,19.042000000000002,21.745000000000001,24.448
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,68,-1.0125999999999999,15.2516,0.10012,10.757,11.733000000000001,12.71,13.864000000000001,15.252000000000001,16.95,19.077000000000002,21.818999999999999,24.561
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,69,-1.0296000000000001,15.255100000000001,0.10058,10.754,11.73,12.706,13.863,15.255000000000001,16.963999999999999,19.111999999999998,21.895,24.678000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,70,-1.0464,15.2592,0.10104,10.750999999999999,11.727,12.702999999999999,13.862,15.259,16.978999999999999,19.148,21.972999999999999,24.797000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,71,-1.0629999999999999,15.264099999999999,0.10149,10.749000000000001,11.725,12.701000000000001,13.862,15.263999999999999,16.995000000000001,19.184999999999999,22.050999999999998,24.917000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,72,-1.0793999999999999,15.2697,0.10195,10.747,11.723000000000001,12.7,13.862,15.27,17.010999999999999,19.224,22.132999999999999,25.042000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,73,-1.0955999999999999,15.276,0.10241,10.744999999999999,11.722,12.699,13.863,15.276,17.029,19.263999999999999,22.216999999999999,25.17
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,74,-1.1114999999999999,15.283099999999999,0.10287,10.744,11.721,12.698,13.865,15.282999999999999,17.047000000000001,19.305,22.303000000000001,25.300999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,75,-1.1272,15.2911,0.10333000000000001,10.744,11.721,12.699,13.867000000000001,15.291,17.067,19.347000000000001,22.390999999999998,25.434999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,76,-1.1427,15.299799999999999,0.10378999999999999,10.744,11.722,12.7,13.87,15.3,17.087,19.390999999999998,22.481000000000002,25.571999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,77,-1.1578999999999999,15.3095,0.10425,10.744999999999999,11.723000000000001,12.701000000000001,13.874000000000001,15.31,17.108000000000001,19.436,22.574000000000002,25.712
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,78,-1.1728000000000001,15.32,0.10471,10.746,11.725,12.704000000000001,13.879,15.32,17.131,19.481999999999999,22.667999999999999,25.855
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,79,-1.1875,15.3314,0.10517,10.747999999999999,11.727,12.707000000000001,13.885,15.331,17.154,19.529,22.765999999999998,26.001999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,80,-1.2019,15.3439,0.10562000000000001,10.750999999999999,11.731,12.711,13.891999999999999,15.343999999999999,17.178999999999998,19.577999999999999,22.864000000000001,26.15
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,81,-1.216,15.357200000000001,0.10607999999999999,10.754,11.734999999999999,12.715999999999999,13.898999999999999,15.356999999999999,17.204000000000001,19.628,22.966000000000001,26.303999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,82,-1.2298,15.371700000000001,0.10654,10.757999999999999,11.74,12.721,13.907,15.372,17.231000000000002,19.68,23.071000000000002,26.460999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,83,-1.2433000000000001,15.3871,0.107,10.762,11.744999999999999,12.728,13.916,15.387,17.259,19.734000000000002,23.178000000000001,26.620999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,84,-1.2565,15.403600000000001,0.10746,10.766999999999999,11.750999999999999,12.734999999999999,13.927,15.404,17.289000000000001,19.789000000000001,23.286999999999999,26.785
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,85,-1.2693000000000001,15.421099999999999,0.10792,10.773,11.757999999999999,12.743,13.938000000000001,15.420999999999999,17.318999999999999,19.844999999999999,23.399000000000001,26.952999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,86,-1.2819,15.4397,0.10836999999999999,10.779,11.766,12.752000000000001,13.95,15.44,17.350000000000001,19.902999999999999,23.512,27.122
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,87,-1.2941,15.459300000000001,0.10883,10.786,11.773999999999999,12.762,13.962999999999999,15.459,17.382999999999999,19.963000000000001,23.629000000000001,27.295999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,88,-1.306,15.479799999999999,0.10929,10.792999999999999,11.782999999999999,12.772,13.976000000000001,15.48,17.417000000000002,20.023,23.748999999999999,27.474
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,89,-1.3174999999999999,15.5014,0.10974,10.802,11.792999999999999,12.782999999999999,13.991,15.500999999999999,17.452000000000002,20.085000000000001,23.869,27.652999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,90,-1.3287,15.523999999999999,0.11020000000000001,10.81,11.803000000000001,12.795,14.007,15.523999999999999,17.488,20.149000000000001,23.994,27.838000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,91,-1.3394999999999999,15.547599999999999,0.11065,10.82,11.814,12.808,14.023,15.548,17.526,20.213999999999999,24.119,28.023
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,92,-1.3499000000000001,15.5723,0.1111,10.83,11.826000000000001,12.821999999999999,14.041,15.571999999999999,17.564,20.280999999999999,24.245999999999999,28.212
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,93,-1.36,15.597899999999999,0.11156000000000001,10.84,11.837999999999999,12.836,14.058999999999999,15.598000000000001,17.603999999999999,20.349,24.376999999999999,28.405999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,94,-1.3696999999999999,15.624599999999999,0.11201,10.851000000000001,11.851000000000001,12.852,14.077999999999999,15.625,17.645,20.417999999999999,24.51,28.600999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,95,-1.379,15.6523,0.11246,10.862,11.865,12.868,14.099,15.651999999999999,17.687000000000001,20.489000000000001,24.643999999999998,28.798999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,96,-1.3879999999999999,15.680999999999999,0.11291,10.874000000000001,11.879,12.884,14.12,15.680999999999999,17.73,20.561,24.780999999999999,29.001000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,97,-1.3966000000000001,15.710699999999999,0.11335000000000001,10.887,11.895,12.901999999999999,14.141999999999999,15.711,17.774000000000001,20.634,24.917999999999999,29.202999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,98,-1.4047000000000001,15.7415,0.1138,10.9,11.91,12.92,14.164,15.742000000000001,17.82,20.709,25.059000000000001,29.408999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,99,-1.4125000000000001,15.773199999999999,0.11423999999999999,10.914,11.927,12.94,14.188000000000001,15.773,17.866,20.783999999999999,25.2,29.617000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,100,-1.4198999999999999,15.8058,0.11469,10.928000000000001,11.944000000000001,12.959,14.212,15.805999999999999,17.914000000000001,20.861999999999998,25.344999999999999,29.829000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,101,-1.427,15.839399999999999,0.11513,10.943,11.962,12.98,14.238,15.839,17.962,20.94,25.491,30.042000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,102,-1.4336,15.873799999999999,0.11557000000000001,10.958,11.98,13.000999999999999,14.263999999999999,15.874000000000001,18.012,21.018999999999998,25.638000000000002,30.256
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,103,-1.4398,15.909000000000001,0.11601,10.974,11.997999999999999,13.023,14.291,15.909000000000001,18.062000000000001,21.1,25.786000000000001,30.472000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,104,-1.4456,15.9451,0.11644,10.99,12.018000000000001,13.045,14.318,15.945,18.113,21.181000000000001,25.934000000000001,30.687999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,105,-1.4511000000000001,15.9818,0.11688,11.006,12.037000000000001,13.068,14.346,15.981999999999999,18.166,21.263000000000002,26.085000000000001,30.908000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,106,-1.4560999999999999,16.019400000000001,0.11731,11.023,12.057,13.092000000000001,14.375,16.018999999999998,18.219000000000001,21.346,26.236000000000001,31.126999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,107,-1.4607000000000001,16.057500000000001,0.11774,11.04,12.077999999999999,13.115,14.404,16.058,18.271999999999998,21.428999999999998,26.388000000000002,31.346
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,108,-1.4650000000000001,16.096399999999999,0.11816,11.057,12.099,13.14,14.433999999999999,16.096,18.326000000000001,21.513000000000002,26.539000000000001,31.565000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,109,-1.4688000000000001,16.1358,0.11859,11.074999999999999,12.12,13.164999999999999,14.465,16.135999999999999,18.381,21.599,26.692,31.786000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,110,-1.4722999999999999,16.175899999999999,0.11901,11.092000000000001,12.141,13.19,14.496,16.175999999999998,18.437000000000001,21.684000000000001,26.844999999999999,32.006999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,111,-1.4753000000000001,16.2166,0.11942999999999999,11.11,12.163,13.215999999999999,14.526999999999999,16.216999999999999,18.492999999999999,21.77,26.998000000000001,32.226999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,112,-1.478,16.257999999999999,0.11985,11.128,12.185,13.242000000000001,14.558999999999999,16.257999999999999,18.550999999999998,21.856999999999999,27.152000000000001,32.448
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,113,-1.4802999999999999,16.299900000000001,0.12026000000000001,11.147,12.208,13.269,14.592000000000001,16.3,18.608000000000001,21.943999999999999,27.305,32.665999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,114,-1.4823,16.342500000000001,0.12067,11.166,12.231,13.295999999999999,14.625,16.343,18.666,22.030999999999999,27.459,32.886000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,115,-1.4838,16.3858,0.12107999999999999,11.185,12.254,13.323,14.659000000000001,16.385999999999999,18.725000000000001,22.12,27.611999999999998,33.103999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,116,-1.4850000000000001,16.4298,0.12148,11.204000000000001,12.278,13.352,14.694000000000001,16.43,18.785,22.207999999999998,27.765000000000001,33.320999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,117,-1.4859,16.474599999999999,0.12188,11.224,12.302,13.38,14.728999999999999,16.475000000000001,18.846,22.297999999999998,27.917999999999999,33.537999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,118,-1.4863999999999999,16.52,0.12228,11.244,12.327,13.41,14.763999999999999,16.52,18.907,22.388000000000002,28.071000000000002,33.755000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,119,-1.4865999999999999,16.566299999999998,0.12268,11.265000000000001,12.352,13.439,14.801,16.565999999999999,18.969000000000001,22.478999999999999,28.225999999999999,33.972000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,120,-1.4863999999999999,16.613299999999999,0.12307,11.285,12.378,13.47,14.837999999999999,16.613,19.032,22.57,28.378,34.185000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,121,-1.4859,16.661200000000001,0.12346,11.307,12.404,13.500999999999999,14.875999999999999,16.661000000000001,19.096,22.663,28.530999999999999,34.399000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,122,-1.4851000000000001,16.71,0.12384000000000001,11.327999999999999,12.43,13.532999999999999,14.914,16.71,19.161000000000001,22.754999999999999,28.683,34.61
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,123,-1.4839,16.759499999999999,0.12422,11.35,12.458,13.565,14.954000000000001,16.760000000000002,19.225999999999999,22.849,28.834,34.82
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,124,-1.4824999999999999,16.809999999999999,0.1246,11.372999999999999,12.484999999999999,13.598000000000001,14.994,16.809999999999999,19.292999999999999,22.943000000000001,28.986999999999998,35.030999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,125,-1.4806999999999999,16.8614,0.12497,11.396000000000001,12.513999999999999,13.631,15.035,16.861000000000001,19.36,23.038,29.138000000000002,35.238
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,126,-1.4786999999999999,16.913599999999999,0.12534000000000001,11.419,12.542,13.666,15.076000000000001,16.914000000000001,19.428999999999998,23.134,29.29,35.445
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,127,-1.4762999999999999,16.966699999999999,0.12570999999999999,11.443,12.571999999999999,13.7,15.119,16.966999999999999,19.498000000000001,23.231000000000002,29.440999999999999,35.651000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,128,-1.4737,17.020800000000001,0.12606999999999999,11.467000000000001,12.602,13.736000000000001,15.162000000000001,17.021000000000001,19.568000000000001,23.327999999999999,29.591000000000001,35.853999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,129,-1.4708000000000001,17.075700000000001,0.12642999999999999,11.492000000000001,12.632,13.772,15.206,17.076000000000001,19.638999999999999,23.425999999999998,29.742000000000001,36.057000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,130,-1.4677,17.131599999999999,0.12678,11.516999999999999,12.663,13.81,15.250999999999999,17.132000000000001,19.712,23.524999999999999,29.890999999999998,36.256999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,131,-1.4641999999999999,17.188300000000002,0.12712999999999999,11.542999999999999,12.695,13.847,15.297000000000001,17.187999999999999,19.785,23.623999999999999,30.039000000000001,36.454000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,132,-1.4605999999999999,17.245899999999999,0.12748000000000001,11.569000000000001,12.727,13.885,15.343,17.245999999999999,19.859000000000002,23.725000000000001,30.189,36.652999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,133,-1.4567000000000001,17.304400000000001,0.12781999999999999,11.595000000000001,12.76,13.925000000000001,15.39,17.303999999999998,19.933,23.824999999999999,30.335999999999999,36.847000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,134,-1.4525999999999999,17.363700000000001,0.12816,11.622,12.792999999999999,13.964,15.438000000000001,17.364000000000001,20.009,23.927,30.484000000000002,37.042000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,135,-1.4481999999999999,17.4238,0.12848999999999999,11.65,12.827,14.004,15.487,17.423999999999999,20.085999999999999,24.029,30.63,37.231000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,136,-1.4436,17.4847,0.12881999999999999,11.677,12.861000000000001,14.045,15.536,17.484999999999999,20.163,24.131,30.776,37.42
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,137,-1.4389000000000001,17.546399999999998,0.12914,11.706,12.896000000000001,14.087,15.586,17.545999999999999,20.241,24.234000000000002,30.92,37.606000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,138,-1.4339,17.608799999999999,0.12945999999999999,11.734,12.930999999999999,14.129,15.637,17.609000000000002,20.32,24.338000000000001,31.064,37.79
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,139,-1.4288000000000001,17.671900000000001,0.12978000000000001,11.763,12.967000000000001,14.170999999999999,15.688000000000001,17.672000000000001,20.399999999999999,24.442,31.209,37.975000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,140,-1.4235,17.735700000000001,0.13009000000000001,11.792,13.003,14.214,15.74,17.736000000000001,20.48,24.545999999999999,31.350999999999999,38.155000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,141,-1.4179999999999999,17.8001,0.13039999999999999,11.821999999999999,13.04,14.257999999999999,15.792999999999999,17.8,20.561,24.651,31.492999999999999,38.335000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,142,-1.4123000000000001,17.865100000000002,0.13070000000000001,11.852,13.077,14.302,15.846,17.864999999999998,20.641999999999999,24.756,31.632999999999999,38.509
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,143,-1.4065000000000001,17.930599999999998,0.13099,11.882,13.114000000000001,14.346,15.898999999999999,17.931000000000001,20.724,24.861000000000001,31.77,38.68
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,144,-1.4006000000000001,17.996600000000001,0.13128999999999999,11.912000000000001,13.151,14.391,15.952999999999999,17.997,20.806000000000001,24.966999999999999,31.91,38.853999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,145,-1.3945000000000001,18.062999999999999,0.13158,11.942,13.189,14.436,16.007999999999999,18.062999999999999,20.888999999999999,25.071999999999999,32.046999999999997,39.023000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,146,-1.3883000000000001,18.1297,0.13186,11.973000000000001,13.227,14.481,16.062000000000001,18.13,20.972000000000001,25.177,32.182000000000002,39.186999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,147,-1.3818999999999999,18.1967,0.13214000000000001,12.003,13.265000000000001,14.526,16.117000000000001,18.196999999999999,21.055,25.282,32.316000000000003,39.35
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,148,-1.3754999999999999,18.2639,0.13241,12.034000000000001,13.303000000000001,14.571999999999999,16.172000000000001,18.263999999999999,21.138000000000002,25.387,32.448,39.509
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,149,-1.3689,18.331199999999999,0.13267999999999999,12.065,13.340999999999999,14.618,16.227,18.331,21.222000000000001,25.491,32.579000000000001,39.665999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,150,-1.3621000000000001,18.398599999999998,0.13295000000000001,12.095000000000001,13.379,14.663,16.282,18.399000000000001,21.305,25.596,32.707999999999998,39.82
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,151,-1.3552999999999999,18.466000000000001,0.13321,12.125999999999999,13.417999999999999,14.709,16.338000000000001,18.466000000000001,21.388000000000002,25.699000000000002,32.835000000000001,39.97
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,152,-1.3483000000000001,18.533300000000001,0.13347000000000001,12.156000000000001,13.456,14.755000000000001,16.393000000000001,18.533000000000001,21.471,25.802,32.96,40.118000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,153,-1.3412999999999999,18.6006,0.13372000000000001,12.186999999999999,13.494,14.8,16.448,18.600999999999999,21.553999999999998,25.905000000000001,33.082999999999998,40.261000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,154,-1.3341000000000001,18.6677,0.13397000000000001,12.217000000000001,13.531000000000001,14.846,16.503,18.667999999999999,21.637,26.007000000000001,33.204000000000001,40.402000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,155,-1.3269,18.7346,0.13421,12.247,13.569000000000001,14.891,16.558,18.734999999999999,21.719000000000001,26.106999999999999,33.322000000000003,40.537999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,156,-1.3194999999999999,18.801200000000001,0.13444999999999999,12.276,13.606,14.936,16.611999999999998,18.800999999999998,21.8,26.207000000000001,33.439,40.67
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,157,-1.3121,18.8675,0.13469,12.305,13.643000000000001,14.981,16.667000000000002,18.867999999999999,21.882000000000001,26.306999999999999,33.554000000000002,40.802
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,158,-1.3046,18.933499999999999,0.13492000000000001,12.335000000000001,13.68,15.025,16.721,18.934000000000001,21.962,26.405000000000001,33.665999999999997,40.927999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,159,-1.2969999999999999,18.999099999999999,0.13514000000000001,12.364000000000001,13.717000000000001,15.07,16.774999999999999,18.998999999999999,22.042000000000002,26.501000000000001,33.774999999999999,41.048000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,160,-1.2894000000000001,19.0642,0.13536999999999999,12.391999999999999,13.753,15.113,16.827999999999999,19.064,22.122,26.597999999999999,33.884,41.170999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,161,-1.2816000000000001,19.128900000000002,0.13558999999999999,12.42,13.788,15.157,16.881,19.129000000000001,22.201000000000001,26.693000000000001,33.988999999999997,41.286000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,162,-1.2739,19.193100000000001,0.1358,12.446999999999999,13.824,15.2,16.934000000000001,19.193000000000001,22.279,26.786000000000001,34.091999999999999,41.396999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,163,-1.2661,19.256699999999999,0.13600999999999999,12.475,13.859,15.243,16.986000000000001,19.257000000000001,22.356999999999999,26.879000000000001,34.192,41.506
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,164,-1.2583,19.319700000000001,0.13622000000000001,12.500999999999999,13.893000000000001,15.285,17.036999999999999,19.32,22.433,26.97,34.292000000000002,41.613999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,165,-1.2504,19.382000000000001,0.13642000000000001,12.528,13.927,15.327,17.088000000000001,19.382000000000001,22.509,27.06,34.387,41.713999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,166,-1.2424999999999999,19.4437,0.13661999999999999,12.554,13.961,15.368,17.138999999999999,19.443999999999999,22.584,27.149000000000001,34.481000000000002,41.814
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,167,-1.2344999999999999,19.5045,0.13680999999999999,12.579000000000001,13.994,15.407999999999999,17.187999999999999,19.504000000000001,22.658000000000001,27.234999999999999,34.570999999999998,41.906999999999996
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,168,-1.2265999999999999,19.564699999999998,0.13700000000000001,12.603999999999999,14.026,15.448,17.238,19.565000000000001,22.731000000000002,27.321000000000002,34.659999999999997,41.999000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,169,-1.2185999999999999,19.623999999999999,0.13719000000000001,12.628,14.058,15.488,17.286000000000001,19.623999999999999,22.803000000000001,27.405999999999999,34.747,42.088000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,170,-1.2107000000000001,19.682400000000001,0.13738,12.651999999999999,14.089,15.526,17.334,19.681999999999999,22.873999999999999,27.489000000000001,34.832999999999998,42.176000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,171,-1.2027000000000001,19.739999999999998,0.13755999999999999,12.675000000000001,14.119,15.564,17.38,19.739999999999998,22.943000000000001,27.57,34.914000000000001,42.258000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,172,-1.1947000000000001,19.796600000000002,0.13774,12.696999999999999,14.148999999999999,15.601000000000001,17.427,19.797000000000001,23.012,27.65,34.994,42.338000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,173,-1.1867000000000001,19.8523,0.13791,12.718999999999999,14.179,15.638,17.472000000000001,19.852,23.079000000000001,27.727,35.07,42.411999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,174,-1.1788000000000001,19.907,0.13808000000000001,12.74,14.207000000000001,15.673999999999999,17.515999999999998,19.907,23.145,27.803999999999998,35.145000000000003,42.484999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,175,-1.1708000000000001,19.960699999999999,0.13825000000000001,12.760999999999999,14.234999999999999,15.709,17.559999999999999,19.960999999999999,23.21,27.879000000000001,35.216999999999999,42.555
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,176,-1.1629,20.013300000000001,0.13841000000000001,12.781000000000001,14.262,15.743,17.603000000000002,20.013000000000002,23.273,27.951000000000001,35.286000000000001,42.621000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,177,-1.1549,20.064800000000002,0.13858000000000001,12.8,14.288,15.776,17.643999999999998,20.065000000000001,23.335999999999999,28.023,35.353999999999999,42.685000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,178,-1.147,20.115200000000002,0.13872999999999999,12.819000000000001,14.314,15.808999999999999,17.684999999999999,20.114999999999998,23.396000000000001,28.091000000000001,35.417000000000002,42.743000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,179,-1.139,20.164400000000001,0.13889000000000001,12.836,14.337999999999999,15.840999999999999,17.725000000000001,20.164000000000001,23.456,28.158999999999999,35.478999999999999,42.8
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,180,-1.1311,20.212499999999999,0.13904,12.853,14.362,15.871,17.763999999999999,20.212,23.513999999999999,28.224,35.537999999999997,42.851999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,181,-1.1232,20.259499999999999,0.13919999999999999,12.869,14.385,15.901,17.802,20.260000000000002,23.57,28.289000000000001,35.597000000000001,42.905000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,182,-1.1153,20.305299999999999,0.13933999999999999,12.885,14.407999999999999,15.93,17.838999999999999,20.305,23.625,28.35,35.65,42.95
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,183,-1.1073999999999999,20.349900000000002,0.13949,12.9,14.429,15.958,17.873999999999999,20.350000000000001,23.678999999999998,28.411000000000001,35.703000000000003,42.994999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,184,-1.0995999999999999,20.3934,0.13963,12.914,14.45,15.984999999999999,17.908999999999999,20.393000000000001,23.731000000000002,28.469000000000001,35.752000000000002,43.036000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,185,-1.0916999999999999,20.435700000000001,0.13977000000000001,12.927,14.468999999999999,16.012,17.943000000000001,20.436,23.782,28.524999999999999,35.798999999999999,43.073
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,186,-1.0838000000000001,20.476900000000001,0.13991000000000001,12.94,14.488,16.036999999999999,17.975999999999999,20.477,23.832000000000001,28.58,35.844000000000001,43.107999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,187,-1.0760000000000001,20.516999999999999,0.14005000000000001,12.952,14.507,16.062000000000001,18.007999999999999,20.516999999999999,23.88,28.634,35.887,43.140999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,188,-1.0681,20.556000000000001,0.14018,12.962999999999999,14.523999999999999,16.085000000000001,18.039000000000001,20.556000000000001,23.927,28.684000000000001,35.927,43.168999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,189,-1.0603,20.593800000000002,0.14030999999999999,12.973000000000001,14.541,16.108000000000001,18.068999999999999,20.594000000000001,23.972000000000001,28.734000000000002,35.963999999999999,43.195
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,190,-1.0525,20.630600000000001,0.14044000000000001,12.983000000000001,14.557,16.13,18.097999999999999,20.631,24.016999999999999,28.782,36,43.219000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,191,-1.0447,20.6663,0.14057,12.992000000000001,14.571999999999999,16.151,18.126000000000001,20.666,24.06,28.827999999999999,36.033999999999999,43.241
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,192,-1.0367999999999999,20.700800000000001,0.14069999999999999,13,14.586,16.172000000000001,18.152999999999999,20.701000000000001,24.100999999999999,28.873000000000001,36.066000000000003,43.259
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,193,-1.0289999999999999,20.734400000000001,0.14082,13.007999999999999,14.6,16.190999999999999,18.178999999999998,20.734000000000002,24.140999999999998,28.914999999999999,36.094000000000001,43.274000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,194,-1.0212000000000001,20.7668,0.14094000000000001,13.015000000000001,14.613,16.21,18.204999999999998,20.766999999999999,24.18,28.956,36.121000000000002,43.286000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,195,-1.0134000000000001,20.798200000000001,0.14105999999999999,13.022,14.625,16.228000000000002,18.228999999999999,20.797999999999998,24.218,28.995999999999999,36.146000000000001,43.295999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,196,-1.0055000000000001,20.828600000000002,0.14118,13.026999999999999,14.635999999999999,16.245000000000001,18.253,20.829000000000001,24.254000000000001,29.033999999999999,36.168999999999997,43.304000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,197,-0.99770000000000003,20.858000000000001,0.14130000000000001,13.032,14.647,16.260999999999999,18.274999999999999,20.858000000000001,24.29,29.07,36.19,43.31
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,198,-0.98980000000000001,20.886299999999999,0.14141999999999999,13.036,14.656000000000001,16.277000000000001,18.297000000000001,20.885999999999999,24.324000000000002,29.105,36.209000000000003,43.313000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,199,-0.9819,20.913699999999999,0.14152999999999999,13.04,14.666,16.291,18.318000000000001,20.914000000000001,24.356000000000002,29.138000000000002,36.225000000000001,43.311999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,200,-0.97399999999999998,20.940100000000001,0.14163999999999999,13.042999999999999,14.673999999999999,16.305,18.338000000000001,20.94,24.388000000000002,29.17,36.238999999999997,43.308999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,201,-0.96609999999999996,20.965599999999998,0.14176,13.045,14.682,16.318000000000001,18.356999999999999,20.966000000000001,24.417999999999999,29.201000000000001,36.253999999999998,43.307000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,202,-0.95820000000000005,20.990100000000002,0.14187,13.047000000000001,14.689,16.331,18.376000000000001,20.99,24.448,29.23,36.265000000000001,43.3
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,203,-0.95030000000000003,21.0138,0.14198,13.048,14.695,16.343,18.393000000000001,21.013999999999999,24.475999999999999,29.257000000000001,36.274999999999999,43.292000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,204,-0.94230000000000003,21.0367,0.14208000000000001,13.048999999999999,14.701000000000001,16.353999999999999,18.411000000000001,21.036999999999999,24.503,29.283000000000001,36.280999999999999,43.279000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,205,-0.93440000000000001,21.058700000000002,0.14219000000000001,13.048999999999999,14.707000000000001,16.364999999999998,18.427,21.059000000000001,24.53,29.308,36.287999999999997,43.268000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,206,-0.9264,21.080100000000002,0.14230000000000001,13.048,14.711,16.375,18.443000000000001,21.08,24.555,29.332999999999998,36.292999999999999,43.253999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,207,-0.91839999999999999,21.1007,0.1424,13.047000000000001,14.715999999999999,16.384,18.457999999999998,21.100999999999999,24.58,29.355,36.295999999999999,43.237000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,208,-0.91039999999999999,21.1206,0.14249999999999999,13.045999999999999,14.718999999999999,16.393000000000001,18.472000000000001,21.120999999999999,24.603000000000002,29.376000000000001,36.296999999999997,43.218000000000004
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,209,-0.90239999999999998,21.139900000000001,0.14260999999999999,13.044,14.722,16.401,18.486000000000001,21.14,24.626000000000001,29.398,36.299999999999997,43.201999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,210,-0.89439999999999997,21.1586,0.14271,13.042,14.725,16.408999999999999,18.498999999999999,21.158999999999999,24.649000000000001,29.417999999999999,36.298999999999999,43.180999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,211,-0.88629999999999998,21.1768,0.14280999999999999,13.039,14.728,16.417000000000002,18.512,21.177,24.67,29.436,36.298000000000002,43.158999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,212,-0.87829999999999997,21.194400000000002,0.14291000000000001,13.036,14.73,16.423999999999999,18.524999999999999,21.193999999999999,24.690999999999999,29.454999999999998,36.295999999999999,43.137
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,213,-0.87029999999999996,21.211600000000001,0.14301,13.032,14.731,16.431000000000001,18.536999999999999,21.212,24.712,29.472000000000001,36.292999999999999,43.113999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,214,-0.86229999999999996,21.228200000000001,0.14310999999999999,13.029,14.733000000000001,16.437000000000001,18.547999999999998,21.228000000000002,24.731000000000002,29.489000000000001,36.29,43.09
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,215,-0.85419999999999996,21.244399999999999,0.14319999999999999,13.025,14.734,16.443000000000001,18.559999999999999,21.244,24.75,29.504999999999999,36.283999999999999,43.061999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,216,-0.84619999999999995,21.260300000000001,0.14330000000000001,13.02,14.734,16.448,18.571000000000002,21.26,24.768999999999998,29.52,36.279000000000003,43.037999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,217,-0.83819999999999995,21.275700000000001,0.1434,13.016,14.734999999999999,16.454000000000001,18.581,21.276,24.788,29.536000000000001,36.274000000000001,43.012999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,218,-0.83009999999999995,21.290800000000001,0.14349000000000001,13.010999999999999,14.734999999999999,16.459,18.591999999999999,21.291,24.805,29.55,36.267000000000003,42.984000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,219,-0.82210000000000005,21.305499999999999,0.14359,13.006,14.734999999999999,16.463000000000001,18.600999999999999,21.306000000000001,24.823,29.564,36.261000000000003,42.957999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,220,-0.81399999999999995,21.32,0.14368,13,14.734,16.468,18.611000000000001,21.32,24.84,29.577000000000002,36.252000000000002,42.927999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,221,-0.80600000000000005,21.334099999999999,0.14377000000000001,12.994999999999999,14.734,16.472999999999999,18.620999999999999,21.334,24.856000000000002,29.588999999999999,36.244,42.899000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,222,-0.79800000000000004,21.347999999999999,0.14385999999999999,12.989000000000001,14.733000000000001,16.477,18.63,21.347999999999999,24.873000000000001,29.602,36.234999999999999,42.869
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,223,-0.78990000000000005,21.361699999999999,0.14396,12.983000000000001,14.731999999999999,16.48,18.638999999999999,21.361999999999998,24.888999999999999,29.614000000000001,36.228000000000002,42.841000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,224,-0.78190000000000004,21.3752,0.14405000000000001,12.977,14.731,16.484000000000002,18.648,21.375,24.905000000000001,29.626000000000001,36.219000000000001,42.811999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,225,-0.77380000000000004,21.388400000000001,0.14413999999999999,12.971,14.728999999999999,16.488,18.657,21.388000000000002,24.92,29.637,36.209000000000003,42.780999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,226,-0.76580000000000004,21.401399999999999,0.14423,12.964,14.728,16.491,18.664999999999999,21.401,24.934999999999999,29.649000000000001,36.200000000000003,42.750999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,227,-0.75770000000000004,21.414300000000001,0.14432,12.958,14.726000000000001,16.494,18.672999999999998,21.414000000000001,24.951000000000001,29.658999999999999,36.19,42.72
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,228,-0.74960000000000004,21.4269,0.14441000000000001,12.951000000000001,14.724,16.497,18.681000000000001,21.427,24.965,29.67,36.179000000000002,42.689
source,gender,age_unit,age,l,m,s,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,61,-0.88859999999999995,15.2441,0.096920000000000006,11.77,12.747999999999999,13.891,15.244,16.87,18.858000000000001,21.34
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,62,-0.90680000000000005,15.243399999999999,0.097379999999999994,11.763,12.741,13.885,15.243,16.879000000000001,18.885999999999999,21.402999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,63,-0.92479999999999996,15.2433,0.09783,11.757,12.734,13.881,15.243,16.888999999999999,18.914999999999999,21.468
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,64,-0.94269999999999998,15.2438,0.098290000000000002,11.752000000000001,12.728,13.875999999999999,15.244,16.899999999999999,18.946000000000002,21.535
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,65,-0.96050000000000002,15.2448,0.098750000000000004,11.746,12.723000000000001,13.872,15.244999999999999,16.911000000000001,18.977,21.603000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,66,-0.97799999999999998,15.2464,0.099199999999999997,11.742000000000001,12.718,13.869,15.246,16.922999999999998,19.009,21.672999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,67,-0.99539999999999995,15.248699999999999,0.099659999999999999,11.737,12.714,13.866,15.249000000000001,16.936,19.042000000000002,21.745000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,68,-1.0125999999999999,15.2516,0.10012,11.733000000000001,12.71,13.864000000000001,15.252000000000001,16.95,19.077000000000002,21.818999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,69,-1.0296000000000001,15.255100000000001,0.10058,11.73,12.706,13.863,15.255000000000001,16.963999999999999,19.111999999999998,21.895
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,70,-1.0464,15.2592,0.10104,11.727,12.702999999999999,13.862,15.259,16.978999999999999,19.148,21.972999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,71,-1.0629999999999999,15.264099999999999,0.10149,11.725,12.701000000000001,13.862,15.263999999999999,16.995000000000001,19.184999999999999,22.050999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,72,-1.0793999999999999,15.2697,0.10195,11.723000000000001,12.7,13.862,15.27,17.010999999999999,19.224,22.132999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,73,-1.0955999999999999,15.276,0.10241,11.722,12.699,13.863,15.276,17.029,19.263999999999999,22.216999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,74,-1.1114999999999999,15.283099999999999,0.10287,11.721,12.698,13.865,15.282999999999999,17.047000000000001,19.305,22.303000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,75,-1.1272,15.2911,0.10333000000000001,11.721,12.699,13.867000000000001,15.291,17.067,19.347000000000001,22.390999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,76,-1.1427,15.299799999999999,0.10378999999999999,11.722,12.7,13.87,15.3,17.087,19.390999999999998,22.481000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,77,-1.1578999999999999,15.3095,0.10425,11.723000000000001,12.701000000000001,13.874000000000001,15.31,17.108000000000001,19.436,22.574000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,78,-1.1728000000000001,15.32,0.10471,11.725,12.704000000000001,13.879,15.32,17.131,19.481999999999999,22.667999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,79,-1.1875,15.3314,0.10517,11.727,12.707000000000001,13.885,15.331,17.154,19.529,22.765999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,80,-1.2019,15.3439,0.10562000000000001,11.731,12.711,13.891999999999999,15.343999999999999,17.178999999999998,19.577999999999999,22.864000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,81,-1.216,15.357200000000001,0.10607999999999999,11.734999999999999,12.715999999999999,13.898999999999999,15.356999999999999,17.204000000000001,19.628,22.966000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,82,-1.2298,15.371700000000001,0.10654,11.74,12.721,13.907,15.372,17.231000000000002,19.68,23.071000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,83,-1.2433000000000001,15.3871,0.107,11.744999999999999,12.728,13.916,15.387,17.259,19.734000000000002,23.178000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,84,-1.2565,15.403600000000001,0.10746,11.750999999999999,12.734999999999999,13.927,15.404,17.289000000000001,19.789000000000001,23.286999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,85,-1.2693000000000001,15.421099999999999,0.10792,11.757999999999999,12.743,13.938000000000001,15.420999999999999,17.318999999999999,19.844999999999999,23.399000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,86,-1.2819,15.4397,0.10836999999999999,11.766,12.752000000000001,13.95,15.44,17.350000000000001,19.902999999999999,23.512
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,87,-1.2941,15.459300000000001,0.10883,11.773999999999999,12.762,13.962999999999999,15.459,17.382999999999999,19.963000000000001,23.629000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,88,-1.306,15.479799999999999,0.10929,11.782999999999999,12.772,13.976000000000001,15.48,17.417000000000002,20.023,23.748999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,89,-1.3174999999999999,15.5014,0.10974,11.792999999999999,12.782999999999999,13.991,15.500999999999999,17.452000000000002,20.085000000000001,23.869
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,90,-1.3287,15.523999999999999,0.11020000000000001,11.803000000000001,12.795,14.007,15.523999999999999,17.488,20.149000000000001,23.994
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,91,-1.3394999999999999,15.547599999999999,0.11065,11.814,12.808,14.023,15.548,17.526,20.213999999999999,24.119
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,92,-1.3499000000000001,15.5723,0.1111,11.826000000000001,12.821999999999999,14.041,15.571999999999999,17.564,20.280999999999999,24.245999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,93,-1.36,15.597899999999999,0.11156000000000001,11.837999999999999,12.836,14.058999999999999,15.598000000000001,17.603999999999999,20.349,24.376999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,94,-1.3696999999999999,15.624599999999999,0.11201,11.851000000000001,12.852,14.077999999999999,15.625,17.645,20.417999999999999,24.51
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,95,-1.379,15.6523,0.11246,11.865,12.868,14.099,15.651999999999999,17.687000000000001,20.489000000000001,24.643999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,96,-1.3879999999999999,15.680999999999999,0.11291,11.879,12.884,14.12,15.680999999999999,17.73,20.561,24.780999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,97,-1.3966000000000001,15.710699999999999,0.11335000000000001,11.895,12.901999999999999,14.141999999999999,15.711,17.774000000000001,20.634,24.917999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,98,-1.4047000000000001,15.7415,0.1138,11.91,12.92,14.164,15.742000000000001,17.82,20.709,25.059000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,99,-1.4125000000000001,15.773199999999999,0.11423999999999999,11.927,12.94,14.188000000000001,15.773,17.866,20.783999999999999,25.2
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,100,-1.4198999999999999,15.8058,0.11469,11.944000000000001,12.959,14.212,15.805999999999999,17.914000000000001,20.861999999999998,25.344999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,101,-1.427,15.839399999999999,0.11513,11.962,12.98,14.238,15.839,17.962,20.94,25.491
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,102,-1.4336,15.873799999999999,0.11557000000000001,11.98,13.000999999999999,14.263999999999999,15.874000000000001,18.012,21.018999999999998,25.638000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,103,-1.4398,15.909000000000001,0.11601,11.997999999999999,13.023,14.291,15.909000000000001,18.062000000000001,21.1,25.786000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,104,-1.4456,15.9451,0.11644,12.018000000000001,13.045,14.318,15.945,18.113,21.181000000000001,25.934000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,105,-1.4511000000000001,15.9818,0.11688,12.037000000000001,13.068,14.346,15.981999999999999,18.166,21.263000000000002,26.085000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,106,-1.4560999999999999,16.019400000000001,0.11731,12.057,13.092000000000001,14.375,16.018999999999998,18.219000000000001,21.346,26.236000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,107,-1.4607000000000001,16.057500000000001,0.11774,12.077999999999999,13.115,14.404,16.058,18.271999999999998,21.428999999999998,26.388000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,108,-1.4650000000000001,16.096399999999999,0.11816,12.099,13.14,14.433999999999999,16.096,18.326000000000001,21.513000000000002,26.539000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,109,-1.4688000000000001,16.1358,0.11859,12.12,13.164999999999999,14.465,16.135999999999999,18.381,21.599,26.692
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,110,-1.4722999999999999,16.175899999999999,0.11901,12.141,13.19,14.496,16.175999999999998,18.437000000000001,21.684000000000001,26.844999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,111,-1.4753000000000001,16.2166,0.11942999999999999,12.163,13.215999999999999,14.526999999999999,16.216999999999999,18.492999999999999,21.77,26.998000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,112,-1.478,16.257999999999999,0.11985,12.185,13.242000000000001,14.558999999999999,16.257999999999999,18.550999999999998,21.856999999999999,27.152000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,113,-1.4802999999999999,16.299900000000001,0.12026000000000001,12.208,13.269,14.592000000000001,16.3,18.608000000000001,21.943999999999999,27.305
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,114,-1.4823,16.342500000000001,0.12067,12.231,13.295999999999999,14.625,16.343,18.666,22.030999999999999,27.459
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,115,-1.4838,16.3858,0.12107999999999999,12.254,13.323,14.659000000000001,16.385999999999999,18.725000000000001,22.12,27.611999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,116,-1.4850000000000001,16.4298,0.12148,12.278,13.352,14.694000000000001,16.43,18.785,22.207999999999998,27.765000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,117,-1.4859,16.474599999999999,0.12188,12.302,13.38,14.728999999999999,16.475000000000001,18.846,22.297999999999998,27.917999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,118,-1.4863999999999999,16.52,0.12228,12.327,13.41,14.763999999999999,16.52,18.907,22.388000000000002,28.071000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,119,-1.4865999999999999,16.566299999999998,0.12268,12.352,13.439,14.801,16.565999999999999,18.969000000000001,22.478999999999999,28.225999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,120,-1.4863999999999999,16.613299999999999,0.12307,12.378,13.47,14.837999999999999,16.613,19.032,22.57,28.378
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,121,-1.4859,16.661200000000001,0.12346,12.404,13.500999999999999,14.875999999999999,16.661000000000001,19.096,22.663,28.530999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,122,-1.4851000000000001,16.71,0.12384000000000001,12.43,13.532999999999999,14.914,16.71,19.161000000000001,22.754999999999999,28.683
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,123,-1.4839,16.759499999999999,0.12422,12.458,13.565,14.954000000000001,16.760000000000002,19.225999999999999,22.849,28.834
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,124,-1.4824999999999999,16.809999999999999,0.1246,12.484999999999999,13.598000000000001,14.994,16.809999999999999,19.292999999999999,22.943000000000001,28.986999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,125,-1.4806999999999999,16.8614,0.12497,12.513999999999999,13.631,15.035,16.861000000000001,19.36,23.038,29.138000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,126,-1.4786999999999999,16.913599999999999,0.12534000000000001,12.542,13.666,15.076000000000001,16.914000000000001,19.428999999999998,23.134,29.29
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,127,-1.4762999999999999,16.966699999999999,0.12570999999999999,12.571999999999999,13.7,15.119,16.966999999999999,19.498000000000001,23.231000000000002,29.440999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,128,-1.4737,17.020800000000001,0.12606999999999999,12.602,13.736000000000001,15.162000000000001,17.021000000000001,19.568000000000001,23.327999999999999,29.591000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,129,-1.4708000000000001,17.075700000000001,0.12642999999999999,12.632,13.772,15.206,17.076000000000001,19.638999999999999,23.425999999999998,29.742000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,130,-1.4677,17.131599999999999,0.12678,12.663,13.81,15.250999999999999,17.132000000000001,19.712,23.524999999999999,29.890999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,131,-1.4641999999999999,17.188300000000002,0.12712999999999999,12.695,13.847,15.297000000000001,17.187999999999999,19.785,23.623999999999999,30.039000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,132,-1.4605999999999999,17.245899999999999,0.12748000000000001,12.727,13.885,15.343,17.245999999999999,19.859000000000002,23.725000000000001,30.189
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,133,-1.4567000000000001,17.304400000000001,0.12781999999999999,12.76,13.925000000000001,15.39,17.303999999999998,19.933,23.824999999999999,30.335999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,134,-1.4525999999999999,17.363700000000001,0.12816,12.792999999999999,13.964,15.438000000000001,17.364000000000001,20.009,23.927,30.484000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,135,-1.4481999999999999,17.4238,0.12848999999999999,12.827,14.004,15.487,17.423999999999999,20.085999999999999,24.029,30.63
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,136,-1.4436,17.4847,0.12881999999999999,12.861000000000001,14.045,15.536,17.484999999999999,20.163,24.131,30.776
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,137,-1.4389000000000001,17.546399999999998,0.12914,12.896000000000001,14.087,15.586,17.545999999999999,20.241,24.234000000000002,30.92
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,138,-1.4339,17.608799999999999,0.12945999999999999,12.930999999999999,14.129,15.637,17.609000000000002,20.32,24.338000000000001,31.064
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,139,-1.4288000000000001,17.671900000000001,0.12978000000000001,12.967000000000001,14.170999999999999,15.688000000000001,17.672000000000001,20.399999999999999,24.442,31.209
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,140,-1.4235,17.735700000000001,0.13009000000000001,13.003,14.214,15.74,17.736000000000001,20.48,24.545999999999999,31.350999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,141,-1.4179999999999999,17.8001,0.13039999999999999,13.04,14.257999999999999,15.792999999999999,17.8,20.561,24.651,31.492999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,142,-1.4123000000000001,17.865100000000002,0.13070000000000001,13.077,14.302,15.846,17.864999999999998,20.641999999999999,24.756,31.632999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,143,-1.4065000000000001,17.930599999999998,0.13099,13.114000000000001,14.346,15.898999999999999,17.931000000000001,20.724,24.861000000000001,31.77
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,144,-1.4006000000000001,17.996600000000001,0.13128999999999999,13.151,14.391,15.952999999999999,17.997,20.806000000000001,24.966999999999999,31.91
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,145,-1.3945000000000001,18.062999999999999,0.13158,13.189,14.436,16.007999999999999,18.062999999999999,20.888999999999999,25.071999999999999,32.046999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,146,-1.3883000000000001,18.1297,0.13186,13.227,14.481,16.062000000000001,18.13,20.972000000000001,25.177,32.182000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,147,-1.3818999999999999,18.1967,0.13214000000000001,13.265000000000001,14.526,16.117000000000001,18.196999999999999,21.055,25.282,32.316000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,148,-1.3754999999999999,18.2639,0.13241,13.303000000000001,14.571999999999999,16.172000000000001,18.263999999999999,21.138000000000002,25.387,32.448
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,149,-1.3689,18.331199999999999,0.13267999999999999,13.340999999999999,14.618,16.227,18.331,21.222000000000001,25.491,32.579000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,150,-1.3621000000000001,18.398599999999998,0.13295000000000001,13.379,14.663,16.282,18.399000000000001,21.305,25.596,32.707999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,151,-1.3552999999999999,18.466000000000001,0.13321,13.417999999999999,14.709,16.338000000000001,18.466000000000001,21.388000000000002,25.699000000000002,32.835000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,152,-1.3483000000000001,18.533300000000001,0.13347000000000001,13.456,14.755000000000001,16.393000000000001,18.533000000000001,21.471,25.802,32.96
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,153,-1.3412999999999999,18.6006,0.13372000000000001,13.494,14.8,16.448,18.600999999999999,21.553999999999998,25.905000000000001,33.082999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,154,-1.3341000000000001,18.6677,0.13397000000000001,13.531000000000001,14.846,16.503,18.667999999999999,21.637,26.007000000000001,33.204000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,155,-1.3269,18.7346,0.13421,13.569000000000001,14.891,16.558,18.734999999999999,21.719000000000001,26.106999999999999,33.322000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,156,-1.3194999999999999,18.801200000000001,0.13444999999999999,13.606,14.936,16.611999999999998,18.800999999999998,21.8,26.207000000000001,33.439
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,157,-1.3121,18.8675,0.13469,13.643000000000001,14.981,16.667000000000002,18.867999999999999,21.882000000000001,26.306999999999999,33.554000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,158,-1.3046,18.933499999999999,0.13492000000000001,13.68,15.025,16.721,18.934000000000001,21.962,26.405000000000001,33.665999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,159,-1.2969999999999999,18.999099999999999,0.13514000000000001,13.717000000000001,15.07,16.774999999999999,18.998999999999999,22.042000000000002,26.501000000000001,33.774999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,160,-1.2894000000000001,19.0642,0.13536999999999999,13.753,15.113,16.827999999999999,19.064,22.122,26.597999999999999,33.884
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,161,-1.2816000000000001,19.128900000000002,0.13558999999999999,13.788,15.157,16.881,19.129000000000001,22.201000000000001,26.693000000000001,33.988999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,162,-1.2739,19.193100000000001,0.1358,13.824,15.2,16.934000000000001,19.193000000000001,22.279,26.786000000000001,34.091999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,163,-1.2661,19.256699999999999,0.13600999999999999,13.859,15.243,16.986000000000001,19.257000000000001,22.356999999999999,26.879000000000001,34.192
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,164,-1.2583,19.319700000000001,0.13622000000000001,13.893000000000001,15.285,17.036999999999999,19.32,22.433,26.97,34.292000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,165,-1.2504,19.382000000000001,0.13642000000000001,13.927,15.327,17.088000000000001,19.382000000000001,22.509,27.06,34.387
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,166,-1.2424999999999999,19.4437,0.13661999999999999,13.961,15.368,17.138999999999999,19.443999999999999,22.584,27.149000000000001,34.481000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,167,-1.2344999999999999,19.5045,0.13680999999999999,13.994,15.407999999999999,17.187999999999999,19.504000000000001,22.658000000000001,27.234999999999999,34.570999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,168,-1.2265999999999999,19.564699999999998,0.13700000000000001,14.026,15.448,17.238,19.565000000000001,22.731000000000002,27.321000000000002,34.659999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,169,-1.2185999999999999,19.623999999999999,0.13719000000000001,14.058,15.488,17.286000000000001,19.623999999999999,22.803000000000001,27.405999999999999,34.747
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,170,-1.2107000000000001,19.682400000000001,0.13738,14.089,15.526,17.334,19.681999999999999,22.873999999999999,27.489000000000001,34.832999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,171,-1.2027000000000001,19.739999999999998,0.13755999999999999,14.119,15.564,17.38,19.739999999999998,22.943000000000001,27.57,34.914000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,172,-1.1947000000000001,19.796600000000002,0.13774,14.148999999999999,15.601000000000001,17.427,19.797000000000001,23.012,27.65,34.994
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,173,-1.1867000000000001,19.8523,0.13791,14.179,15.638,17.472000000000001,19.852,23.079000000000001,27.727,35.07
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,174,-1.1788000000000001,19.907,0.13808000000000001,14.207000000000001,15.673999999999999,17.515999999999998,19.907,23.145,27.803999999999998,35.145000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,175,-1.1708000000000001,19.960699999999999,0.13825000000000001,14.234999999999999,15.709,17.559999999999999,19.960999999999999,23.21,27.879000000000001,35.216999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,176,-1.1629,20.013300000000001,0.13841000000000001,14.262,15.743,17.603000000000002,20.013000000000002,23.273,27.951000000000001,35.286000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,177,-1.1549,20.064800000000002,0.13858000000000001,14.288,15.776,17.643999999999998,20.065000000000001,23.335999999999999,28.023,35.353999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,178,-1.147,20.115200000000002,0.13872999999999999,14.314,15.808999999999999,17.684999999999999,20.114999999999998,23.396000000000001,28.091000000000001,35.417000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,179,-1.139,20.164400000000001,0.13889000000000001,14.337999999999999,15.840999999999999,17.725000000000001,20.164000000000001,23.456,28.158999999999999,35.478999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,180,-1.1311,20.212499999999999,0.13904,14.362,15.871,17.763999999999999,20.212,23.513999999999999,28.224,35.537999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,181,-1.1232,20.259499999999999,0.13919999999999999,14.385,15.901,17.802,20.260000000000002,23.57,28.289000000000001,35.597000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,182,-1.1153,20.305299999999999,0.13933999999999999,14.407999999999999,15.93,17.838999999999999,20.305,23.625,28.35,35.65
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,183,-1.1073999999999999,20.349900000000002,0.13949,14.429,15.958,17.873999999999999,20.350000000000001,23.678999999999998,28.411000000000001,35.703000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,184,-1.0995999999999999,20.3934,0.13963,14.45,15.984999999999999,17.908999999999999,20.393000000000001,23.731000000000002,28.469000000000001,35.752000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,185,-1.0916999999999999,20.435700000000001,0.13977000000000001,14.468999999999999,16.012,17.943000000000001,20.436,23.782,28.524999999999999,35.798999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,186,-1.0838000000000001,20.476900000000001,0.13991000000000001,14.488,16.036999999999999,17.975999999999999,20.477,23.832000000000001,28.58,35.844000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,187,-1.0760000000000001,20.516999999999999,0.14005000000000001,14.507,16.062000000000001,18.007999999999999,20.516999999999999,23.88,28.634,35.887
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,188,-1.0681,20.556000000000001,0.14018,14.523999999999999,16.085000000000001,18.039000000000001,20.556000000000001,23.927,28.684000000000001,35.927
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,189,-1.0603,20.593800000000002,0.14030999999999999,14.541,16.108000000000001,18.068999999999999,20.594000000000001,23.972000000000001,28.734000000000002,35.963999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,190,-1.0525,20.630600000000001,0.14044000000000001,14.557,16.13,18.097999999999999,20.631,24.016999999999999,28.782,36
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,191,-1.0447,20.6663,0.14057,14.571999999999999,16.151,18.126000000000001,20.666,24.06,28.827999999999999,36.033999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,192,-1.0367999999999999,20.700800000000001,0.14069999999999999,14.586,16.172000000000001,18.152999999999999,20.701000000000001,24.100999999999999,28.873000000000001,36.066000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,193,-1.0289999999999999,20.734400000000001,0.14082,14.6,16.190999999999999,18.178999999999998,20.734000000000002,24.140999999999998,28.914999999999999,36.094000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,194,-1.0212000000000001,20.7668,0.14094000000000001,14.613,16.21,18.204999999999998,20.766999999999999,24.18,28.956,36.121000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,195,-1.0134000000000001,20.798200000000001,0.14105999999999999,14.625,16.228000000000002,18.228999999999999,20.797999999999998,24.218,28.995999999999999,36.146000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,196,-1.0055000000000001,20.828600000000002,0.14118,14.635999999999999,16.245000000000001,18.253,20.829000000000001,24.254000000000001,29.033999999999999,36.168999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,197,-0.99770000000000003,20.858000000000001,0.14130000000000001,14.647,16.260999999999999,18.274999999999999,20.858000000000001,24.29,29.07,36.19
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,198,-0.98980000000000001,20.886299999999999,0.14141999999999999,14.656000000000001,16.277000000000001,18.297000000000001,20.885999999999999,24.324000000000002,29.105,36.209000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,199,-0.9819,20.913699999999999,0.14152999999999999,14.666,16.291,18.318000000000001,20.914000000000001,24.356000000000002,29.138000000000002,36.225000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,200,-0.97399999999999998,20.940100000000001,0.14163999999999999,14.673999999999999,16.305,18.338000000000001,20.94,24.388000000000002,29.17,36.238999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,201,-0.96609999999999996,20.965599999999998,0.14176,14.682,16.318000000000001,18.356999999999999,20.966000000000001,24.417999999999999,29.201000000000001,36.253999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,202,-0.95820000000000005,20.990100000000002,0.14187,14.689,16.331,18.376000000000001,20.99,24.448,29.23,36.265000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,203,-0.95030000000000003,21.0138,0.14198,14.695,16.343,18.393000000000001,21.013999999999999,24.475999999999999,29.257000000000001,36.274999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,204,-0.94230000000000003,21.0367,0.14208000000000001,14.701000000000001,16.353999999999999,18.411000000000001,21.036999999999999,24.503,29.283000000000001,36.280999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,205,-0.93440000000000001,21.058700000000002,0.14219000000000001,14.707000000000001,16.364999999999998,18.427,21.059000000000001,24.53,29.308,36.287999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,206,-0.9264,21.080100000000002,0.14230000000000001,14.711,16.375,18.443000000000001,21.08,24.555,29.332999999999998,36.292999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,207,-0.91839999999999999,21.1007,0.1424,14.715999999999999,16.384,18.457999999999998,21.100999999999999,24.58,29.355,36.295999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,208,-0.91039999999999999,21.1206,0.14249999999999999,14.718999999999999,16.393000000000001,18.472000000000001,21.120999999999999,24.603000000000002,29.376000000000001,36.296999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,209,-0.90239999999999998,21.139900000000001,0.14260999999999999,14.722,16.401,18.486000000000001,21.14,24.626000000000001,29.398,36.299999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,210,-0.89439999999999997,21.1586,0.14271,14.725,16.408999999999999,18.498999999999999,21.158999999999999,24.649000000000001,29.417999999999999,36.298999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,211,-0.88629999999999998,21.1768,0.14280999999999999,14.728,16.417000000000002,18.512,21.177,24.67,29.436,36.298000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,212,-0.87829999999999997,21.194400000000002,0.14291000000000001,14.73,16.423999999999999,18.524999999999999,21.193999999999999,24.690999999999999,29.454999999999998,36.295999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,213,-0.87029999999999996,21.211600000000001,0.14301,14.731,16.431000000000001,18.536999999999999,21.212,24.712,29.472000000000001,36.292999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,214,-0.86229999999999996,21.228200000000001,0.14310999999999999,14.733000000000001,16.437000000000001,18.547999999999998,21.228000000000002,24.731000000000002,29.489000000000001,36.29
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,215,-0.85419999999999996,21.244399999999999,0.14319999999999999,14.734,16.443000000000001,18.559999999999999,21.244,24.75,29.504999999999999,36.283999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,216,-0.84619999999999995,21.260300000000001,0.14330000000000001,14.734,16.448,18.571000000000002,21.26,24.768999999999998,29.52,36.279000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,217,-0.83819999999999995,21.275700000000001,0.1434,14.734999999999999,16.454000000000001,18.581,21.276,24.788,29.536000000000001,36.274000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,218,-0.83009999999999995,21.290800000000001,0.14349000000000001,14.734999999999999,16.459,18.591999999999999,21.291,24.805,29.55,36.267000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,219,-0.82210000000000005,21.305499999999999,0.14359,14.734999999999999,16.463000000000001,18.600999999999999,21.306000000000001,24.823,29.564,36.261000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,220,-0.81399999999999995,21.32,0.14368,14.734,16.468,18.611000000000001,21.32,24.84,29.577000000000002,36.252000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,221,-0.80600000000000005,21.334099999999999,0.14377000000000001,14.734,16.472999999999999,18.620999999999999,21.334,24.856000000000002,29.588999999999999,36.244
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,222,-0.79800000000000004,21.347999999999999,0.14385999999999999,14.733000000000001,16.477,18.63,21.347999999999999,24.873000000000001,29.602,36.234999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,223,-0.78990000000000005,21.361699999999999,0.14396,14.731999999999999,16.48,18.638999999999999,21.361999999999998,24.888999999999999,29.614000000000001,36.228000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,224,-0.78190000000000004,21.3752,0.14405000000000001,14.731,16.484000000000002,18.648,21.375,24.905000000000001,29.626000000000001,36.219000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,225,-0.77380000000000004,21.388400000000001,0.14413999999999999,14.728999999999999,16.488,18.657,21.388000000000002,24.92,29.637,36.209000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,226,-0.76580000000000004,21.401399999999999,0.14423,14.728,16.491,18.664999999999999,21.401,24.934999999999999,29.649000000000001,36.200000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,227,-0.75770000000000004,21.414300000000001,0.14432,14.726000000000001,16.494,18.672999999999998,21.414000000000001,24.951000000000001,29.658999999999999,36.19
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,female,month,228,-0.74960000000000004,21.4269,0.14441000000000001,14.724,16.497,18.681000000000001,21.427,24.965,29.67,36.179000000000002
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-13-weeks_zscores.xlsx,male,week,0,-0.30530000000000002,13.4069,0.095600000000000004,10.199999999999999,11.1,12.2,13.4,14.8,16.3,18.100000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-13-weeks_zscores.xlsx,male,week,1,0.52470000000000006,13.3421,0.098210000000000006,9.6999999999999993,10.8,12.1,13.3,14.7,16.100000000000001,17.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-13-weeks_zscores.xlsx,male,week,2,0.41770000000000002,13.637700000000001,0.094539999999999999,10.1,11.2,12.4,13.6,15,16.399999999999999,17.8
@ -261,7 +257,6 @@ https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standard
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-13-weeks_zscores.xlsx,male,week,11,0.051999999999999998,16.688199999999998,0.085690000000000002,12.9,14,15.3,16.7,18.2,19.8,21.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-13-weeks_zscores.xlsx,male,week,12,0.029100000000000001,16.801600000000001,0.085309999999999997,13,14.2,15.4,16.8,18.3,19.899999999999999,21.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-13-weeks_zscores.xlsx,male,week,13,0.0077000000000000002,16.895,0.084959999999999994,13.1,14.3,15.5,16.899999999999999,18.399999999999999,20,21.8
source,gender,age_unit,age,l,m,s,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-2-years_zcores.xlsx,male,month,0,-0.30530000000000002,13.4069,0.095600000000000004,10.199999999999999,11.1,12.2,13.4,14.8,16.3,18.100000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-2-years_zcores.xlsx,male,month,1,0.27079999999999999,14.944100000000001,0.090270000000000003,11.3,12.4,13.6,14.9,16.3,17.8,19.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-2-years_zcores.xlsx,male,month,2,0.1118,16.319500000000001,0.08677,12.5,13.7,15,16.3,17.8,19.399999999999999,21.1
@ -287,7 +282,6 @@ https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standard
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-2-years_zcores.xlsx,male,month,22,-0.61739999999999995,15.841200000000001,0.078020000000000006,12.7,13.6,14.7,15.8,17.2,18.7,20.399999999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-2-years_zcores.xlsx,male,month,23,-0.63280000000000003,15.7852,0.077859999999999999,12.7,13.6,14.6,15.8,17.100000000000001,18.600000000000001,20.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_0-to-2-years_zcores.xlsx,male,month,24,-0.64729999999999999,15.7356,0.077710000000000001,12.7,13.6,14.6,15.7,17,18.5,20.3
source,gender,age_unit,age,l,m,s,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_2-to-5-years_zscores.xlsx,male,month,24,-0.61870000000000003,16.018899999999999,0.077850000000000003,12.9,13.8,14.8,16,17.3,18.899999999999999,20.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_2-to-5-years_zscores.xlsx,male,month,25,-0.58399999999999996,15.98,0.077920000000000003,12.8,13.8,14.8,16,17.3,18.8,20.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_2-to-5-years_zscores.xlsx,male,month,26,-0.54969999999999997,15.9414,0.078,12.8,13.7,14.8,15.9,17.3,18.8,20.5
@ -325,172 +319,171 @@ https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standard
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_2-to-5-years_zscores.xlsx,male,month,58,-0.62229999999999996,15.209099999999999,0.086169999999999997,12,12.9,14,15.2,16.600000000000001,18.3,20.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_2-to-5-years_zscores.xlsx,male,month,59,-0.6552,15.2,0.08659,12,12.9,14,15.2,16.600000000000001,18.3,20.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/bmi_boys_2-to-5-years_zscores.xlsx,male,month,60,-0.68920000000000003,15.191599999999999,0.086999999999999994,12,12.9,14,15.2,16.600000000000001,18.3,20.3
source,gender,age_unit,age,l,m,s,sd4neg,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3,sd4
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,61,-0.73870000000000002,15.264099999999999,0.083900000000000002,11.204000000000001,12.118,13.031000000000001,14.071,15.263999999999999,16.645,18.259,20.166,22.071999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,62,-0.7621,15.2616,0.084140000000000006,11.204000000000001,12.115,13.026999999999999,14.066000000000001,15.262,16.648,18.273,20.2,22.126999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,63,-0.78559999999999997,15.260400000000001,0.084390000000000007,11.204000000000001,12.114000000000001,13.023999999999999,14.063000000000001,15.26,16.652999999999999,18.29,20.238,22.186
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,64,-0.80889999999999995,15.2605,0.084640000000000007,11.205,12.114000000000001,13.022,14.061,15.26,16.658999999999999,18.308,20.277000000000001,22.247
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,65,-0.83220000000000005,15.261900000000001,0.084900000000000003,11.207000000000001,12.114000000000001,13.021000000000001,14.06,15.262,16.667000000000002,18.327999999999999,20.32,22.312000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,66,-0.85540000000000005,15.2645,0.08516,11.21,12.115,13.021000000000001,14.06,15.263999999999999,16.675999999999998,18.350000000000001,20.364999999999998,22.38
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,67,-0.87849999999999995,15.2684,0.085430000000000006,11.212999999999999,12.117000000000001,13.021000000000001,14.061,15.268000000000001,16.686,18.373999999999999,20.413,22.452000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,68,-0.90149999999999997,15.2737,0.085699999999999998,11.218,12.121,13.023,14.063000000000001,15.273999999999999,16.699000000000002,18.399000000000001,20.463000000000001,22.526
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,69,-0.92430000000000001,15.280099999999999,0.085970000000000005,11.223000000000001,12.125,13.026,14.067,15.28,16.712,18.427,20.515000000000001,22.603999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,70,-0.94710000000000005,15.287699999999999,0.086249999999999993,11.228,12.129,13.03,14.071,15.288,16.727,18.456,20.571000000000002,22.684999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,71,-0.96970000000000001,15.2965,0.086529999999999996,11.234999999999999,12.135,13.035,14.077,15.295999999999999,16.742999999999999,18.486999999999998,20.628,22.77
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,72,-0.99209999999999998,15.3062,0.086819999999999994,11.242000000000001,12.141,13.04,14.083,15.305999999999999,16.760999999999999,18.52,20.689,22.858000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,73,-1.0144,15.3169,0.087110000000000007,11.249000000000001,12.148,13.047000000000001,14.09,15.317,16.78,18.553999999999998,20.751000000000001,22.948
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,74,-1.0365,15.3285,0.087410000000000002,11.257,12.154999999999999,13.053000000000001,14.098000000000001,15.327999999999999,16.798999999999999,18.588999999999999,20.815999999999999,23.042999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,75,-1.0584,15.3408,0.087709999999999996,11.265000000000001,12.163,13.061,14.106999999999999,15.340999999999999,16.82,18.626000000000001,20.882999999999999,23.138999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,76,-1.0801000000000001,15.353999999999999,0.088020000000000001,11.273999999999999,12.170999999999999,13.069000000000001,14.116,15.353999999999999,16.841999999999999,18.664999999999999,20.952000000000002,23.24
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,77,-1.1016999999999999,15.367900000000001,0.088330000000000006,11.282999999999999,12.18,13.077,14.125999999999999,15.368,16.864000000000001,18.704000000000001,21.023,23.343
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,78,-1.123,15.3825,0.088650000000000007,11.292,12.189,13.086,14.135999999999999,15.382,16.888000000000002,18.745000000000001,21.097000000000001,23.449000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,79,-1.1440999999999999,15.3978,0.088980000000000004,11.301,12.198,13.095000000000001,14.147,15.398,16.913,18.788,21.173999999999999,23.559000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,80,-1.1649,15.4137,0.08931,11.311,12.208,13.105,14.157999999999999,15.414,16.937999999999999,18.831,21.251000000000001,23.672000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,81,-1.1856,15.430199999999999,0.089639999999999997,11.321,12.218,13.115,14.17,15.43,16.963999999999999,18.876000000000001,21.331,23.786000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,82,-1.206,15.4473,0.089980000000000004,11.331,12.228,13.125999999999999,14.183,15.446999999999999,16.991,18.922000000000001,21.413,23.905000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,83,-1.2261,15.465,0.090329999999999994,11.340999999999999,12.239000000000001,13.135999999999999,14.195,15.465,17.018999999999998,18.969000000000001,21.498000000000001,24.027000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,84,-1.246,15.4832,0.090679999999999997,11.351000000000001,12.25,13.148,14.209,15.483000000000001,17.047000000000001,19.016999999999999,21.584,24.152000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,85,-1.2656000000000001,15.501899999999999,0.09103,11.362,12.260999999999999,13.159000000000001,14.222,15.502000000000001,17.076000000000001,19.065999999999999,21.672000000000001,24.279
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,86,-1.2848999999999999,15.521000000000001,0.091389999999999999,11.372999999999999,12.272,13.170999999999999,14.236000000000001,15.521000000000001,17.106000000000002,19.116,21.763000000000002,24.408999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,87,-1.304,15.540699999999999,0.091759999999999994,11.384,12.282999999999999,13.183,14.25,15.541,17.135999999999999,19.167999999999999,21.856000000000002,24.544
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,88,-1.3228,15.5608,0.092130000000000004,11.395,12.295,13.195,14.265000000000001,15.561,17.167000000000002,19.22,21.95,24.681000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,89,-1.3413999999999999,15.5814,0.092509999999999995,11.406000000000001,12.307,13.208,14.28,15.581,17.199000000000002,19.274000000000001,22.047999999999998,24.821999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,90,-1.3595999999999999,15.6023,0.09289,11.417,12.319000000000001,13.221,14.295,15.602,17.231000000000002,19.327999999999999,22.146999999999998,24.966000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,91,-1.3775999999999999,15.623699999999999,0.093270000000000006,11.428000000000001,12.331,13.234,14.311,15.624000000000001,17.263999999999999,19.382999999999999,22.247,25.111999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,92,-1.3953,15.6455,0.093659999999999993,11.44,12.343,13.247,14.327,15.646000000000001,17.297000000000001,19.440000000000001,22.350999999999999,25.262
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,93,-1.4126000000000001,15.6677,0.094060000000000005,11.451000000000001,12.356,13.26,14.343,15.667999999999999,17.331,19.497,22.457000000000001,25.416
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,94,-1.4297,15.690300000000001,0.094450000000000006,11.462999999999999,12.368,13.273999999999999,14.36,15.69,17.366,19.555,22.562999999999999,25.571000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,95,-1.4463999999999999,15.7133,0.09486,11.474,12.381,13.288,14.377000000000001,15.712999999999999,17.401,19.614999999999998,22.672999999999998,25.731999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,96,-1.4629000000000001,15.736800000000001,0.095259999999999997,11.486000000000001,12.394,13.302,14.394,15.737,17.437000000000001,19.675000000000001,22.785,25.895
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,97,-1.4790000000000001,15.7606,0.095670000000000005,11.497999999999999,12.407,13.317,14.412000000000001,15.760999999999999,17.472999999999999,19.736000000000001,22.899000000000001,26.061
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,98,-1.4946999999999999,15.784800000000001,0.096089999999999995,11.51,12.42,13.331,14.429,15.785,17.510000000000002,19.797999999999998,23.015000000000001,26.231999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,99,-1.5101,15.8094,0.096509999999999999,11.521000000000001,12.433999999999999,13.346,14.446999999999999,15.808999999999999,17.547999999999998,19.861999999999998,23.134,26.405999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,100,-1.5251999999999999,15.8344,0.096930000000000002,11.534000000000001,12.446999999999999,13.361000000000001,14.465999999999999,15.834,17.585999999999999,19.925999999999998,23.254000000000001,26.582000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,101,-1.5399,15.8597,0.097350000000000006,11.545999999999999,12.461,13.375999999999999,14.484,15.86,17.623999999999999,19.989999999999998,23.376000000000001,26.760999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,102,-1.5542,15.8855,0.097780000000000006,11.558,12.475,13.391999999999999,14.503,15.885999999999999,17.663,20.056000000000001,23.5,26.945
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,103,-1.5681,15.9116,0.098210000000000006,11.57,12.489000000000001,13.407999999999999,14.523,15.912000000000001,17.702000000000002,20.123000000000001,23.626999999999999,27.131
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,104,-1.5817000000000001,15.9381,0.098640000000000005,11.583,12.503,13.423999999999999,14.542,15.938000000000001,17.742000000000001,20.190000000000001,23.754999999999999,27.32
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,105,-1.5948,15.9651,0.099070000000000005,11.595000000000001,12.518000000000001,13.44,14.561999999999999,15.965,17.783000000000001,20.257999999999999,23.885000000000002,27.510999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,106,-1.6075999999999999,15.9925,0.099510000000000001,11.608000000000001,12.532,13.456,14.582000000000001,15.992000000000001,17.824000000000002,20.327000000000002,24.018000000000001,27.707999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,107,-1.6198999999999999,16.020499999999998,0.099940000000000001,11.621,12.547000000000001,13.473000000000001,14.603,16.02,17.866,20.396999999999998,24.151,27.905000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,108,-1.6317999999999999,16.048999999999999,0.10038,11.634,12.561999999999999,13.491,14.624000000000001,16.048999999999999,17.908000000000001,20.468,24.288,28.106999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,109,-1.6433,16.078099999999999,0.10082000000000001,11.647,12.577999999999999,13.507999999999999,14.646000000000001,16.077999999999999,17.952000000000002,20.54,24.425999999999998,28.312000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,110,-1.6544000000000001,16.107800000000001,0.10126,11.661,12.593999999999999,13.526,14.667999999999999,16.108000000000001,17.995999999999999,20.613,24.567,28.52
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,111,-1.6651,16.138100000000001,0.1017,11.675000000000001,12.61,13.545,14.691000000000001,16.138000000000002,18.04,20.687000000000001,24.709,28.731000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,112,-1.6753,16.1692,0.10213999999999999,11.689,12.625999999999999,13.564,14.714,16.169,18.085999999999999,20.763000000000002,24.853999999999999,28.945
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,113,-1.6851,16.200900000000001,0.10259,11.702999999999999,12.643000000000001,13.583,14.738,16.201000000000001,18.132000000000001,20.838999999999999,25.001000000000001,29.163
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,114,-1.6943999999999999,16.2333,0.10303,11.718,12.661,13.603,14.763,16.233000000000001,18.178999999999998,20.916,25.149000000000001,29.382000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,115,-1.7032,16.266500000000001,0.10347000000000001,11.733000000000001,12.679,13.624000000000001,14.788,16.265999999999998,18.227,20.994,25.298999999999999,29.603999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,116,-1.7116,16.3004,0.10391,11.749000000000001,12.696999999999999,13.645,14.814,16.3,18.276,21.074000000000002,25.451000000000001,29.827999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,117,-1.7196,16.335100000000001,0.10435,11.765000000000001,12.715999999999999,13.667,14.84,16.335000000000001,18.326000000000001,21.154,25.605,30.055
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,118,-1.7271000000000001,16.3704,0.10478,11.781000000000001,12.734999999999999,13.689,14.867000000000001,16.37,18.376000000000001,21.234000000000002,25.757999999999999,30.282
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,119,-1.7341,16.406500000000001,0.10521999999999999,11.798,12.755000000000001,13.712,14.895,16.405999999999999,18.428000000000001,21.317,25.914999999999999,30.513000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,120,-1.7406999999999999,16.443300000000001,0.10566,11.815,12.775,13.734999999999999,14.923,16.443000000000001,18.48,21.4,26.073,30.745999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,121,-1.7467999999999999,16.480699999999999,0.10609,11.832000000000001,12.795999999999999,13.759,14.952,16.481000000000002,18.532,21.483000000000001,26.231000000000002,30.978999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,122,-1.7524999999999999,16.518899999999999,0.10652,11.85,12.817,13.784000000000001,14.981999999999999,16.518999999999998,18.585999999999999,21.568000000000001,26.390999999999998,31.213000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,123,-1.7578,16.5578,0.10695,11.868,12.837999999999999,13.808,15.012,16.558,18.64,21.652999999999999,26.552,31.45
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,124,-1.7625999999999999,16.5974,0.10738,11.885999999999999,12.86,13.834,15.042999999999999,16.597000000000001,18.696000000000002,21.739000000000001,26.713999999999999,31.687999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,125,-1.7669999999999999,16.637599999999999,0.10780000000000001,11.904999999999999,12.882,13.86,15.074,16.638000000000002,18.751000000000001,21.826000000000001,26.875,31.925000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,126,-1.7709999999999999,16.678599999999999,0.10823000000000001,11.923999999999999,12.904999999999999,13.885999999999999,15.106,16.678999999999998,18.808,21.914000000000001,27.04,32.165999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,127,-1.7745,16.720300000000002,0.10865,11.943,12.928000000000001,13.913,15.138999999999999,16.72,18.864999999999998,22.001999999999999,27.204000000000001,32.405000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,128,-1.7777000000000001,16.762799999999999,0.10906,11.964,12.952,13.941000000000001,15.172000000000001,16.763000000000002,18.922999999999998,22.09,27.367000000000001,32.643000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,129,-1.7804,16.805900000000001,0.10947999999999999,11.984,12.976000000000001,13.968999999999999,15.206,16.806000000000001,18.981999999999999,22.18,27.533000000000001,32.884999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,130,-1.7827999999999999,16.849699999999999,0.10989,12.004,13.000999999999999,13.997999999999999,15.241,16.850000000000001,19.042000000000002,22.271000000000001,27.698,33.125
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,131,-1.7847,16.894100000000002,0.1103,12.025,13.026,14.026999999999999,15.276,16.893999999999998,19.102,22.361999999999998,27.863,33.365000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,132,-1.7862,16.9392,0.11070000000000001,12.045999999999999,13.051,14.055999999999999,15.311999999999999,16.939,19.163,22.452000000000002,28.027000000000001,33.601999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,133,-1.7873000000000001,16.984999999999999,0.1111,12.068,13.077,14.087,15.348000000000001,16.984999999999999,19.224,22.544,28.192,33.838999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,134,-1.7881,17.031400000000001,0.1115,12.09,13.103,14.117000000000001,15.385,17.030999999999999,19.286999999999999,22.637,28.356999999999999,34.076999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,135,-1.7884,17.078399999999998,0.11189,12.112,13.13,14.148,15.422000000000001,17.077999999999999,19.349,22.728999999999999,28.52,34.311
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,136,-1.7884,17.126200000000001,0.11228,12.134,13.157,14.18,15.461,17.126000000000001,19.413,22.821999999999999,28.684000000000001,34.545000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,137,-1.788,17.174600000000002,0.11266,12.157,13.185,14.212,15.499000000000001,17.175000000000001,19.477,22.914999999999999,28.846,34.776000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,138,-1.7873000000000001,17.223600000000001,0.11304,12.180999999999999,13.212999999999999,14.244999999999999,15.539,17.224,19.542000000000002,23.009,29.007999999999999,35.006
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,139,-1.7861,17.273399999999999,0.11342000000000001,12.204000000000001,13.241,14.278,15.577999999999999,17.273,19.606999999999999,23.103999999999999,29.169,35.234999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,140,-1.7846,17.324000000000002,0.11379,12.228,13.27,14.311999999999999,15.619,17.324000000000002,19.673999999999999,23.199000000000002,29.329000000000001,35.46
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,141,-1.7827999999999999,17.3752,0.11415,12.253,13.3,14.347,15.66,17.375,19.741,23.292999999999999,29.486999999999998,35.680999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,142,-1.7806,17.427199999999999,0.11451,12.278,13.33,14.382,15.702,17.427,19.808,23.388999999999999,29.645,35.901000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,143,-1.778,17.479900000000001,0.11487,12.303000000000001,13.36,14.417,15.744999999999999,17.48,19.876999999999999,23.484999999999999,29.802,36.119
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,144,-1.7750999999999999,17.5334,0.11522,12.327999999999999,13.391,14.452999999999999,15.788,17.533000000000001,19.946000000000002,23.581,29.957000000000001,36.332999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,145,-1.7719,17.587700000000002,0.11556,12.355,13.422000000000001,14.49,15.833,17.588000000000001,20.015000000000001,23.677,30.11,36.542000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,146,-1.7684,17.642700000000001,0.1159,12.381,13.454000000000001,14.528,15.877000000000001,17.643000000000001,20.085999999999999,23.774000000000001,30.262,36.75
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,147,-1.7645,17.698499999999999,0.11623,12.407999999999999,13.487,14.566000000000001,15.923,17.698,20.157,23.870999999999999,30.411999999999999,36.951999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,148,-1.7604,17.755099999999999,0.11656,12.436,13.52,14.605,15.968999999999999,17.754999999999999,20.228999999999999,23.969000000000001,30.561,37.154000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,149,-1.7559,17.8124,0.11688,12.464,13.554,14.644,16.015999999999998,17.812000000000001,20.302,24.067,30.707999999999998,37.348999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,150,-1.7511000000000001,17.8704,0.1172,12.492000000000001,13.587999999999999,14.683999999999999,16.062999999999999,17.87,20.375,24.164999999999999,30.853999999999999,37.542999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,151,-1.7461,17.929200000000002,0.11751,12.52,13.622,14.724,16.111999999999998,17.928999999999998,20.449000000000002,24.263000000000002,30.998000000000001,37.731999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,152,-1.7407999999999999,17.988700000000001,0.11781,12.55,13.657999999999999,14.766,16.161000000000001,17.989000000000001,20.524000000000001,24.361999999999998,31.138000000000002,37.914999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,153,-1.7352000000000001,18.0488,0.11811000000000001,12.579000000000001,13.693,14.807,16.21,18.048999999999999,20.599,24.46,31.277999999999999,38.095999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,154,-1.7293000000000001,18.1096,0.11841,12.609,13.728999999999999,14.849,16.260000000000002,18.11,20.675000000000001,24.559000000000001,31.417000000000002,38.274999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,155,-1.7232000000000001,18.170999999999999,0.11869,12.638999999999999,13.766,14.891999999999999,16.311,18.170999999999999,20.751000000000001,24.658000000000001,31.550999999999998,38.444000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,156,-1.7168000000000001,18.233000000000001,0.11898,12.669,13.802,14.935,16.361999999999998,18.233000000000001,20.829000000000001,24.757000000000001,31.686,38.616
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,157,-1.7101999999999999,18.295500000000001,0.11924999999999999,12.7,13.839,14.978999999999999,16.414000000000001,18.295999999999999,20.905999999999999,24.856000000000002,31.815999999999999,38.777000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,158,-1.7033,18.358599999999999,0.11952,12.731,13.877000000000001,15.023,16.466000000000001,18.359000000000002,20.984000000000002,24.954000000000001,31.945,38.936
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,159,-1.6961999999999999,18.4221,0.11978999999999999,12.762,13.914999999999999,15.067,16.518999999999998,18.422000000000001,21.062000000000001,25.053000000000001,32.073,39.093000000000004
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,160,-1.6888000000000001,18.486000000000001,0.12005,12.794,13.952999999999999,15.112,16.571999999999999,18.486000000000001,21.14,25.152000000000001,32.197000000000003,39.243000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,161,-1.6811,18.5502,0.1203,12.824999999999999,13.991,15.157,16.625,18.55,21.219000000000001,25.248999999999999,32.317,39.384999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,162,-1.6732,18.614799999999999,0.12055,12.856999999999999,14.029,15.202,16.678999999999998,18.614999999999998,21.297999999999998,25.347000000000001,32.436,39.524999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,163,-1.6651,18.679500000000001,0.12078999999999999,12.888999999999999,14.068,15.247,16.733000000000001,18.68,21.376000000000001,25.443999999999999,32.551000000000002,39.658999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,164,-1.6568000000000001,18.744499999999999,0.12102,12.920999999999999,14.106999999999999,15.292999999999999,16.786999999999999,18.744,21.454999999999998,25.54,32.662999999999997,39.786000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,165,-1.6482000000000001,18.8095,0.12125,12.952,14.145,15.337999999999999,16.841000000000001,18.809999999999999,21.533999999999999,25.635000000000002,32.771999999999998,39.908999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,166,-1.6394,18.874600000000001,0.12148,12.984,14.183999999999999,15.384,16.895,18.875,21.613,25.731000000000002,32.880000000000003,40.03
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,167,-1.6304000000000001,18.939800000000002,0.1217,13.015000000000001,14.222,15.429,16.95,18.940000000000001,21.690999999999999,25.824999999999999,32.984999999999999,40.143999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,168,-1.6211,19.004999999999999,0.12191,13.047000000000001,14.260999999999999,15.475,17.004000000000001,19.004999999999999,21.77,25.917999999999999,33.084000000000003,40.25
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,169,-1.6115999999999999,19.0701,0.12212000000000001,13.077999999999999,14.298999999999999,15.521000000000001,17.058,19.07,21.847999999999999,26.010999999999999,33.182000000000002,40.353000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,170,-1.6020000000000001,19.135100000000001,0.12232999999999999,13.109,14.337,15.566000000000001,17.113,19.135000000000002,21.925999999999998,26.103000000000002,33.279000000000003,40.454000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,171,-1.5921000000000001,19.2,0.12253,13.138999999999999,14.375,15.611000000000001,17.167000000000002,19.2,22.004000000000001,26.193999999999999,33.371000000000002,40.546999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,172,-1.5821000000000001,19.264800000000001,0.12272,13.17,14.414,15.657,17.221,19.265000000000001,22.081,26.283999999999999,33.459000000000003,40.634
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,173,-1.5719000000000001,19.3294,0.12291000000000001,13.201000000000001,14.451000000000001,15.702,17.274999999999999,19.329000000000001,22.158000000000001,26.373000000000001,33.545999999999999,40.718000000000004
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,174,-1.5615000000000001,19.393699999999999,0.1231,13.231,14.489000000000001,15.747,17.329000000000001,19.393999999999998,22.234999999999999,26.462,33.631,40.799999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,175,-1.5509999999999999,19.457799999999999,0.12328,13.260999999999999,14.526,15.791,17.382000000000001,19.457999999999998,22.311,26.548999999999999,33.712000000000003,40.875
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,176,-1.5403,19.521699999999999,0.12346,13.29,14.563000000000001,15.836,17.434999999999999,19.521999999999998,22.387,26.635000000000002,33.790999999999997,40.948
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,177,-1.5294000000000001,19.5853,0.12363,13.319000000000001,14.6,15.88,17.489000000000001,19.585000000000001,22.462,26.72,33.866,41.012999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,178,-1.5185,19.648599999999998,0.12379999999999999,13.348000000000001,14.635999999999999,15.923999999999999,17.541,19.649000000000001,22.536999999999999,26.803999999999998,33.941000000000003,41.078000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,179,-1.5074000000000001,19.7117,0.12396,13.377000000000001,14.672000000000001,15.968,17.594000000000001,19.712,22.611000000000001,26.887,34.012,41.137
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,180,-1.4961,19.7744,0.12411999999999999,13.404999999999999,14.708,16.010999999999999,17.646999999999998,19.774000000000001,22.684999999999999,26.969000000000001,34.081000000000003,41.192
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,181,-1.4847999999999999,19.8367,0.12428,13.433,14.744,16.053999999999998,17.699000000000002,19.837,22.757999999999999,27.050999999999998,34.149000000000001,41.247
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,182,-1.4733000000000001,19.898700000000002,0.12443,13.461,14.779,16.097000000000001,17.75,19.899000000000001,22.831,27.13,34.213000000000001,41.295000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,183,-1.4617,19.9603,0.12458,13.488,14.814,16.14,17.802,19.96,22.902999999999999,27.21,34.274999999999999,41.341000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,184,-1.45,20.0215,0.12472999999999999,13.515000000000001,14.848000000000001,16.181999999999999,17.853000000000002,20.021999999999998,22.975000000000001,27.288,34.337000000000003,41.386000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,185,-1.4381999999999999,20.0823,0.12486999999999999,13.541,14.882,16.224,17.904,20.082000000000001,23.045999999999999,27.364999999999998,34.395000000000003,41.424999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,186,-1.4262999999999999,20.142700000000001,0.12501000000000001,13.567,14.916,16.265000000000001,17.954000000000001,20.143000000000001,23.116,27.440999999999999,34.451999999999998,41.462000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,187,-1.4142999999999999,20.2026,0.12514,13.593,14.95,16.306000000000001,18.004000000000001,20.202999999999999,23.186,27.515000000000001,34.505000000000003,41.494999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,188,-1.4021999999999999,20.2621,0.12528,13.618,14.981999999999999,16.347000000000001,18.053000000000001,20.262,23.254999999999999,27.59,34.558999999999997,41.529000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,189,-1.39,20.321100000000001,0.12540999999999999,13.643000000000001,15.015000000000001,16.387,18.103000000000002,20.321000000000002,23.324000000000002,27.661999999999999,34.61,41.558
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,190,-1.3776999999999999,20.3796,0.12554000000000001,13.667,15.047000000000001,16.427,18.151,20.38,23.390999999999998,27.734000000000002,34.659999999999997,41.585000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,191,-1.3653,20.4376,0.12567,13.69,15.077999999999999,16.466000000000001,18.199000000000002,20.437999999999999,23.459,27.805,34.707999999999998,41.610999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,192,-1.3529,20.495100000000001,0.12579000000000001,13.714,15.109,16.504999999999999,18.247,20.495000000000001,23.524999999999999,27.875,34.753999999999998,41.631999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,193,-1.3403,20.552099999999999,0.12590999999999999,13.736000000000001,15.14,16.542999999999999,18.295000000000002,20.552,23.591000000000001,27.943000000000001,34.796999999999997,41.651000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,194,-1.3277000000000001,20.608499999999999,0.12603,13.759,15.17,16.581,18.341999999999999,20.608000000000001,23.655999999999999,28.010999999999999,34.840000000000003,41.67
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,195,-1.3149,20.664400000000001,0.12615000000000001,13.78,15.199,16.619,18.388000000000002,20.664000000000001,23.721,28.077999999999999,34.881,41.685000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,196,-1.3021,20.7197,0.12626999999999999,13.801,15.228,16.655999999999999,18.434000000000001,20.72,23.785,28.143000000000001,34.921999999999997,41.7
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,197,-1.2891999999999999,20.7745,0.12637999999999999,13.821999999999999,15.257,16.692,18.478999999999999,20.774000000000001,23.847000000000001,28.207000000000001,34.959000000000003,41.710999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,198,-1.2762,20.828700000000001,0.1265,13.842000000000001,15.285,16.728000000000002,18.524000000000001,20.829000000000001,23.91,28.271000000000001,34.997,41.722999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,199,-1.2630999999999999,20.882400000000001,0.12661,13.861000000000001,15.311999999999999,16.763000000000002,18.568000000000001,20.882000000000001,23.972000000000001,28.334,35.031999999999996,41.73
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,200,-1.2499,20.935500000000001,0.12672,13.88,15.339,16.797999999999998,18.611999999999998,20.936,24.032,28.395,35.066000000000003,41.735999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,201,-1.2365999999999999,20.988099999999999,0.12683,13.898,15.365,16.832999999999998,18.655000000000001,20.988,24.093,28.456,35.097999999999999,41.741
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,202,-1.2233000000000001,21.04,0.12694,13.916,15.391,16.867000000000001,18.698,21.04,24.152000000000001,28.515000000000001,35.130000000000003,41.744
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,203,-1.2098,21.0914,0.12703999999999999,13.933,15.417,16.899999999999999,18.741,21.091000000000001,24.210999999999999,28.573,35.158000000000001,41.743000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,204,-1.1961999999999999,21.142299999999999,0.12715000000000001,13.95,15.441000000000001,16.933,18.782,21.141999999999999,24.268999999999998,28.63,35.186999999999998,41.743000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,205,-1.1826000000000001,21.192499999999999,0.12726000000000001,13.965,15.465,16.965,18.823,21.192,24.327000000000002,28.687000000000001,35.215000000000003,41.743000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,206,-1.1688000000000001,21.2423,0.12736,13.981,15.489000000000001,16.997,18.864000000000001,21.242000000000001,24.382999999999999,28.742000000000001,35.24,41.737000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,207,-1.155,21.291399999999999,0.12745999999999999,13.996,15.512,17.027999999999999,18.904,21.291,24.439,28.797000000000001,35.264000000000003,41.731999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,208,-1.141,21.34,0.12756000000000001,14.01,15.534000000000001,17.059000000000001,18.943999999999999,21.34,24.494,28.85,35.286999999999999,41.723999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,209,-1.127,21.388000000000002,0.12767000000000001,14.023,15.555999999999999,17.088999999999999,18.983000000000001,21.388000000000002,24.548999999999999,28.902999999999999,35.31,41.718000000000004
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,210,-1.1129,21.435400000000001,0.12776999999999999,14.036,15.577,17.117999999999999,19.021999999999998,21.434999999999999,24.603000000000002,28.954000000000001,35.331000000000003,41.707999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,211,-1.0986,21.482199999999999,0.12787000000000001,14.048,15.598000000000001,17.146999999999998,19.059999999999999,21.481999999999999,24.655999999999999,29.004999999999999,35.350999999999999,41.697000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,212,-1.0843,21.528500000000001,0.12797,14.06,15.618,17.175999999999998,19.097000000000001,21.527999999999999,24.707999999999998,29.053999999999998,35.369,41.685000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,213,-1.0699000000000001,21.574200000000001,0.12806999999999999,14.071,15.637,17.204000000000001,19.134,21.574000000000002,24.76,29.103000000000002,35.387,41.670999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,214,-1.0552999999999999,21.619299999999999,0.12816,14.081,15.656000000000001,17.231000000000002,19.170999999999999,21.619,24.811,29.15,35.402000000000001,41.652999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,215,-1.0407,21.663799999999998,0.12826000000000001,14.090999999999999,15.673999999999999,17.257999999999999,19.207000000000001,21.664000000000001,24.861000000000001,29.196999999999999,35.417000000000002,41.637999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,216,-1.026,21.707699999999999,0.12836,14.1,15.692,17.283999999999999,19.242000000000001,21.707999999999998,24.911000000000001,29.242999999999999,35.432000000000002,41.621000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,217,-1.0112000000000001,21.751000000000001,0.12845000000000001,14.108000000000001,15.709,17.309999999999999,19.277000000000001,21.751000000000001,24.959,29.286999999999999,35.442999999999998,41.6
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,218,-0.99619999999999997,21.793700000000001,0.12855,14.116,15.725,17.335000000000001,19.311,21.794,25.007999999999999,29.331,35.454999999999998,41.58
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,219,-0.98119999999999996,21.835799999999999,0.12864,14.122999999999999,15.741,17.36,19.344000000000001,21.835999999999999,25.055,29.373000000000001,35.465000000000003,41.558
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,220,-0.96609999999999996,21.877300000000002,0.12873999999999999,14.129,15.756,17.382999999999999,19.376999999999999,21.876999999999999,25.102,29.414999999999999,35.475999999999999,41.536000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,221,-0.95089999999999997,21.918199999999999,0.12883,14.135,15.771000000000001,17.407,19.41,21.917999999999999,25.146999999999998,29.454999999999998,35.482999999999997,41.512
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,222,-0.93559999999999999,21.958500000000001,0.12892999999999999,14.14,15.784000000000001,17.428999999999998,19.442,21.957999999999998,25.193000000000001,29.495999999999999,35.491999999999997,41.488
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,223,-0.92020000000000002,21.998200000000001,0.12902,14.144,15.798,17.452000000000002,19.472999999999999,21.998000000000001,25.236999999999998,29.533999999999999,35.497999999999998,41.460999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,224,-0.90480000000000005,22.037400000000002,0.12911,14.148,15.811,17.472999999999999,19.504000000000001,22.036999999999999,25.280999999999999,29.571999999999999,35.503,41.433999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,225,-0.88919999999999999,22.076000000000001,0.12920000000000001,14.151,15.823,17.495000000000001,19.535,22.076000000000001,25.324000000000002,29.609000000000002,35.506999999999998,41.405999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,226,-0.87350000000000005,22.114000000000001,0.1293,14.153,15.834,17.515000000000001,19.564,22.114000000000001,25.366,29.646000000000001,35.512,41.378
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,227,-0.85780000000000001,22.151399999999999,0.12939000000000001,14.154999999999999,15.845000000000001,17.535,19.594000000000001,22.151,25.408000000000001,29.681000000000001,35.515000000000001,41.347999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,228,-0.84189999999999998,22.188300000000002,0.12948000000000001,14.156000000000001,15.855,17.553999999999998,19.622,22.187999999999999,25.449000000000002,29.716000000000001,35.515999999999998,41.317
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,61,-0.73870000000000002,15.264099999999999,0.083900000000000002,12.118,13.031000000000001,14.071,15.263999999999999,16.645,18.259,20.166
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,62,-0.7621,15.2616,0.084140000000000006,12.115,13.026999999999999,14.066000000000001,15.262,16.648,18.273,20.2
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,63,-0.78559999999999997,15.260400000000001,0.084390000000000007,12.114000000000001,13.023999999999999,14.063000000000001,15.26,16.652999999999999,18.29,20.238
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,64,-0.80889999999999995,15.2605,0.084640000000000007,12.114000000000001,13.022,14.061,15.26,16.658999999999999,18.308,20.277000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,65,-0.83220000000000005,15.261900000000001,0.084900000000000003,12.114000000000001,13.021000000000001,14.06,15.262,16.667000000000002,18.327999999999999,20.32
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,66,-0.85540000000000005,15.2645,0.08516,12.115,13.021000000000001,14.06,15.263999999999999,16.675999999999998,18.350000000000001,20.364999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,67,-0.87849999999999995,15.2684,0.085430000000000006,12.117000000000001,13.021000000000001,14.061,15.268000000000001,16.686,18.373999999999999,20.413
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,68,-0.90149999999999997,15.2737,0.085699999999999998,12.121,13.023,14.063000000000001,15.273999999999999,16.699000000000002,18.399000000000001,20.463000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,69,-0.92430000000000001,15.280099999999999,0.085970000000000005,12.125,13.026,14.067,15.28,16.712,18.427,20.515000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,70,-0.94710000000000005,15.287699999999999,0.086249999999999993,12.129,13.03,14.071,15.288,16.727,18.456,20.571000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,71,-0.96970000000000001,15.2965,0.086529999999999996,12.135,13.035,14.077,15.295999999999999,16.742999999999999,18.486999999999998,20.628
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,72,-0.99209999999999998,15.3062,0.086819999999999994,12.141,13.04,14.083,15.305999999999999,16.760999999999999,18.52,20.689
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,73,-1.0144,15.3169,0.087110000000000007,12.148,13.047000000000001,14.09,15.317,16.78,18.553999999999998,20.751000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,74,-1.0365,15.3285,0.087410000000000002,12.154999999999999,13.053000000000001,14.098000000000001,15.327999999999999,16.798999999999999,18.588999999999999,20.815999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,75,-1.0584,15.3408,0.087709999999999996,12.163,13.061,14.106999999999999,15.340999999999999,16.82,18.626000000000001,20.882999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,76,-1.0801000000000001,15.353999999999999,0.088020000000000001,12.170999999999999,13.069000000000001,14.116,15.353999999999999,16.841999999999999,18.664999999999999,20.952000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,77,-1.1016999999999999,15.367900000000001,0.088330000000000006,12.18,13.077,14.125999999999999,15.368,16.864000000000001,18.704000000000001,21.023
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,78,-1.123,15.3825,0.088650000000000007,12.189,13.086,14.135999999999999,15.382,16.888000000000002,18.745000000000001,21.097000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,79,-1.1440999999999999,15.3978,0.088980000000000004,12.198,13.095000000000001,14.147,15.398,16.913,18.788,21.173999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,80,-1.1649,15.4137,0.08931,12.208,13.105,14.157999999999999,15.414,16.937999999999999,18.831,21.251000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,81,-1.1856,15.430199999999999,0.089639999999999997,12.218,13.115,14.17,15.43,16.963999999999999,18.876000000000001,21.331
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,82,-1.206,15.4473,0.089980000000000004,12.228,13.125999999999999,14.183,15.446999999999999,16.991,18.922000000000001,21.413
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,83,-1.2261,15.465,0.090329999999999994,12.239000000000001,13.135999999999999,14.195,15.465,17.018999999999998,18.969000000000001,21.498000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,84,-1.246,15.4832,0.090679999999999997,12.25,13.148,14.209,15.483000000000001,17.047000000000001,19.016999999999999,21.584
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,85,-1.2656000000000001,15.501899999999999,0.09103,12.260999999999999,13.159000000000001,14.222,15.502000000000001,17.076000000000001,19.065999999999999,21.672000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,86,-1.2848999999999999,15.521000000000001,0.091389999999999999,12.272,13.170999999999999,14.236000000000001,15.521000000000001,17.106000000000002,19.116,21.763000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,87,-1.304,15.540699999999999,0.091759999999999994,12.282999999999999,13.183,14.25,15.541,17.135999999999999,19.167999999999999,21.856000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,88,-1.3228,15.5608,0.092130000000000004,12.295,13.195,14.265000000000001,15.561,17.167000000000002,19.22,21.95
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,89,-1.3413999999999999,15.5814,0.092509999999999995,12.307,13.208,14.28,15.581,17.199000000000002,19.274000000000001,22.047999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,90,-1.3595999999999999,15.6023,0.09289,12.319000000000001,13.221,14.295,15.602,17.231000000000002,19.327999999999999,22.146999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,91,-1.3775999999999999,15.623699999999999,0.093270000000000006,12.331,13.234,14.311,15.624000000000001,17.263999999999999,19.382999999999999,22.247
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,92,-1.3953,15.6455,0.093659999999999993,12.343,13.247,14.327,15.646000000000001,17.297000000000001,19.440000000000001,22.350999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,93,-1.4126000000000001,15.6677,0.094060000000000005,12.356,13.26,14.343,15.667999999999999,17.331,19.497,22.457000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,94,-1.4297,15.690300000000001,0.094450000000000006,12.368,13.273999999999999,14.36,15.69,17.366,19.555,22.562999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,95,-1.4463999999999999,15.7133,0.09486,12.381,13.288,14.377000000000001,15.712999999999999,17.401,19.614999999999998,22.672999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,96,-1.4629000000000001,15.736800000000001,0.095259999999999997,12.394,13.302,14.394,15.737,17.437000000000001,19.675000000000001,22.785
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,97,-1.4790000000000001,15.7606,0.095670000000000005,12.407,13.317,14.412000000000001,15.760999999999999,17.472999999999999,19.736000000000001,22.899000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,98,-1.4946999999999999,15.784800000000001,0.096089999999999995,12.42,13.331,14.429,15.785,17.510000000000002,19.797999999999998,23.015000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,99,-1.5101,15.8094,0.096509999999999999,12.433999999999999,13.346,14.446999999999999,15.808999999999999,17.547999999999998,19.861999999999998,23.134
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,100,-1.5251999999999999,15.8344,0.096930000000000002,12.446999999999999,13.361000000000001,14.465999999999999,15.834,17.585999999999999,19.925999999999998,23.254000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,101,-1.5399,15.8597,0.097350000000000006,12.461,13.375999999999999,14.484,15.86,17.623999999999999,19.989999999999998,23.376000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,102,-1.5542,15.8855,0.097780000000000006,12.475,13.391999999999999,14.503,15.885999999999999,17.663,20.056000000000001,23.5
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,103,-1.5681,15.9116,0.098210000000000006,12.489000000000001,13.407999999999999,14.523,15.912000000000001,17.702000000000002,20.123000000000001,23.626999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,104,-1.5817000000000001,15.9381,0.098640000000000005,12.503,13.423999999999999,14.542,15.938000000000001,17.742000000000001,20.190000000000001,23.754999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,105,-1.5948,15.9651,0.099070000000000005,12.518000000000001,13.44,14.561999999999999,15.965,17.783000000000001,20.257999999999999,23.885000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,106,-1.6075999999999999,15.9925,0.099510000000000001,12.532,13.456,14.582000000000001,15.992000000000001,17.824000000000002,20.327000000000002,24.018000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,107,-1.6198999999999999,16.020499999999998,0.099940000000000001,12.547000000000001,13.473000000000001,14.603,16.02,17.866,20.396999999999998,24.151
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,108,-1.6317999999999999,16.048999999999999,0.10038,12.561999999999999,13.491,14.624000000000001,16.048999999999999,17.908000000000001,20.468,24.288
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,109,-1.6433,16.078099999999999,0.10082000000000001,12.577999999999999,13.507999999999999,14.646000000000001,16.077999999999999,17.952000000000002,20.54,24.425999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,110,-1.6544000000000001,16.107800000000001,0.10126,12.593999999999999,13.526,14.667999999999999,16.108000000000001,17.995999999999999,20.613,24.567
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,111,-1.6651,16.138100000000001,0.1017,12.61,13.545,14.691000000000001,16.138000000000002,18.04,20.687000000000001,24.709
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,112,-1.6753,16.1692,0.10213999999999999,12.625999999999999,13.564,14.714,16.169,18.085999999999999,20.763000000000002,24.853999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,113,-1.6851,16.200900000000001,0.10259,12.643000000000001,13.583,14.738,16.201000000000001,18.132000000000001,20.838999999999999,25.001000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,114,-1.6943999999999999,16.2333,0.10303,12.661,13.603,14.763,16.233000000000001,18.178999999999998,20.916,25.149000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,115,-1.7032,16.266500000000001,0.10347000000000001,12.679,13.624000000000001,14.788,16.265999999999998,18.227,20.994,25.298999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,116,-1.7116,16.3004,0.10391,12.696999999999999,13.645,14.814,16.3,18.276,21.074000000000002,25.451000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,117,-1.7196,16.335100000000001,0.10435,12.715999999999999,13.667,14.84,16.335000000000001,18.326000000000001,21.154,25.605
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,118,-1.7271000000000001,16.3704,0.10478,12.734999999999999,13.689,14.867000000000001,16.37,18.376000000000001,21.234000000000002,25.757999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,119,-1.7341,16.406500000000001,0.10521999999999999,12.755000000000001,13.712,14.895,16.405999999999999,18.428000000000001,21.317,25.914999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,120,-1.7406999999999999,16.443300000000001,0.10566,12.775,13.734999999999999,14.923,16.443000000000001,18.48,21.4,26.073
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,121,-1.7467999999999999,16.480699999999999,0.10609,12.795999999999999,13.759,14.952,16.481000000000002,18.532,21.483000000000001,26.231000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,122,-1.7524999999999999,16.518899999999999,0.10652,12.817,13.784000000000001,14.981999999999999,16.518999999999998,18.585999999999999,21.568000000000001,26.390999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,123,-1.7578,16.5578,0.10695,12.837999999999999,13.808,15.012,16.558,18.64,21.652999999999999,26.552
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,124,-1.7625999999999999,16.5974,0.10738,12.86,13.834,15.042999999999999,16.597000000000001,18.696000000000002,21.739000000000001,26.713999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,125,-1.7669999999999999,16.637599999999999,0.10780000000000001,12.882,13.86,15.074,16.638000000000002,18.751000000000001,21.826000000000001,26.875
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,126,-1.7709999999999999,16.678599999999999,0.10823000000000001,12.904999999999999,13.885999999999999,15.106,16.678999999999998,18.808,21.914000000000001,27.04
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,127,-1.7745,16.720300000000002,0.10865,12.928000000000001,13.913,15.138999999999999,16.72,18.864999999999998,22.001999999999999,27.204000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,128,-1.7777000000000001,16.762799999999999,0.10906,12.952,13.941000000000001,15.172000000000001,16.763000000000002,18.922999999999998,22.09,27.367000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,129,-1.7804,16.805900000000001,0.10947999999999999,12.976000000000001,13.968999999999999,15.206,16.806000000000001,18.981999999999999,22.18,27.533000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,130,-1.7827999999999999,16.849699999999999,0.10989,13.000999999999999,13.997999999999999,15.241,16.850000000000001,19.042000000000002,22.271000000000001,27.698
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,131,-1.7847,16.894100000000002,0.1103,13.026,14.026999999999999,15.276,16.893999999999998,19.102,22.361999999999998,27.863
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,132,-1.7862,16.9392,0.11070000000000001,13.051,14.055999999999999,15.311999999999999,16.939,19.163,22.452000000000002,28.027000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,133,-1.7873000000000001,16.984999999999999,0.1111,13.077,14.087,15.348000000000001,16.984999999999999,19.224,22.544,28.192
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,134,-1.7881,17.031400000000001,0.1115,13.103,14.117000000000001,15.385,17.030999999999999,19.286999999999999,22.637,28.356999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,135,-1.7884,17.078399999999998,0.11189,13.13,14.148,15.422000000000001,17.077999999999999,19.349,22.728999999999999,28.52
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,136,-1.7884,17.126200000000001,0.11228,13.157,14.18,15.461,17.126000000000001,19.413,22.821999999999999,28.684000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,137,-1.788,17.174600000000002,0.11266,13.185,14.212,15.499000000000001,17.175000000000001,19.477,22.914999999999999,28.846
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,138,-1.7873000000000001,17.223600000000001,0.11304,13.212999999999999,14.244999999999999,15.539,17.224,19.542000000000002,23.009,29.007999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,139,-1.7861,17.273399999999999,0.11342000000000001,13.241,14.278,15.577999999999999,17.273,19.606999999999999,23.103999999999999,29.169
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,140,-1.7846,17.324000000000002,0.11379,13.27,14.311999999999999,15.619,17.324000000000002,19.673999999999999,23.199000000000002,29.329000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,141,-1.7827999999999999,17.3752,0.11415,13.3,14.347,15.66,17.375,19.741,23.292999999999999,29.486999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,142,-1.7806,17.427199999999999,0.11451,13.33,14.382,15.702,17.427,19.808,23.388999999999999,29.645
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,143,-1.778,17.479900000000001,0.11487,13.36,14.417,15.744999999999999,17.48,19.876999999999999,23.484999999999999,29.802
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,144,-1.7750999999999999,17.5334,0.11522,13.391,14.452999999999999,15.788,17.533000000000001,19.946000000000002,23.581,29.957000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,145,-1.7719,17.587700000000002,0.11556,13.422000000000001,14.49,15.833,17.588000000000001,20.015000000000001,23.677,30.11
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,146,-1.7684,17.642700000000001,0.1159,13.454000000000001,14.528,15.877000000000001,17.643000000000001,20.085999999999999,23.774000000000001,30.262
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,147,-1.7645,17.698499999999999,0.11623,13.487,14.566000000000001,15.923,17.698,20.157,23.870999999999999,30.411999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,148,-1.7604,17.755099999999999,0.11656,13.52,14.605,15.968999999999999,17.754999999999999,20.228999999999999,23.969000000000001,30.561
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,149,-1.7559,17.8124,0.11688,13.554,14.644,16.015999999999998,17.812000000000001,20.302,24.067,30.707999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,150,-1.7511000000000001,17.8704,0.1172,13.587999999999999,14.683999999999999,16.062999999999999,17.87,20.375,24.164999999999999,30.853999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,151,-1.7461,17.929200000000002,0.11751,13.622,14.724,16.111999999999998,17.928999999999998,20.449000000000002,24.263000000000002,30.998000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,152,-1.7407999999999999,17.988700000000001,0.11781,13.657999999999999,14.766,16.161000000000001,17.989000000000001,20.524000000000001,24.361999999999998,31.138000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,153,-1.7352000000000001,18.0488,0.11811000000000001,13.693,14.807,16.21,18.048999999999999,20.599,24.46,31.277999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,154,-1.7293000000000001,18.1096,0.11841,13.728999999999999,14.849,16.260000000000002,18.11,20.675000000000001,24.559000000000001,31.417000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,155,-1.7232000000000001,18.170999999999999,0.11869,13.766,14.891999999999999,16.311,18.170999999999999,20.751000000000001,24.658000000000001,31.550999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,156,-1.7168000000000001,18.233000000000001,0.11898,13.802,14.935,16.361999999999998,18.233000000000001,20.829000000000001,24.757000000000001,31.686
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,157,-1.7101999999999999,18.295500000000001,0.11924999999999999,13.839,14.978999999999999,16.414000000000001,18.295999999999999,20.905999999999999,24.856000000000002,31.815999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,158,-1.7033,18.358599999999999,0.11952,13.877000000000001,15.023,16.466000000000001,18.359000000000002,20.984000000000002,24.954000000000001,31.945
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,159,-1.6961999999999999,18.4221,0.11978999999999999,13.914999999999999,15.067,16.518999999999998,18.422000000000001,21.062000000000001,25.053000000000001,32.073
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,160,-1.6888000000000001,18.486000000000001,0.12005,13.952999999999999,15.112,16.571999999999999,18.486000000000001,21.14,25.152000000000001,32.197000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,161,-1.6811,18.5502,0.1203,13.991,15.157,16.625,18.55,21.219000000000001,25.248999999999999,32.317
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,162,-1.6732,18.614799999999999,0.12055,14.029,15.202,16.678999999999998,18.614999999999998,21.297999999999998,25.347000000000001,32.436
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,163,-1.6651,18.679500000000001,0.12078999999999999,14.068,15.247,16.733000000000001,18.68,21.376000000000001,25.443999999999999,32.551000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,164,-1.6568000000000001,18.744499999999999,0.12102,14.106999999999999,15.292999999999999,16.786999999999999,18.744,21.454999999999998,25.54,32.662999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,165,-1.6482000000000001,18.8095,0.12125,14.145,15.337999999999999,16.841000000000001,18.809999999999999,21.533999999999999,25.635000000000002,32.771999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,166,-1.6394,18.874600000000001,0.12148,14.183999999999999,15.384,16.895,18.875,21.613,25.731000000000002,32.880000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,167,-1.6304000000000001,18.939800000000002,0.1217,14.222,15.429,16.95,18.940000000000001,21.690999999999999,25.824999999999999,32.984999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,168,-1.6211,19.004999999999999,0.12191,14.260999999999999,15.475,17.004000000000001,19.004999999999999,21.77,25.917999999999999,33.084000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,169,-1.6115999999999999,19.0701,0.12212000000000001,14.298999999999999,15.521000000000001,17.058,19.07,21.847999999999999,26.010999999999999,33.182000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,170,-1.6020000000000001,19.135100000000001,0.12232999999999999,14.337,15.566000000000001,17.113,19.135000000000002,21.925999999999998,26.103000000000002,33.279000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,171,-1.5921000000000001,19.2,0.12253,14.375,15.611000000000001,17.167000000000002,19.2,22.004000000000001,26.193999999999999,33.371000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,172,-1.5821000000000001,19.264800000000001,0.12272,14.414,15.657,17.221,19.265000000000001,22.081,26.283999999999999,33.459000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,173,-1.5719000000000001,19.3294,0.12291000000000001,14.451000000000001,15.702,17.274999999999999,19.329000000000001,22.158000000000001,26.373000000000001,33.545999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,174,-1.5615000000000001,19.393699999999999,0.1231,14.489000000000001,15.747,17.329000000000001,19.393999999999998,22.234999999999999,26.462,33.631
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,175,-1.5509999999999999,19.457799999999999,0.12328,14.526,15.791,17.382000000000001,19.457999999999998,22.311,26.548999999999999,33.712000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,176,-1.5403,19.521699999999999,0.12346,14.563000000000001,15.836,17.434999999999999,19.521999999999998,22.387,26.635000000000002,33.790999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,177,-1.5294000000000001,19.5853,0.12363,14.6,15.88,17.489000000000001,19.585000000000001,22.462,26.72,33.866
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,178,-1.5185,19.648599999999998,0.12379999999999999,14.635999999999999,15.923999999999999,17.541,19.649000000000001,22.536999999999999,26.803999999999998,33.941000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,179,-1.5074000000000001,19.7117,0.12396,14.672000000000001,15.968,17.594000000000001,19.712,22.611000000000001,26.887,34.012
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,180,-1.4961,19.7744,0.12411999999999999,14.708,16.010999999999999,17.646999999999998,19.774000000000001,22.684999999999999,26.969000000000001,34.081000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,181,-1.4847999999999999,19.8367,0.12428,14.744,16.053999999999998,17.699000000000002,19.837,22.757999999999999,27.050999999999998,34.149000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,182,-1.4733000000000001,19.898700000000002,0.12443,14.779,16.097000000000001,17.75,19.899000000000001,22.831,27.13,34.213000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,183,-1.4617,19.9603,0.12458,14.814,16.14,17.802,19.96,22.902999999999999,27.21,34.274999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,184,-1.45,20.0215,0.12472999999999999,14.848000000000001,16.181999999999999,17.853000000000002,20.021999999999998,22.975000000000001,27.288,34.337000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,185,-1.4381999999999999,20.0823,0.12486999999999999,14.882,16.224,17.904,20.082000000000001,23.045999999999999,27.364999999999998,34.395000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,186,-1.4262999999999999,20.142700000000001,0.12501000000000001,14.916,16.265000000000001,17.954000000000001,20.143000000000001,23.116,27.440999999999999,34.451999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,187,-1.4142999999999999,20.2026,0.12514,14.95,16.306000000000001,18.004000000000001,20.202999999999999,23.186,27.515000000000001,34.505000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,188,-1.4021999999999999,20.2621,0.12528,14.981999999999999,16.347000000000001,18.053000000000001,20.262,23.254999999999999,27.59,34.558999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,189,-1.39,20.321100000000001,0.12540999999999999,15.015000000000001,16.387,18.103000000000002,20.321000000000002,23.324000000000002,27.661999999999999,34.61
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,190,-1.3776999999999999,20.3796,0.12554000000000001,15.047000000000001,16.427,18.151,20.38,23.390999999999998,27.734000000000002,34.659999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,191,-1.3653,20.4376,0.12567,15.077999999999999,16.466000000000001,18.199000000000002,20.437999999999999,23.459,27.805,34.707999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,192,-1.3529,20.495100000000001,0.12579000000000001,15.109,16.504999999999999,18.247,20.495000000000001,23.524999999999999,27.875,34.753999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,193,-1.3403,20.552099999999999,0.12590999999999999,15.14,16.542999999999999,18.295000000000002,20.552,23.591000000000001,27.943000000000001,34.796999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,194,-1.3277000000000001,20.608499999999999,0.12603,15.17,16.581,18.341999999999999,20.608000000000001,23.655999999999999,28.010999999999999,34.840000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,195,-1.3149,20.664400000000001,0.12615000000000001,15.199,16.619,18.388000000000002,20.664000000000001,23.721,28.077999999999999,34.881
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,196,-1.3021,20.7197,0.12626999999999999,15.228,16.655999999999999,18.434000000000001,20.72,23.785,28.143000000000001,34.921999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,197,-1.2891999999999999,20.7745,0.12637999999999999,15.257,16.692,18.478999999999999,20.774000000000001,23.847000000000001,28.207000000000001,34.959000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,198,-1.2762,20.828700000000001,0.1265,15.285,16.728000000000002,18.524000000000001,20.829000000000001,23.91,28.271000000000001,34.997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,199,-1.2630999999999999,20.882400000000001,0.12661,15.311999999999999,16.763000000000002,18.568000000000001,20.882000000000001,23.972000000000001,28.334,35.031999999999996
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,200,-1.2499,20.935500000000001,0.12672,15.339,16.797999999999998,18.611999999999998,20.936,24.032,28.395,35.066000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,201,-1.2365999999999999,20.988099999999999,0.12683,15.365,16.832999999999998,18.655000000000001,20.988,24.093,28.456,35.097999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,202,-1.2233000000000001,21.04,0.12694,15.391,16.867000000000001,18.698,21.04,24.152000000000001,28.515000000000001,35.130000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,203,-1.2098,21.0914,0.12703999999999999,15.417,16.899999999999999,18.741,21.091000000000001,24.210999999999999,28.573,35.158000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,204,-1.1961999999999999,21.142299999999999,0.12715000000000001,15.441000000000001,16.933,18.782,21.141999999999999,24.268999999999998,28.63,35.186999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,205,-1.1826000000000001,21.192499999999999,0.12726000000000001,15.465,16.965,18.823,21.192,24.327000000000002,28.687000000000001,35.215000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,206,-1.1688000000000001,21.2423,0.12736,15.489000000000001,16.997,18.864000000000001,21.242000000000001,24.382999999999999,28.742000000000001,35.24
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,207,-1.155,21.291399999999999,0.12745999999999999,15.512,17.027999999999999,18.904,21.291,24.439,28.797000000000001,35.264000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,208,-1.141,21.34,0.12756000000000001,15.534000000000001,17.059000000000001,18.943999999999999,21.34,24.494,28.85,35.286999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,209,-1.127,21.388000000000002,0.12767000000000001,15.555999999999999,17.088999999999999,18.983000000000001,21.388000000000002,24.548999999999999,28.902999999999999,35.31
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,210,-1.1129,21.435400000000001,0.12776999999999999,15.577,17.117999999999999,19.021999999999998,21.434999999999999,24.603000000000002,28.954000000000001,35.331000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,211,-1.0986,21.482199999999999,0.12787000000000001,15.598000000000001,17.146999999999998,19.059999999999999,21.481999999999999,24.655999999999999,29.004999999999999,35.350999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,212,-1.0843,21.528500000000001,0.12797,15.618,17.175999999999998,19.097000000000001,21.527999999999999,24.707999999999998,29.053999999999998,35.369
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,213,-1.0699000000000001,21.574200000000001,0.12806999999999999,15.637,17.204000000000001,19.134,21.574000000000002,24.76,29.103000000000002,35.387
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,214,-1.0552999999999999,21.619299999999999,0.12816,15.656000000000001,17.231000000000002,19.170999999999999,21.619,24.811,29.15,35.402000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,215,-1.0407,21.663799999999998,0.12826000000000001,15.673999999999999,17.257999999999999,19.207000000000001,21.664000000000001,24.861000000000001,29.196999999999999,35.417000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,216,-1.026,21.707699999999999,0.12836,15.692,17.283999999999999,19.242000000000001,21.707999999999998,24.911000000000001,29.242999999999999,35.432000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,217,-1.0112000000000001,21.751000000000001,0.12845000000000001,15.709,17.309999999999999,19.277000000000001,21.751000000000001,24.959,29.286999999999999,35.442999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,218,-0.99619999999999997,21.793700000000001,0.12855,15.725,17.335000000000001,19.311,21.794,25.007999999999999,29.331,35.454999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,219,-0.98119999999999996,21.835799999999999,0.12864,15.741,17.36,19.344000000000001,21.835999999999999,25.055,29.373000000000001,35.465000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,220,-0.96609999999999996,21.877300000000002,0.12873999999999999,15.756,17.382999999999999,19.376999999999999,21.876999999999999,25.102,29.414999999999999,35.475999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,221,-0.95089999999999997,21.918199999999999,0.12883,15.771000000000001,17.407,19.41,21.917999999999999,25.146999999999998,29.454999999999998,35.482999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,222,-0.93559999999999999,21.958500000000001,0.12892999999999999,15.784000000000001,17.428999999999998,19.442,21.957999999999998,25.193000000000001,29.495999999999999,35.491999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,223,-0.92020000000000002,21.998200000000001,0.12902,15.798,17.452000000000002,19.472999999999999,21.998000000000001,25.236999999999998,29.533999999999999,35.497999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,224,-0.90480000000000005,22.037400000000002,0.12911,15.811,17.472999999999999,19.504000000000001,22.036999999999999,25.280999999999999,29.571999999999999,35.503
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,225,-0.88919999999999999,22.076000000000001,0.12920000000000001,15.823,17.495000000000001,19.535,22.076000000000001,25.324000000000002,29.609000000000002,35.506999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,226,-0.87350000000000005,22.114000000000001,0.1293,15.834,17.515000000000001,19.564,22.114000000000001,25.366,29.646000000000001,35.512
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,227,-0.85780000000000001,22.151399999999999,0.12939000000000001,15.845000000000001,17.535,19.594000000000001,22.151,25.408000000000001,29.681000000000001,35.515000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,male,month,228,-0.84189999999999998,22.188300000000002,0.12948000000000001,15.855,17.553999999999998,19.622,22.187999999999999,25.449000000000002,29.716000000000001,35.515999999999998

Can't render this file because it has a wrong number of fields in line 80.

View File

@ -1,154 +1,151 @@
source,gender,age_unit,age,l,m,s,sd,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx,female,week,0,1,33.878700000000002,0.034959999999999998,1.1843999999999999,30.3,31.5,32.700000000000003,33.9,35.1,36.200000000000003,37.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx,female,week,1,1,34.552900000000001,0.033739999999999999,1.1657999999999999,31.1,32.200000000000003,33.4,34.6,35.700000000000003,36.9,38.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx,female,week,2,1,35.227200000000003,0.032509999999999997,1.1452,31.8,32.9,34.1,35.200000000000003,36.4,37.5,38.700000000000003
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx,female,week,3,1,35.843000000000004,0.032309999999999998,1.1580999999999999,32.4,33.5,34.700000000000003,35.799999999999997,37,38.200000000000003,39.299999999999997
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx,female,week,4,1,36.376100000000001,0.032149999999999998,1.1695,32.9,34,35.200000000000003,36.4,37.5,38.700000000000003,39.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx,female,week,5,1,36.847200000000001,0.03202,1.1798999999999999,33.299999999999997,34.5,35.700000000000003,36.799999999999997,38,39.200000000000003,40.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx,female,week,6,1,37.271099999999997,0.031910000000000001,1.1893,33.700000000000003,34.9,36.1,37.299999999999997,38.5,39.6,40.799999999999997
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx,female,week,7,1,37.6584,0.031820000000000001,1.1982999999999999,34.1,35.299999999999997,36.5,37.700000000000003,38.9,40.1,41.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx,female,week,8,1,38.0167,0.031730000000000001,1.2062999999999999,34.4,35.6,36.799999999999997,38,39.200000000000003,40.4,41.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx,female,week,9,1,38.351599999999998,0.031660000000000001,1.2141999999999999,34.700000000000003,35.9,37.1,38.4,39.6,40.799999999999997,42
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx,female,week,10,1,38.667299999999997,0.031579999999999997,1.2211000000000001,35,36.200000000000003,37.4,38.700000000000003,39.9,41.1,42.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx,female,week,11,1,38.966099999999997,0.031519999999999999,1.2282,35.299999999999997,36.5,37.700000000000003,39,40.200000000000003,41.4,42.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx,female,week,12,1,39.250100000000003,0.031460000000000002,1.2347999999999999,35.5,36.799999999999997,38,39.299999999999997,40.5,41.7,43
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx,female,week,13,1,39.521000000000001,0.031399999999999997,1.2410000000000001,35.799999999999997,37,38.299999999999997,39.5,40.799999999999997,42,43.2
source,gender,age_unit,age,l,m,s,sd,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,0,1,33.878700000000002,0.034959999999999998,1.1843999999999999,30.3,31.5,32.700000000000003,33.9,35.1,36.200000000000003,37.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,1,1,36.546300000000002,0.032099999999999997,1.1731,33,34.200000000000003,35.4,36.5,37.700000000000003,38.9,40.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,2,1,38.252099999999999,0.03168,1.2118,34.6,35.799999999999997,37,38.299999999999997,39.5,40.700000000000003,41.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,3,1,39.532800000000002,0.031399999999999997,1.2413000000000001,35.799999999999997,37.1,38.299999999999997,39.5,40.799999999999997,42,43.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,4,1,40.581699999999998,0.031189999999999999,1.2657,36.799999999999997,38.1,39.299999999999997,40.6,41.8,43.1,44.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,5,1,41.459000000000003,0.031019999999999999,1.2861,37.6,38.9,40.200000000000003,41.5,42.7,44,45.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,6,1,42.1995,0.030870000000000002,1.3027,38.299999999999997,39.6,40.9,42.2,43.5,44.8,46.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,7,1,42.829000000000001,0.03075,1.3169999999999999,38.9,40.200000000000003,41.5,42.8,44.1,45.5,46.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,8,1,43.367100000000001,0.030630000000000001,1.3283,39.4,40.700000000000003,42,43.4,44.7,46,47.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,9,1,43.83,0.030530000000000002,1.3381000000000001,39.799999999999997,41.2,42.5,43.8,45.2,46.5,47.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,10,1,44.231900000000003,0.030439999999999998,1.3464,40.200000000000003,41.5,42.9,44.2,45.6,46.9,48.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,11,1,44.584400000000002,0.030349999999999999,1.3531,40.5,41.9,43.2,44.6,45.9,47.3,48.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,12,1,44.896500000000003,0.030269999999999998,1.359,40.799999999999997,42.2,43.5,44.9,46.3,47.6,49
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,13,1,45.175199999999997,0.030190000000000002,1.3637999999999999,41.1,42.4,43.8,45.2,46.5,47.9,49.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,14,1,45.426499999999997,0.030120000000000001,1.3683000000000001,41.3,42.7,44.1,45.4,46.8,48.2,49.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,15,1,45.655099999999997,0.03006,1.3724000000000001,41.5,42.9,44.3,45.7,47,48.4,49.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,16,1,45.865000000000002,0.029989999999999999,1.3754999999999999,41.7,43.1,44.5,45.9,47.2,48.6,50
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,17,1,46.059800000000003,0.029929999999999998,1.3786,41.9,43.3,44.7,46.1,47.4,48.8,50.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,18,1,46.242400000000004,0.029870000000000001,1.3813,42.1,43.5,44.9,46.2,47.6,49,50.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,19,1,46.415199999999999,0.029819999999999999,1.3841000000000001,42.3,43.6,45,46.4,47.8,49.2,50.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,20,1,46.580100000000002,0.029770000000000001,1.3867,42.4,43.8,45.2,46.6,48,49.4,50.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,21,1,46.738399999999999,0.02972,1.3891,42.6,44,45.3,46.7,48.1,49.5,50.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,22,1,46.891300000000001,0.029669999999999998,1.3913,42.7,44.1,45.5,46.9,48.3,49.7,51.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,23,1,47.039099999999998,0.02962,1.3933,42.9,44.3,45.6,47,48.4,49.8,51.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,24,1,47.182200000000002,0.029569999999999999,1.3952,43,44.4,45.8,47.2,48.6,50,51.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,25,1,47.320399999999999,0.029530000000000001,1.3974,43.1,44.5,45.9,47.3,48.7,50.1,51.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,26,1,47.453600000000002,0.029489999999999999,1.3994,43.3,44.7,46.1,47.5,48.9,50.3,51.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,27,1,47.581699999999998,0.02945,1.4013,43.4,44.8,46.2,47.6,49,50.4,51.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,28,1,47.704500000000003,0.029409999999999999,1.403,43.5,44.9,46.3,47.7,49.1,50.5,51.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,29,1,47.821899999999999,0.02937,1.4045000000000001,43.6,45,46.4,47.8,49.2,50.6,52
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,30,1,47.933999999999997,0.029329999999999998,1.4058999999999999,43.7,45.1,46.5,47.9,49.3,50.7,52.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,31,1,48.040999999999997,0.02929,1.4071,43.8,45.2,46.6,48,49.4,50.9,52.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,32,1,48.1432,0.029260000000000001,1.4087000000000001,43.9,45.3,46.7,48.1,49.6,51,52.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,33,1,48.2408,0.029219999999999999,1.4096,44,45.4,46.8,48.2,49.7,51.1,52.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,34,1,48.334299999999999,0.029190000000000001,1.4109,44.1,45.5,46.9,48.3,49.7,51.2,52.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,35,1,48.423900000000003,0.029149999999999999,1.4116,44.2,45.6,47,48.4,49.8,51.2,52.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,36,1,48.509900000000002,0.02912,1.4126000000000001,44.3,45.7,47.1,48.5,49.9,51.3,52.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,37,1,48.592599999999997,0.029090000000000001,1.4136,44.4,45.8,47.2,48.6,50,51.4,52.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,38,1,48.672199999999997,0.029059999999999999,1.4144000000000001,44.4,45.8,47.3,48.7,50.1,51.5,52.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,39,1,48.748899999999999,0.02903,1.4152,44.5,45.9,47.3,48.7,50.2,51.6,53
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,40,1,48.822800000000001,0.029000000000000001,1.4158999999999999,44.6,46,47.4,48.8,50.2,51.7,53.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,41,1,48.894100000000002,0.028969999999999999,1.4165000000000001,44.6,46.1,47.5,48.9,50.3,51.7,53.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,42,1,48.962899999999998,0.02894,1.417,44.7,46.1,47.5,49,50.4,51.8,53.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,43,1,49.029400000000003,0.028910000000000002,1.4174,44.8,46.2,47.6,49,50.4,51.9,53.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,44,1,49.093699999999998,0.028879999999999999,1.4177999999999999,44.8,46.3,47.7,49.1,50.5,51.9,53.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,45,1,49.155999999999999,0.02886,1.4186000000000001,44.9,46.3,47.7,49.2,50.6,52,53.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,46,1,49.2164,0.028830000000000001,1.4189000000000001,45,46.4,47.8,49.2,50.6,52.1,53.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,47,1,49.275100000000002,0.028799999999999999,1.4191,45,46.4,47.9,49.3,50.7,52.1,53.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,48,1,49.332099999999997,0.02878,1.4198,45.1,46.5,47.9,49.3,50.8,52.2,53.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,49,1,49.387700000000002,0.028750000000000001,1.4198999999999999,45.1,46.5,48,49.4,50.8,52.2,53.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,50,1,49.441899999999997,0.028729999999999999,1.4205000000000001,45.2,46.6,48,49.4,50.9,52.3,53.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,51,1,49.494700000000002,0.0287,1.4205000000000001,45.2,46.7,48.1,49.5,50.9,52.3,53.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,52,1,49.546399999999998,0.028680000000000001,1.421,45.3,46.7,48.1,49.5,51,52.4,53.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,53,1,49.596899999999998,0.028649999999999998,1.421,45.3,46.8,48.2,49.6,51,52.4,53.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,54,1,49.6464,0.028629999999999999,1.4214,45.4,46.8,48.2,49.6,51.1,52.5,53.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,55,1,49.694699999999997,0.02861,1.4218,45.4,46.9,48.3,49.7,51.1,52.5,54
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,56,1,49.742100000000001,0.028590000000000001,1.4220999999999999,45.5,46.9,48.3,49.7,51.2,52.6,54
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,57,1,49.788499999999999,0.028559999999999999,1.4219999999999999,45.5,46.9,48.4,49.8,51.2,52.6,54.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,58,1,49.834099999999999,0.028539999999999999,1.4222999999999999,45.6,47,48.4,49.8,51.3,52.7,54.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,59,1,49.878900000000002,0.02852,1.4226000000000001,45.6,47,48.5,49.9,51.3,52.7,54.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,60,1,49.922899999999998,0.028500000000000001,1.4228000000000001,45.7,47.1,48.5,49.9,51.3,52.8,54.2
source,gender,age_unit,age,l,m,s,sd,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx,male,week,0,1,34.461799999999997,0.036859999999999997,1.2703,30.7,31.9,33.200000000000003,34.5,35.700000000000003,37,38.299999999999997
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx,male,week,1,1,35.163400000000003,0.034720000000000001,1.2209000000000001,31.5,32.700000000000003,33.9,35.200000000000003,36.4,37.6,38.799999999999997
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx,male,week,2,1,35.864899999999999,0.032579999999999998,1.1685000000000001,32.4,33.5,34.700000000000003,35.9,37,38.200000000000003,39.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx,male,week,3,1,36.521599999999999,0.031969999999999998,1.1676,33,34.200000000000003,35.4,36.5,37.700000000000003,38.9,40
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx,male,week,4,1,37.092599999999997,0.031480000000000001,1.1677,33.6,34.799999999999997,35.9,37.1,38.299999999999997,39.4,40.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx,male,week,5,1,37.600999999999999,0.03107,1.1682999999999999,34.1,35.299999999999997,36.4,37.6,38.799999999999997,39.9,41.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx,male,week,6,1,38.060899999999997,0.030720000000000001,1.1692,34.6,35.700000000000003,36.9,38.1,39.200000000000003,40.4,41.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx,male,week,7,1,38.482399999999998,0.03041,1.1702999999999999,35,36.1,37.299999999999997,38.5,39.700000000000003,40.799999999999997,42
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx,male,week,8,1,38.872399999999999,0.03014,1.1716,35.4,36.5,37.700000000000003,38.9,40,41.2,42.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx,male,week,9,1,39.236800000000002,0.029899999999999999,1.1732,35.700000000000003,36.9,38.1,39.200000000000003,40.4,41.6,42.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx,male,week,10,1,39.579700000000003,0.029690000000000001,1.1751,36.1,37.200000000000003,38.4,39.6,40.799999999999997,41.9,43.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx,male,week,11,1,39.903300000000002,0.029499999999999998,1.1772,36.4,37.5,38.700000000000003,39.9,41.1,42.3,43.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx,male,week,12,1,40.209600000000002,0.029329999999999998,1.1794,36.700000000000003,37.9,39,40.200000000000003,41.4,42.6,43.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx,male,week,13,1,40.500799999999998,0.029180000000000001,1.1818,37,38.1,39.299999999999997,40.5,41.7,42.9,44
source,gender,age_unit,age,l,m,s,sd,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,0,1,34.461799999999997,0.036859999999999997,1.2703,30.7,31.9,33.200000000000003,34.5,35.700000000000003,37,38.299999999999997
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,1,1,37.2759,0.031329999999999997,1.1678999999999999,33.799999999999997,34.9,36.1,37.299999999999997,38.4,39.6,40.799999999999997
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,2,1,39.128500000000003,0.02997,1.1727000000000001,35.6,36.799999999999997,38,39.1,40.299999999999997,41.5,42.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,3,1,40.513500000000001,0.029180000000000001,1.1821999999999999,37,38.1,39.299999999999997,40.5,41.7,42.9,44.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,4,1,41.631700000000002,0.028680000000000001,1.194,38,39.200000000000003,40.4,41.6,42.8,44,45.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,5,1,42.557600000000001,0.028369999999999999,1.2074,38.9,40.1,41.4,42.6,43.8,45,46.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,6,1,43.330599999999997,0.028170000000000001,1.2205999999999999,39.700000000000003,40.9,42.1,43.3,44.6,45.8,47
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,7,1,43.9803,0.028039999999999999,1.2332000000000001,40.299999999999997,41.5,42.7,44,45.2,46.4,47.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,8,1,44.53,0.027959999999999999,1.2451000000000001,40.799999999999997,42,43.3,44.5,45.8,47,48.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,9,1,44.9998,0.02792,1.2564,41.2,42.5,43.7,45,46.3,47.5,48.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,10,1,45.405099999999997,0.027900000000000001,1.2667999999999999,41.6,42.9,44.1,45.4,46.7,47.9,49.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,11,1,45.757300000000001,0.027890000000000002,1.2762,41.9,43.2,44.5,45.8,47,48.3,49.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,12,1,46.066099999999999,0.027890000000000002,1.2847999999999999,42.2,43.5,44.8,46.1,47.4,48.6,49.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,13,1,46.339500000000001,0.027890000000000002,1.2924,42.5,43.8,45,46.3,47.6,48.9,50.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,14,1,46.584400000000002,0.027910000000000001,1.3002,42.7,44,45.3,46.6,47.9,49.2,50.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,15,1,46.805999999999997,0.02792,1.3068,42.9,44.2,45.5,46.8,48.1,49.4,50.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,16,1,47.008800000000001,0.027949999999999999,1.3139000000000001,43.1,44.4,45.7,47,48.3,49.6,51
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,17,1,47.196199999999997,0.027969999999999998,1.3201000000000001,43.2,44.6,45.9,47.2,48.5,49.8,51.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,18,1,47.371099999999998,0.028000000000000001,1.3264,43.4,44.7,46,47.4,48.7,50,51.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,19,1,47.535699999999999,0.028029999999999999,1.3324,43.5,44.9,46.2,47.5,48.9,50.2,51.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,20,1,47.691899999999997,0.028060000000000002,1.3382000000000001,43.7,45,46.4,47.7,49,50.4,51.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,21,1,47.840800000000002,0.0281,1.3443000000000001,43.8,45.2,46.5,47.8,49.2,50.5,51.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,22,1,47.9833,0.028129999999999999,1.3498000000000001,43.9,45.3,46.6,48,49.3,50.7,52
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,23,1,48.120100000000001,0.028170000000000001,1.3554999999999999,44.1,45.4,46.8,48.1,49.5,50.8,52.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,24,1,48.2515,0.028209999999999999,1.3612,44.2,45.5,46.9,48.3,49.6,51,52.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,25,1,48.377699999999997,0.028250000000000001,1.3667,44.3,45.6,47,48.4,49.7,51.1,52.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,26,1,48.498899999999999,0.028299999999999999,1.3725000000000001,44.4,45.8,47.1,48.5,49.9,51.2,52.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,27,1,48.615099999999998,0.028340000000000001,1.3777999999999999,44.5,45.9,47.2,48.6,50,51.4,52.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,28,1,48.726399999999998,0.028379999999999999,1.3829,44.6,46,47.3,48.7,50.1,51.5,52.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,29,1,48.833100000000002,0.028420000000000001,1.3877999999999999,44.7,46.1,47.4,48.8,50.2,51.6,53
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,30,1,48.935099999999998,0.028469999999999999,1.3932,44.8,46.1,47.5,48.9,50.3,51.7,53.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,31,1,49.032699999999998,0.028510000000000001,1.3978999999999999,44.8,46.2,47.6,49,50.4,51.8,53.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,32,1,49.125999999999998,0.028549999999999999,1.4026000000000001,44.9,46.3,47.7,49.1,50.5,51.9,53.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,33,1,49.215299999999999,0.028590000000000001,1.4071,45,46.4,47.8,49.2,50.6,52,53.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,34,1,49.300699999999999,0.028629999999999999,1.4115,45.1,46.5,47.9,49.3,50.7,52.1,53.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,35,1,49.382599999999996,0.028670000000000001,1.4157999999999999,45.1,46.6,48,49.4,50.8,52.2,53.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,36,1,49.461199999999998,0.028709999999999999,1.42,45.2,46.6,48,49.5,50.9,52.3,53.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,37,1,49.536700000000003,0.028750000000000001,1.4241999999999999,45.3,46.7,48.1,49.5,51,52.4,53.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,38,1,49.609299999999998,0.02878,1.4278,45.3,46.8,48.2,49.6,51,52.5,53.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,39,1,49.679099999999998,0.028819999999999998,1.4318,45.4,46.8,48.2,49.7,51.1,52.5,54
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,40,1,49.746499999999997,0.02886,1.4357,45.4,46.9,48.3,49.7,51.2,52.6,54.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,41,1,49.811599999999999,0.028889999999999999,1.4391,45.5,46.9,48.4,49.8,51.3,52.7,54.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,42,1,49.874499999999998,0.028930000000000001,1.4429000000000001,45.5,47,48.4,49.9,51.3,52.8,54.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,43,1,49.935400000000001,0.02896,1.4460999999999999,45.6,47,48.5,49.9,51.4,52.8,54.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,44,1,49.994199999999999,0.028989999999999998,1.4493,45.6,47.1,48.5,50,51.4,52.9,54.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,45,1,50.051200000000001,0.02903,1.4530000000000001,45.7,47.1,48.6,50.1,51.5,53,54.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,46,1,50.106400000000001,0.029059999999999999,1.4560999999999999,45.7,47.2,48.7,50.1,51.6,53,54.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,47,1,50.159799999999997,0.029090000000000001,1.4592000000000001,45.8,47.2,48.7,50.2,51.6,53.1,54.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,48,1,50.211500000000001,0.02912,1.4621999999999999,45.8,47.3,48.7,50.2,51.7,53.1,54.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,49,1,50.261699999999998,0.029149999999999999,1.4651000000000001,45.9,47.3,48.8,50.3,51.7,53.2,54.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,50,1,50.310499999999998,0.029180000000000001,1.4681,45.9,47.4,48.8,50.3,51.8,53.2,54.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,51,1,50.357799999999997,0.02921,1.4710000000000001,45.9,47.4,48.9,50.4,51.8,53.3,54.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,52,1,50.4039,0.029239999999999999,1.4738,46,47.5,48.9,50.4,51.9,53.4,54.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,53,1,50.448799999999999,0.029270000000000001,1.4765999999999999,46,47.5,49,50.4,51.9,53.4,54.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,54,1,50.492600000000003,0.02929,1.4789000000000001,46.1,47.5,49,50.5,52,53.5,54.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,55,1,50.535400000000003,0.029319999999999999,1.4817,46.1,47.6,49.1,50.5,52,53.5,55
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,56,1,50.577199999999998,0.029350000000000001,1.4843999999999999,46.1,47.6,49.1,50.6,52.1,53.5,55
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,57,1,50.618299999999998,0.02938,1.4872000000000001,46.2,47.6,49.1,50.6,52.1,53.6,55.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,58,1,50.658700000000003,0.029399999999999999,1.4894000000000001,46.2,47.7,49.2,50.7,52.1,53.6,55.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,59,1,50.698399999999999,0.029430000000000001,1.4921,46.2,47.7,49.2,50.7,52.2,53.7,55.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,60,1,50.737499999999997,0.02946,1.4946999999999999,46.3,47.7,49.2,50.7,52.2,53.7,55.2
source,gender,age_unit,age,l,m,s,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx,female,week,0,1,33.878700000000002,0.034959999999999998,30.3,31.5,32.700000000000003,33.9,35.1,36.200000000000003,37.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx,female,week,1,1,34.552900000000001,0.033739999999999999,31.1,32.200000000000003,33.4,34.6,35.700000000000003,36.9,38.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx,female,week,2,1,35.227200000000003,0.032509999999999997,31.8,32.9,34.1,35.200000000000003,36.4,37.5,38.700000000000003
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx,female,week,3,1,35.843000000000004,0.032309999999999998,32.4,33.5,34.700000000000003,35.799999999999997,37,38.200000000000003,39.299999999999997
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx,female,week,4,1,36.376100000000001,0.032149999999999998,32.9,34,35.200000000000003,36.4,37.5,38.700000000000003,39.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx,female,week,5,1,36.847200000000001,0.03202,33.299999999999997,34.5,35.700000000000003,36.799999999999997,38,39.200000000000003,40.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx,female,week,6,1,37.271099999999997,0.031910000000000001,33.700000000000003,34.9,36.1,37.299999999999997,38.5,39.6,40.799999999999997
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx,female,week,7,1,37.6584,0.031820000000000001,34.1,35.299999999999997,36.5,37.700000000000003,38.9,40.1,41.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx,female,week,8,1,38.0167,0.031730000000000001,34.4,35.6,36.799999999999997,38,39.200000000000003,40.4,41.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx,female,week,9,1,38.351599999999998,0.031660000000000001,34.700000000000003,35.9,37.1,38.4,39.6,40.799999999999997,42
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx,female,week,10,1,38.667299999999997,0.031579999999999997,35,36.200000000000003,37.4,38.700000000000003,39.9,41.1,42.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx,female,week,11,1,38.966099999999997,0.031519999999999999,35.299999999999997,36.5,37.700000000000003,39,40.200000000000003,41.4,42.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx,female,week,12,1,39.250100000000003,0.031460000000000002,35.5,36.799999999999997,38,39.299999999999997,40.5,41.7,43
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx,female,week,13,1,39.521000000000001,0.031399999999999997,35.799999999999997,37,38.299999999999997,39.5,40.799999999999997,42,43.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,0,1,33.878700000000002,0.034959999999999998,30.3,31.5,32.700000000000003,33.9,35.1,36.200000000000003,37.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,1,1,36.546300000000002,0.032099999999999997,33,34.200000000000003,35.4,36.5,37.700000000000003,38.9,40.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,2,1,38.252099999999999,0.03168,34.6,35.799999999999997,37,38.299999999999997,39.5,40.700000000000003,41.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,3,1,39.532800000000002,0.031399999999999997,35.799999999999997,37.1,38.299999999999997,39.5,40.799999999999997,42,43.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,4,1,40.581699999999998,0.031189999999999999,36.799999999999997,38.1,39.299999999999997,40.6,41.8,43.1,44.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,5,1,41.459000000000003,0.031019999999999999,37.6,38.9,40.200000000000003,41.5,42.7,44,45.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,6,1,42.1995,0.030870000000000002,38.299999999999997,39.6,40.9,42.2,43.5,44.8,46.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,7,1,42.829000000000001,0.03075,38.9,40.200000000000003,41.5,42.8,44.1,45.5,46.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,8,1,43.367100000000001,0.030630000000000001,39.4,40.700000000000003,42,43.4,44.7,46,47.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,9,1,43.83,0.030530000000000002,39.799999999999997,41.2,42.5,43.8,45.2,46.5,47.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,10,1,44.231900000000003,0.030439999999999998,40.200000000000003,41.5,42.9,44.2,45.6,46.9,48.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,11,1,44.584400000000002,0.030349999999999999,40.5,41.9,43.2,44.6,45.9,47.3,48.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,12,1,44.896500000000003,0.030269999999999998,40.799999999999997,42.2,43.5,44.9,46.3,47.6,49
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,13,1,45.175199999999997,0.030190000000000002,41.1,42.4,43.8,45.2,46.5,47.9,49.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,14,1,45.426499999999997,0.030120000000000001,41.3,42.7,44.1,45.4,46.8,48.2,49.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,15,1,45.655099999999997,0.03006,41.5,42.9,44.3,45.7,47,48.4,49.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,16,1,45.865000000000002,0.029989999999999999,41.7,43.1,44.5,45.9,47.2,48.6,50
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,17,1,46.059800000000003,0.029929999999999998,41.9,43.3,44.7,46.1,47.4,48.8,50.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,18,1,46.242400000000004,0.029870000000000001,42.1,43.5,44.9,46.2,47.6,49,50.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,19,1,46.415199999999999,0.029819999999999999,42.3,43.6,45,46.4,47.8,49.2,50.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,20,1,46.580100000000002,0.029770000000000001,42.4,43.8,45.2,46.6,48,49.4,50.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,21,1,46.738399999999999,0.02972,42.6,44,45.3,46.7,48.1,49.5,50.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,22,1,46.891300000000001,0.029669999999999998,42.7,44.1,45.5,46.9,48.3,49.7,51.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,23,1,47.039099999999998,0.02962,42.9,44.3,45.6,47,48.4,49.8,51.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,24,1,47.182200000000002,0.029569999999999999,43,44.4,45.8,47.2,48.6,50,51.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,25,1,47.320399999999999,0.029530000000000001,43.1,44.5,45.9,47.3,48.7,50.1,51.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,26,1,47.453600000000002,0.029489999999999999,43.3,44.7,46.1,47.5,48.9,50.3,51.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,27,1,47.581699999999998,0.02945,43.4,44.8,46.2,47.6,49,50.4,51.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,28,1,47.704500000000003,0.029409999999999999,43.5,44.9,46.3,47.7,49.1,50.5,51.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,29,1,47.821899999999999,0.02937,43.6,45,46.4,47.8,49.2,50.6,52
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,30,1,47.933999999999997,0.029329999999999998,43.7,45.1,46.5,47.9,49.3,50.7,52.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,31,1,48.040999999999997,0.02929,43.8,45.2,46.6,48,49.4,50.9,52.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,32,1,48.1432,0.029260000000000001,43.9,45.3,46.7,48.1,49.6,51,52.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,33,1,48.2408,0.029219999999999999,44,45.4,46.8,48.2,49.7,51.1,52.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,34,1,48.334299999999999,0.029190000000000001,44.1,45.5,46.9,48.3,49.7,51.2,52.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,35,1,48.423900000000003,0.029149999999999999,44.2,45.6,47,48.4,49.8,51.2,52.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,36,1,48.509900000000002,0.02912,44.3,45.7,47.1,48.5,49.9,51.3,52.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,37,1,48.592599999999997,0.029090000000000001,44.4,45.8,47.2,48.6,50,51.4,52.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,38,1,48.672199999999997,0.029059999999999999,44.4,45.8,47.3,48.7,50.1,51.5,52.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,39,1,48.748899999999999,0.02903,44.5,45.9,47.3,48.7,50.2,51.6,53
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,40,1,48.822800000000001,0.029000000000000001,44.6,46,47.4,48.8,50.2,51.7,53.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,41,1,48.894100000000002,0.028969999999999999,44.6,46.1,47.5,48.9,50.3,51.7,53.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,42,1,48.962899999999998,0.02894,44.7,46.1,47.5,49,50.4,51.8,53.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,43,1,49.029400000000003,0.028910000000000002,44.8,46.2,47.6,49,50.4,51.9,53.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,44,1,49.093699999999998,0.028879999999999999,44.8,46.3,47.7,49.1,50.5,51.9,53.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,45,1,49.155999999999999,0.02886,44.9,46.3,47.7,49.2,50.6,52,53.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,46,1,49.2164,0.028830000000000001,45,46.4,47.8,49.2,50.6,52.1,53.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,47,1,49.275100000000002,0.028799999999999999,45,46.4,47.9,49.3,50.7,52.1,53.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,48,1,49.332099999999997,0.02878,45.1,46.5,47.9,49.3,50.8,52.2,53.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,49,1,49.387700000000002,0.028750000000000001,45.1,46.5,48,49.4,50.8,52.2,53.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,50,1,49.441899999999997,0.028729999999999999,45.2,46.6,48,49.4,50.9,52.3,53.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,51,1,49.494700000000002,0.0287,45.2,46.7,48.1,49.5,50.9,52.3,53.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,52,1,49.546399999999998,0.028680000000000001,45.3,46.7,48.1,49.5,51,52.4,53.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,53,1,49.596899999999998,0.028649999999999998,45.3,46.8,48.2,49.6,51,52.4,53.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,54,1,49.6464,0.028629999999999999,45.4,46.8,48.2,49.6,51.1,52.5,53.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,55,1,49.694699999999997,0.02861,45.4,46.9,48.3,49.7,51.1,52.5,54
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,56,1,49.742100000000001,0.028590000000000001,45.5,46.9,48.3,49.7,51.2,52.6,54
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,57,1,49.788499999999999,0.028559999999999999,45.5,46.9,48.4,49.8,51.2,52.6,54.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,58,1,49.834099999999999,0.028539999999999999,45.6,47,48.4,49.8,51.3,52.7,54.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,59,1,49.878900000000002,0.02852,45.6,47,48.5,49.9,51.3,52.7,54.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx,female,month,60,1,49.922899999999998,0.028500000000000001,45.7,47.1,48.5,49.9,51.3,52.8,54.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx,male,week,0,1,34.461799999999997,0.036859999999999997,30.7,31.9,33.200000000000003,34.5,35.700000000000003,37,38.299999999999997
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx,male,week,1,1,35.163400000000003,0.034720000000000001,31.5,32.700000000000003,33.9,35.200000000000003,36.4,37.6,38.799999999999997
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx,male,week,2,1,35.864899999999999,0.032579999999999998,32.4,33.5,34.700000000000003,35.9,37,38.200000000000003,39.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx,male,week,3,1,36.521599999999999,0.031969999999999998,33,34.200000000000003,35.4,36.5,37.700000000000003,38.9,40
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx,male,week,4,1,37.092599999999997,0.031480000000000001,33.6,34.799999999999997,35.9,37.1,38.299999999999997,39.4,40.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx,male,week,5,1,37.600999999999999,0.03107,34.1,35.299999999999997,36.4,37.6,38.799999999999997,39.9,41.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx,male,week,6,1,38.060899999999997,0.030720000000000001,34.6,35.700000000000003,36.9,38.1,39.200000000000003,40.4,41.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx,male,week,7,1,38.482399999999998,0.03041,35,36.1,37.299999999999997,38.5,39.700000000000003,40.799999999999997,42
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx,male,week,8,1,38.872399999999999,0.03014,35.4,36.5,37.700000000000003,38.9,40,41.2,42.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx,male,week,9,1,39.236800000000002,0.029899999999999999,35.700000000000003,36.9,38.1,39.200000000000003,40.4,41.6,42.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx,male,week,10,1,39.579700000000003,0.029690000000000001,36.1,37.200000000000003,38.4,39.6,40.799999999999997,41.9,43.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx,male,week,11,1,39.903300000000002,0.029499999999999998,36.4,37.5,38.700000000000003,39.9,41.1,42.3,43.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx,male,week,12,1,40.209600000000002,0.029329999999999998,36.700000000000003,37.9,39,40.200000000000003,41.4,42.6,43.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx,male,week,13,1,40.500799999999998,0.029180000000000001,37,38.1,39.299999999999997,40.5,41.7,42.9,44
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,0,1,34.461799999999997,0.036859999999999997,30.7,31.9,33.200000000000003,34.5,35.700000000000003,37,38.299999999999997
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,1,1,37.2759,0.031329999999999997,33.799999999999997,34.9,36.1,37.299999999999997,38.4,39.6,40.799999999999997
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,2,1,39.128500000000003,0.02997,35.6,36.799999999999997,38,39.1,40.299999999999997,41.5,42.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,3,1,40.513500000000001,0.029180000000000001,37,38.1,39.299999999999997,40.5,41.7,42.9,44.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,4,1,41.631700000000002,0.028680000000000001,38,39.200000000000003,40.4,41.6,42.8,44,45.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,5,1,42.557600000000001,0.028369999999999999,38.9,40.1,41.4,42.6,43.8,45,46.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,6,1,43.330599999999997,0.028170000000000001,39.700000000000003,40.9,42.1,43.3,44.6,45.8,47
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,7,1,43.9803,0.028039999999999999,40.299999999999997,41.5,42.7,44,45.2,46.4,47.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,8,1,44.53,0.027959999999999999,40.799999999999997,42,43.3,44.5,45.8,47,48.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,9,1,44.9998,0.02792,41.2,42.5,43.7,45,46.3,47.5,48.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,10,1,45.405099999999997,0.027900000000000001,41.6,42.9,44.1,45.4,46.7,47.9,49.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,11,1,45.757300000000001,0.027890000000000002,41.9,43.2,44.5,45.8,47,48.3,49.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,12,1,46.066099999999999,0.027890000000000002,42.2,43.5,44.8,46.1,47.4,48.6,49.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,13,1,46.339500000000001,0.027890000000000002,42.5,43.8,45,46.3,47.6,48.9,50.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,14,1,46.584400000000002,0.027910000000000001,42.7,44,45.3,46.6,47.9,49.2,50.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,15,1,46.805999999999997,0.02792,42.9,44.2,45.5,46.8,48.1,49.4,50.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,16,1,47.008800000000001,0.027949999999999999,43.1,44.4,45.7,47,48.3,49.6,51
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,17,1,47.196199999999997,0.027969999999999998,43.2,44.6,45.9,47.2,48.5,49.8,51.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,18,1,47.371099999999998,0.028000000000000001,43.4,44.7,46,47.4,48.7,50,51.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,19,1,47.535699999999999,0.028029999999999999,43.5,44.9,46.2,47.5,48.9,50.2,51.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,20,1,47.691899999999997,0.028060000000000002,43.7,45,46.4,47.7,49,50.4,51.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,21,1,47.840800000000002,0.0281,43.8,45.2,46.5,47.8,49.2,50.5,51.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,22,1,47.9833,0.028129999999999999,43.9,45.3,46.6,48,49.3,50.7,52
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,23,1,48.120100000000001,0.028170000000000001,44.1,45.4,46.8,48.1,49.5,50.8,52.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,24,1,48.2515,0.028209999999999999,44.2,45.5,46.9,48.3,49.6,51,52.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,25,1,48.377699999999997,0.028250000000000001,44.3,45.6,47,48.4,49.7,51.1,52.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,26,1,48.498899999999999,0.028299999999999999,44.4,45.8,47.1,48.5,49.9,51.2,52.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,27,1,48.615099999999998,0.028340000000000001,44.5,45.9,47.2,48.6,50,51.4,52.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,28,1,48.726399999999998,0.028379999999999999,44.6,46,47.3,48.7,50.1,51.5,52.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,29,1,48.833100000000002,0.028420000000000001,44.7,46.1,47.4,48.8,50.2,51.6,53
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,30,1,48.935099999999998,0.028469999999999999,44.8,46.1,47.5,48.9,50.3,51.7,53.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,31,1,49.032699999999998,0.028510000000000001,44.8,46.2,47.6,49,50.4,51.8,53.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,32,1,49.125999999999998,0.028549999999999999,44.9,46.3,47.7,49.1,50.5,51.9,53.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,33,1,49.215299999999999,0.028590000000000001,45,46.4,47.8,49.2,50.6,52,53.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,34,1,49.300699999999999,0.028629999999999999,45.1,46.5,47.9,49.3,50.7,52.1,53.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,35,1,49.382599999999996,0.028670000000000001,45.1,46.6,48,49.4,50.8,52.2,53.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,36,1,49.461199999999998,0.028709999999999999,45.2,46.6,48,49.5,50.9,52.3,53.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,37,1,49.536700000000003,0.028750000000000001,45.3,46.7,48.1,49.5,51,52.4,53.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,38,1,49.609299999999998,0.02878,45.3,46.8,48.2,49.6,51,52.5,53.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,39,1,49.679099999999998,0.028819999999999998,45.4,46.8,48.2,49.7,51.1,52.5,54
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,40,1,49.746499999999997,0.02886,45.4,46.9,48.3,49.7,51.2,52.6,54.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,41,1,49.811599999999999,0.028889999999999999,45.5,46.9,48.4,49.8,51.3,52.7,54.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,42,1,49.874499999999998,0.028930000000000001,45.5,47,48.4,49.9,51.3,52.8,54.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,43,1,49.935400000000001,0.02896,45.6,47,48.5,49.9,51.4,52.8,54.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,44,1,49.994199999999999,0.028989999999999998,45.6,47.1,48.5,50,51.4,52.9,54.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,45,1,50.051200000000001,0.02903,45.7,47.1,48.6,50.1,51.5,53,54.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,46,1,50.106400000000001,0.029059999999999999,45.7,47.2,48.7,50.1,51.6,53,54.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,47,1,50.159799999999997,0.029090000000000001,45.8,47.2,48.7,50.2,51.6,53.1,54.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,48,1,50.211500000000001,0.02912,45.8,47.3,48.7,50.2,51.7,53.1,54.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,49,1,50.261699999999998,0.029149999999999999,45.9,47.3,48.8,50.3,51.7,53.2,54.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,50,1,50.310499999999998,0.029180000000000001,45.9,47.4,48.8,50.3,51.8,53.2,54.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,51,1,50.357799999999997,0.02921,45.9,47.4,48.9,50.4,51.8,53.3,54.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,52,1,50.4039,0.029239999999999999,46,47.5,48.9,50.4,51.9,53.4,54.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,53,1,50.448799999999999,0.029270000000000001,46,47.5,49,50.4,51.9,53.4,54.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,54,1,50.492600000000003,0.02929,46.1,47.5,49,50.5,52,53.5,54.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,55,1,50.535400000000003,0.029319999999999999,46.1,47.6,49.1,50.5,52,53.5,55
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,56,1,50.577199999999998,0.029350000000000001,46.1,47.6,49.1,50.6,52.1,53.5,55
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,57,1,50.618299999999998,0.02938,46.2,47.6,49.1,50.6,52.1,53.6,55.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,58,1,50.658700000000003,0.029399999999999999,46.2,47.7,49.2,50.7,52.1,53.6,55.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,59,1,50.698399999999999,0.029430000000000001,46.2,47.7,49.2,50.7,52.2,53.7,55.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx,male,month,60,1,50.737499999999997,0.02946,46.3,47.7,49.2,50.7,52.2,53.7,55.2

1 source gender age_unit age l m s sd sd3neg sd2neg sd1neg sd0 sd1 sd2 sd3
2 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx female week 0 1 33.878700000000002 0.034959999999999998 1.1843999999999999 30.3 31.5 32.700000000000003 33.9 35.1 36.200000000000003 37.4
3 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx female week 1 1 34.552900000000001 0.033739999999999999 1.1657999999999999 31.1 32.200000000000003 33.4 34.6 35.700000000000003 36.9 38.1
4 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx female week 2 1 35.227200000000003 0.032509999999999997 1.1452 31.8 32.9 34.1 35.200000000000003 36.4 37.5 38.700000000000003
5 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx female week 3 1 35.843000000000004 0.032309999999999998 1.1580999999999999 32.4 33.5 34.700000000000003 35.799999999999997 37 38.200000000000003 39.299999999999997
6 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx female week 4 1 36.376100000000001 0.032149999999999998 1.1695 32.9 34 35.200000000000003 36.4 37.5 38.700000000000003 39.9
7 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx female week 5 1 36.847200000000001 0.03202 1.1798999999999999 33.299999999999997 34.5 35.700000000000003 36.799999999999997 38 39.200000000000003 40.4
8 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx female week 6 1 37.271099999999997 0.031910000000000001 1.1893 33.700000000000003 34.9 36.1 37.299999999999997 38.5 39.6 40.799999999999997
9 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx female week 7 1 37.6584 0.031820000000000001 1.1982999999999999 34.1 35.299999999999997 36.5 37.700000000000003 38.9 40.1 41.3
10 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx female week 8 1 38.0167 0.031730000000000001 1.2062999999999999 34.4 35.6 36.799999999999997 38 39.200000000000003 40.4 41.6
11 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx female week 9 1 38.351599999999998 0.031660000000000001 1.2141999999999999 34.700000000000003 35.9 37.1 38.4 39.6 40.799999999999997 42
12 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx female week 10 1 38.667299999999997 0.031579999999999997 1.2211000000000001 35 36.200000000000003 37.4 38.700000000000003 39.9 41.1 42.3
13 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx female week 11 1 38.966099999999997 0.031519999999999999 1.2282 35.299999999999997 36.5 37.700000000000003 39 40.200000000000003 41.4 42.7
14 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx female week 12 1 39.250100000000003 0.031460000000000002 1.2347999999999999 35.5 36.799999999999997 38 39.299999999999997 40.5 41.7 43
15 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx female week 13 1 39.521000000000001 0.031399999999999997 1.2410000000000001 35.799999999999997 37 38.299999999999997 39.5 40.799999999999997 42 43.2
16 source https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx gender female age_unit month age 0 l 1 m 33.878700000000002 s 0.034959999999999998 sd sd3neg 30.3 sd2neg 31.5 sd1neg 32.700000000000003 sd0 33.9 sd1 35.1 sd2 36.200000000000003 sd3 37.4
17 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 0 1 1 33.878700000000002 36.546300000000002 0.034959999999999998 0.032099999999999997 1.1843999999999999 30.3 33 31.5 34.200000000000003 32.700000000000003 35.4 33.9 36.5 35.1 37.700000000000003 36.200000000000003 38.9 37.4 40.1
18 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 1 2 1 36.546300000000002 38.252099999999999 0.032099999999999997 0.03168 1.1731 33 34.6 34.200000000000003 35.799999999999997 35.4 37 36.5 38.299999999999997 37.700000000000003 39.5 38.9 40.700000000000003 40.1 41.9
19 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 2 3 1 38.252099999999999 39.532800000000002 0.03168 0.031399999999999997 1.2118 34.6 35.799999999999997 35.799999999999997 37.1 37 38.299999999999997 38.299999999999997 39.5 39.5 40.799999999999997 40.700000000000003 42 41.9 43.3
20 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 3 4 1 39.532800000000002 40.581699999999998 0.031399999999999997 0.031189999999999999 1.2413000000000001 35.799999999999997 36.799999999999997 37.1 38.1 38.299999999999997 39.299999999999997 39.5 40.6 40.799999999999997 41.8 42 43.1 43.3 44.4
21 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 4 5 1 40.581699999999998 41.459000000000003 0.031189999999999999 0.031019999999999999 1.2657 36.799999999999997 37.6 38.1 38.9 39.299999999999997 40.200000000000003 40.6 41.5 41.8 42.7 43.1 44 44.4 45.3
22 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 5 6 1 41.459000000000003 42.1995 0.031019999999999999 0.030870000000000002 1.2861 37.6 38.299999999999997 38.9 39.6 40.200000000000003 40.9 41.5 42.2 42.7 43.5 44 44.8 45.3 46.1
23 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 6 7 1 42.1995 42.829000000000001 0.030870000000000002 0.03075 1.3027 38.299999999999997 38.9 39.6 40.200000000000003 40.9 41.5 42.2 42.8 43.5 44.1 44.8 45.5 46.1 46.8
24 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 7 8 1 42.829000000000001 43.367100000000001 0.03075 0.030630000000000001 1.3169999999999999 38.9 39.4 40.200000000000003 40.700000000000003 41.5 42 42.8 43.4 44.1 44.7 45.5 46 46.8 47.4
25 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 8 9 1 43.367100000000001 43.83 0.030630000000000001 0.030530000000000002 1.3283 39.4 39.799999999999997 40.700000000000003 41.2 42 42.5 43.4 43.8 44.7 45.2 46 46.5 47.4 47.8
26 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 9 10 1 43.83 44.231900000000003 0.030530000000000002 0.030439999999999998 1.3381000000000001 39.799999999999997 40.200000000000003 41.2 41.5 42.5 42.9 43.8 44.2 45.2 45.6 46.5 46.9 47.8 48.3
27 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 10 11 1 44.231900000000003 44.584400000000002 0.030439999999999998 0.030349999999999999 1.3464 40.200000000000003 40.5 41.5 41.9 42.9 43.2 44.2 44.6 45.6 45.9 46.9 47.3 48.3 48.6
28 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 11 12 1 44.584400000000002 44.896500000000003 0.030349999999999999 0.030269999999999998 1.3531 40.5 40.799999999999997 41.9 42.2 43.2 43.5 44.6 44.9 45.9 46.3 47.3 47.6 48.6 49
29 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 12 13 1 44.896500000000003 45.175199999999997 0.030269999999999998 0.030190000000000002 1.359 40.799999999999997 41.1 42.2 42.4 43.5 43.8 44.9 45.2 46.3 46.5 47.6 47.9 49 49.3
30 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 13 14 1 45.175199999999997 45.426499999999997 0.030190000000000002 0.030120000000000001 1.3637999999999999 41.1 41.3 42.4 42.7 43.8 44.1 45.2 45.4 46.5 46.8 47.9 48.2 49.3 49.5
31 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 14 15 1 45.426499999999997 45.655099999999997 0.030120000000000001 0.03006 1.3683000000000001 41.3 41.5 42.7 42.9 44.1 44.3 45.4 45.7 46.8 47 48.2 48.4 49.5 49.8
32 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 15 16 1 45.655099999999997 45.865000000000002 0.03006 0.029989999999999999 1.3724000000000001 41.5 41.7 42.9 43.1 44.3 44.5 45.7 45.9 47 47.2 48.4 48.6 49.8 50
33 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 16 17 1 45.865000000000002 46.059800000000003 0.029989999999999999 0.029929999999999998 1.3754999999999999 41.7 41.9 43.1 43.3 44.5 44.7 45.9 46.1 47.2 47.4 48.6 48.8 50 50.2
34 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 17 18 1 46.059800000000003 46.242400000000004 0.029929999999999998 0.029870000000000001 1.3786 41.9 42.1 43.3 43.5 44.7 44.9 46.1 46.2 47.4 47.6 48.8 49 50.2 50.4
35 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 18 19 1 46.242400000000004 46.415199999999999 0.029870000000000001 0.029819999999999999 1.3813 42.1 42.3 43.5 43.6 44.9 45 46.2 46.4 47.6 47.8 49 49.2 50.4 50.6
36 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 19 20 1 46.415199999999999 46.580100000000002 0.029819999999999999 0.029770000000000001 1.3841000000000001 42.3 42.4 43.6 43.8 45 45.2 46.4 46.6 47.8 48 49.2 49.4 50.6 50.7
37 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 20 21 1 46.580100000000002 46.738399999999999 0.029770000000000001 0.02972 1.3867 42.4 42.6 43.8 44 45.2 45.3 46.6 46.7 48 48.1 49.4 49.5 50.7 50.9
38 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 21 22 1 46.738399999999999 46.891300000000001 0.02972 0.029669999999999998 1.3891 42.6 42.7 44 44.1 45.3 45.5 46.7 46.9 48.1 48.3 49.5 49.7 50.9 51.1
39 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 22 23 1 46.891300000000001 47.039099999999998 0.029669999999999998 0.02962 1.3913 42.7 42.9 44.1 44.3 45.5 45.6 46.9 47 48.3 48.4 49.7 49.8 51.1 51.2
40 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 23 24 1 47.039099999999998 47.182200000000002 0.02962 0.029569999999999999 1.3933 42.9 43 44.3 44.4 45.6 45.8 47 47.2 48.4 48.6 49.8 50 51.2 51.4
41 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 24 25 1 47.182200000000002 47.320399999999999 0.029569999999999999 0.029530000000000001 1.3952 43 43.1 44.4 44.5 45.8 45.9 47.2 47.3 48.6 48.7 50 50.1 51.4 51.5
42 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 25 26 1 47.320399999999999 47.453600000000002 0.029530000000000001 0.029489999999999999 1.3974 43.1 43.3 44.5 44.7 45.9 46.1 47.3 47.5 48.7 48.9 50.1 50.3 51.5 51.7
43 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 26 27 1 47.453600000000002 47.581699999999998 0.029489999999999999 0.02945 1.3994 43.3 43.4 44.7 44.8 46.1 46.2 47.5 47.6 48.9 49 50.3 50.4 51.7 51.8
44 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 27 28 1 47.581699999999998 47.704500000000003 0.02945 0.029409999999999999 1.4013 43.4 43.5 44.8 44.9 46.2 46.3 47.6 47.7 49 49.1 50.4 50.5 51.8 51.9
45 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 28 29 1 47.704500000000003 47.821899999999999 0.029409999999999999 0.02937 1.403 43.5 43.6 44.9 45 46.3 46.4 47.7 47.8 49.1 49.2 50.5 50.6 51.9 52
46 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 29 30 1 47.821899999999999 47.933999999999997 0.02937 0.029329999999999998 1.4045000000000001 43.6 43.7 45 45.1 46.4 46.5 47.8 47.9 49.2 49.3 50.6 50.7 52 52.2
47 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 30 31 1 47.933999999999997 48.040999999999997 0.029329999999999998 0.02929 1.4058999999999999 43.7 43.8 45.1 45.2 46.5 46.6 47.9 48 49.3 49.4 50.7 50.9 52.2 52.3
48 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 31 32 1 48.040999999999997 48.1432 0.02929 0.029260000000000001 1.4071 43.8 43.9 45.2 45.3 46.6 46.7 48 48.1 49.4 49.6 50.9 51 52.3 52.4
49 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 32 33 1 48.1432 48.2408 0.029260000000000001 0.029219999999999999 1.4087000000000001 43.9 44 45.3 45.4 46.7 46.8 48.1 48.2 49.6 49.7 51 51.1 52.4 52.5
50 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 33 34 1 48.2408 48.334299999999999 0.029219999999999999 0.029190000000000001 1.4096 44 44.1 45.4 45.5 46.8 46.9 48.2 48.3 49.7 51.1 51.2 52.5 52.6
51 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 34 35 1 48.334299999999999 48.423900000000003 0.029190000000000001 0.029149999999999999 1.4109 44.1 44.2 45.5 45.6 46.9 47 48.3 48.4 49.7 49.8 51.2 52.6 52.7
52 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 35 36 1 48.423900000000003 48.509900000000002 0.029149999999999999 0.02912 1.4116 44.2 44.3 45.6 45.7 47 47.1 48.4 48.5 49.8 49.9 51.2 51.3 52.7
53 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 36 37 1 48.509900000000002 48.592599999999997 0.02912 0.029090000000000001 1.4126000000000001 44.3 44.4 45.7 45.8 47.1 47.2 48.5 48.6 49.9 50 51.3 51.4 52.7 52.8
54 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 37 38 1 48.592599999999997 48.672199999999997 0.029090000000000001 0.029059999999999999 1.4136 44.4 45.8 47.2 47.3 48.6 48.7 50 50.1 51.4 51.5 52.8 52.9
55 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 38 39 1 48.672199999999997 48.748899999999999 0.029059999999999999 0.02903 1.4144000000000001 44.4 44.5 45.8 45.9 47.3 48.7 50.1 50.2 51.5 51.6 52.9 53
56 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 39 40 1 48.748899999999999 48.822800000000001 0.02903 0.029000000000000001 1.4152 44.5 44.6 45.9 46 47.3 47.4 48.7 48.8 50.2 51.6 51.7 53 53.1
57 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 40 41 1 48.822800000000001 48.894100000000002 0.029000000000000001 0.028969999999999999 1.4158999999999999 44.6 46 46.1 47.4 47.5 48.8 48.9 50.2 50.3 51.7 53.1
58 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 41 42 1 48.894100000000002 48.962899999999998 0.028969999999999999 0.02894 1.4165000000000001 44.6 44.7 46.1 47.5 48.9 49 50.3 50.4 51.7 51.8 53.1 53.2
59 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 42 43 1 48.962899999999998 49.029400000000003 0.02894 0.028910000000000002 1.417 44.7 44.8 46.1 46.2 47.5 47.6 49 50.4 51.8 51.9 53.2 53.3
60 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 43 44 1 49.029400000000003 49.093699999999998 0.028910000000000002 0.028879999999999999 1.4174 44.8 46.2 46.3 47.6 47.7 49 49.1 50.4 50.5 51.9 53.3
61 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 44 45 1 49.093699999999998 49.155999999999999 0.028879999999999999 0.02886 1.4177999999999999 44.8 44.9 46.3 47.7 49.1 49.2 50.5 50.6 51.9 52 53.3 53.4
62 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 45 46 1 49.155999999999999 49.2164 0.02886 0.028830000000000001 1.4186000000000001 44.9 45 46.3 46.4 47.7 47.8 49.2 50.6 52 52.1 53.4 53.5
63 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 46 47 1 49.2164 49.275100000000002 0.028830000000000001 0.028799999999999999 1.4189000000000001 45 46.4 47.8 47.9 49.2 49.3 50.6 50.7 52.1 53.5
64 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 47 48 1 49.275100000000002 49.332099999999997 0.028799999999999999 0.02878 1.4191 45 45.1 46.4 46.5 47.9 49.3 50.7 50.8 52.1 52.2 53.5 53.6
65 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 48 49 1 49.332099999999997 49.387700000000002 0.02878 0.028750000000000001 1.4198 45.1 46.5 47.9 48 49.3 49.4 50.8 52.2 53.6
66 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 49 50 1 49.387700000000002 49.441899999999997 0.028750000000000001 0.028729999999999999 1.4198999999999999 45.1 45.2 46.5 46.6 48 49.4 50.8 50.9 52.2 52.3 53.6 53.7
67 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 50 51 1 49.441899999999997 49.494700000000002 0.028729999999999999 0.0287 1.4205000000000001 45.2 46.6 46.7 48 48.1 49.4 49.5 50.9 52.3 53.7 53.8
68 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 51 52 1 49.494700000000002 49.546399999999998 0.0287 0.028680000000000001 1.4205000000000001 45.2 45.3 46.7 48.1 49.5 50.9 51 52.3 52.4 53.8
69 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 52 53 1 49.546399999999998 49.596899999999998 0.028680000000000001 0.028649999999999998 1.421 45.3 46.7 46.8 48.1 48.2 49.5 49.6 51 52.4 53.8 53.9
70 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 53 54 1 49.596899999999998 49.6464 0.028649999999999998 0.028629999999999999 1.421 45.3 45.4 46.8 48.2 49.6 51 51.1 52.4 52.5 53.9
71 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 54 55 1 49.6464 49.694699999999997 0.028629999999999999 0.02861 1.4214 45.4 46.8 46.9 48.2 48.3 49.6 49.7 51.1 52.5 53.9 54
72 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 55 56 1 49.694699999999997 49.742100000000001 0.02861 0.028590000000000001 1.4218 45.4 45.5 46.9 48.3 49.7 51.1 51.2 52.5 52.6 54
73 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 56 57 1 49.742100000000001 49.788499999999999 0.028590000000000001 0.028559999999999999 1.4220999999999999 45.5 46.9 48.3 48.4 49.7 49.8 51.2 52.6 54 54.1
74 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 57 58 1 49.788499999999999 49.834099999999999 0.028559999999999999 0.028539999999999999 1.4219999999999999 45.5 45.6 46.9 47 48.4 49.8 51.2 51.3 52.6 52.7 54.1
75 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 58 59 1 49.834099999999999 49.878900000000002 0.028539999999999999 0.02852 1.4222999999999999 45.6 47 48.4 48.5 49.8 49.9 51.3 52.7 54.1
76 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx female month 59 60 1 49.878900000000002 49.922899999999998 0.02852 0.028500000000000001 1.4226000000000001 45.6 45.7 47 47.1 48.5 49.9 51.3 52.7 52.8 54.1 54.2
77 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx female male month week 60 0 1 49.922899999999998 34.461799999999997 0.028500000000000001 0.036859999999999997 1.4228000000000001 45.7 30.7 47.1 31.9 48.5 33.200000000000003 49.9 34.5 51.3 35.700000000000003 52.8 37 54.2 38.299999999999997
78 source https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx gender male age_unit week age 1 l 1 m 35.163400000000003 s 0.034720000000000001 sd sd3neg 31.5 sd2neg 32.700000000000003 sd1neg 33.9 sd0 35.200000000000003 sd1 36.4 sd2 37.6 sd3 38.799999999999997
79 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx male week 0 2 1 34.461799999999997 35.864899999999999 0.036859999999999997 0.032579999999999998 1.2703 30.7 32.4 31.9 33.5 33.200000000000003 34.700000000000003 34.5 35.9 35.700000000000003 37 37 38.200000000000003 38.299999999999997 39.4
80 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx male week 1 3 1 35.163400000000003 36.521599999999999 0.034720000000000001 0.031969999999999998 1.2209000000000001 31.5 33 32.700000000000003 34.200000000000003 33.9 35.4 35.200000000000003 36.5 36.4 37.700000000000003 37.6 38.9 38.799999999999997 40
81 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx male week 2 4 1 35.864899999999999 37.092599999999997 0.032579999999999998 0.031480000000000001 1.1685000000000001 32.4 33.6 33.5 34.799999999999997 34.700000000000003 35.9 35.9 37.1 37 38.299999999999997 38.200000000000003 39.4 39.4 40.6
82 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx male week 3 5 1 36.521599999999999 37.600999999999999 0.031969999999999998 0.03107 1.1676 33 34.1 34.200000000000003 35.299999999999997 35.4 36.4 36.5 37.6 37.700000000000003 38.799999999999997 38.9 39.9 40 41.1
83 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx male week 4 6 1 37.092599999999997 38.060899999999997 0.031480000000000001 0.030720000000000001 1.1677 33.6 34.6 34.799999999999997 35.700000000000003 35.9 36.9 37.1 38.1 38.299999999999997 39.200000000000003 39.4 40.4 40.6 41.6
84 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx male week 5 7 1 37.600999999999999 38.482399999999998 0.03107 0.03041 1.1682999999999999 34.1 35 35.299999999999997 36.1 36.4 37.299999999999997 37.6 38.5 38.799999999999997 39.700000000000003 39.9 40.799999999999997 41.1 42
85 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx male week 6 8 1 38.060899999999997 38.872399999999999 0.030720000000000001 0.03014 1.1692 34.6 35.4 35.700000000000003 36.5 36.9 37.700000000000003 38.1 38.9 39.200000000000003 40 40.4 41.2 41.6 42.4
86 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx male week 7 9 1 38.482399999999998 39.236800000000002 0.03041 0.029899999999999999 1.1702999999999999 35 35.700000000000003 36.1 36.9 37.299999999999997 38.1 38.5 39.200000000000003 39.700000000000003 40.4 40.799999999999997 41.6 42 42.8
87 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx male week 8 10 1 38.872399999999999 39.579700000000003 0.03014 0.029690000000000001 1.1716 35.4 36.1 36.5 37.200000000000003 37.700000000000003 38.4 38.9 39.6 40 40.799999999999997 41.2 41.9 42.4 43.1
88 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx male week 9 11 1 39.236800000000002 39.903300000000002 0.029899999999999999 0.029499999999999998 1.1732 35.700000000000003 36.4 36.9 37.5 38.1 38.700000000000003 39.200000000000003 39.9 40.4 41.1 41.6 42.3 42.8 43.4
89 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx male week 10 12 1 39.579700000000003 40.209600000000002 0.029690000000000001 0.029329999999999998 1.1751 36.1 36.700000000000003 37.200000000000003 37.9 38.4 39 39.6 40.200000000000003 40.799999999999997 41.4 41.9 42.6 43.1 43.7
90 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx male week 11 13 1 39.903300000000002 40.500799999999998 0.029499999999999998 0.029180000000000001 1.1772 36.4 37 37.5 38.1 38.700000000000003 39.299999999999997 39.9 40.5 41.1 41.7 42.3 42.9 43.4 44
91 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male week month 12 0 1 40.209600000000002 34.461799999999997 0.029329999999999998 0.036859999999999997 1.1794 36.700000000000003 30.7 37.9 31.9 39 33.200000000000003 40.200000000000003 34.5 41.4 35.700000000000003 42.6 37 43.7 38.299999999999997
92 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-13-zscores.xlsx https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male week month 13 1 1 40.500799999999998 37.2759 0.029180000000000001 0.031329999999999997 1.1818 37 33.799999999999997 38.1 34.9 39.299999999999997 36.1 40.5 37.299999999999997 41.7 38.4 42.9 39.6 44 40.799999999999997
93 source https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx gender male age_unit month age 2 l 1 m 39.128500000000003 s 0.02997 sd sd3neg 35.6 sd2neg 36.799999999999997 sd1neg 38 sd0 39.1 sd1 40.299999999999997 sd2 41.5 sd3 42.6
94 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 0 3 1 34.461799999999997 40.513500000000001 0.036859999999999997 0.029180000000000001 1.2703 30.7 37 31.9 38.1 33.200000000000003 39.299999999999997 34.5 40.5 35.700000000000003 41.7 37 42.9 38.299999999999997 44.1
95 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 1 4 1 37.2759 41.631700000000002 0.031329999999999997 0.028680000000000001 1.1678999999999999 33.799999999999997 38 34.9 39.200000000000003 36.1 40.4 37.299999999999997 41.6 38.4 42.8 39.6 44 40.799999999999997 45.2
96 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 2 5 1 39.128500000000003 42.557600000000001 0.02997 0.028369999999999999 1.1727000000000001 35.6 38.9 36.799999999999997 40.1 38 41.4 39.1 42.6 40.299999999999997 43.8 41.5 45 42.6 46.2
97 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 3 6 1 40.513500000000001 43.330599999999997 0.029180000000000001 0.028170000000000001 1.1821999999999999 37 39.700000000000003 38.1 40.9 39.299999999999997 42.1 40.5 43.3 41.7 44.6 42.9 45.8 44.1 47
98 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 4 7 1 41.631700000000002 43.9803 0.028680000000000001 0.028039999999999999 1.194 38 40.299999999999997 39.200000000000003 41.5 40.4 42.7 41.6 44 42.8 45.2 44 46.4 45.2 47.7
99 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 5 8 1 42.557600000000001 44.53 0.028369999999999999 0.027959999999999999 1.2074 38.9 40.799999999999997 40.1 42 41.4 43.3 42.6 44.5 43.8 45.8 45 47 46.2 48.3
100 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 6 9 1 43.330599999999997 44.9998 0.028170000000000001 0.02792 1.2205999999999999 39.700000000000003 41.2 40.9 42.5 42.1 43.7 43.3 45 44.6 46.3 45.8 47.5 47 48.8
101 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 7 10 1 43.9803 45.405099999999997 0.028039999999999999 0.027900000000000001 1.2332000000000001 40.299999999999997 41.6 41.5 42.9 42.7 44.1 44 45.4 45.2 46.7 46.4 47.9 47.7 49.2
102 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 8 11 1 44.53 45.757300000000001 0.027959999999999999 0.027890000000000002 1.2451000000000001 40.799999999999997 41.9 42 43.2 43.3 44.5 44.5 45.8 45.8 47 47 48.3 48.3 49.6
103 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 9 12 1 44.9998 46.066099999999999 0.02792 0.027890000000000002 1.2564 41.2 42.2 42.5 43.5 43.7 44.8 45 46.1 46.3 47.4 47.5 48.6 48.8 49.9
104 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 10 13 1 45.405099999999997 46.339500000000001 0.027900000000000001 0.027890000000000002 1.2667999999999999 41.6 42.5 42.9 43.8 44.1 45 45.4 46.3 46.7 47.6 47.9 48.9 49.2 50.2
105 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 11 14 1 45.757300000000001 46.584400000000002 0.027890000000000002 0.027910000000000001 1.2762 41.9 42.7 43.2 44 44.5 45.3 45.8 46.6 47 47.9 48.3 49.2 49.6 50.5
106 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 12 15 1 46.066099999999999 46.805999999999997 0.027890000000000002 0.02792 1.2847999999999999 42.2 42.9 43.5 44.2 44.8 45.5 46.1 46.8 47.4 48.1 48.6 49.4 49.9 50.7
107 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 13 16 1 46.339500000000001 47.008800000000001 0.027890000000000002 0.027949999999999999 1.2924 42.5 43.1 43.8 44.4 45 45.7 46.3 47 47.6 48.3 48.9 49.6 50.2 51
108 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 14 17 1 46.584400000000002 47.196199999999997 0.027910000000000001 0.027969999999999998 1.3002 42.7 43.2 44 44.6 45.3 45.9 46.6 47.2 47.9 48.5 49.2 49.8 50.5 51.2
109 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 15 18 1 46.805999999999997 47.371099999999998 0.02792 0.028000000000000001 1.3068 42.9 43.4 44.2 44.7 45.5 46 46.8 47.4 48.1 48.7 49.4 50 50.7 51.4
110 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 16 19 1 47.008800000000001 47.535699999999999 0.027949999999999999 0.028029999999999999 1.3139000000000001 43.1 43.5 44.4 44.9 45.7 46.2 47 47.5 48.3 48.9 49.6 50.2 51 51.5
111 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 17 20 1 47.196199999999997 47.691899999999997 0.027969999999999998 0.028060000000000002 1.3201000000000001 43.2 43.7 44.6 45 45.9 46.4 47.2 47.7 48.5 49 49.8 50.4 51.2 51.7
112 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 18 21 1 47.371099999999998 47.840800000000002 0.028000000000000001 0.0281 1.3264 43.4 43.8 44.7 45.2 46 46.5 47.4 47.8 48.7 49.2 50 50.5 51.4 51.9
113 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 19 22 1 47.535699999999999 47.9833 0.028029999999999999 0.028129999999999999 1.3324 43.5 43.9 44.9 45.3 46.2 46.6 47.5 48 48.9 49.3 50.2 50.7 51.5 52
114 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 20 23 1 47.691899999999997 48.120100000000001 0.028060000000000002 0.028170000000000001 1.3382000000000001 43.7 44.1 45 45.4 46.4 46.8 47.7 48.1 49 49.5 50.4 50.8 51.7 52.2
115 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 21 24 1 47.840800000000002 48.2515 0.0281 0.028209999999999999 1.3443000000000001 43.8 44.2 45.2 45.5 46.5 46.9 47.8 48.3 49.2 49.6 50.5 51 51.9 52.3
116 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 22 25 1 47.9833 48.377699999999997 0.028129999999999999 0.028250000000000001 1.3498000000000001 43.9 44.3 45.3 45.6 46.6 47 48 48.4 49.3 49.7 50.7 51.1 52 52.5
117 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 23 26 1 48.120100000000001 48.498899999999999 0.028170000000000001 0.028299999999999999 1.3554999999999999 44.1 44.4 45.4 45.8 46.8 47.1 48.1 48.5 49.5 49.9 50.8 51.2 52.2 52.6
118 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 24 27 1 48.2515 48.615099999999998 0.028209999999999999 0.028340000000000001 1.3612 44.2 44.5 45.5 45.9 46.9 47.2 48.3 48.6 49.6 50 51 51.4 52.3 52.7
119 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 25 28 1 48.377699999999997 48.726399999999998 0.028250000000000001 0.028379999999999999 1.3667 44.3 44.6 45.6 46 47 47.3 48.4 48.7 49.7 50.1 51.1 51.5 52.5 52.9
120 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 26 29 1 48.498899999999999 48.833100000000002 0.028299999999999999 0.028420000000000001 1.3725000000000001 44.4 44.7 45.8 46.1 47.1 47.4 48.5 48.8 49.9 50.2 51.2 51.6 52.6 53
121 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 27 30 1 48.615099999999998 48.935099999999998 0.028340000000000001 0.028469999999999999 1.3777999999999999 44.5 44.8 45.9 46.1 47.2 47.5 48.6 48.9 50 50.3 51.4 51.7 52.7 53.1
122 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 28 31 1 48.726399999999998 49.032699999999998 0.028379999999999999 0.028510000000000001 1.3829 44.6 44.8 46 46.2 47.3 47.6 48.7 49 50.1 50.4 51.5 51.8 52.9 53.2
123 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 29 32 1 48.833100000000002 49.125999999999998 0.028420000000000001 0.028549999999999999 1.3877999999999999 44.7 44.9 46.1 46.3 47.4 47.7 48.8 49.1 50.2 50.5 51.6 51.9 53 53.3
124 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 30 33 1 48.935099999999998 49.215299999999999 0.028469999999999999 0.028590000000000001 1.3932 44.8 45 46.1 46.4 47.5 47.8 48.9 49.2 50.3 50.6 51.7 52 53.1 53.4
125 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 31 34 1 49.032699999999998 49.300699999999999 0.028510000000000001 0.028629999999999999 1.3978999999999999 44.8 45.1 46.2 46.5 47.6 47.9 49 49.3 50.4 50.7 51.8 52.1 53.2 53.5
126 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 32 35 1 49.125999999999998 49.382599999999996 0.028549999999999999 0.028670000000000001 1.4026000000000001 44.9 45.1 46.3 46.6 47.7 48 49.1 49.4 50.5 50.8 51.9 52.2 53.3 53.6
127 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 33 36 1 49.215299999999999 49.461199999999998 0.028590000000000001 0.028709999999999999 1.4071 45 45.2 46.4 46.6 47.8 48 49.2 49.5 50.6 50.9 52 52.3 53.4 53.7
128 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 34 37 1 49.300699999999999 49.536700000000003 0.028629999999999999 0.028750000000000001 1.4115 45.1 45.3 46.5 46.7 47.9 48.1 49.3 49.5 50.7 51 52.1 52.4 53.5 53.8
129 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 35 38 1 49.382599999999996 49.609299999999998 0.028670000000000001 0.02878 1.4157999999999999 45.1 45.3 46.6 46.8 48 48.2 49.4 49.6 50.8 51 52.2 52.5 53.6 53.9
130 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 36 39 1 49.461199999999998 49.679099999999998 0.028709999999999999 0.028819999999999998 1.42 45.2 45.4 46.6 46.8 48 48.2 49.5 49.7 50.9 51.1 52.3 52.5 53.7 54
131 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 37 40 1 49.536700000000003 49.746499999999997 0.028750000000000001 0.02886 1.4241999999999999 45.3 45.4 46.7 46.9 48.1 48.3 49.5 49.7 51 51.2 52.4 52.6 53.8 54.1
132 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 38 41 1 49.609299999999998 49.811599999999999 0.02878 0.028889999999999999 1.4278 45.3 45.5 46.8 46.9 48.2 48.4 49.6 49.8 51 51.3 52.5 52.7 53.9 54.1
133 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 39 42 1 49.679099999999998 49.874499999999998 0.028819999999999998 0.028930000000000001 1.4318 45.4 45.5 46.8 47 48.2 48.4 49.7 49.9 51.1 51.3 52.5 52.8 54 54.2
134 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 40 43 1 49.746499999999997 49.935400000000001 0.02886 0.02896 1.4357 45.4 45.6 46.9 47 48.3 48.5 49.7 49.9 51.2 51.4 52.6 52.8 54.1 54.3
135 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 41 44 1 49.811599999999999 49.994199999999999 0.028889999999999999 0.028989999999999998 1.4391 45.5 45.6 46.9 47.1 48.4 48.5 49.8 50 51.3 51.4 52.7 52.9 54.1 54.3
136 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 42 45 1 49.874499999999998 50.051200000000001 0.028930000000000001 0.02903 1.4429000000000001 45.5 45.7 47 47.1 48.4 48.6 49.9 50.1 51.3 51.5 52.8 53 54.2 54.4
137 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 43 46 1 49.935400000000001 50.106400000000001 0.02896 0.029059999999999999 1.4460999999999999 45.6 45.7 47 47.2 48.5 48.7 49.9 50.1 51.4 51.6 52.8 53 54.3 54.5
138 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 44 47 1 49.994199999999999 50.159799999999997 0.028989999999999998 0.029090000000000001 1.4493 45.6 45.8 47.1 47.2 48.5 48.7 50 50.2 51.4 51.6 52.9 53.1 54.3 54.5
139 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 45 48 1 50.051200000000001 50.211500000000001 0.02903 0.02912 1.4530000000000001 45.7 45.8 47.1 47.3 48.6 48.7 50.1 50.2 51.5 51.7 53 53.1 54.4 54.6
140 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 46 49 1 50.106400000000001 50.261699999999998 0.029059999999999999 0.029149999999999999 1.4560999999999999 45.7 45.9 47.2 47.3 48.7 48.8 50.1 50.3 51.6 51.7 53 53.2 54.5 54.7
141 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 47 50 1 50.159799999999997 50.310499999999998 0.029090000000000001 0.029180000000000001 1.4592000000000001 45.8 45.9 47.2 47.4 48.7 48.8 50.2 50.3 51.6 51.8 53.1 53.2 54.5 54.7
142 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 48 51 1 50.211500000000001 50.357799999999997 0.02912 0.02921 1.4621999999999999 45.8 45.9 47.3 47.4 48.7 48.9 50.2 50.4 51.7 51.8 53.1 53.3 54.6 54.8
143 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 49 52 1 50.261699999999998 50.4039 0.029149999999999999 0.029239999999999999 1.4651000000000001 45.9 46 47.3 47.5 48.8 48.9 50.3 50.4 51.7 51.9 53.2 53.4 54.7 54.8
144 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 50 53 1 50.310499999999998 50.448799999999999 0.029180000000000001 0.029270000000000001 1.4681 45.9 46 47.4 47.5 48.8 49 50.3 50.4 51.8 51.9 53.2 53.4 54.7 54.9
145 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 51 54 1 50.357799999999997 50.492600000000003 0.02921 0.02929 1.4710000000000001 45.9 46.1 47.4 47.5 48.9 49 50.4 50.5 51.8 52 53.3 53.5 54.8 54.9
146 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 52 55 1 50.4039 50.535400000000003 0.029239999999999999 0.029319999999999999 1.4738 46 46.1 47.5 47.6 48.9 49.1 50.4 50.5 51.9 52 53.4 53.5 54.8 55
147 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 53 56 1 50.448799999999999 50.577199999999998 0.029270000000000001 0.029350000000000001 1.4765999999999999 46 46.1 47.5 47.6 49 49.1 50.4 50.6 51.9 52.1 53.4 53.5 54.9 55
148 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 54 57 1 50.492600000000003 50.618299999999998 0.02929 0.02938 1.4789000000000001 46.1 46.2 47.5 47.6 49 49.1 50.5 50.6 52 52.1 53.5 53.6 54.9 55.1
149 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 55 58 1 50.535400000000003 50.658700000000003 0.029319999999999999 0.029399999999999999 1.4817 46.1 46.2 47.6 47.7 49.1 49.2 50.5 50.7 52 52.1 53.5 53.6 55 55.1
150 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 56 59 1 50.577199999999998 50.698399999999999 0.029350000000000001 0.029430000000000001 1.4843999999999999 46.1 46.2 47.6 47.7 49.1 49.2 50.6 50.7 52.1 52.2 53.5 53.7 55 55.2
151 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 57 60 1 50.618299999999998 50.737499999999997 0.02938 0.02946 1.4872000000000001 46.2 46.3 47.6 47.7 49.1 49.2 50.6 50.7 52.1 52.2 53.6 53.7 55.1 55.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 58 1 50.658700000000003 0.029399999999999999 1.4894000000000001 46.2 47.7 49.2 50.7 52.1 53.6 55.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 59 1 50.698399999999999 0.029430000000000001 1.4921 46.2 47.7 49.2 50.7 52.2 53.7 55.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-boys-0-5-zscores.xlsx male month 60 1 50.737499999999997 0.02946 1.4946999999999999 46.3 47.7 49.2 50.7 52.2 53.7 55.2

View File

@ -1,496 +1,489 @@
source,gender,age_unit,age,l,m,s,sd,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-13-weeks_zscores.xlsx,female,week,0,1,49.1477,0.037900000000000003,1.8627,43.6,45.4,47.3,49.1,51,52.9,54.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-13-weeks_zscores.xlsx,female,week,1,1,50.329799999999999,0.037420000000000002,1.8833,44.7,46.6,48.4,50.3,52.2,54.1,56
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-13-weeks_zscores.xlsx,female,week,2,1,51.512,0.036940000000000001,1.9029,45.8,47.7,49.6,51.5,53.4,55.3,57.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-13-weeks_zscores.xlsx,female,week,3,1,52.469499999999996,0.03669,1.9251,46.7,48.6,50.5,52.5,54.4,56.3,58.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-13-weeks_zscores.xlsx,female,week,4,1,53.380899999999997,0.036470000000000002,1.9468000000000001,47.5,49.5,51.4,53.4,55.3,57.3,59.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-13-weeks_zscores.xlsx,female,week,5,1,54.245399999999997,0.036269999999999997,1.9675,48.3,50.3,52.3,54.2,56.2,58.2,60.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-13-weeks_zscores.xlsx,female,week,6,1,55.0642,0.036089999999999997,1.9873000000000001,49.1,51.1,53.1,55.1,57.1,59,61
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-13-weeks_zscores.xlsx,female,week,7,1,55.840600000000002,0.035929999999999997,2.0064000000000002,49.8,51.8,53.8,55.8,57.8,59.9,61.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-13-weeks_zscores.xlsx,female,week,8,1,56.576700000000002,0.035779999999999999,2.0243000000000002,50.5,52.5,54.6,56.6,58.6,60.6,62.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-13-weeks_zscores.xlsx,female,week,9,1,57.2761,0.035639999999999998,2.0413000000000001,51.2,53.2,55.2,57.3,59.3,61.4,63.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-13-weeks_zscores.xlsx,female,week,10,1,57.943600000000004,0.035520000000000003,2.0581999999999998,51.8,53.8,55.9,57.9,60,62.1,64.099999999999994
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-13-weeks_zscores.xlsx,female,week,11,1,58.581600000000002,0.035400000000000001,2.0737999999999999,52.4,54.4,56.5,58.6,60.7,62.7,64.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-13-weeks_zscores.xlsx,female,week,12,1,59.1922,0.035299999999999998,2.0895000000000001,52.9,55,57.1,59.2,61.3,63.4,65.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-13-weeks_zscores.xlsx,female,week,13,1,59.777299999999997,0.035200000000000002,2.1042000000000001,53.5,55.6,57.7,59.8,61.9,64,66.099999999999994
source,gender,age_unit,age,l,m,s,sd,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,0,1,49.1477,0.037900000000000003,1.8627,43.6,45.4,47.3,49.1,51,52.9,54.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,1,1,53.687199999999997,0.036400000000000002,1.9541999999999999,47.8,49.8,51.7,53.7,55.6,57.6,59.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,2,1,57.067300000000003,0.035680000000000003,2.0362,51,53,55,57.1,59.1,61.1,63.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,3,1,59.802900000000001,0.035200000000000002,2.1051000000000002,53.5,55.6,57.7,59.8,61.9,64,66.099999999999994
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,4,1,62.0899,0.034860000000000002,2.1644999999999999,55.6,57.8,59.9,62.1,64.3,66.400000000000006,68.599999999999994
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,5,1,64.030100000000004,0.034630000000000001,2.2174,57.4,59.6,61.8,64,66.2,68.5,70.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,6,1,65.731099999999998,0.034479999999999997,2.2664,58.9,61.2,63.5,65.7,68,70.3,72.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,7,1,67.287300000000002,0.034410000000000003,2.3153999999999999,60.3,62.7,65,67.3,69.599999999999994,71.900000000000006,74.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,8,1,68.749799999999993,0.0344,2.3650000000000002,61.7,64,66.400000000000006,68.7,71.099999999999994,73.5,75.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,9,1,70.143500000000003,0.034439999999999998,2.4157000000000002,62.9,65.3,67.7,70.099999999999994,72.599999999999994,75,77.400000000000006
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,10,1,71.481800000000007,0.034520000000000002,2.4676,64.099999999999994,66.5,69,71.5,73.900000000000006,76.400000000000006,78.900000000000006
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,11,1,72.771000000000001,0.034639999999999997,2.5207999999999999,65.2,67.7,70.3,72.8,75.3,77.8,80.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,12,1,74.015000000000001,0.034790000000000001,2.5750000000000002,66.3,68.900000000000006,71.400000000000006,74,76.599999999999994,79.2,81.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,13,1,75.217600000000004,0.034959999999999998,2.6295999999999999,67.3,70,72.599999999999994,75.2,77.8,80.5,83.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,14,1,76.381699999999995,0.035139999999999998,2.6840999999999999,68.3,71,73.7,76.400000000000006,79.099999999999994,81.7,84.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,15,1,77.509900000000002,0.035340000000000003,2.7391999999999999,69.3,72,74.8,77.5,80.2,83,85.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,16,1,78.605500000000006,0.035549999999999998,2.7944,70.2,73,75.8,78.599999999999994,81.400000000000006,84.2,87
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,17,1,79.671000000000006,0.03576,2.8490000000000002,71.099999999999994,74,76.8,79.7,82.5,85.4,88.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,18,1,80.707899999999995,0.035979999999999998,2.9039000000000001,72,74.900000000000006,77.8,80.7,83.6,86.5,89.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,19,1,81.718199999999996,0.036200000000000003,2.9582000000000002,72.8,75.8,78.8,81.7,84.7,87.6,90.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,20,1,82.703599999999994,0.036429999999999997,3.0129000000000001,73.7,76.7,79.7,82.7,85.7,88.7,91.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,21,1,83.665400000000005,0.036659999999999998,3.0672000000000001,74.5,77.5,80.599999999999994,83.7,86.7,89.8,92.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,22,1,84.603999999999999,0.036880000000000003,3.1202000000000001,75.2,78.400000000000006,81.5,84.6,87.7,90.8,94
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,23,1,85.520200000000003,0.037109999999999997,3.1737000000000002,76,79.2,82.3,85.5,88.7,91.9,95
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,24,1,86.415300000000002,0.037339999999999998,3.2267000000000001,76.7,80,83.2,86.4,89.6,92.9,96.1
source,gender,age_unit,age,l,m,s,sd,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,24,1,85.715299999999999,0.03764,3.2267000000000001,76,79.3,82.5,85.7,88.9,92.2,95.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,25,1,86.590400000000002,0.037859999999999998,3.2783000000000002,76.8,80,83.3,86.6,89.9,93.1,96.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,26,1,87.446200000000005,0.038080000000000003,3.33,77.5,80.8,84.1,87.4,90.8,94.1,97.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,27,1,88.283000000000001,0.038300000000000001,3.3812000000000002,78.099999999999994,81.5,84.9,88.3,91.7,95,98.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,28,1,89.100399999999993,0.038510000000000003,3.4312999999999998,78.8,82.2,85.7,89.1,92.5,96,99.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,29,1,89.899100000000004,0.038719999999999997,3.4809000000000001,79.5,82.9,86.4,89.9,93.4,96.9,100.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,30,1,90.679699999999997,0.038929999999999999,3.5301999999999998,80.099999999999994,83.6,87.1,90.7,94.2,97.7,101.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,31,1,91.442999999999998,0.039129999999999998,3.5781999999999998,80.7,84.3,87.9,91.4,95,98.6,102.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,32,1,92.190600000000003,0.039329999999999997,3.6259000000000001,81.3,84.9,88.6,92.2,95.8,99.4,103.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,33,1,92.923900000000003,0.03952,3.6724000000000001,81.900000000000006,85.6,89.3,92.9,96.6,100.3,103.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,34,1,93.644400000000005,0.039710000000000002,3.7185999999999999,82.5,86.2,89.9,93.6,97.4,101.1,104.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,35,1,94.353300000000004,0.039890000000000002,3.7637999999999998,83.1,86.8,90.6,94.4,98.1,101.9,105.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,36,1,95.051500000000004,0.040059999999999998,3.8077999999999999,83.6,87.4,91.2,95.1,98.9,102.7,106.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,37,1,95.739900000000006,0.040239999999999998,3.8525999999999998,84.2,88,91.9,95.7,99.6,103.4,107.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,38,1,96.418700000000001,0.040410000000000001,3.8963000000000001,84.7,88.6,92.5,96.4,100.3,104.2,108.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,39,1,97.088499999999996,0.040570000000000002,3.9388999999999998,85.3,89.2,93.1,97.1,101,105,108.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,40,1,97.749300000000005,0.040730000000000002,3.9813000000000001,85.8,89.8,93.8,97.7,101.7,105.7,109.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,41,1,98.401499999999999,0.040890000000000003,4.0236000000000001,86.3,90.4,94.4,98.4,102.4,106.4,110.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,42,1,99.044799999999995,0.041050000000000003,4.0658000000000003,86.8,90.9,95,99,103.1,107.2,111.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,43,1,99.679500000000004,0.041200000000000001,4.1067999999999998,87.4,91.5,95.6,99.7,103.8,107.9,112
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,44,1,100.3058,0.041349999999999998,4.1475999999999997,87.9,92,96.2,100.3,104.5,108.6,112.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,45,1,100.9238,0.041500000000000002,4.1882999999999999,88.4,92.5,96.7,100.9,105.1,109.3,113.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,46,1,101.5337,0.041640000000000003,4.2279,88.9,93.1,97.3,101.5,105.8,110,114.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,47,1,102.136,0.041790000000000001,4.2683,89.3,93.6,97.9,102.1,106.4,110.7,114.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,48,1,102.7312,0.041930000000000002,4.3075000000000001,89.8,94.1,98.4,102.7,107,111.3,115.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,49,1,103.3197,0.04206,4.3456000000000001,90.3,94.6,99,103.3,107.7,112,116.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,50,1,103.9021,0.042200000000000001,4.3846999999999996,90.7,95.1,99.5,103.9,108.3,112.7,117.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,51,1,104.4786,0.04233,4.4226000000000001,91.2,95.6,100.1,104.5,108.9,113.3,117.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,52,1,105.04940000000001,0.042459999999999998,4.4603999999999999,91.7,96.1,100.6,105,109.5,114,118.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,53,1,105.6148,0.042590000000000003,4.4981,92.1,96.6,101.1,105.6,110.1,114.6,119.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,54,1,106.1748,0.042720000000000001,4.5358000000000001,92.6,97.1,101.6,106.2,110.7,115.2,119.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,55,1,106.7295,0.042849999999999999,4.5734000000000004,93,97.6,102.2,106.7,111.3,115.9,120.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,56,1,107.2788,0.042979999999999997,4.6108000000000002,93.4,98.1,102.7,107.3,111.9,116.5,121.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,57,1,107.8227,0.043099999999999999,4.6471999999999998,93.9,98.5,103.2,107.8,112.5,117.1,121.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,58,1,108.3613,0.043220000000000001,4.6833999999999998,94.3,99,103.7,108.4,113,117.7,122.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,59,1,108.8948,0.043339999999999997,4.7195,94.7,99.5,104.2,108.9,113.6,118.3,123.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,60,1,109.4233,0.043470000000000002,4.7565999999999997,95.2,99.9,104.7,109.4,114.2,118.9,123.7
source,gender,age_unit,age,l,m,s,stdev,sd5neg,sd4neg,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3,sd4
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,61,1,109.6016,0.043549999999999998,4.7731000000000003,85.736000000000004,90.509,95.281999999999996,100.05500000000001,104.828,109.602,114.375,119.148,123.92100000000001,128.69399999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,62,1,110.1258,0.043639999999999998,4.8059000000000003,86.096000000000004,90.902000000000001,95.707999999999998,100.514,105.32,110.126,114.932,119.738,124.54300000000001,129.34899999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,63,1,110.6451,0.043729999999999998,4.8384999999999998,86.453000000000003,91.290999999999997,96.13,100.968,105.807,110.645,115.48399999999999,120.322,125.161,129.999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,64,1,111.1596,0.043819999999999998,4.8710000000000004,86.805000000000007,91.676000000000002,96.546999999999997,101.41800000000001,106.289,111.16,116.03100000000001,120.902,125.773,130.64400000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,65,1,111.6696,0.043900000000000002,4.9023000000000003,87.158000000000001,92.06,96.962999999999994,101.86499999999999,106.767,111.67,116.572,121.474,126.376,131.279
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,66,1,112.17529999999999,0.043990000000000001,4.9345999999999997,87.501999999999995,92.436999999999998,97.372,102.306,107.241,112.175,117.11,122.044,126.979,131.91399999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,67,1,112.6767,0.044069999999999998,4.9657,87.847999999999999,92.813999999999993,97.78,102.745,107.711,112.67700000000001,117.642,122.608,127.574,132.53899999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,68,1,113.17400000000001,0.044150000000000002,4.9965999999999999,88.191000000000003,93.186999999999998,98.183999999999997,103.181,108.17700000000001,113.17400000000001,118.17100000000001,123.167,128.16399999999999,133.161
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,69,1,113.66719999999999,0.044229999999999998,5.0274999999999999,88.53,93.557000000000002,98.584999999999994,103.61199999999999,108.64,113.667,118.69499999999999,123.72199999999999,128.75,133.77699999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,70,1,114.15649999999999,0.044310000000000002,5.0583,88.864999999999995,93.923000000000002,98.981999999999999,104.04,109.098,114.15600000000001,119.215,124.273,129.33099999999999,134.38999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,71,1,114.6421,0.044389999999999999,5.0890000000000004,89.197000000000003,94.286000000000001,99.375,104.464,109.553,114.642,119.73099999999999,124.82,129.90899999999999,134.99799999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,72,1,115.12439999999999,0.044470000000000003,5.1196000000000002,89.525999999999996,94.646000000000001,99.766000000000005,104.88500000000001,110.005,115.124,120.244,125.364,130.483,135.60300000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,73,1,115.6039,0.044540000000000003,5.149,89.858999999999995,95.007999999999996,100.157,105.306,110.455,115.604,120.753,125.902,131.05099999999999,136.19999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,74,1,116.0812,0.044609999999999997,5.1783999999999999,90.188999999999993,95.367999999999995,100.54600000000001,105.724,110.90300000000001,116.081,121.26,126.438,131.61600000000001,136.79499999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,75,1,116.5568,0.044690000000000001,5.2088999999999999,90.512,95.721000000000004,100.93,106.139,111.348,116.557,121.76600000000001,126.97499999999999,132.184,137.392
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,76,1,117.0311,0.044749999999999998,5.2370999999999999,90.844999999999999,96.082999999999998,101.32,106.557,111.794,117.03100000000001,122.268,127.505,132.74299999999999,137.97999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,77,1,117.5044,0.044819999999999999,5.2664999999999997,91.171999999999997,96.438000000000002,101.705,106.971,112.238,117.504,122.771,128.03700000000001,133.304,138.571
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,78,1,117.9769,0.044889999999999999,5.2960000000000003,91.497,96.793000000000006,102.089,107.38500000000001,112.681,117.977,123.273,128.56899999999999,133.86500000000001,139.161
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,79,1,118.44889999999999,0.044949999999999997,5.3243,91.828000000000003,97.152000000000001,102.476,107.8,113.125,118.449,123.773,129.09700000000001,134.422,139.74600000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,80,1,118.9208,0.045019999999999998,5.3537999999999997,92.152000000000001,97.506,102.85899999999999,108.21299999999999,113.56699999999999,118.92100000000001,124.27500000000001,129.62799999999999,134.982,140.33600000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,81,1,119.3926,0.045080000000000002,5.3822000000000001,92.481999999999999,97.864000000000004,103.246,108.628,114.01,119.393,124.77500000000001,130.15700000000001,135.53899999999999,140.92099999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,82,1,119.8648,0.04514,5.4107000000000003,92.811000000000007,98.221999999999994,103.633,109.04300000000001,114.45399999999999,119.86499999999999,125.27500000000001,130.68600000000001,136.09700000000001,141.50800000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,83,1,120.3374,0.045199999999999997,5.4393000000000002,93.141000000000005,98.58,104.02,109.459,114.898,120.337,125.777,131.21600000000001,136.655,142.09399999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,84,1,120.8105,0.045249999999999999,5.4667000000000003,93.477000000000004,98.944000000000003,104.41,109.877,115.34399999999999,120.81,126.277,131.744,137.21100000000001,142.67699999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,85,1,121.2843,0.045310000000000003,5.4954000000000001,93.807000000000002,99.302999999999997,104.798,110.294,115.789,121.28400000000001,126.78,132.27500000000001,137.77000000000001,143.26599999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,86,1,121.7587,0.045359999999999998,5.5229999999999997,94.144000000000005,99.667000000000002,105.19,110.71299999999999,116.236,121.759,127.282,132.80500000000001,138.328,143.851
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,87,1,122.2338,0.045420000000000002,5.5518999999999998,94.474999999999994,100.026,105.578,111.13,116.682,122.23399999999999,127.786,133.33799999999999,138.88900000000001,144.441
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,88,1,122.7098,0.045469999999999997,5.5796000000000001,94.811999999999998,100.39100000000001,105.971,111.551,117.13,122.71,128.28899999999999,133.869,139.44900000000001,145.02799999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,89,1,123.18680000000001,0.045510000000000002,5.6062000000000003,95.156000000000006,100.762,106.36799999999999,111.974,117.581,123.187,128.79300000000001,134.399,140.005,145.61199999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,90,1,123.66459999999999,0.045560000000000003,5.6341999999999999,95.494,101.128,106.762,112.396,118.03,123.66500000000001,129.29900000000001,134.93299999999999,140.56700000000001,146.20099999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,91,1,124.1435,0.045609999999999998,5.6622000000000003,95.832999999999998,101.495,107.157,112.819,118.48099999999999,124.14400000000001,129.80600000000001,135.46799999999999,141.13,146.792
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,92,1,124.6234,0.045650000000000003,5.6890999999999998,96.177999999999997,101.867,107.556,113.245,118.934,124.623,130.31200000000001,136.00200000000001,141.691,147.38
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,93,1,125.1045,0.045690000000000001,5.7160000000000002,96.524000000000001,102.24,107.956,113.672,119.38800000000001,125.104,130.821,136.53700000000001,142.25299999999999,147.96899999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,94,1,125.5869,0.04573,5.7431000000000001,96.870999999999995,102.61499999999999,108.358,114.101,119.84399999999999,125.587,131.33000000000001,137.07300000000001,142.816,148.559
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,95,1,126.0706,0.045769999999999998,5.7702999999999998,97.218999999999994,102.99,108.76,114.53,120.3,126.071,131.84100000000001,137.61099999999999,143.381,149.15199999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,96,1,126.5558,0.045809999999999997,5.7975000000000003,97.567999999999998,103.366,109.163,114.961,120.758,126.556,132.35300000000001,138.15100000000001,143.94800000000001,149.74600000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,97,1,127.0424,0.045850000000000002,5.8249000000000004,97.918000000000006,103.74299999999999,109.568,115.393,121.218,127.042,132.86699999999999,138.69200000000001,144.517,150.34200000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,98,1,127.5304,0.045879999999999997,5.8510999999999997,98.275000000000006,104.126,109.977,115.828,121.679,127.53,133.381,139.233,145.084,150.935
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,99,1,128.01990000000001,0.045909999999999999,5.8773999999999997,98.632999999999996,104.51,110.38800000000001,116.265,122.143,128.02000000000001,133.89699999999999,139.77500000000001,145.65199999999999,151.529
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,100,1,128.51089999999999,0.045940000000000002,5.9038000000000004,98.992000000000004,104.896,110.8,116.703,122.607,128.511,134.41499999999999,140.31800000000001,146.22200000000001,152.126
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,101,1,129.0035,0.045969999999999997,5.9302999999999999,99.352000000000004,105.282,111.21299999999999,117.143,123.07299999999999,129.00399999999999,134.934,140.864,146.79400000000001,152.72499999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,102,1,129.4975,0.045999999999999999,5.9569000000000001,99.712999999999994,105.67,111.627,117.584,123.541,129.49799999999999,135.45400000000001,141.411,147.36799999999999,153.32499999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,103,1,129.9932,0.046019999999999998,5.9823000000000004,100.08199999999999,106.06399999999999,112.04600000000001,118.029,124.011,129.99299999999999,135.97499999999999,141.958,147.94,153.922
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,104,1,130.49039999999999,0.046039999999999998,6.0077999999999996,100.452,106.459,112.467,118.47499999999999,124.483,130.49,136.49799999999999,142.506,148.51400000000001,154.52199999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,105,1,130.98910000000001,0.04607,6.0347,100.816,106.85,112.88500000000001,118.92,124.95399999999999,130.989,137.024,143.05799999999999,149.09299999999999,155.12799999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,106,1,131.48949999999999,0.046080000000000003,6.0590000000000002,101.194,107.253,113.312,119.371,125.43,131.49,137.54900000000001,143.608,149.667,155.726
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,107,1,131.99119999999999,0.046100000000000002,6.0848000000000004,101.56699999999999,107.652,113.73699999999999,119.822,125.90600000000001,131.99100000000001,138.07599999999999,144.161,150.24600000000001,156.33000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,108,1,132.49440000000001,0.046120000000000001,6.1105999999999998,101.941,108.05200000000001,114.16200000000001,120.273,126.384,132.494,138.60499999999999,144.71600000000001,150.82599999999999,156.93700000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,109,1,132.99889999999999,0.046129999999999997,6.1352000000000002,102.32299999999999,108.458,114.593,120.72799999999999,126.864,132.999,139.13399999999999,145.26900000000001,151.405,157.54
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,110,1,133.50460000000001,0.04614,6.1599000000000004,102.705,108.86499999999999,115.02500000000001,121.185,127.345,133.505,139.66499999999999,145.82400000000001,151.98400000000001,158.14400000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,111,1,134.01179999999999,0.046149999999999997,6.1845999999999997,103.089,109.273,115.458,121.643,127.827,134.012,140.196,146.381,152.566,158.75
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,112,1,134.52019999999999,0.04616,6.2095000000000002,103.473,109.682,115.892,122.101,128.31100000000001,134.52000000000001,140.72999999999999,146.93899999999999,153.149,159.358
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,113,1,135.0299,0.04616,6.2329999999999997,103.86499999999999,110.098,116.331,122.56399999999999,128.797,135.03,141.26300000000001,147.49600000000001,153.72900000000001,159.96199999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,114,1,135.541,0.046170000000000003,6.2579000000000002,104.251,110.509,116.767,123.02500000000001,129.28299999999999,135.541,141.79900000000001,148.05699999999999,154.315,160.57300000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,115,1,136.05330000000001,0.046170000000000003,6.2816000000000001,104.645,110.92700000000001,117.209,123.49,129.77199999999999,136.053,142.33500000000001,148.61600000000001,154.898,161.18
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,116,1,136.56700000000001,0.04616,6.3038999999999996,105.047,111.351,117.655,123.959,130.26300000000001,136.56700000000001,142.87100000000001,149.17500000000001,155.47900000000001,161.78299999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,117,1,137.0821,0.04616,6.3277000000000001,105.444,111.771,118.099,124.42700000000001,130.75399999999999,137.08199999999999,143.41,149.738,156.065,162.393
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,118,1,137.59870000000001,0.04616,6.3516000000000004,105.84099999999999,112.19199999999999,118.544,124.896,131.24700000000001,137.59899999999999,143.94999999999999,150.30199999999999,156.65299999999999,163.005
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,119,1,138.11670000000001,0.046149999999999997,6.3741000000000003,106.246,112.62,118.994,125.369,131.74299999999999,138.11699999999999,144.49100000000001,150.86500000000001,157.239,163.613
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,120,1,138.63630000000001,0.04614,6.3967000000000001,106.65300000000001,113.05,119.446,125.843,132.24,138.636,145.03299999999999,151.43,157.82599999999999,164.22300000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,121,1,139.1575,0.046120000000000001,6.4179000000000004,107.068,113.486,119.904,126.322,132.74,139.15799999999999,145.57499999999999,151.99299999999999,158.411,164.82900000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,122,1,139.68029999999999,0.046109999999999998,6.4406999999999996,107.477,113.91800000000001,120.358,126.79900000000001,133.24,139.68,146.12100000000001,152.56200000000001,159.00200000000001,165.44300000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,123,1,140.20490000000001,0.046089999999999999,6.4619999999999997,107.895,114.357,120.819,127.28100000000001,133.74299999999999,140.20500000000001,146.667,153.12899999999999,159.59100000000001,166.053
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,124,1,140.7313,0.04607,6.4835000000000003,108.31399999999999,114.797,121.28100000000001,127.764,134.24799999999999,140.73099999999999,147.215,153.69800000000001,160.18199999999999,166.66499999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,125,1,141.2594,0.046050000000000001,6.5049999999999999,108.73399999999999,115.239,121.744,128.249,134.75399999999999,141.25899999999999,147.76400000000001,154.26900000000001,160.774,167.279
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,126,1,141.78919999999999,0.046030000000000001,6.5266000000000002,109.15600000000001,115.68300000000001,122.21,128.73599999999999,135.26300000000001,141.78899999999999,148.316,154.84200000000001,161.369,167.89500000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,127,1,142.32060000000001,0.045999999999999999,6.5467000000000004,109.587,116.134,122.68,129.227,135.774,142.321,148.86699999999999,155.41399999999999,161.96100000000001,168.50800000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,128,1,142.85339999999999,0.045969999999999997,6.5670000000000002,110.01900000000001,116.586,123.152,129.71899999999999,136.286,142.85300000000001,149.41999999999999,155.98699999999999,162.554,169.12100000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,129,1,143.38740000000001,0.045940000000000002,6.5872000000000002,110.45099999999999,117.039,123.626,130.21299999999999,136.80000000000001,143.387,149.97499999999999,156.56200000000001,163.149,169.73599999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,130,1,143.9222,0.045909999999999999,6.6074999999999999,110.88500000000001,117.492,124.1,130.70699999999999,137.315,143.922,150.53,157.137,163.745,170.352
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,131,1,144.45750000000001,0.045879999999999997,6.6276999999999999,111.319,117.947,124.574,131.202,137.83000000000001,144.458,151.08500000000001,157.71299999999999,164.34100000000001,170.96799999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,132,1,144.99289999999999,0.045839999999999999,6.6464999999999996,111.761,118.407,125.053,131.69999999999999,138.346,144.99299999999999,151.63900000000001,158.286,164.93199999999999,171.57900000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,133,1,145.52799999999999,0.0458,6.6651999999999996,112.202,118.867,125.532,132.19800000000001,138.863,145.52799999999999,152.19300000000001,158.858,165.524,172.18899999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,134,1,146.06219999999999,0.045760000000000002,6.6837999999999997,112.643,119.327,126.011,132.69499999999999,139.37799999999999,146.06200000000001,152.74600000000001,159.43,166.114,172.797
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,135,1,146.5951,0.045710000000000001,6.7008999999999999,113.09099999999999,119.792,126.49299999999999,133.19300000000001,139.89400000000001,146.595,153.29599999999999,159.99700000000001,166.69800000000001,173.399
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,136,1,147.12620000000001,0.045670000000000002,6.7192999999999996,113.53,120.249,126.968,133.68799999999999,140.40700000000001,147.126,153.845,160.565,167.28399999999999,174.00299999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,137,1,147.65479999999999,0.045620000000000001,6.7359999999999998,113.97499999999999,120.711,127.447,134.18299999999999,140.91900000000001,147.655,154.39099999999999,161.12700000000001,167.863,174.59899999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,138,1,148.18039999999999,0.045569999999999999,6.7526000000000002,114.417,121.17,127.923,134.67500000000001,141.428,148.18,154.93299999999999,161.68600000000001,168.43799999999999,175.191
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,139,1,148.70230000000001,0.045519999999999998,6.7689000000000004,114.858,121.627,128.39599999999999,135.16399999999999,141.93299999999999,148.702,155.471,162.24,169.00899999999999,175.77799999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,140,1,149.21969999999999,0.04546,6.7835000000000001,115.30200000000001,122.086,128.869,135.65299999999999,142.43600000000001,149.22,156.00299999999999,162.78700000000001,169.57,176.35400000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,141,1,149.73220000000001,0.045409999999999999,6.7992999999999997,115.736,122.535,129.334,136.13399999999999,142.93299999999999,149.732,156.53200000000001,163.33099999999999,170.13,176.93
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,142,1,150.239,0.045350000000000001,6.8132999999999999,116.172,122.986,129.79900000000001,136.61199999999999,143.42599999999999,150.239,157.05199999999999,163.86600000000001,170.679,177.49199999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,143,1,150.73939999999999,0.045289999999999997,6.827,116.604,123.431,130.25800000000001,137.08500000000001,143.91200000000001,150.739,157.566,164.393,171.22,178.047
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,144,1,151.23269999999999,0.045229999999999999,6.8403,117.03100000000001,123.872,130.71199999999999,137.55199999999999,144.392,151.233,158.07300000000001,164.91300000000001,171.75299999999999,178.59399999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,145,1,151.7182,0.045159999999999999,6.8516000000000004,117.46,124.312,131.16300000000001,138.01499999999999,144.86699999999999,151.71799999999999,158.57,165.42099999999999,172.273,179.125
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,146,1,152.1951,0.045100000000000001,6.8639999999999999,117.875,124.739,131.60300000000001,138.46700000000001,145.33099999999999,152.19499999999999,159.059,165.923,172.78700000000001,179.65100000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,147,1,152.6628,0.045030000000000001,6.8743999999999996,118.291,125.16500000000001,132.04,138.91399999999999,145.78800000000001,152.66300000000001,159.53700000000001,166.41200000000001,173.286,180.16
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,148,1,153.1206,0.044970000000000003,6.8857999999999997,118.691,125.577,132.46299999999999,139.34899999999999,146.23500000000001,153.12100000000001,160.006,166.892,173.77799999999999,180.66399999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,149,1,153.56780000000001,0.044900000000000002,6.8952,119.092,125.98699999999999,132.88200000000001,139.77699999999999,146.673,153.56800000000001,160.46299999999999,167.358,174.25299999999999,181.149
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,150,1,154.00409999999999,0.044830000000000002,6.9039999999999999,119.48399999999999,126.38800000000001,133.292,140.196,147.1,154.00399999999999,160.90799999999999,167.81200000000001,174.71600000000001,181.62
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,151,1,154.429,0.044760000000000001,6.9122000000000003,119.86799999999999,126.78,133.69200000000001,140.60499999999999,147.517,154.429,161.34100000000001,168.25299999999999,175.166,182.078
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,152,1,154.84229999999999,0.044679999999999997,6.9184000000000001,120.251,127.169,134.08699999999999,141.006,147.92400000000001,154.84200000000001,161.761,168.679,175.59700000000001,182.51599999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,153,1,155.24369999999999,0.044609999999999997,6.9253999999999998,120.617,127.542,134.46700000000001,141.393,148.31800000000001,155.244,162.16900000000001,169.095,176.02,182.94499999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,154,1,155.63300000000001,0.044540000000000003,6.9318999999999997,120.974,127.905,134.83699999999999,141.76900000000001,148.70099999999999,155.63300000000001,162.565,169.49700000000001,176.429,183.36099999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,155,1,156.01009999999999,0.04446,6.9362000000000004,121.32899999999999,128.26499999999999,135.20099999999999,142.13800000000001,149.07400000000001,156.01,162.946,169.88300000000001,176.81899999999999,183.755
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,156,1,156.37479999999999,0.044389999999999999,6.9414999999999996,121.667,128.60900000000001,135.55000000000001,142.49199999999999,149.43299999999999,156.375,163.316,170.25800000000001,177.19900000000001,184.14099999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,157,1,156.7269,0.044310000000000002,6.9446000000000003,122.004,128.94900000000001,135.893,142.83799999999999,149.78200000000001,156.727,163.67099999999999,170.61600000000001,177.56100000000001,184.505
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,158,1,157.06659999999999,0.044229999999999998,6.9470999999999998,122.331,129.27799999999999,136.22499999999999,143.172,150.12,157.06700000000001,164.01400000000001,170.96100000000001,177.90799999999999,184.85499999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,159,1,157.39359999999999,0.044150000000000002,6.9489000000000001,122.649,129.59800000000001,136.547,143.49600000000001,150.44499999999999,157.39400000000001,164.34299999999999,171.291,178.24,185.18899999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,160,1,157.70820000000001,0.044080000000000001,6.9518000000000004,122.949,129.90100000000001,136.85300000000001,143.80500000000001,150.756,157.708,164.66,171.61199999999999,178.56399999999999,185.51499999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,161,1,158.0102,0.043999999999999997,6.9523999999999999,123.248,130.19999999999999,137.15299999999999,144.10499999999999,151.05799999999999,158.01,164.96299999999999,171.91499999999999,178.86799999999999,185.82
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,162,1,158.2997,0.043920000000000001,6.9524999999999997,123.53700000000001,130.49,137.44200000000001,144.39500000000001,151.34700000000001,158.30000000000001,165.25200000000001,172.20500000000001,179.15700000000001,186.11
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,163,1,158.5771,0.043839999999999997,6.952,123.81699999999999,130.76900000000001,137.721,144.673,151.625,158.577,165.529,172.48099999999999,179.43299999999999,186.38499999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,164,1,158.8425,0.04376,6.9508999999999999,124.08799999999999,131.03899999999999,137.99,144.941,151.892,158.84200000000001,165.79300000000001,172.744,179.69499999999999,186.64599999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,165,1,159.09610000000001,0.04369,6.9508999999999999,124.342,131.292,138.24299999999999,145.19399999999999,152.14500000000001,159.096,166.047,172.99799999999999,179.94900000000001,186.9
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,166,1,159.3382,0.043610000000000003,6.9486999999999997,124.595,131.54300000000001,138.49199999999999,145.441,152.38900000000001,159.33799999999999,166.28700000000001,173.23599999999999,180.184,187.13300000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,167,1,159.56909999999999,0.043529999999999999,6.9459999999999997,124.839,131.785,138.73099999999999,145.67699999999999,152.62299999999999,159.56899999999999,166.51499999999999,173.46100000000001,180.40700000000001,187.35300000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,168,1,159.78899999999999,0.043450000000000003,6.9428000000000001,125.075,132.018,138.96100000000001,145.90299999999999,152.846,159.78899999999999,166.732,173.67500000000001,180.61699999999999,187.56
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,169,1,159.9983,0.043369999999999999,6.9390999999999998,125.303,132.24199999999999,139.18100000000001,146.12,153.059,159.99799999999999,166.93700000000001,173.87700000000001,180.816,187.755
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,170,1,160.19710000000001,0.043299999999999998,6.9364999999999997,125.514,132.45099999999999,139.387,146.32400000000001,153.261,160.197,167.13399999999999,174.07,181.00700000000001,187.94300000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,171,1,160.38570000000001,0.043220000000000001,6.9318999999999997,125.726,132.65799999999999,139.59,146.52199999999999,153.45400000000001,160.386,167.31800000000001,174.249,181.18100000000001,188.113
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,172,1,160.5643,0.043139999999999998,6.9267000000000003,125.931,132.857,139.78399999999999,146.71100000000001,153.63800000000001,160.56399999999999,167.49100000000001,174.41800000000001,181.345,188.27099999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,173,1,160.73320000000001,0.043069999999999997,6.9227999999999996,126.119,133.042,139.965,146.88800000000001,153.81,160.733,167.65600000000001,174.57900000000001,181.50200000000001,188.42400000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,174,1,160.89269999999999,0.04299,6.9168000000000003,126.309,133.226,140.142,147.059,153.976,160.893,167.809,174.726,181.643,188.56
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,175,1,161.04300000000001,0.04292,6.9119999999999999,126.483,133.39500000000001,140.30699999999999,147.21899999999999,154.131,161.04300000000001,167.95500000000001,174.86699999999999,181.779,188.691
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,176,1,161.18450000000001,0.042840000000000003,6.9051,126.65900000000001,133.56399999999999,140.46899999999999,147.374,154.279,161.184,168.09,174.995,181.9,188.80500000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,177,1,161.3176,0.042770000000000002,6.8996000000000004,126.82,133.71899999999999,140.619,147.518,154.41800000000001,161.31800000000001,168.21700000000001,175.11699999999999,182.01599999999999,188.916
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,178,1,161.4425,0.042700000000000002,6.8936000000000002,126.97499999999999,133.86799999999999,140.762,147.655,154.54900000000001,161.44200000000001,168.33600000000001,175.23,182.12299999999999,189.017
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,179,1,161.55959999999999,0.042630000000000001,6.8872999999999998,127.123,134.01,140.898,147.785,154.672,161.56,168.447,175.334,182.221,189.10900000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,180,1,161.66919999999999,0.042549999999999998,6.8789999999999996,127.274,134.15299999999999,141.03200000000001,147.911,154.79,161.66900000000001,168.548,175.42699999999999,182.30600000000001,189.185
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,181,1,161.77170000000001,0.042479999999999997,6.8720999999999997,127.411,134.28299999999999,141.15600000000001,148.02799999999999,154.9,161.77199999999999,168.64400000000001,175.51599999999999,182.38800000000001,189.26
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,182,1,161.8673,0.042410000000000003,6.8647999999999998,127.54300000000001,134.40799999999999,141.273,148.13800000000001,155.00299999999999,161.86699999999999,168.732,175.59700000000001,182.46199999999999,189.32599999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,183,1,161.9564,0.042349999999999999,6.8589000000000002,127.66200000000001,134.52099999999999,141.38,148.239,155.09800000000001,161.95599999999999,168.815,175.67400000000001,182.53299999999999,189.392
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,184,1,162.0393,0.042279999999999998,6.851,127.78400000000001,134.63499999999999,141.48599999999999,148.33699999999999,155.18799999999999,162.03899999999999,168.89,175.74100000000001,182.59200000000001,189.44300000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,185,1,162.1164,0.042209999999999998,6.8429000000000002,127.902,134.745,141.58799999999999,148.43100000000001,155.273,162.11600000000001,168.959,175.80199999999999,182.64500000000001,189.488
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,186,1,162.18799999999999,0.042139999999999997,6.8346,128.01499999999999,134.85,141.684,148.51900000000001,155.35300000000001,162.18799999999999,169.023,175.857,182.69200000000001,189.52600000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,187,1,162.2542,0.042079999999999999,6.8277000000000001,128.11600000000001,134.94399999999999,141.77099999999999,148.59899999999999,155.42699999999999,162.25399999999999,169.08199999999999,175.91,182.73699999999999,189.565
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,188,1,162.31540000000001,0.042009999999999999,6.8189000000000002,128.221,135.04,141.85900000000001,148.678,155.49700000000001,162.315,169.13399999999999,175.953,182.77199999999999,189.59100000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,189,1,162.37190000000001,0.041950000000000001,6.8114999999999997,128.31399999999999,135.126,141.93700000000001,148.749,155.56,162.37200000000001,169.18299999999999,175.995,182.80600000000001,189.61799999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,190,1,162.4239,0.041889999999999997,6.8038999999999996,128.404,135.208,142.012,148.816,155.62,162.42400000000001,169.22800000000001,176.03200000000001,182.83600000000001,189.64
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,191,1,162.4717,0.041820000000000003,6.7946,128.499,135.29300000000001,142.08799999999999,148.88300000000001,155.67699999999999,162.47200000000001,169.26599999999999,176.06100000000001,182.85499999999999,189.65
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,192,1,162.51560000000001,0.041759999999999999,6.7866999999999997,128.58199999999999,135.369,142.15600000000001,148.94200000000001,155.72900000000001,162.51599999999999,169.30199999999999,176.089,182.876,189.66200000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,193,1,162.55600000000001,0.041700000000000001,6.7786,128.66300000000001,135.44200000000001,142.22,148.999,155.77699999999999,162.55600000000001,169.33500000000001,176.113,182.892,189.67
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,194,1,162.5933,0.041640000000000003,6.7704000000000004,128.74100000000001,135.512,142.28200000000001,149.053,155.82300000000001,162.59299999999999,169.364,176.13399999999999,182.904,189.67500000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,195,1,162.6276,0.041579999999999999,6.7621000000000002,128.81700000000001,135.57900000000001,142.34100000000001,149.10300000000001,155.86600000000001,162.62799999999999,169.39,176.15199999999999,182.91399999999999,189.67599999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,196,1,162.65940000000001,0.041520000000000001,6.7535999999999996,128.89099999999999,135.64500000000001,142.399,149.15199999999999,155.90600000000001,162.65899999999999,169.41300000000001,176.167,182.92,189.67400000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,197,1,162.68899999999999,0.04147,6.7466999999999997,128.95500000000001,135.702,142.44900000000001,149.196,155.94200000000001,162.68899999999999,169.43600000000001,176.18199999999999,182.929,189.67599999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,198,1,162.7165,0.041410000000000002,6.7381000000000002,129.02600000000001,135.76400000000001,142.50200000000001,149.24,155.97800000000001,162.71600000000001,169.45500000000001,176.19300000000001,182.93100000000001,189.66900000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,199,1,162.74250000000001,0.041360000000000001,6.7309999999999999,129.08699999999999,135.81800000000001,142.54900000000001,149.28,156.011,162.74199999999999,169.47399999999999,176.20500000000001,182.93600000000001,189.667
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,200,1,162.767,0.041300000000000003,6.7222999999999997,129.15600000000001,135.87799999999999,142.6,149.322,156.04499999999999,162.767,169.489,176.21199999999999,182.934,189.65600000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,201,1,162.79040000000001,0.041250000000000002,6.7150999999999996,129.215,135.93,142.64500000000001,149.36000000000001,156.07499999999999,162.79,169.506,176.221,182.93600000000001,189.65100000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,202,1,162.8126,0.041189999999999997,6.7062999999999997,129.28100000000001,135.988,142.69399999999999,149.4,156.10599999999999,162.81299999999999,169.51900000000001,176.22499999999999,182.93100000000001,189.63800000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,203,1,162.834,0.041140000000000003,6.6989999999999998,129.339,136.03800000000001,142.73699999999999,149.43600000000001,156.13499999999999,162.834,169.53299999999999,176.232,182.93100000000001,189.63
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,204,1,162.8545,0.041090000000000002,6.6917,129.39599999999999,136.08799999999999,142.779,149.471,156.16300000000001,162.85400000000001,169.54599999999999,176.238,182.93,189.62100000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,205,1,162.87430000000001,0.04104,6.6844000000000001,129.452,136.137,142.821,149.506,156.19,162.874,169.559,176.24299999999999,182.92699999999999,189.61199999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,206,1,162.89349999999999,0.040989999999999999,6.6769999999999996,129.50800000000001,136.185,142.86199999999999,149.53899999999999,156.21600000000001,162.89400000000001,169.571,176.24799999999999,182.92500000000001,189.602
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,207,1,162.91200000000001,0.040939999999999997,6.6696,129.56399999999999,136.23400000000001,142.90299999999999,149.57300000000001,156.24199999999999,162.91200000000001,169.58199999999999,176.251,182.92099999999999,189.59
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,208,1,162.93,0.040890000000000003,6.6622000000000003,129.619,136.28100000000001,142.94300000000001,149.60599999999999,156.268,162.93,169.59200000000001,176.25399999999999,182.917,189.57900000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,209,1,162.94759999999999,0.040840000000000001,6.6547999999999998,129.67400000000001,136.328,142.983,149.63800000000001,156.29300000000001,162.94800000000001,169.602,176.25700000000001,182.91200000000001,189.56700000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,210,1,162.9649,0.040800000000000003,6.649,129.72,136.369,143.018,149.667,156.316,162.965,169.614,176.26300000000001,182.91200000000001,189.56100000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,211,1,162.98169999999999,0.040750000000000001,6.6414999999999997,129.774,136.416,143.05699999999999,149.69900000000001,156.34,162.982,169.62299999999999,176.26499999999999,182.90600000000001,189.548
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,212,1,162.9983,0.040710000000000003,6.6356999999999999,129.82,136.45599999999999,143.09100000000001,149.727,156.363,162.99799999999999,169.63399999999999,176.27,182.905,189.541
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,213,1,163.01439999999999,0.040660000000000002,6.6281999999999996,129.874,136.50200000000001,143.13,149.75800000000001,156.386,163.01400000000001,169.643,176.27099999999999,182.899,189.52699999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,214,1,163.03,0.040620000000000003,6.6223000000000001,129.91900000000001,136.541,143.16300000000001,149.785,156.40799999999999,163.03,169.65199999999999,176.27500000000001,182.89699999999999,189.51900000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,215,1,163.04509999999999,0.040579999999999998,6.6163999999999996,129.96299999999999,136.58000000000001,143.196,149.81200000000001,156.429,163.04499999999999,169.661,176.27799999999999,182.89400000000001,189.511
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,216,1,163.05950000000001,0.040529999999999997,6.6087999999999996,130.01499999999999,136.624,143.233,149.84200000000001,156.45099999999999,163.06,169.66800000000001,176.27699999999999,182.886,189.495
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,217,1,163.07329999999999,0.040489999999999998,6.6028000000000002,130.059,136.66200000000001,143.26499999999999,149.86799999999999,156.47,163.07300000000001,169.67599999999999,176.279,182.88200000000001,189.48500000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,218,1,163.08619999999999,0.04045,6.5968,130.102,136.69900000000001,143.29599999999999,149.893,156.489,163.08600000000001,169.68299999999999,176.28,182.87700000000001,189.47399999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,219,1,163.09819999999999,0.040410000000000001,6.5907999999999998,130.14400000000001,136.73500000000001,143.32599999999999,149.917,156.50700000000001,163.09800000000001,169.68899999999999,176.28,182.87100000000001,189.46100000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,220,1,163.10919999999999,0.040370000000000003,6.5846999999999998,130.18600000000001,136.77000000000001,143.35499999999999,149.94,156.524,163.10900000000001,169.69399999999999,176.279,182.863,189.44800000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,221,1,163.11920000000001,0.040340000000000001,6.5801999999999996,130.21799999999999,136.798,143.37899999999999,149.959,156.53899999999999,163.119,169.69900000000001,176.28,182.86,189.44
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,222,1,163.12790000000001,0.040300000000000002,6.5740999999999996,130.25800000000001,136.83199999999999,143.40600000000001,149.97999999999999,156.554,163.12799999999999,169.702,176.27600000000001,182.85,189.42400000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,223,1,163.13550000000001,0.040259999999999997,6.5678000000000001,130.29599999999999,136.864,143.43199999999999,150,156.56800000000001,163.136,169.703,176.27099999999999,182.839,189.40700000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,224,1,163.14179999999999,0.040230000000000002,6.5632000000000001,130.32599999999999,136.88900000000001,143.452,150.01499999999999,156.57900000000001,163.142,169.70500000000001,176.268,182.83099999999999,189.39500000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,225,1,163.14689999999999,0.040189999999999997,6.5568999999999997,130.363,136.91900000000001,143.476,150.03299999999999,156.59,163.14699999999999,169.70400000000001,176.261,182.81800000000001,189.374
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,226,1,163.1508,0.040160000000000001,6.5521000000000003,130.38999999999999,136.94200000000001,143.494,150.047,156.59899999999999,163.15100000000001,169.703,176.255,182.80699999999999,189.35900000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,227,1,163.1534,0.040120000000000003,6.5457000000000001,130.42500000000001,136.971,143.51599999999999,150.06200000000001,156.608,163.15299999999999,169.69900000000001,176.245,182.791,189.33600000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,228,1,163.15479999999999,0.040090000000000001,6.5408999999999997,130.44999999999999,136.99100000000001,143.53200000000001,150.07300000000001,156.614,163.155,169.696,176.23699999999999,182.77699999999999,189.31800000000001
source,gender,age_unit,age,l,m,s,sd,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-13-weeks_zscores.xlsx,male,week,0,1,49.8842,0.037949999999999998,1.8931,44.2,46.1,48,49.9,51.8,53.7,55.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-13-weeks_zscores.xlsx,male,week,1,1,51.115200000000002,0.037229999999999999,1.903,45.4,47.3,49.2,51.1,53,54.9,56.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-13-weeks_zscores.xlsx,male,week,2,1,52.3461,0.036519999999999997,1.9117,46.6,48.5,50.4,52.3,54.3,56.2,58.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-13-weeks_zscores.xlsx,male,week,3,1,53.390500000000003,0.036089999999999997,1.9269000000000001,47.6,49.5,51.5,53.4,55.3,57.2,59.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-13-weeks_zscores.xlsx,male,week,4,1,54.388100000000001,0.035700000000000003,1.9417,48.6,50.5,52.4,54.4,56.3,58.3,60.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-13-weeks_zscores.xlsx,male,week,5,1,55.337400000000002,0.035340000000000003,1.9556,49.5,51.4,53.4,55.3,57.3,59.2,61.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-13-weeks_zscores.xlsx,male,week,6,1,56.235700000000001,0.035009999999999999,1.9688000000000001,50.3,52.3,54.3,56.2,58.2,60.2,62.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-13-weeks_zscores.xlsx,male,week,7,1,57.085099999999997,0.034700000000000002,1.9809000000000001,51.1,53.1,55.1,57.1,59.1,61,63
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-13-weeks_zscores.xlsx,male,week,8,1,57.8889,0.034419999999999999,1.9924999999999999,51.9,53.9,55.9,57.9,59.9,61.9,63.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-13-weeks_zscores.xlsx,male,week,9,1,58.653599999999997,0.034160000000000003,2.0036,52.6,54.6,56.6,58.7,60.7,62.7,64.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-13-weeks_zscores.xlsx,male,week,10,1,59.3872,0.033919999999999999,2.0144000000000002,53.3,55.4,57.4,59.4,61.4,63.4,65.400000000000006
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-13-weeks_zscores.xlsx,male,week,11,1,60.089399999999998,0.033689999999999998,2.0244,54,56,58.1,60.1,62.1,64.099999999999994,66.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-13-weeks_zscores.xlsx,male,week,12,1,60.7605,0.033480000000000003,2.0343,54.7,56.7,58.7,60.8,62.8,64.8,66.900000000000006
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-13-weeks_zscores.xlsx,male,week,13,1,61.401299999999999,0.03329,2.044,55.3,57.3,59.4,61.4,63.4,65.5,67.5
source,gender,age_unit,age,l,m,s,sd,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,0,1,49.8842,0.037949999999999998,1.8931,44.2,46.1,48,49.9,51.8,53.7,55.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,1,1,54.724400000000003,0.035569999999999997,1.9464999999999999,48.9,50.8,52.8,54.7,56.7,58.6,60.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,2,1,58.424900000000001,0.03424,2.0005000000000002,52.4,54.4,56.4,58.4,60.4,62.4,64.400000000000006
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,3,1,61.429200000000002,0.033279999999999997,2.0444,55.3,57.3,59.4,61.4,63.5,65.5,67.599999999999994
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,4,1,63.886000000000003,0.032570000000000002,2.0808,57.6,59.7,61.8,63.9,66,68,70.099999999999994
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,5,1,65.902600000000007,0.032039999999999999,2.1114999999999999,59.6,61.7,63.8,65.900000000000006,68,70.099999999999994,72.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,6,1,67.623599999999996,0.031649999999999998,2.1402999999999999,61.2,63.3,65.5,67.599999999999994,69.8,71.900000000000006,74
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,7,1,69.164500000000004,0.031390000000000001,2.1711,62.7,64.8,67,69.2,71.3,73.5,75.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,8,1,70.599400000000003,0.03124,2.2054999999999998,64,66.2,68.400000000000006,70.599999999999994,72.8,75,77.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,9,1,71.968699999999998,0.03117,2.2433000000000001,65.2,67.5,69.7,72,74.2,76.5,78.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,10,1,73.281199999999998,0.031179999999999999,2.2848999999999999,66.400000000000006,68.7,71,73.3,75.599999999999994,77.900000000000006,80.099999999999994
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,11,1,74.538799999999995,0.03125,2.3292999999999999,67.599999999999994,69.900000000000006,72.2,74.5,76.900000000000006,79.2,81.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,12,1,75.748800000000003,0.031370000000000002,2.3761999999999999,68.599999999999994,71,73.400000000000006,75.7,78.099999999999994,80.5,82.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,13,1,76.918599999999998,0.031539999999999999,2.4260000000000002,69.599999999999994,72.099999999999994,74.5,76.900000000000006,79.3,81.8,84.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,14,1,78.049700000000001,0.031739999999999997,2.4773000000000001,70.599999999999994,73.099999999999994,75.599999999999994,78,80.5,83,85.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,15,1,79.145799999999994,0.031969999999999998,2.5303,71.599999999999994,74.099999999999994,76.599999999999994,79.099999999999994,81.7,84.2,86.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,16,1,80.211299999999994,0.032219999999999999,2.5844,72.5,75,77.599999999999994,80.2,82.8,85.4,88
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,17,1,81.248699999999999,0.032500000000000001,2.6406000000000001,73.3,76,78.599999999999994,81.2,83.9,86.5,89.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,18,1,82.258700000000005,0.03279,2.6972999999999998,74.2,76.900000000000006,79.599999999999994,82.3,85,87.7,90.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,19,1,83.241799999999998,0.033099999999999997,2.7553000000000001,75,77.7,80.5,83.2,86,88.8,91.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,20,1,84.199600000000004,0.033419999999999998,2.8140000000000001,75.8,78.599999999999994,81.400000000000006,84.2,87,89.8,92.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,21,1,85.134799999999998,0.033759999999999998,2.8742000000000001,76.5,79.400000000000006,82.3,85.1,88,90.9,93.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,22,1,86.047700000000006,0.034099999999999998,2.9342000000000001,77.2,80.2,83.1,86,89,91.9,94.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,23,1,86.941000000000003,0.034450000000000001,2.9950999999999999,78,81,83.9,86.9,89.9,92.9,95.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,24,1,87.816100000000006,0.034790000000000001,3.0550999999999999,78.7,81.7,84.8,87.8,90.9,93.9,97
source,gender,age_unit,age,l,m,s,sd,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,24,1,87.116100000000003,0.035069999999999997,3.0550999999999999,78,81,84.1,87.1,90.2,93.2,96.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,25,1,87.971999999999994,0.03542,3.1160000000000001,78.599999999999994,81.7,84.9,88,91.1,94.2,97.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,26,1,88.8065,0.03576,3.1757,79.3,82.5,85.6,88.8,92,95.2,98.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,27,1,89.619699999999995,0.0361,3.2353000000000001,79.900000000000006,83.1,86.4,89.6,92.9,96.1,99.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,28,1,90.412000000000006,0.036420000000000001,3.2928000000000002,80.5,83.8,87.1,90.4,93.7,97,100.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,29,1,91.1828,0.036740000000000002,3.3500999999999999,81.099999999999994,84.5,87.8,91.2,94.5,97.9,101.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,30,1,91.932699999999997,0.037039999999999997,3.4051999999999998,81.7,85.1,88.5,91.9,95.3,98.7,102.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,31,1,92.6631,0.037330000000000002,3.4590999999999998,82.3,85.7,89.2,92.7,96.1,99.6,103
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,32,1,93.375299999999996,0.037609999999999998,3.5118,82.8,86.4,89.9,93.4,96.9,100.4,103.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,33,1,94.071100000000001,0.037870000000000001,3.5625,83.4,86.9,90.5,94.1,97.6,101.2,104.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,34,1,94.753200000000007,0.038120000000000001,3.6120000000000001,83.9,87.5,91.1,94.8,98.4,102,105.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,35,1,95.423599999999993,0.038359999999999998,3.6604000000000001,84.4,88.1,91.8,95.4,99.1,102.7,106.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,36,1,96.083500000000001,0.038580000000000003,3.7069000000000001,85,88.7,92.4,96.1,99.8,103.5,107.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,37,1,96.733699999999999,0.038789999999999998,3.7523,85.5,89.2,93,96.7,100.5,104.2,108
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,38,1,97.374899999999997,0.039,3.7976000000000001,86,89.8,93.6,97.4,101.2,105,108.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,39,1,98.007300000000001,0.039190000000000003,3.8409,86.5,90.3,94.2,98,101.8,105.7,109.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,40,1,98.631,0.039370000000000002,3.8831000000000002,87,90.9,94.7,98.6,102.5,106.4,110.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,41,1,99.245900000000006,0.039539999999999999,3.9241999999999999,87.5,91.4,95.3,99.2,103.2,107.1,111
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,42,1,99.851500000000001,0.039710000000000002,3.9651000000000001,88,91.9,95.9,99.9,103.8,107.8,111.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,43,1,100.4485,0.03986,4.0038999999999998,88.4,92.4,96.4,100.4,104.5,108.5,112.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,44,1,101.03740000000001,0.04002,4.0434999999999999,88.9,93,97,101,105.1,109.1,113.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,45,1,101.6186,0.040160000000000001,4.0810000000000004,89.4,93.5,97.5,101.6,105.7,109.8,113.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,46,1,102.19329999999999,0.040309999999999999,4.1193999999999997,89.8,94,98.1,102.2,106.3,110.4,114.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,47,1,102.7625,0.04045,4.1566999999999998,90.3,94.4,98.6,102.8,106.9,111.1,115.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,48,1,103.32729999999999,0.040590000000000001,4.1940999999999997,90.7,94.9,99.1,103.3,107.5,111.7,115.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,49,1,103.8886,0.040730000000000002,4.2313999999999998,91.2,95.4,99.7,103.9,108.1,112.4,116.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,50,1,104.4473,0.04086,4.2676999999999996,91.6,95.9,100.2,104.4,108.7,113,117.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,51,1,105.00409999999999,0.041000000000000002,4.3052000000000001,92.1,96.4,100.7,105,109.3,113.6,117.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,52,1,105.5596,0.04113,4.3417000000000003,92.5,96.9,101.2,105.6,109.9,114.2,118.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,53,1,106.1138,0.041259999999999998,4.3783000000000003,93,97.4,101.7,106.1,110.5,114.9,119.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,54,1,106.66679999999999,0.041390000000000003,4.4149000000000003,93.4,97.8,102.3,106.7,111.1,115.5,119.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,55,1,107.2188,0.041520000000000001,4.4516999999999998,93.9,98.3,102.8,107.2,111.7,116.1,120.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,56,1,107.7697,0.04165,4.4885999999999999,94.3,98.8,103.3,107.8,112.3,116.7,121.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,57,1,108.3198,0.041770000000000002,4.5244999999999997,94.7,99.3,103.8,108.3,112.8,117.4,121.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,58,1,108.8689,0.0419,4.5616000000000003,95.2,99.7,104.3,108.9,113.4,118,122.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,59,1,109.417,0.042020000000000002,4.5976999999999997,95.6,100.2,104.8,109.4,114,118.6,123.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,60,1,109.96380000000001,0.042139999999999997,4.6338999999999997,96.1,100.7,105.3,110,114.6,119.2,123.9
source,gender,age_unit,age,l,m,s,stdev,sd5neg,sd4neg,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3,sd4
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,61,1,110.2647,0.041640000000000003,4.5914000000000001,87.308000000000007,91.899000000000001,96.49,101.08199999999999,105.673,110.265,114.85599999999999,119.44799999999999,124.039,128.63
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,62,1,110.8006,0.04172,4.6226000000000003,87.688000000000002,92.31,96.933000000000007,101.55500000000001,106.178,110.801,115.423,120.04600000000001,124.66800000000001,129.291
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,63,1,111.3338,0.041799999999999997,4.6538000000000004,88.064999999999998,92.718999999999994,97.373000000000005,102.026,106.68,111.334,115.988,120.64100000000001,125.295,129.94900000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,64,1,111.86360000000001,0.041869999999999997,4.6837,88.444999999999993,93.129000000000005,97.811999999999998,102.496,107.18,111.864,116.547,121.23099999999999,125.91500000000001,130.59899999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,65,1,112.3895,0.041950000000000001,4.7146999999999997,88.816000000000003,93.531000000000006,98.245000000000005,102.96,107.675,112.39,117.104,121.819,126.53400000000001,131.24799999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,66,1,112.911,0.042029999999999998,4.7455999999999996,89.183000000000007,93.927999999999997,98.674000000000007,103.42,108.16500000000001,112.911,117.657,122.402,127.148,131.89400000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,67,1,113.428,0.042110000000000002,4.7765000000000004,89.546000000000006,94.322000000000003,99.099000000000004,103.875,108.652,113.428,118.20399999999999,122.98099999999999,127.75700000000001,132.53399999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,68,1,113.941,0.042180000000000002,4.806,89.911000000000001,94.716999999999999,99.522999999999996,104.32899999999999,109.13500000000001,113.941,118.747,123.553,128.35900000000001,133.16499999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,69,1,114.45,0.042259999999999999,4.8367000000000004,90.266999999999996,95.102999999999994,99.94,104.777,109.613,114.45,119.28700000000001,124.123,128.96,133.797
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,70,1,114.9547,0.042340000000000003,4.8672000000000004,90.619,95.486000000000004,100.35299999999999,105.22,110.08799999999999,114.955,119.822,124.68899999999999,129.55600000000001,134.423
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,71,1,115.45489999999999,0.042410000000000003,4.8963999999999999,90.972999999999999,95.869,100.76600000000001,105.66200000000001,110.55800000000001,115.455,120.351,125.248,130.14400000000001,135.041
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,72,1,115.9509,0.04249,4.9268000000000001,91.316999999999993,96.244,101.17100000000001,106.09699999999999,111.024,115.95099999999999,120.878,125.804,130.73099999999999,135.65799999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,73,1,116.4432,0.042569999999999997,4.9569999999999999,91.658000000000001,96.614999999999995,101.572,106.529,111.486,116.443,121.4,126.357,131.31399999999999,136.27099999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,74,1,116.9325,0.042639999999999997,4.9859999999999998,92.001999999999995,96.988,101.974,106.96,111.946,116.932,121.919,126.905,131.89099999999999,136.87700000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,75,1,117.4196,0.042720000000000001,5.0162000000000004,92.338999999999999,97.355000000000004,102.371,107.387,112.40300000000001,117.42,122.43600000000001,127.452,132.46799999999999,137.48400000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,76,1,117.9046,0.042799999999999998,5.0462999999999996,92.673000000000002,97.718999999999994,102.76600000000001,107.812,112.858,117.905,122.95099999999999,127.997,133.04400000000001,138.09
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,77,1,118.38800000000001,0.042869999999999998,5.0753000000000004,93.012,98.087000000000003,103.16200000000001,108.23699999999999,113.313,118.38800000000001,123.46299999999999,128.53899999999999,133.614,138.68899999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,78,1,118.87,0.042950000000000002,5.1055000000000001,93.343000000000004,98.447999999999993,103.554,108.65900000000001,113.765,118.87,123.97499999999999,129.08099999999999,134.18600000000001,139.292
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,79,1,119.35080000000001,0.043029999999999999,5.1356999999999999,93.671999999999997,98.808000000000007,103.944,109.07899999999999,114.215,119.351,124.486,129.62200000000001,134.75800000000001,139.893
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,80,1,119.83029999999999,0.043110000000000002,5.1658999999999997,94.001000000000005,99.167000000000002,104.333,109.499,114.664,119.83,124.996,130.16200000000001,135.328,140.494
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,81,1,120.3085,0.043180000000000003,5.1948999999999996,94.334000000000003,99.528999999999996,104.724,109.919,115.114,120.30800000000001,125.503,130.69800000000001,135.893,141.08799999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,82,1,120.78530000000001,0.04326,5.2252000000000001,94.659000000000006,99.885000000000005,105.11,110.33499999999999,115.56,120.785,126.01,131.23599999999999,136.46100000000001,141.68600000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,83,1,121.2604,0.043339999999999997,5.2553999999999998,94.983000000000004,100.239,105.494,110.75,116.005,121.26,126.51600000000001,131.77099999999999,137.02699999999999,142.28200000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,84,1,121.7338,0.04342,5.2857000000000003,95.305000000000007,100.59099999999999,105.877,111.16200000000001,116.44799999999999,121.73399999999999,127.01900000000001,132.30500000000001,137.59100000000001,142.87700000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,85,1,122.20529999999999,0.043499999999999997,5.3159000000000001,95.626000000000005,100.94199999999999,106.258,111.57299999999999,116.889,122.205,127.521,132.83699999999999,138.15299999999999,143.46899999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,86,1,122.675,0.043580000000000001,5.3461999999999996,95.944000000000003,101.29,106.636,111.983,117.32899999999999,122.675,128.02099999999999,133.36699999999999,138.714,144.06
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,87,1,123.1429,0.043659999999999997,5.3764000000000003,96.260999999999996,101.637,107.014,112.39,117.76600000000001,123.143,128.51900000000001,133.89599999999999,139.27199999999999,144.649
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,88,1,123.6092,0.043740000000000001,5.4066999999999998,96.575999999999993,101.983,107.389,112.79600000000001,118.203,123.60899999999999,129.01599999999999,134.423,139.82900000000001,145.23599999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,89,1,124.0736,0.043819999999999998,5.4368999999999996,96.888999999999996,102.32599999999999,107.76300000000001,113.2,118.637,124.074,129.511,134.947,140.38399999999999,145.821
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,90,1,124.5361,0.043900000000000002,5.4671000000000003,97.2,102.66800000000001,108.13500000000001,113.602,119.069,124.536,130.00299999999999,135.47,140.93799999999999,146.405
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,91,1,124.99639999999999,0.043979999999999998,5.4973000000000001,97.51,103.00700000000001,108.504,114.002,119.499,124.996,130.494,135.99100000000001,141.488,146.98599999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,92,1,125.4545,0.044060000000000002,5.5274999999999999,97.816999999999993,103.34399999999999,108.872,114.399,119.92700000000001,125.45399999999999,130.982,136.51,142.03700000000001,147.565
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,93,1,125.9104,0.044139999999999999,5.5576999999999996,98.122,103.68,109.23699999999999,114.795,120.35299999999999,125.91,131.46799999999999,137.02600000000001,142.583,148.14099999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,94,1,126.364,0.044220000000000002,5.5877999999999997,98.424999999999997,104.01300000000001,109.601,115.188,120.776,126.364,131.952,137.54,143.12700000000001,148.715
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,95,1,126.8156,0.044299999999999999,5.6178999999999997,98.725999999999999,104.34399999999999,109.962,115.58,121.19799999999999,126.816,132.434,138.05099999999999,143.66900000000001,149.28700000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,96,1,127.2651,0.044380000000000003,5.6479999999999997,99.025000000000006,104.673,110.321,115.96899999999999,121.617,127.265,132.91300000000001,138.56100000000001,144.209,149.857
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,97,1,127.7129,0.04446,5.6780999999999997,99.322000000000003,105,110.679,116.357,122.035,127.71299999999999,133.39099999999999,139.06899999999999,144.74700000000001,150.42500000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,98,1,128.15899999999999,0.044540000000000003,5.7081999999999997,99.617999999999995,105.32599999999999,111.03400000000001,116.74299999999999,122.45099999999999,128.15899999999999,133.86699999999999,139.57499999999999,145.28399999999999,150.99199999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,99,1,128.60339999999999,0.04462,5.7382999999999997,99.912000000000006,105.65,111.389,117.127,122.86499999999999,128.60300000000001,134.34200000000001,140.08000000000001,145.81800000000001,151.55699999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,100,1,129.04660000000001,0.044699999999999997,5.7683999999999997,100.205,105.973,111.741,117.51,123.27800000000001,129.047,134.815,140.583,146.352,152.12
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,101,1,129.48869999999999,0.04478,5.7984999999999998,100.496,106.295,112.093,117.892,123.69,129.489,135.28700000000001,141.08600000000001,146.88399999999999,152.68299999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,102,1,129.93,0.04487,5.83,100.78,106.61,112.44,118.27,124.1,129.93,135.76,141.59,147.41999999999999,153.25
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,103,1,130.37049999999999,0.044949999999999997,5.8601999999999999,101.07,106.93,112.79,118.65,124.51,130.37,136.23099999999999,142.09100000000001,147.95099999999999,153.81100000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,104,1,130.81030000000001,0.045030000000000001,5.8903999999999996,101.358,107.249,113.139,119.03,124.92,130.81,136.70099999999999,142.59100000000001,148.48099999999999,154.37200000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,105,1,131.24950000000001,0.045109999999999997,5.9207000000000001,101.646,107.56699999999999,113.488,119.408,125.32899999999999,131.25,137.16999999999999,143.09100000000001,149.011,154.93199999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,106,1,131.6884,0.045190000000000001,5.9509999999999996,101.93300000000001,107.884,113.83499999999999,119.786,125.73699999999999,131.68799999999999,137.63900000000001,143.59,149.541,155.49199999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,107,1,132.12690000000001,0.045269999999999998,5.9813999999999998,102.22,108.20099999999999,114.18300000000001,120.164,126.146,132.12700000000001,138.108,144.09,150.071,156.05199999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,108,1,132.5652,0.045350000000000001,6.0118,102.506,108.518,114.53,120.542,126.553,132.565,138.577,144.589,150.601,156.613
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,109,1,133.00309999999999,0.045429999999999998,6.0423,102.791,108.834,114.876,120.91800000000001,126.961,133.00299999999999,139.04499999999999,145.08799999999999,151.13,157.172
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,110,1,133.44040000000001,0.045510000000000002,6.0728999999999997,103.07599999999999,109.149,115.22199999999999,121.295,127.36799999999999,133.44,139.51300000000001,145.58600000000001,151.65899999999999,157.732
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,111,1,133.87700000000001,0.045589999999999999,6.1035000000000004,103.36,109.46299999999999,115.56699999999999,121.67,127.774,133.87700000000001,139.97999999999999,146.084,152.18700000000001,158.291
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,112,1,134.31299999999999,0.045659999999999999,6.1326999999999998,103.649,109.782,115.91500000000001,122.048,128.18,134.31299999999999,140.446,146.578,152.71100000000001,158.84399999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,113,1,134.7483,0.045740000000000003,6.1634000000000002,103.931,110.095,116.258,122.422,128.58500000000001,134.74799999999999,140.91200000000001,147.07499999999999,153.238,159.40199999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,114,1,135.18289999999999,0.04582,6.1940999999999997,104.212,110.407,116.601,122.795,128.989,135.18299999999999,141.37700000000001,147.571,153.76499999999999,159.959
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,115,1,135.61680000000001,0.04589,6.2234999999999996,104.5,110.723,116.946,123.17,129.393,135.61699999999999,141.84,148.06399999999999,154.28700000000001,160.511
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,116,1,136.05009999999999,0.045969999999999997,6.2542,104.779,111.033,117.28700000000001,123.542,129.79599999999999,136.05000000000001,142.304,148.559,154.81299999999999,161.06700000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,117,1,136.4829,0.046039999999999998,6.2836999999999996,105.065,111.348,117.63200000000001,123.916,130.19900000000001,136.483,142.767,149.05000000000001,155.334,161.61799999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,118,1,136.9153,0.046120000000000001,6.3144999999999998,105.343,111.657,117.97199999999999,124.286,130.601,136.91499999999999,143.22999999999999,149.54400000000001,155.85900000000001,162.173
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,119,1,137.34739999999999,0.046190000000000002,6.3441000000000001,105.627,111.971,118.315,124.65900000000001,131.00299999999999,137.34700000000001,143.691,150.036,156.38,162.72399999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,120,1,137.77950000000001,0.046260000000000003,6.3737000000000004,105.911,112.285,118.658,125.032,131.40600000000001,137.78,144.15299999999999,150.52699999999999,156.90100000000001,163.274
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,121,1,138.21190000000001,0.046330000000000003,6.4034000000000004,106.19499999999999,112.598,119.002,125.405,131.809,138.21199999999999,144.61500000000001,151.01900000000001,157.422,163.82499999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,122,1,138.64519999999999,0.046399999999999997,6.4330999999999996,106.48,112.913,119.346,125.779,132.21199999999999,138.64500000000001,145.078,151.511,157.94499999999999,164.37799999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,123,1,139.0797,0.046469999999999997,6.4630000000000001,106.765,113.22799999999999,119.691,126.154,132.61699999999999,139.08000000000001,145.54300000000001,152.006,158.46899999999999,164.93199999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,124,1,139.51580000000001,0.046539999999999998,6.4931000000000001,107.05,113.544,120.03700000000001,126.53,133.023,139.51599999999999,146.00899999999999,152.50200000000001,158.995,165.488
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,125,1,139.95400000000001,0.046609999999999999,6.5232999999999999,107.33799999999999,113.861,120.384,126.907,133.43100000000001,139.95400000000001,146.477,153.001,159.524,166.047
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,126,1,140.3948,0.046670000000000003,6.5522,107.634,114.18600000000001,120.738,127.29,133.84299999999999,140.39500000000001,146.947,153.499,160.05099999999999,166.60400000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,127,1,140.83869999999999,0.046739999999999997,6.5827999999999998,107.925,114.50700000000001,121.09,127.673,134.256,140.839,147.422,154.00399999999999,160.58699999999999,167.17
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,128,1,141.2859,0.046800000000000001,6.6121999999999996,108.22499999999999,114.837,121.449,128.06200000000001,134.67400000000001,141.286,147.898,154.51,161.12200000000001,167.73500000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,129,1,141.73679999999999,0.046859999999999999,6.6417999999999999,108.52800000000001,115.17,121.81100000000001,128.453,135.095,141.73699999999999,148.37899999999999,155.02000000000001,161.66200000000001,168.304
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,130,1,142.19159999999999,0.046920000000000003,6.6715999999999998,108.833,115.505,122.17700000000001,128.84800000000001,135.52000000000001,142.19200000000001,148.863,155.535,162.20599999999999,168.87799999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,131,1,142.65010000000001,0.046980000000000001,6.7016999999999998,109.142,115.843,122.545,129.24700000000001,135.94800000000001,142.65,149.352,156.054,162.755,169.45699999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,132,1,143.11259999999999,0.047030000000000002,6.7305999999999999,109.46,116.19,122.92100000000001,129.65100000000001,136.38200000000001,143.113,149.84299999999999,156.57400000000001,163.304,170.035
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,133,1,143.5795,0.04709,6.7611999999999997,109.774,116.535,123.29600000000001,130.05699999999999,136.81800000000001,143.58000000000001,150.34100000000001,157.102,163.863,170.624
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,134,1,144.05109999999999,0.047140000000000001,6.7906000000000004,110.098,116.889,123.679,130.47,137.261,144.05099999999999,150.84200000000001,157.63200000000001,164.423,171.21299999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,135,1,144.52760000000001,0.047190000000000003,6.8202999999999996,110.426,117.247,124.06699999999999,130.887,137.70699999999999,144.52799999999999,151.34800000000001,158.16800000000001,164.988,171.809
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,136,1,145.0093,0.047230000000000001,6.8487999999999998,110.765,117.614,124.46299999999999,131.31200000000001,138.161,145.00899999999999,151.858,158.70699999999999,165.55600000000001,172.404
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,137,1,145.49639999999999,0.047280000000000003,6.8791000000000002,111.101,117.98,124.85899999999999,131.738,138.61699999999999,145.49600000000001,152.375,159.255,166.13399999999999,173.01300000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,138,1,145.98910000000001,0.047320000000000001,6.9081999999999999,111.44799999999999,118.35599999999999,125.264,132.173,139.08099999999999,145.989,152.89699999999999,159.80600000000001,166.714,173.62200000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,139,1,146.48779999999999,0.047359999999999999,6.9377000000000004,111.79900000000001,118.73699999999999,125.675,132.61199999999999,139.55000000000001,146.488,153.42500000000001,160.363,167.30099999999999,174.238
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,140,1,146.99270000000001,0.047399999999999998,6.9675000000000002,112.155,119.123,126.09,133.05799999999999,140.02500000000001,146.99299999999999,153.96,160.928,167.89500000000001,174.863
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,141,1,147.50409999999999,0.047440000000000003,6.9976000000000003,112.51600000000001,119.514,126.511,133.50899999999999,140.50700000000001,147.50399999999999,154.50200000000001,161.499,168.49700000000001,175.494
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,142,1,148.0224,0.047469999999999998,7.0266000000000002,112.889,119.916,126.943,133.96899999999999,140.99600000000001,148.02199999999999,155.04900000000001,162.07599999999999,169.102,176.12899999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,143,1,148.5478,0.047500000000000001,7.056,113.268,120.324,127.38,134.43600000000001,141.49199999999999,148.548,155.60400000000001,162.66,169.71600000000001,176.77199999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,144,1,149.08070000000001,0.047530000000000003,7.0857999999999999,113.652,120.73699999999999,127.82299999999999,134.90899999999999,141.995,149.08099999999999,156.167,163.25200000000001,170.33799999999999,177.42400000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,145,1,149.62119999999999,0.047550000000000002,7.1144999999999996,114.04900000000001,121.163,128.27799999999999,135.392,142.50700000000001,149.62100000000001,156.73599999999999,163.85,170.965,178.07900000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,146,1,150.1694,0.047579999999999997,7.1451000000000002,114.444,121.589,128.73400000000001,135.87899999999999,143.024,150.16900000000001,157.31399999999999,164.46,171.60499999999999,178.75
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,147,1,150.72559999999999,0.04759,7.173,114.86,122.033,129.20699999999999,136.38,143.553,150.726,157.899,165.072,172.245,179.41800000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,148,1,151.28989999999999,0.04761,7.2028999999999996,115.27500000000001,122.47799999999999,129.68100000000001,136.88399999999999,144.08699999999999,151.29,158.49299999999999,165.696,172.899,180.102
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,149,1,151.8623,0.047620000000000003,7.2317,115.70399999999999,122.93600000000001,130.167,137.399,144.631,151.86199999999999,159.09399999999999,166.32599999999999,173.55699999999999,180.78899999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,150,1,152.4425,0.047629999999999999,7.2607999999999997,116.13800000000001,123.399,130.66,137.92099999999999,145.18199999999999,152.44200000000001,159.703,166.964,174.22499999999999,181.48599999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,151,1,153.02979999999999,0.047629999999999999,7.2888000000000002,116.586,123.875,131.16300000000001,138.452,145.74100000000001,153.03,160.31899999999999,167.607,174.89599999999999,182.185
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,152,1,153.6234,0.047640000000000002,7.3186,117.03,124.349,131.66800000000001,138.98599999999999,146.30500000000001,153.62299999999999,160.94200000000001,168.261,175.57900000000001,182.898
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,153,1,154.22229999999999,0.047629999999999999,7.3456000000000001,117.494,124.84,132.185,139.53100000000001,146.87700000000001,154.22200000000001,161.56800000000001,168.91399999999999,176.25899999999999,183.60499999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,154,1,154.82579999999999,0.047629999999999999,7.3743999999999996,117.95399999999999,125.328,132.703,140.077,147.45099999999999,154.82599999999999,162.19999999999999,169.57499999999999,176.94900000000001,184.32300000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,155,1,155.43289999999999,0.047620000000000003,7.4016999999999999,118.42400000000001,125.82599999999999,133.22800000000001,140.62899999999999,148.03100000000001,155.43299999999999,162.83500000000001,170.23599999999999,177.63800000000001,185.04
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,156,1,156.04259999999999,0.047600000000000003,7.4276,118.904,126.33199999999999,133.76,141.18700000000001,148.61500000000001,156.04300000000001,163.47,170.898,178.32499999999999,185.75299999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,157,1,156.65389999999999,0.047579999999999997,7.4535999999999998,119.386,126.84,134.29300000000001,141.74700000000001,149.19999999999999,156.654,164.107,171.56100000000001,179.01499999999999,186.46799999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,158,1,157.26599999999999,0.047559999999999998,7.4795999999999996,119.86799999999999,127.348,134.827,142.30699999999999,149.786,157.26599999999999,164.74600000000001,172.22499999999999,179.70500000000001,187.184
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,159,1,157.8775,0.047539999999999999,7.5054999999999996,120.35,127.85599999999999,135.36099999999999,142.86699999999999,150.37200000000001,157.87799999999999,165.38300000000001,172.88800000000001,180.39400000000001,187.899
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,160,1,158.4871,0.047509999999999997,7.5297000000000001,120.83799999999999,128.36799999999999,135.898,143.428,150.95699999999999,158.48699999999999,166.017,173.547,181.07599999999999,188.60599999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,161,1,159.09370000000001,0.047469999999999998,7.5522,121.333,128.88499999999999,136.43700000000001,143.989,151.542,159.09399999999999,166.64599999999999,174.19800000000001,181.75,189.30199999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,162,1,159.6962,0.047440000000000003,7.5759999999999996,121.816,129.392,136.96799999999999,144.54400000000001,152.12,159.696,167.27199999999999,174.84800000000001,182.42400000000001,190
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,163,1,160.29390000000001,0.047399999999999998,7.5979000000000001,122.304,129.90199999999999,137.5,145.09800000000001,152.696,160.29400000000001,167.892,175.49,183.08799999999999,190.68600000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,164,1,160.8861,0.047350000000000003,7.6180000000000003,122.79600000000001,130.41399999999999,138.03200000000001,145.65,153.268,160.886,168.50399999999999,176.12200000000001,183.74,191.358
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,165,1,161.47200000000001,0.047300000000000002,7.6375999999999999,123.28400000000001,130.92099999999999,138.559,146.197,153.834,161.47200000000001,169.11,176.74700000000001,184.38499999999999,192.023
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,166,1,162.0505,0.04725,7.6569000000000003,123.76600000000001,131.423,139.08000000000001,146.73699999999999,154.39400000000001,162.05000000000001,169.70699999999999,177.364,185.02099999999999,192.678
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,167,1,162.6207,0.047199999999999999,7.6757,124.242,131.91800000000001,139.59399999999999,147.26900000000001,154.94499999999999,162.62100000000001,170.29599999999999,177.97200000000001,185.648,193.32300000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,168,1,163.1816,0.047140000000000001,7.6924000000000001,124.72,132.41200000000001,140.10400000000001,147.797,155.489,163.18199999999999,170.874,178.566,186.25899999999999,193.95099999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,169,1,163.7321,0.047070000000000001,7.7069000000000001,125.19799999999999,132.905,140.61099999999999,148.31800000000001,156.02500000000001,163.732,171.43899999999999,179.14599999999999,186.85300000000001,194.56
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,170,1,164.27170000000001,0.047010000000000003,7.7224000000000004,125.66,133.38200000000001,141.10400000000001,148.827,156.54900000000001,164.27199999999999,171.994,179.71700000000001,187.43899999999999,195.161
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,171,1,164.79939999999999,0.046940000000000003,7.7356999999999996,126.121,133.857,141.59200000000001,149.328,157.06399999999999,164.79900000000001,172.535,180.27099999999999,188.006,195.74199999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,172,1,165.31450000000001,0.046870000000000002,7.7483000000000004,126.57299999999999,134.321,142.07,149.81800000000001,157.566,165.31399999999999,173.06299999999999,180.81100000000001,188.559,196.30799999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,173,1,165.81649999999999,0.046789999999999998,7.7586000000000004,127.024,134.78200000000001,142.541,150.29900000000001,158.05799999999999,165.816,173.57499999999999,181.334,189.09200000000001,196.851
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,174,1,166.30500000000001,0.046710000000000002,7.7680999999999996,127.464,135.233,143.001,150.76900000000001,158.53700000000001,166.30500000000001,174.07300000000001,181.84100000000001,189.60900000000001,197.37700000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,175,1,166.7799,0.046629999999999998,7.7769000000000004,127.895,135.672,143.44900000000001,151.226,159.00299999999999,166.78,174.55699999999999,182.334,190.11099999999999,197.88800000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,176,1,167.2415,0.046550000000000001,7.7850999999999999,128.316,136.101,143.886,151.67099999999999,159.45599999999999,167.24199999999999,175.02699999999999,182.81200000000001,190.59700000000001,198.38200000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,177,1,167.68989999999999,0.046460000000000001,7.7908999999999997,128.73599999999999,136.52600000000001,144.31700000000001,152.108,159.899,167.69,175.48099999999999,183.27199999999999,191.06299999999999,198.85300000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,178,1,168.12549999999999,0.046370000000000001,7.7960000000000003,129.14599999999999,136.94200000000001,144.738,152.53399999999999,160.33000000000001,168.126,175.92099999999999,183.71700000000001,191.51300000000001,199.309
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,179,1,168.54820000000001,0.046280000000000002,7.8003999999999998,129.54599999999999,137.34700000000001,145.14699999999999,152.947,160.74799999999999,168.548,176.34899999999999,184.149,191.94900000000001,199.75
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,180,1,168.958,0.046190000000000002,7.8041999999999998,129.93700000000001,137.74100000000001,145.54499999999999,153.35,161.154,168.958,176.762,184.566,192.37100000000001,200.17500000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,181,1,169.35489999999999,0.046089999999999999,7.8056000000000001,130.327,138.13300000000001,145.93799999999999,153.744,161.54900000000001,169.35499999999999,177.16,184.96600000000001,192.77199999999999,200.577
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,182,1,169.7389,0.045990000000000003,7.8063000000000002,130.70699999999999,138.51400000000001,146.32,154.126,161.93299999999999,169.739,177.54499999999999,185.351,193.15799999999999,200.964
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,183,1,170.10990000000001,0.04589,7.8063000000000002,131.078,138.88499999999999,146.691,154.49700000000001,162.304,170.11,177.916,185.72300000000001,193.529,201.33500000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,184,1,170.46799999999999,0.045789999999999997,7.8056999999999999,131.43899999999999,139.245,147.05099999999999,154.857,162.66200000000001,170.46799999999999,178.274,186.07900000000001,193.88499999999999,201.691
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,185,1,170.81360000000001,0.045690000000000001,7.8045,131.791,139.596,147.4,155.20500000000001,163.00899999999999,170.81399999999999,178.61799999999999,186.423,194.227,202.03100000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,186,1,171.14680000000001,0.045589999999999999,7.8026,132.13399999999999,139.93600000000001,147.739,155.542,163.34399999999999,171.14699999999999,178.94900000000001,186.75200000000001,194.55500000000001,202.357
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,187,1,171.46799999999999,0.04548,7.7984,132.476,140.27500000000001,148.07300000000001,155.87100000000001,163.66999999999999,171.46799999999999,179.26599999999999,187.065,194.863,202.661
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,188,1,171.7773,0.045379999999999997,7.7953000000000001,132.80099999999999,140.596,148.392,156.18700000000001,163.982,171.77699999999999,179.57300000000001,187.36799999999999,195.16300000000001,202.958
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,189,1,172.07480000000001,0.045269999999999998,7.7897999999999996,133.126,140.91499999999999,148.70500000000001,156.495,164.285,172.07499999999999,179.86500000000001,187.654,195.44399999999999,203.23400000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,190,1,172.36060000000001,0.045159999999999999,7.7838000000000003,133.44200000000001,141.22499999999999,149.00899999999999,156.79300000000001,164.577,172.36099999999999,180.14400000000001,187.928,195.71199999999999,203.49600000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,191,1,172.6345,0.045060000000000003,7.7789000000000001,133.74,141.51900000000001,149.298,157.077,164.85599999999999,172.63399999999999,180.41300000000001,188.19200000000001,195.971,203.75
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,192,1,172.89670000000001,0.044949999999999997,7.7717000000000001,134.03800000000001,141.81,149.58199999999999,157.35300000000001,165.125,172.89699999999999,180.66800000000001,188.44,196.21199999999999,203.98400000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,193,1,173.14699999999999,0.044839999999999998,7.7638999999999996,134.327,142.09100000000001,149.85499999999999,157.619,165.38300000000001,173.14699999999999,180.911,188.67500000000001,196.43899999999999,204.203
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,194,1,173.38560000000001,0.044729999999999999,7.7554999999999996,134.608,142.363,150.119,157.875,165.63,173.386,181.14099999999999,188.89699999999999,196.65199999999999,204.40799999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,195,1,173.61259999999999,0.04462,7.7465999999999999,134.88,142.626,150.37299999999999,158.119,165.86600000000001,173.613,181.35900000000001,189.10599999999999,196.852,204.59899999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,196,1,173.828,0.044510000000000001,7.7370999999999999,135.143,142.88,150.61699999999999,158.35400000000001,166.09100000000001,173.828,181.565,189.30199999999999,197.03899999999999,204.77600000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,197,1,174.03210000000001,0.044400000000000002,7.7270000000000003,135.39699999999999,143.124,150.851,158.578,166.30500000000001,174.03200000000001,181.75899999999999,189.48599999999999,197.21299999999999,204.94
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,198,1,174.2251,0.044290000000000003,7.7164000000000001,135.643,143.35900000000001,151.07599999999999,158.792,166.50899999999999,174.22499999999999,181.94200000000001,189.65799999999999,197.374,205.09100000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,199,1,174.40710000000001,0.044179999999999997,7.7053000000000003,135.881,143.58600000000001,151.291,158.99600000000001,166.702,174.40700000000001,182.11199999999999,189.81800000000001,197.523,205.22800000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,200,1,174.57839999999999,0.044069999999999998,7.6936999999999998,136.11000000000001,143.804,151.49700000000001,159.191,166.88499999999999,174.578,182.27199999999999,189.96600000000001,197.65899999999999,205.35300000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,201,1,174.73920000000001,0.043959999999999999,7.6814999999999998,136.33199999999999,144.01300000000001,151.69499999999999,159.376,167.05799999999999,174.739,182.42099999999999,190.102,197.78399999999999,205.465
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,202,1,174.8896,0.04385,7.6688999999999998,136.54499999999999,144.214,151.88300000000001,159.55199999999999,167.221,174.89,182.559,190.227,197.89599999999999,205.565
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,203,1,175.0301,0.043749999999999997,7.6576000000000004,136.74199999999999,144.4,152.05699999999999,159.715,167.37299999999999,175.03,182.68799999999999,190.345,198.00299999999999,205.66
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,204,1,175.1609,0.043639999999999998,7.6440000000000001,136.941,144.58500000000001,152.22900000000001,159.87299999999999,167.517,175.161,182.80500000000001,190.44900000000001,198.09299999999999,205.73699999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,205,1,175.2824,0.043529999999999999,7.63,137.13200000000001,144.762,152.392,160.02199999999999,167.65199999999999,175.28200000000001,182.91200000000001,190.542,198.173,205.803
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,206,1,175.39510000000001,0.043430000000000003,7.6173999999999999,137.30799999999999,144.92500000000001,152.54300000000001,160.16,167.77799999999999,175.39500000000001,183.01300000000001,190.63,198.24700000000001,205.86500000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,207,1,175.49950000000001,0.043319999999999997,7.6025999999999998,137.48599999999999,145.089,152.69200000000001,160.29400000000001,167.89699999999999,175.5,183.102,190.70500000000001,198.30699999999999,205.91
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,208,1,175.5959,0.043220000000000001,7.5892999999999997,137.65,145.239,152.828,160.417,168.00700000000001,175.596,183.185,190.774,198.364,205.953
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,209,1,175.685,0.043110000000000002,7.5738000000000003,137.816,145.38999999999999,152.964,160.53700000000001,168.11099999999999,175.685,183.25899999999999,190.833,198.40600000000001,205.98
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,210,1,175.7672,0.04301,7.5597000000000003,137.96799999999999,145.52799999999999,153.08799999999999,160.648,168.20699999999999,175.767,183.327,190.887,198.446,206.006
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,211,1,175.8432,0.042909999999999997,7.5453999999999999,138.11600000000001,145.661,153.20699999999999,160.75200000000001,168.298,175.84299999999999,183.38900000000001,190.934,198.47900000000001,206.02500000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,212,1,175.91329999999999,0.042810000000000001,7.5308000000000002,138.25899999999999,145.79,153.321,160.852,168.38200000000001,175.91300000000001,183.44399999999999,190.97499999999999,198.506,206.03700000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,213,1,175.97810000000001,0.042709999999999998,7.516,138.398,145.91399999999999,153.43,160.946,168.46199999999999,175.97800000000001,183.494,191.01,198.52600000000001,206.042
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,214,1,176.03800000000001,0.042610000000000002,7.5010000000000003,138.53299999999999,146.03399999999999,153.535,161.036,168.53700000000001,176.03800000000001,183.53899999999999,191.04,198.541,206.042
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,215,1,176.09350000000001,0.042509999999999999,7.4856999999999996,138.66499999999999,146.15100000000001,153.636,161.12200000000001,168.608,176.09399999999999,183.57900000000001,191.065,198.55099999999999,206.036
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,216,1,176.14490000000001,0.042410000000000003,7.4702999999999999,138.79300000000001,146.26400000000001,153.73400000000001,161.20400000000001,168.67500000000001,176.14500000000001,183.61500000000001,191.08600000000001,198.55600000000001,206.02600000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,217,1,176.1925,0.042320000000000003,7.4565000000000001,138.91,146.36699999999999,153.82300000000001,161.28,168.73599999999999,176.19200000000001,183.649,191.10499999999999,198.56200000000001,206.018
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,218,1,176.23679999999999,0.042220000000000001,7.4406999999999996,139.03299999999999,146.47399999999999,153.91499999999999,161.35499999999999,168.79599999999999,176.23699999999999,183.678,191.11799999999999,198.559,206
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,219,1,176.27789999999999,0.042130000000000001,7.4265999999999996,139.14500000000001,146.572,153.99799999999999,161.42500000000001,168.851,176.27799999999999,183.70400000000001,191.131,198.55799999999999,205.98400000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,220,1,176.31620000000001,0.042040000000000001,7.4123000000000001,139.255,146.667,154.07900000000001,161.49199999999999,168.904,176.316,183.72900000000001,191.14099999999999,198.553,205.96600000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,221,1,176.3518,0.041950000000000001,7.3979999999999997,139.36199999999999,146.76,154.15799999999999,161.55600000000001,168.95400000000001,176.352,183.75,191.148,198.54599999999999,205.94399999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,222,1,176.38509999999999,0.041849999999999998,7.3817000000000004,139.477,146.858,154.24,161.62200000000001,169.00299999999999,176.38499999999999,183.767,191.149,198.53,205.91200000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,223,1,176.4162,0.041770000000000002,7.3689,139.572,146.941,154.309,161.678,169.047,176.416,183.785,191.154,198.523,205.892
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,224,1,176.4453,0.041680000000000002,7.3541999999999996,139.67400000000001,147.02799999999999,154.38300000000001,161.73699999999999,169.09100000000001,176.44499999999999,183.8,191.154,198.50800000000001,205.86199999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,225,1,176.47239999999999,0.041590000000000002,7.3395000000000001,139.77500000000001,147.114,154.45400000000001,161.79300000000001,169.13300000000001,176.47200000000001,183.81200000000001,191.15100000000001,198.49100000000001,205.83
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,226,1,176.49760000000001,0.041500000000000002,7.3247,139.874,147.19900000000001,154.524,161.84800000000001,169.173,176.49799999999999,183.822,191.14699999999999,198.47200000000001,205.79599999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,227,1,176.52109999999999,0.041419999999999998,7.3114999999999997,139.964,147.27500000000001,154.58699999999999,161.898,169.21,176.52099999999999,183.833,191.14400000000001,198.45599999999999,205.767
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,228,1,176.54320000000001,0.041340000000000002,7.2983000000000002,140.05199999999999,147.35,154.648,161.947,169.245,176.54300000000001,183.84100000000001,191.14,198.43799999999999,205.73599999999999
source,gender,age_unit,age,l,m,s,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-13-weeks_zscores.xlsx,female,week,0,1,49.1477,0.037900000000000003,43.6,45.4,47.3,49.1,51,52.9,54.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-13-weeks_zscores.xlsx,female,week,1,1,50.329799999999999,0.037420000000000002,44.7,46.6,48.4,50.3,52.2,54.1,56
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-13-weeks_zscores.xlsx,female,week,2,1,51.512,0.036940000000000001,45.8,47.7,49.6,51.5,53.4,55.3,57.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-13-weeks_zscores.xlsx,female,week,3,1,52.469499999999996,0.03669,46.7,48.6,50.5,52.5,54.4,56.3,58.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-13-weeks_zscores.xlsx,female,week,4,1,53.380899999999997,0.036470000000000002,47.5,49.5,51.4,53.4,55.3,57.3,59.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-13-weeks_zscores.xlsx,female,week,5,1,54.245399999999997,0.036269999999999997,48.3,50.3,52.3,54.2,56.2,58.2,60.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-13-weeks_zscores.xlsx,female,week,6,1,55.0642,0.036089999999999997,49.1,51.1,53.1,55.1,57.1,59,61
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-13-weeks_zscores.xlsx,female,week,7,1,55.840600000000002,0.035929999999999997,49.8,51.8,53.8,55.8,57.8,59.9,61.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-13-weeks_zscores.xlsx,female,week,8,1,56.576700000000002,0.035779999999999999,50.5,52.5,54.6,56.6,58.6,60.6,62.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-13-weeks_zscores.xlsx,female,week,9,1,57.2761,0.035639999999999998,51.2,53.2,55.2,57.3,59.3,61.4,63.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-13-weeks_zscores.xlsx,female,week,10,1,57.943600000000004,0.035520000000000003,51.8,53.8,55.9,57.9,60,62.1,64.099999999999994
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-13-weeks_zscores.xlsx,female,week,11,1,58.581600000000002,0.035400000000000001,52.4,54.4,56.5,58.6,60.7,62.7,64.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-13-weeks_zscores.xlsx,female,week,12,1,59.1922,0.035299999999999998,52.9,55,57.1,59.2,61.3,63.4,65.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-13-weeks_zscores.xlsx,female,week,13,1,59.777299999999997,0.035200000000000002,53.5,55.6,57.7,59.8,61.9,64,66.099999999999994
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,0,1,49.1477,0.037900000000000003,43.6,45.4,47.3,49.1,51,52.9,54.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,1,1,53.687199999999997,0.036400000000000002,47.8,49.8,51.7,53.7,55.6,57.6,59.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,2,1,57.067300000000003,0.035680000000000003,51,53,55,57.1,59.1,61.1,63.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,3,1,59.802900000000001,0.035200000000000002,53.5,55.6,57.7,59.8,61.9,64,66.099999999999994
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,4,1,62.0899,0.034860000000000002,55.6,57.8,59.9,62.1,64.3,66.400000000000006,68.599999999999994
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,5,1,64.030100000000004,0.034630000000000001,57.4,59.6,61.8,64,66.2,68.5,70.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,6,1,65.731099999999998,0.034479999999999997,58.9,61.2,63.5,65.7,68,70.3,72.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,7,1,67.287300000000002,0.034410000000000003,60.3,62.7,65,67.3,69.599999999999994,71.900000000000006,74.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,8,1,68.749799999999993,0.0344,61.7,64,66.400000000000006,68.7,71.099999999999994,73.5,75.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,9,1,70.143500000000003,0.034439999999999998,62.9,65.3,67.7,70.099999999999994,72.599999999999994,75,77.400000000000006
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,10,1,71.481800000000007,0.034520000000000002,64.099999999999994,66.5,69,71.5,73.900000000000006,76.400000000000006,78.900000000000006
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,11,1,72.771000000000001,0.034639999999999997,65.2,67.7,70.3,72.8,75.3,77.8,80.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,12,1,74.015000000000001,0.034790000000000001,66.3,68.900000000000006,71.400000000000006,74,76.599999999999994,79.2,81.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,13,1,75.217600000000004,0.034959999999999998,67.3,70,72.599999999999994,75.2,77.8,80.5,83.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,14,1,76.381699999999995,0.035139999999999998,68.3,71,73.7,76.400000000000006,79.099999999999994,81.7,84.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,15,1,77.509900000000002,0.035340000000000003,69.3,72,74.8,77.5,80.2,83,85.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,16,1,78.605500000000006,0.035549999999999998,70.2,73,75.8,78.599999999999994,81.400000000000006,84.2,87
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,17,1,79.671000000000006,0.03576,71.099999999999994,74,76.8,79.7,82.5,85.4,88.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,18,1,80.707899999999995,0.035979999999999998,72,74.900000000000006,77.8,80.7,83.6,86.5,89.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,19,1,81.718199999999996,0.036200000000000003,72.8,75.8,78.8,81.7,84.7,87.6,90.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,20,1,82.703599999999994,0.036429999999999997,73.7,76.7,79.7,82.7,85.7,88.7,91.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,21,1,83.665400000000005,0.036659999999999998,74.5,77.5,80.599999999999994,83.7,86.7,89.8,92.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,22,1,84.603999999999999,0.036880000000000003,75.2,78.400000000000006,81.5,84.6,87.7,90.8,94
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,23,1,85.520200000000003,0.037109999999999997,76,79.2,82.3,85.5,88.7,91.9,95
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_0-to-2-years_zscores.xlsx,female,month,24,1,86.415300000000002,0.037339999999999998,76.7,80,83.2,86.4,89.6,92.9,96.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,24,1,85.715299999999999,0.03764,76,79.3,82.5,85.7,88.9,92.2,95.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,25,1,86.590400000000002,0.037859999999999998,76.8,80,83.3,86.6,89.9,93.1,96.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,26,1,87.446200000000005,0.038080000000000003,77.5,80.8,84.1,87.4,90.8,94.1,97.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,27,1,88.283000000000001,0.038300000000000001,78.099999999999994,81.5,84.9,88.3,91.7,95,98.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,28,1,89.100399999999993,0.038510000000000003,78.8,82.2,85.7,89.1,92.5,96,99.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,29,1,89.899100000000004,0.038719999999999997,79.5,82.9,86.4,89.9,93.4,96.9,100.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,30,1,90.679699999999997,0.038929999999999999,80.099999999999994,83.6,87.1,90.7,94.2,97.7,101.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,31,1,91.442999999999998,0.039129999999999998,80.7,84.3,87.9,91.4,95,98.6,102.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,32,1,92.190600000000003,0.039329999999999997,81.3,84.9,88.6,92.2,95.8,99.4,103.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,33,1,92.923900000000003,0.03952,81.900000000000006,85.6,89.3,92.9,96.6,100.3,103.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,34,1,93.644400000000005,0.039710000000000002,82.5,86.2,89.9,93.6,97.4,101.1,104.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,35,1,94.353300000000004,0.039890000000000002,83.1,86.8,90.6,94.4,98.1,101.9,105.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,36,1,95.051500000000004,0.040059999999999998,83.6,87.4,91.2,95.1,98.9,102.7,106.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,37,1,95.739900000000006,0.040239999999999998,84.2,88,91.9,95.7,99.6,103.4,107.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,38,1,96.418700000000001,0.040410000000000001,84.7,88.6,92.5,96.4,100.3,104.2,108.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,39,1,97.088499999999996,0.040570000000000002,85.3,89.2,93.1,97.1,101,105,108.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,40,1,97.749300000000005,0.040730000000000002,85.8,89.8,93.8,97.7,101.7,105.7,109.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,41,1,98.401499999999999,0.040890000000000003,86.3,90.4,94.4,98.4,102.4,106.4,110.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,42,1,99.044799999999995,0.041050000000000003,86.8,90.9,95,99,103.1,107.2,111.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,43,1,99.679500000000004,0.041200000000000001,87.4,91.5,95.6,99.7,103.8,107.9,112
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,44,1,100.3058,0.041349999999999998,87.9,92,96.2,100.3,104.5,108.6,112.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,45,1,100.9238,0.041500000000000002,88.4,92.5,96.7,100.9,105.1,109.3,113.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,46,1,101.5337,0.041640000000000003,88.9,93.1,97.3,101.5,105.8,110,114.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,47,1,102.136,0.041790000000000001,89.3,93.6,97.9,102.1,106.4,110.7,114.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,48,1,102.7312,0.041930000000000002,89.8,94.1,98.4,102.7,107,111.3,115.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,49,1,103.3197,0.04206,90.3,94.6,99,103.3,107.7,112,116.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,50,1,103.9021,0.042200000000000001,90.7,95.1,99.5,103.9,108.3,112.7,117.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,51,1,104.4786,0.04233,91.2,95.6,100.1,104.5,108.9,113.3,117.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,52,1,105.04940000000001,0.042459999999999998,91.7,96.1,100.6,105,109.5,114,118.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,53,1,105.6148,0.042590000000000003,92.1,96.6,101.1,105.6,110.1,114.6,119.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,54,1,106.1748,0.042720000000000001,92.6,97.1,101.6,106.2,110.7,115.2,119.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,55,1,106.7295,0.042849999999999999,93,97.6,102.2,106.7,111.3,115.9,120.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,56,1,107.2788,0.042979999999999997,93.4,98.1,102.7,107.3,111.9,116.5,121.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,57,1,107.8227,0.043099999999999999,93.9,98.5,103.2,107.8,112.5,117.1,121.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,58,1,108.3613,0.043220000000000001,94.3,99,103.7,108.4,113,117.7,122.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,59,1,108.8948,0.043339999999999997,94.7,99.5,104.2,108.9,113.6,118.3,123.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_girls_2-to-5-years_zscores.xlsx,female,month,60,1,109.4233,0.043470000000000002,95.2,99.9,104.7,109.4,114.2,118.9,123.7
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,61,1,109.6016,0.043549999999999998,95.281999999999996,100.05500000000001,104.828,109.602,114.375,119.148,123.92100000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,62,1,110.1258,0.043639999999999998,95.707999999999998,100.514,105.32,110.126,114.932,119.738,124.54300000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,63,1,110.6451,0.043729999999999998,96.13,100.968,105.807,110.645,115.48399999999999,120.322,125.161
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,64,1,111.1596,0.043819999999999998,96.546999999999997,101.41800000000001,106.289,111.16,116.03100000000001,120.902,125.773
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,65,1,111.6696,0.043900000000000002,96.962999999999994,101.86499999999999,106.767,111.67,116.572,121.474,126.376
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,66,1,112.17529999999999,0.043990000000000001,97.372,102.306,107.241,112.175,117.11,122.044,126.979
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,67,1,112.6767,0.044069999999999998,97.78,102.745,107.711,112.67700000000001,117.642,122.608,127.574
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,68,1,113.17400000000001,0.044150000000000002,98.183999999999997,103.181,108.17700000000001,113.17400000000001,118.17100000000001,123.167,128.16399999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,69,1,113.66719999999999,0.044229999999999998,98.584999999999994,103.61199999999999,108.64,113.667,118.69499999999999,123.72199999999999,128.75
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,70,1,114.15649999999999,0.044310000000000002,98.981999999999999,104.04,109.098,114.15600000000001,119.215,124.273,129.33099999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,71,1,114.6421,0.044389999999999999,99.375,104.464,109.553,114.642,119.73099999999999,124.82,129.90899999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,72,1,115.12439999999999,0.044470000000000003,99.766000000000005,104.88500000000001,110.005,115.124,120.244,125.364,130.483
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,73,1,115.6039,0.044540000000000003,100.157,105.306,110.455,115.604,120.753,125.902,131.05099999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,74,1,116.0812,0.044609999999999997,100.54600000000001,105.724,110.90300000000001,116.081,121.26,126.438,131.61600000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,75,1,116.5568,0.044690000000000001,100.93,106.139,111.348,116.557,121.76600000000001,126.97499999999999,132.184
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,76,1,117.0311,0.044749999999999998,101.32,106.557,111.794,117.03100000000001,122.268,127.505,132.74299999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,77,1,117.5044,0.044819999999999999,101.705,106.971,112.238,117.504,122.771,128.03700000000001,133.304
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,78,1,117.9769,0.044889999999999999,102.089,107.38500000000001,112.681,117.977,123.273,128.56899999999999,133.86500000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,79,1,118.44889999999999,0.044949999999999997,102.476,107.8,113.125,118.449,123.773,129.09700000000001,134.422
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,80,1,118.9208,0.045019999999999998,102.85899999999999,108.21299999999999,113.56699999999999,118.92100000000001,124.27500000000001,129.62799999999999,134.982
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,81,1,119.3926,0.045080000000000002,103.246,108.628,114.01,119.393,124.77500000000001,130.15700000000001,135.53899999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,82,1,119.8648,0.04514,103.633,109.04300000000001,114.45399999999999,119.86499999999999,125.27500000000001,130.68600000000001,136.09700000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,83,1,120.3374,0.045199999999999997,104.02,109.459,114.898,120.337,125.777,131.21600000000001,136.655
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,84,1,120.8105,0.045249999999999999,104.41,109.877,115.34399999999999,120.81,126.277,131.744,137.21100000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,85,1,121.2843,0.045310000000000003,104.798,110.294,115.789,121.28400000000001,126.78,132.27500000000001,137.77000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,86,1,121.7587,0.045359999999999998,105.19,110.71299999999999,116.236,121.759,127.282,132.80500000000001,138.328
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,87,1,122.2338,0.045420000000000002,105.578,111.13,116.682,122.23399999999999,127.786,133.33799999999999,138.88900000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,88,1,122.7098,0.045469999999999997,105.971,111.551,117.13,122.71,128.28899999999999,133.869,139.44900000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,89,1,123.18680000000001,0.045510000000000002,106.36799999999999,111.974,117.581,123.187,128.79300000000001,134.399,140.005
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,90,1,123.66459999999999,0.045560000000000003,106.762,112.396,118.03,123.66500000000001,129.29900000000001,134.93299999999999,140.56700000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,91,1,124.1435,0.045609999999999998,107.157,112.819,118.48099999999999,124.14400000000001,129.80600000000001,135.46799999999999,141.13
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,92,1,124.6234,0.045650000000000003,107.556,113.245,118.934,124.623,130.31200000000001,136.00200000000001,141.691
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,93,1,125.1045,0.045690000000000001,107.956,113.672,119.38800000000001,125.104,130.821,136.53700000000001,142.25299999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,94,1,125.5869,0.04573,108.358,114.101,119.84399999999999,125.587,131.33000000000001,137.07300000000001,142.816
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,95,1,126.0706,0.045769999999999998,108.76,114.53,120.3,126.071,131.84100000000001,137.61099999999999,143.381
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,96,1,126.5558,0.045809999999999997,109.163,114.961,120.758,126.556,132.35300000000001,138.15100000000001,143.94800000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,97,1,127.0424,0.045850000000000002,109.568,115.393,121.218,127.042,132.86699999999999,138.69200000000001,144.517
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,98,1,127.5304,0.045879999999999997,109.977,115.828,121.679,127.53,133.381,139.233,145.084
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,99,1,128.01990000000001,0.045909999999999999,110.38800000000001,116.265,122.143,128.02000000000001,133.89699999999999,139.77500000000001,145.65199999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,100,1,128.51089999999999,0.045940000000000002,110.8,116.703,122.607,128.511,134.41499999999999,140.31800000000001,146.22200000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,101,1,129.0035,0.045969999999999997,111.21299999999999,117.143,123.07299999999999,129.00399999999999,134.934,140.864,146.79400000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,102,1,129.4975,0.045999999999999999,111.627,117.584,123.541,129.49799999999999,135.45400000000001,141.411,147.36799999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,103,1,129.9932,0.046019999999999998,112.04600000000001,118.029,124.011,129.99299999999999,135.97499999999999,141.958,147.94
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,104,1,130.49039999999999,0.046039999999999998,112.467,118.47499999999999,124.483,130.49,136.49799999999999,142.506,148.51400000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,105,1,130.98910000000001,0.04607,112.88500000000001,118.92,124.95399999999999,130.989,137.024,143.05799999999999,149.09299999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,106,1,131.48949999999999,0.046080000000000003,113.312,119.371,125.43,131.49,137.54900000000001,143.608,149.667
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,107,1,131.99119999999999,0.046100000000000002,113.73699999999999,119.822,125.90600000000001,131.99100000000001,138.07599999999999,144.161,150.24600000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,108,1,132.49440000000001,0.046120000000000001,114.16200000000001,120.273,126.384,132.494,138.60499999999999,144.71600000000001,150.82599999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,109,1,132.99889999999999,0.046129999999999997,114.593,120.72799999999999,126.864,132.999,139.13399999999999,145.26900000000001,151.405
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,110,1,133.50460000000001,0.04614,115.02500000000001,121.185,127.345,133.505,139.66499999999999,145.82400000000001,151.98400000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,111,1,134.01179999999999,0.046149999999999997,115.458,121.643,127.827,134.012,140.196,146.381,152.566
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,112,1,134.52019999999999,0.04616,115.892,122.101,128.31100000000001,134.52000000000001,140.72999999999999,146.93899999999999,153.149
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,113,1,135.0299,0.04616,116.331,122.56399999999999,128.797,135.03,141.26300000000001,147.49600000000001,153.72900000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,114,1,135.541,0.046170000000000003,116.767,123.02500000000001,129.28299999999999,135.541,141.79900000000001,148.05699999999999,154.315
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,115,1,136.05330000000001,0.046170000000000003,117.209,123.49,129.77199999999999,136.053,142.33500000000001,148.61600000000001,154.898
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,116,1,136.56700000000001,0.04616,117.655,123.959,130.26300000000001,136.56700000000001,142.87100000000001,149.17500000000001,155.47900000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,117,1,137.0821,0.04616,118.099,124.42700000000001,130.75399999999999,137.08199999999999,143.41,149.738,156.065
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,118,1,137.59870000000001,0.04616,118.544,124.896,131.24700000000001,137.59899999999999,143.94999999999999,150.30199999999999,156.65299999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,119,1,138.11670000000001,0.046149999999999997,118.994,125.369,131.74299999999999,138.11699999999999,144.49100000000001,150.86500000000001,157.239
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,120,1,138.63630000000001,0.04614,119.446,125.843,132.24,138.636,145.03299999999999,151.43,157.82599999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,121,1,139.1575,0.046120000000000001,119.904,126.322,132.74,139.15799999999999,145.57499999999999,151.99299999999999,158.411
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,122,1,139.68029999999999,0.046109999999999998,120.358,126.79900000000001,133.24,139.68,146.12100000000001,152.56200000000001,159.00200000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,123,1,140.20490000000001,0.046089999999999999,120.819,127.28100000000001,133.74299999999999,140.20500000000001,146.667,153.12899999999999,159.59100000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,124,1,140.7313,0.04607,121.28100000000001,127.764,134.24799999999999,140.73099999999999,147.215,153.69800000000001,160.18199999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,125,1,141.2594,0.046050000000000001,121.744,128.249,134.75399999999999,141.25899999999999,147.76400000000001,154.26900000000001,160.774
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,126,1,141.78919999999999,0.046030000000000001,122.21,128.73599999999999,135.26300000000001,141.78899999999999,148.316,154.84200000000001,161.369
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,127,1,142.32060000000001,0.045999999999999999,122.68,129.227,135.774,142.321,148.86699999999999,155.41399999999999,161.96100000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,128,1,142.85339999999999,0.045969999999999997,123.152,129.71899999999999,136.286,142.85300000000001,149.41999999999999,155.98699999999999,162.554
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,129,1,143.38740000000001,0.045940000000000002,123.626,130.21299999999999,136.80000000000001,143.387,149.97499999999999,156.56200000000001,163.149
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,130,1,143.9222,0.045909999999999999,124.1,130.70699999999999,137.315,143.922,150.53,157.137,163.745
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,131,1,144.45750000000001,0.045879999999999997,124.574,131.202,137.83000000000001,144.458,151.08500000000001,157.71299999999999,164.34100000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,132,1,144.99289999999999,0.045839999999999999,125.053,131.69999999999999,138.346,144.99299999999999,151.63900000000001,158.286,164.93199999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,133,1,145.52799999999999,0.0458,125.532,132.19800000000001,138.863,145.52799999999999,152.19300000000001,158.858,165.524
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,134,1,146.06219999999999,0.045760000000000002,126.011,132.69499999999999,139.37799999999999,146.06200000000001,152.74600000000001,159.43,166.114
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,135,1,146.5951,0.045710000000000001,126.49299999999999,133.19300000000001,139.89400000000001,146.595,153.29599999999999,159.99700000000001,166.69800000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,136,1,147.12620000000001,0.045670000000000002,126.968,133.68799999999999,140.40700000000001,147.126,153.845,160.565,167.28399999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,137,1,147.65479999999999,0.045620000000000001,127.447,134.18299999999999,140.91900000000001,147.655,154.39099999999999,161.12700000000001,167.863
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,138,1,148.18039999999999,0.045569999999999999,127.923,134.67500000000001,141.428,148.18,154.93299999999999,161.68600000000001,168.43799999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,139,1,148.70230000000001,0.045519999999999998,128.39599999999999,135.16399999999999,141.93299999999999,148.702,155.471,162.24,169.00899999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,140,1,149.21969999999999,0.04546,128.869,135.65299999999999,142.43600000000001,149.22,156.00299999999999,162.78700000000001,169.57
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,141,1,149.73220000000001,0.045409999999999999,129.334,136.13399999999999,142.93299999999999,149.732,156.53200000000001,163.33099999999999,170.13
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,142,1,150.239,0.045350000000000001,129.79900000000001,136.61199999999999,143.42599999999999,150.239,157.05199999999999,163.86600000000001,170.679
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,143,1,150.73939999999999,0.045289999999999997,130.25800000000001,137.08500000000001,143.91200000000001,150.739,157.566,164.393,171.22
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,144,1,151.23269999999999,0.045229999999999999,130.71199999999999,137.55199999999999,144.392,151.233,158.07300000000001,164.91300000000001,171.75299999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,145,1,151.7182,0.045159999999999999,131.16300000000001,138.01499999999999,144.86699999999999,151.71799999999999,158.57,165.42099999999999,172.273
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,146,1,152.1951,0.045100000000000001,131.60300000000001,138.46700000000001,145.33099999999999,152.19499999999999,159.059,165.923,172.78700000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,147,1,152.6628,0.045030000000000001,132.04,138.91399999999999,145.78800000000001,152.66300000000001,159.53700000000001,166.41200000000001,173.286
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,148,1,153.1206,0.044970000000000003,132.46299999999999,139.34899999999999,146.23500000000001,153.12100000000001,160.006,166.892,173.77799999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,149,1,153.56780000000001,0.044900000000000002,132.88200000000001,139.77699999999999,146.673,153.56800000000001,160.46299999999999,167.358,174.25299999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,150,1,154.00409999999999,0.044830000000000002,133.292,140.196,147.1,154.00399999999999,160.90799999999999,167.81200000000001,174.71600000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,151,1,154.429,0.044760000000000001,133.69200000000001,140.60499999999999,147.517,154.429,161.34100000000001,168.25299999999999,175.166
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,152,1,154.84229999999999,0.044679999999999997,134.08699999999999,141.006,147.92400000000001,154.84200000000001,161.761,168.679,175.59700000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,153,1,155.24369999999999,0.044609999999999997,134.46700000000001,141.393,148.31800000000001,155.244,162.16900000000001,169.095,176.02
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,154,1,155.63300000000001,0.044540000000000003,134.83699999999999,141.76900000000001,148.70099999999999,155.63300000000001,162.565,169.49700000000001,176.429
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,155,1,156.01009999999999,0.04446,135.20099999999999,142.13800000000001,149.07400000000001,156.01,162.946,169.88300000000001,176.81899999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,156,1,156.37479999999999,0.044389999999999999,135.55000000000001,142.49199999999999,149.43299999999999,156.375,163.316,170.25800000000001,177.19900000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,157,1,156.7269,0.044310000000000002,135.893,142.83799999999999,149.78200000000001,156.727,163.67099999999999,170.61600000000001,177.56100000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,158,1,157.06659999999999,0.044229999999999998,136.22499999999999,143.172,150.12,157.06700000000001,164.01400000000001,170.96100000000001,177.90799999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,159,1,157.39359999999999,0.044150000000000002,136.547,143.49600000000001,150.44499999999999,157.39400000000001,164.34299999999999,171.291,178.24
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,160,1,157.70820000000001,0.044080000000000001,136.85300000000001,143.80500000000001,150.756,157.708,164.66,171.61199999999999,178.56399999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,161,1,158.0102,0.043999999999999997,137.15299999999999,144.10499999999999,151.05799999999999,158.01,164.96299999999999,171.91499999999999,178.86799999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,162,1,158.2997,0.043920000000000001,137.44200000000001,144.39500000000001,151.34700000000001,158.30000000000001,165.25200000000001,172.20500000000001,179.15700000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,163,1,158.5771,0.043839999999999997,137.721,144.673,151.625,158.577,165.529,172.48099999999999,179.43299999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,164,1,158.8425,0.04376,137.99,144.941,151.892,158.84200000000001,165.79300000000001,172.744,179.69499999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,165,1,159.09610000000001,0.04369,138.24299999999999,145.19399999999999,152.14500000000001,159.096,166.047,172.99799999999999,179.94900000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,166,1,159.3382,0.043610000000000003,138.49199999999999,145.441,152.38900000000001,159.33799999999999,166.28700000000001,173.23599999999999,180.184
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,167,1,159.56909999999999,0.043529999999999999,138.73099999999999,145.67699999999999,152.62299999999999,159.56899999999999,166.51499999999999,173.46100000000001,180.40700000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,168,1,159.78899999999999,0.043450000000000003,138.96100000000001,145.90299999999999,152.846,159.78899999999999,166.732,173.67500000000001,180.61699999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,169,1,159.9983,0.043369999999999999,139.18100000000001,146.12,153.059,159.99799999999999,166.93700000000001,173.87700000000001,180.816
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,170,1,160.19710000000001,0.043299999999999998,139.387,146.32400000000001,153.261,160.197,167.13399999999999,174.07,181.00700000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,171,1,160.38570000000001,0.043220000000000001,139.59,146.52199999999999,153.45400000000001,160.386,167.31800000000001,174.249,181.18100000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,172,1,160.5643,0.043139999999999998,139.78399999999999,146.71100000000001,153.63800000000001,160.56399999999999,167.49100000000001,174.41800000000001,181.345
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,173,1,160.73320000000001,0.043069999999999997,139.965,146.88800000000001,153.81,160.733,167.65600000000001,174.57900000000001,181.50200000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,174,1,160.89269999999999,0.04299,140.142,147.059,153.976,160.893,167.809,174.726,181.643
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,175,1,161.04300000000001,0.04292,140.30699999999999,147.21899999999999,154.131,161.04300000000001,167.95500000000001,174.86699999999999,181.779
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,176,1,161.18450000000001,0.042840000000000003,140.46899999999999,147.374,154.279,161.184,168.09,174.995,181.9
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,177,1,161.3176,0.042770000000000002,140.619,147.518,154.41800000000001,161.31800000000001,168.21700000000001,175.11699999999999,182.01599999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,178,1,161.4425,0.042700000000000002,140.762,147.655,154.54900000000001,161.44200000000001,168.33600000000001,175.23,182.12299999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,179,1,161.55959999999999,0.042630000000000001,140.898,147.785,154.672,161.56,168.447,175.334,182.221
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,180,1,161.66919999999999,0.042549999999999998,141.03200000000001,147.911,154.79,161.66900000000001,168.548,175.42699999999999,182.30600000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,181,1,161.77170000000001,0.042479999999999997,141.15600000000001,148.02799999999999,154.9,161.77199999999999,168.64400000000001,175.51599999999999,182.38800000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,182,1,161.8673,0.042410000000000003,141.273,148.13800000000001,155.00299999999999,161.86699999999999,168.732,175.59700000000001,182.46199999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,183,1,161.9564,0.042349999999999999,141.38,148.239,155.09800000000001,161.95599999999999,168.815,175.67400000000001,182.53299999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,184,1,162.0393,0.042279999999999998,141.48599999999999,148.33699999999999,155.18799999999999,162.03899999999999,168.89,175.74100000000001,182.59200000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,185,1,162.1164,0.042209999999999998,141.58799999999999,148.43100000000001,155.273,162.11600000000001,168.959,175.80199999999999,182.64500000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,186,1,162.18799999999999,0.042139999999999997,141.684,148.51900000000001,155.35300000000001,162.18799999999999,169.023,175.857,182.69200000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,187,1,162.2542,0.042079999999999999,141.77099999999999,148.59899999999999,155.42699999999999,162.25399999999999,169.08199999999999,175.91,182.73699999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,188,1,162.31540000000001,0.042009999999999999,141.85900000000001,148.678,155.49700000000001,162.315,169.13399999999999,175.953,182.77199999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,189,1,162.37190000000001,0.041950000000000001,141.93700000000001,148.749,155.56,162.37200000000001,169.18299999999999,175.995,182.80600000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,190,1,162.4239,0.041889999999999997,142.012,148.816,155.62,162.42400000000001,169.22800000000001,176.03200000000001,182.83600000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,191,1,162.4717,0.041820000000000003,142.08799999999999,148.88300000000001,155.67699999999999,162.47200000000001,169.26599999999999,176.06100000000001,182.85499999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,192,1,162.51560000000001,0.041759999999999999,142.15600000000001,148.94200000000001,155.72900000000001,162.51599999999999,169.30199999999999,176.089,182.876
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,193,1,162.55600000000001,0.041700000000000001,142.22,148.999,155.77699999999999,162.55600000000001,169.33500000000001,176.113,182.892
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,194,1,162.5933,0.041640000000000003,142.28200000000001,149.053,155.82300000000001,162.59299999999999,169.364,176.13399999999999,182.904
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,195,1,162.6276,0.041579999999999999,142.34100000000001,149.10300000000001,155.86600000000001,162.62799999999999,169.39,176.15199999999999,182.91399999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,196,1,162.65940000000001,0.041520000000000001,142.399,149.15199999999999,155.90600000000001,162.65899999999999,169.41300000000001,176.167,182.92
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,197,1,162.68899999999999,0.04147,142.44900000000001,149.196,155.94200000000001,162.68899999999999,169.43600000000001,176.18199999999999,182.929
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,198,1,162.7165,0.041410000000000002,142.50200000000001,149.24,155.97800000000001,162.71600000000001,169.45500000000001,176.19300000000001,182.93100000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,199,1,162.74250000000001,0.041360000000000001,142.54900000000001,149.28,156.011,162.74199999999999,169.47399999999999,176.20500000000001,182.93600000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,200,1,162.767,0.041300000000000003,142.6,149.322,156.04499999999999,162.767,169.489,176.21199999999999,182.934
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,201,1,162.79040000000001,0.041250000000000002,142.64500000000001,149.36000000000001,156.07499999999999,162.79,169.506,176.221,182.93600000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,202,1,162.8126,0.041189999999999997,142.69399999999999,149.4,156.10599999999999,162.81299999999999,169.51900000000001,176.22499999999999,182.93100000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,203,1,162.834,0.041140000000000003,142.73699999999999,149.43600000000001,156.13499999999999,162.834,169.53299999999999,176.232,182.93100000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,204,1,162.8545,0.041090000000000002,142.779,149.471,156.16300000000001,162.85400000000001,169.54599999999999,176.238,182.93
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,205,1,162.87430000000001,0.04104,142.821,149.506,156.19,162.874,169.559,176.24299999999999,182.92699999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,206,1,162.89349999999999,0.040989999999999999,142.86199999999999,149.53899999999999,156.21600000000001,162.89400000000001,169.571,176.24799999999999,182.92500000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,207,1,162.91200000000001,0.040939999999999997,142.90299999999999,149.57300000000001,156.24199999999999,162.91200000000001,169.58199999999999,176.251,182.92099999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,208,1,162.93,0.040890000000000003,142.94300000000001,149.60599999999999,156.268,162.93,169.59200000000001,176.25399999999999,182.917
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,209,1,162.94759999999999,0.040840000000000001,142.983,149.63800000000001,156.29300000000001,162.94800000000001,169.602,176.25700000000001,182.91200000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,210,1,162.9649,0.040800000000000003,143.018,149.667,156.316,162.965,169.614,176.26300000000001,182.91200000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,211,1,162.98169999999999,0.040750000000000001,143.05699999999999,149.69900000000001,156.34,162.982,169.62299999999999,176.26499999999999,182.90600000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,212,1,162.9983,0.040710000000000003,143.09100000000001,149.727,156.363,162.99799999999999,169.63399999999999,176.27,182.905
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,213,1,163.01439999999999,0.040660000000000002,143.13,149.75800000000001,156.386,163.01400000000001,169.643,176.27099999999999,182.899
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,214,1,163.03,0.040620000000000003,143.16300000000001,149.785,156.40799999999999,163.03,169.65199999999999,176.27500000000001,182.89699999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,215,1,163.04509999999999,0.040579999999999998,143.196,149.81200000000001,156.429,163.04499999999999,169.661,176.27799999999999,182.89400000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,216,1,163.05950000000001,0.040529999999999997,143.233,149.84200000000001,156.45099999999999,163.06,169.66800000000001,176.27699999999999,182.886
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,217,1,163.07329999999999,0.040489999999999998,143.26499999999999,149.86799999999999,156.47,163.07300000000001,169.67599999999999,176.279,182.88200000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,218,1,163.08619999999999,0.04045,143.29599999999999,149.893,156.489,163.08600000000001,169.68299999999999,176.28,182.87700000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,219,1,163.09819999999999,0.040410000000000001,143.32599999999999,149.917,156.50700000000001,163.09800000000001,169.68899999999999,176.28,182.87100000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,220,1,163.10919999999999,0.040370000000000003,143.35499999999999,149.94,156.524,163.10900000000001,169.69399999999999,176.279,182.863
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,221,1,163.11920000000001,0.040340000000000001,143.37899999999999,149.959,156.53899999999999,163.119,169.69900000000001,176.28,182.86
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,222,1,163.12790000000001,0.040300000000000002,143.40600000000001,149.97999999999999,156.554,163.12799999999999,169.702,176.27600000000001,182.85
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,223,1,163.13550000000001,0.040259999999999997,143.43199999999999,150,156.56800000000001,163.136,169.703,176.27099999999999,182.839
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,224,1,163.14179999999999,0.040230000000000002,143.452,150.01499999999999,156.57900000000001,163.142,169.70500000000001,176.268,182.83099999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,225,1,163.14689999999999,0.040189999999999997,143.476,150.03299999999999,156.59,163.14699999999999,169.70400000000001,176.261,182.81800000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,226,1,163.1508,0.040160000000000001,143.494,150.047,156.59899999999999,163.15100000000001,169.703,176.255,182.80699999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,227,1,163.1534,0.040120000000000003,143.51599999999999,150.06200000000001,156.608,163.15299999999999,169.69900000000001,176.245,182.791
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,female,month,228,1,163.15479999999999,0.040090000000000001,143.53200000000001,150.07300000000001,156.614,163.155,169.696,176.23699999999999,182.77699999999999
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-13-weeks_zscores.xlsx,male,week,0,1,49.8842,0.037949999999999998,44.2,46.1,48,49.9,51.8,53.7,55.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-13-weeks_zscores.xlsx,male,week,1,1,51.115200000000002,0.037229999999999999,45.4,47.3,49.2,51.1,53,54.9,56.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-13-weeks_zscores.xlsx,male,week,2,1,52.3461,0.036519999999999997,46.6,48.5,50.4,52.3,54.3,56.2,58.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-13-weeks_zscores.xlsx,male,week,3,1,53.390500000000003,0.036089999999999997,47.6,49.5,51.5,53.4,55.3,57.2,59.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-13-weeks_zscores.xlsx,male,week,4,1,54.388100000000001,0.035700000000000003,48.6,50.5,52.4,54.4,56.3,58.3,60.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-13-weeks_zscores.xlsx,male,week,5,1,55.337400000000002,0.035340000000000003,49.5,51.4,53.4,55.3,57.3,59.2,61.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-13-weeks_zscores.xlsx,male,week,6,1,56.235700000000001,0.035009999999999999,50.3,52.3,54.3,56.2,58.2,60.2,62.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-13-weeks_zscores.xlsx,male,week,7,1,57.085099999999997,0.034700000000000002,51.1,53.1,55.1,57.1,59.1,61,63
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-13-weeks_zscores.xlsx,male,week,8,1,57.8889,0.034419999999999999,51.9,53.9,55.9,57.9,59.9,61.9,63.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-13-weeks_zscores.xlsx,male,week,9,1,58.653599999999997,0.034160000000000003,52.6,54.6,56.6,58.7,60.7,62.7,64.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-13-weeks_zscores.xlsx,male,week,10,1,59.3872,0.033919999999999999,53.3,55.4,57.4,59.4,61.4,63.4,65.400000000000006
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-13-weeks_zscores.xlsx,male,week,11,1,60.089399999999998,0.033689999999999998,54,56,58.1,60.1,62.1,64.099999999999994,66.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-13-weeks_zscores.xlsx,male,week,12,1,60.7605,0.033480000000000003,54.7,56.7,58.7,60.8,62.8,64.8,66.900000000000006
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-13-weeks_zscores.xlsx,male,week,13,1,61.401299999999999,0.03329,55.3,57.3,59.4,61.4,63.4,65.5,67.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,0,1,49.8842,0.037949999999999998,44.2,46.1,48,49.9,51.8,53.7,55.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,1,1,54.724400000000003,0.035569999999999997,48.9,50.8,52.8,54.7,56.7,58.6,60.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,2,1,58.424900000000001,0.03424,52.4,54.4,56.4,58.4,60.4,62.4,64.400000000000006
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,3,1,61.429200000000002,0.033279999999999997,55.3,57.3,59.4,61.4,63.5,65.5,67.599999999999994
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,4,1,63.886000000000003,0.032570000000000002,57.6,59.7,61.8,63.9,66,68,70.099999999999994
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,5,1,65.902600000000007,0.032039999999999999,59.6,61.7,63.8,65.900000000000006,68,70.099999999999994,72.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,6,1,67.623599999999996,0.031649999999999998,61.2,63.3,65.5,67.599999999999994,69.8,71.900000000000006,74
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,7,1,69.164500000000004,0.031390000000000001,62.7,64.8,67,69.2,71.3,73.5,75.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,8,1,70.599400000000003,0.03124,64,66.2,68.400000000000006,70.599999999999994,72.8,75,77.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,9,1,71.968699999999998,0.03117,65.2,67.5,69.7,72,74.2,76.5,78.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,10,1,73.281199999999998,0.031179999999999999,66.400000000000006,68.7,71,73.3,75.599999999999994,77.900000000000006,80.099999999999994
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,11,1,74.538799999999995,0.03125,67.599999999999994,69.900000000000006,72.2,74.5,76.900000000000006,79.2,81.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,12,1,75.748800000000003,0.031370000000000002,68.599999999999994,71,73.400000000000006,75.7,78.099999999999994,80.5,82.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,13,1,76.918599999999998,0.031539999999999999,69.599999999999994,72.099999999999994,74.5,76.900000000000006,79.3,81.8,84.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,14,1,78.049700000000001,0.031739999999999997,70.599999999999994,73.099999999999994,75.599999999999994,78,80.5,83,85.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,15,1,79.145799999999994,0.031969999999999998,71.599999999999994,74.099999999999994,76.599999999999994,79.099999999999994,81.7,84.2,86.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,16,1,80.211299999999994,0.032219999999999999,72.5,75,77.599999999999994,80.2,82.8,85.4,88
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,17,1,81.248699999999999,0.032500000000000001,73.3,76,78.599999999999994,81.2,83.9,86.5,89.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,18,1,82.258700000000005,0.03279,74.2,76.900000000000006,79.599999999999994,82.3,85,87.7,90.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,19,1,83.241799999999998,0.033099999999999997,75,77.7,80.5,83.2,86,88.8,91.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,20,1,84.199600000000004,0.033419999999999998,75.8,78.599999999999994,81.400000000000006,84.2,87,89.8,92.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,21,1,85.134799999999998,0.033759999999999998,76.5,79.400000000000006,82.3,85.1,88,90.9,93.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,22,1,86.047700000000006,0.034099999999999998,77.2,80.2,83.1,86,89,91.9,94.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,23,1,86.941000000000003,0.034450000000000001,78,81,83.9,86.9,89.9,92.9,95.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_0-to-2-years_zscores.xlsx,male,month,24,1,87.816100000000006,0.034790000000000001,78.7,81.7,84.8,87.8,90.9,93.9,97
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,24,1,87.116100000000003,0.035069999999999997,78,81,84.1,87.1,90.2,93.2,96.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,25,1,87.971999999999994,0.03542,78.599999999999994,81.7,84.9,88,91.1,94.2,97.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,26,1,88.8065,0.03576,79.3,82.5,85.6,88.8,92,95.2,98.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,27,1,89.619699999999995,0.0361,79.900000000000006,83.1,86.4,89.6,92.9,96.1,99.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,28,1,90.412000000000006,0.036420000000000001,80.5,83.8,87.1,90.4,93.7,97,100.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,29,1,91.1828,0.036740000000000002,81.099999999999994,84.5,87.8,91.2,94.5,97.9,101.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,30,1,91.932699999999997,0.037039999999999997,81.7,85.1,88.5,91.9,95.3,98.7,102.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,31,1,92.6631,0.037330000000000002,82.3,85.7,89.2,92.7,96.1,99.6,103
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,32,1,93.375299999999996,0.037609999999999998,82.8,86.4,89.9,93.4,96.9,100.4,103.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,33,1,94.071100000000001,0.037870000000000001,83.4,86.9,90.5,94.1,97.6,101.2,104.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,34,1,94.753200000000007,0.038120000000000001,83.9,87.5,91.1,94.8,98.4,102,105.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,35,1,95.423599999999993,0.038359999999999998,84.4,88.1,91.8,95.4,99.1,102.7,106.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,36,1,96.083500000000001,0.038580000000000003,85,88.7,92.4,96.1,99.8,103.5,107.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,37,1,96.733699999999999,0.038789999999999998,85.5,89.2,93,96.7,100.5,104.2,108
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,38,1,97.374899999999997,0.039,86,89.8,93.6,97.4,101.2,105,108.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,39,1,98.007300000000001,0.039190000000000003,86.5,90.3,94.2,98,101.8,105.7,109.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,40,1,98.631,0.039370000000000002,87,90.9,94.7,98.6,102.5,106.4,110.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,41,1,99.245900000000006,0.039539999999999999,87.5,91.4,95.3,99.2,103.2,107.1,111
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,42,1,99.851500000000001,0.039710000000000002,88,91.9,95.9,99.9,103.8,107.8,111.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,43,1,100.4485,0.03986,88.4,92.4,96.4,100.4,104.5,108.5,112.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,44,1,101.03740000000001,0.04002,88.9,93,97,101,105.1,109.1,113.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,45,1,101.6186,0.040160000000000001,89.4,93.5,97.5,101.6,105.7,109.8,113.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,46,1,102.19329999999999,0.040309999999999999,89.8,94,98.1,102.2,106.3,110.4,114.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,47,1,102.7625,0.04045,90.3,94.4,98.6,102.8,106.9,111.1,115.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,48,1,103.32729999999999,0.040590000000000001,90.7,94.9,99.1,103.3,107.5,111.7,115.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,49,1,103.8886,0.040730000000000002,91.2,95.4,99.7,103.9,108.1,112.4,116.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,50,1,104.4473,0.04086,91.6,95.9,100.2,104.4,108.7,113,117.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,51,1,105.00409999999999,0.041000000000000002,92.1,96.4,100.7,105,109.3,113.6,117.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,52,1,105.5596,0.04113,92.5,96.9,101.2,105.6,109.9,114.2,118.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,53,1,106.1138,0.041259999999999998,93,97.4,101.7,106.1,110.5,114.9,119.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,54,1,106.66679999999999,0.041390000000000003,93.4,97.8,102.3,106.7,111.1,115.5,119.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,55,1,107.2188,0.041520000000000001,93.9,98.3,102.8,107.2,111.7,116.1,120.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,56,1,107.7697,0.04165,94.3,98.8,103.3,107.8,112.3,116.7,121.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,57,1,108.3198,0.041770000000000002,94.7,99.3,103.8,108.3,112.8,117.4,121.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,58,1,108.8689,0.0419,95.2,99.7,104.3,108.9,113.4,118,122.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,59,1,109.417,0.042020000000000002,95.6,100.2,104.8,109.4,114,118.6,123.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/lhfa_boys_2-to-5-years_zscores.xlsx,male,month,60,1,109.96380000000001,0.042139999999999997,96.1,100.7,105.3,110,114.6,119.2,123.9
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,61,1,110.2647,0.041640000000000003,96.49,101.08199999999999,105.673,110.265,114.85599999999999,119.44799999999999,124.039
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,62,1,110.8006,0.04172,96.933000000000007,101.55500000000001,106.178,110.801,115.423,120.04600000000001,124.66800000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,63,1,111.3338,0.041799999999999997,97.373000000000005,102.026,106.68,111.334,115.988,120.64100000000001,125.295
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,64,1,111.86360000000001,0.041869999999999997,97.811999999999998,102.496,107.18,111.864,116.547,121.23099999999999,125.91500000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,65,1,112.3895,0.041950000000000001,98.245000000000005,102.96,107.675,112.39,117.104,121.819,126.53400000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,66,1,112.911,0.042029999999999998,98.674000000000007,103.42,108.16500000000001,112.911,117.657,122.402,127.148
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,67,1,113.428,0.042110000000000002,99.099000000000004,103.875,108.652,113.428,118.20399999999999,122.98099999999999,127.75700000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,68,1,113.941,0.042180000000000002,99.522999999999996,104.32899999999999,109.13500000000001,113.941,118.747,123.553,128.35900000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,69,1,114.45,0.042259999999999999,99.94,104.777,109.613,114.45,119.28700000000001,124.123,128.96
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,70,1,114.9547,0.042340000000000003,100.35299999999999,105.22,110.08799999999999,114.955,119.822,124.68899999999999,129.55600000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,71,1,115.45489999999999,0.042410000000000003,100.76600000000001,105.66200000000001,110.55800000000001,115.455,120.351,125.248,130.14400000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,72,1,115.9509,0.04249,101.17100000000001,106.09699999999999,111.024,115.95099999999999,120.878,125.804,130.73099999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,73,1,116.4432,0.042569999999999997,101.572,106.529,111.486,116.443,121.4,126.357,131.31399999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,74,1,116.9325,0.042639999999999997,101.974,106.96,111.946,116.932,121.919,126.905,131.89099999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,75,1,117.4196,0.042720000000000001,102.371,107.387,112.40300000000001,117.42,122.43600000000001,127.452,132.46799999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,76,1,117.9046,0.042799999999999998,102.76600000000001,107.812,112.858,117.905,122.95099999999999,127.997,133.04400000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,77,1,118.38800000000001,0.042869999999999998,103.16200000000001,108.23699999999999,113.313,118.38800000000001,123.46299999999999,128.53899999999999,133.614
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,78,1,118.87,0.042950000000000002,103.554,108.65900000000001,113.765,118.87,123.97499999999999,129.08099999999999,134.18600000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,79,1,119.35080000000001,0.043029999999999999,103.944,109.07899999999999,114.215,119.351,124.486,129.62200000000001,134.75800000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,80,1,119.83029999999999,0.043110000000000002,104.333,109.499,114.664,119.83,124.996,130.16200000000001,135.328
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,81,1,120.3085,0.043180000000000003,104.724,109.919,115.114,120.30800000000001,125.503,130.69800000000001,135.893
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,82,1,120.78530000000001,0.04326,105.11,110.33499999999999,115.56,120.785,126.01,131.23599999999999,136.46100000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,83,1,121.2604,0.043339999999999997,105.494,110.75,116.005,121.26,126.51600000000001,131.77099999999999,137.02699999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,84,1,121.7338,0.04342,105.877,111.16200000000001,116.44799999999999,121.73399999999999,127.01900000000001,132.30500000000001,137.59100000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,85,1,122.20529999999999,0.043499999999999997,106.258,111.57299999999999,116.889,122.205,127.521,132.83699999999999,138.15299999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,86,1,122.675,0.043580000000000001,106.636,111.983,117.32899999999999,122.675,128.02099999999999,133.36699999999999,138.714
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,87,1,123.1429,0.043659999999999997,107.014,112.39,117.76600000000001,123.143,128.51900000000001,133.89599999999999,139.27199999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,88,1,123.6092,0.043740000000000001,107.389,112.79600000000001,118.203,123.60899999999999,129.01599999999999,134.423,139.82900000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,89,1,124.0736,0.043819999999999998,107.76300000000001,113.2,118.637,124.074,129.511,134.947,140.38399999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,90,1,124.5361,0.043900000000000002,108.13500000000001,113.602,119.069,124.536,130.00299999999999,135.47,140.93799999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,91,1,124.99639999999999,0.043979999999999998,108.504,114.002,119.499,124.996,130.494,135.99100000000001,141.488
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,92,1,125.4545,0.044060000000000002,108.872,114.399,119.92700000000001,125.45399999999999,130.982,136.51,142.03700000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,93,1,125.9104,0.044139999999999999,109.23699999999999,114.795,120.35299999999999,125.91,131.46799999999999,137.02600000000001,142.583
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,94,1,126.364,0.044220000000000002,109.601,115.188,120.776,126.364,131.952,137.54,143.12700000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,95,1,126.8156,0.044299999999999999,109.962,115.58,121.19799999999999,126.816,132.434,138.05099999999999,143.66900000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,96,1,127.2651,0.044380000000000003,110.321,115.96899999999999,121.617,127.265,132.91300000000001,138.56100000000001,144.209
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,97,1,127.7129,0.04446,110.679,116.357,122.035,127.71299999999999,133.39099999999999,139.06899999999999,144.74700000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,98,1,128.15899999999999,0.044540000000000003,111.03400000000001,116.74299999999999,122.45099999999999,128.15899999999999,133.86699999999999,139.57499999999999,145.28399999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,99,1,128.60339999999999,0.04462,111.389,117.127,122.86499999999999,128.60300000000001,134.34200000000001,140.08000000000001,145.81800000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,100,1,129.04660000000001,0.044699999999999997,111.741,117.51,123.27800000000001,129.047,134.815,140.583,146.352
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,101,1,129.48869999999999,0.04478,112.093,117.892,123.69,129.489,135.28700000000001,141.08600000000001,146.88399999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,102,1,129.93,0.04487,112.44,118.27,124.1,129.93,135.76,141.59,147.41999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,103,1,130.37049999999999,0.044949999999999997,112.79,118.65,124.51,130.37,136.23099999999999,142.09100000000001,147.95099999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,104,1,130.81030000000001,0.045030000000000001,113.139,119.03,124.92,130.81,136.70099999999999,142.59100000000001,148.48099999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,105,1,131.24950000000001,0.045109999999999997,113.488,119.408,125.32899999999999,131.25,137.16999999999999,143.09100000000001,149.011
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,106,1,131.6884,0.045190000000000001,113.83499999999999,119.786,125.73699999999999,131.68799999999999,137.63900000000001,143.59,149.541
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,107,1,132.12690000000001,0.045269999999999998,114.18300000000001,120.164,126.146,132.12700000000001,138.108,144.09,150.071
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,108,1,132.5652,0.045350000000000001,114.53,120.542,126.553,132.565,138.577,144.589,150.601
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,109,1,133.00309999999999,0.045429999999999998,114.876,120.91800000000001,126.961,133.00299999999999,139.04499999999999,145.08799999999999,151.13
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,110,1,133.44040000000001,0.045510000000000002,115.22199999999999,121.295,127.36799999999999,133.44,139.51300000000001,145.58600000000001,151.65899999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,111,1,133.87700000000001,0.045589999999999999,115.56699999999999,121.67,127.774,133.87700000000001,139.97999999999999,146.084,152.18700000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,112,1,134.31299999999999,0.045659999999999999,115.91500000000001,122.048,128.18,134.31299999999999,140.446,146.578,152.71100000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,113,1,134.7483,0.045740000000000003,116.258,122.422,128.58500000000001,134.74799999999999,140.91200000000001,147.07499999999999,153.238
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,114,1,135.18289999999999,0.04582,116.601,122.795,128.989,135.18299999999999,141.37700000000001,147.571,153.76499999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,115,1,135.61680000000001,0.04589,116.946,123.17,129.393,135.61699999999999,141.84,148.06399999999999,154.28700000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,116,1,136.05009999999999,0.045969999999999997,117.28700000000001,123.542,129.79599999999999,136.05000000000001,142.304,148.559,154.81299999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,117,1,136.4829,0.046039999999999998,117.63200000000001,123.916,130.19900000000001,136.483,142.767,149.05000000000001,155.334
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,118,1,136.9153,0.046120000000000001,117.97199999999999,124.286,130.601,136.91499999999999,143.22999999999999,149.54400000000001,155.85900000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,119,1,137.34739999999999,0.046190000000000002,118.315,124.65900000000001,131.00299999999999,137.34700000000001,143.691,150.036,156.38
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,120,1,137.77950000000001,0.046260000000000003,118.658,125.032,131.40600000000001,137.78,144.15299999999999,150.52699999999999,156.90100000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,121,1,138.21190000000001,0.046330000000000003,119.002,125.405,131.809,138.21199999999999,144.61500000000001,151.01900000000001,157.422
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,122,1,138.64519999999999,0.046399999999999997,119.346,125.779,132.21199999999999,138.64500000000001,145.078,151.511,157.94499999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,123,1,139.0797,0.046469999999999997,119.691,126.154,132.61699999999999,139.08000000000001,145.54300000000001,152.006,158.46899999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,124,1,139.51580000000001,0.046539999999999998,120.03700000000001,126.53,133.023,139.51599999999999,146.00899999999999,152.50200000000001,158.995
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,125,1,139.95400000000001,0.046609999999999999,120.384,126.907,133.43100000000001,139.95400000000001,146.477,153.001,159.524
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,126,1,140.3948,0.046670000000000003,120.738,127.29,133.84299999999999,140.39500000000001,146.947,153.499,160.05099999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,127,1,140.83869999999999,0.046739999999999997,121.09,127.673,134.256,140.839,147.422,154.00399999999999,160.58699999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,128,1,141.2859,0.046800000000000001,121.449,128.06200000000001,134.67400000000001,141.286,147.898,154.51,161.12200000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,129,1,141.73679999999999,0.046859999999999999,121.81100000000001,128.453,135.095,141.73699999999999,148.37899999999999,155.02000000000001,161.66200000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,130,1,142.19159999999999,0.046920000000000003,122.17700000000001,128.84800000000001,135.52000000000001,142.19200000000001,148.863,155.535,162.20599999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,131,1,142.65010000000001,0.046980000000000001,122.545,129.24700000000001,135.94800000000001,142.65,149.352,156.054,162.755
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,132,1,143.11259999999999,0.047030000000000002,122.92100000000001,129.65100000000001,136.38200000000001,143.113,149.84299999999999,156.57400000000001,163.304
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,133,1,143.5795,0.04709,123.29600000000001,130.05699999999999,136.81800000000001,143.58000000000001,150.34100000000001,157.102,163.863
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,134,1,144.05109999999999,0.047140000000000001,123.679,130.47,137.261,144.05099999999999,150.84200000000001,157.63200000000001,164.423
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,135,1,144.52760000000001,0.047190000000000003,124.06699999999999,130.887,137.70699999999999,144.52799999999999,151.34800000000001,158.16800000000001,164.988
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,136,1,145.0093,0.047230000000000001,124.46299999999999,131.31200000000001,138.161,145.00899999999999,151.858,158.70699999999999,165.55600000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,137,1,145.49639999999999,0.047280000000000003,124.85899999999999,131.738,138.61699999999999,145.49600000000001,152.375,159.255,166.13399999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,138,1,145.98910000000001,0.047320000000000001,125.264,132.173,139.08099999999999,145.989,152.89699999999999,159.80600000000001,166.714
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,139,1,146.48779999999999,0.047359999999999999,125.675,132.61199999999999,139.55000000000001,146.488,153.42500000000001,160.363,167.30099999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,140,1,146.99270000000001,0.047399999999999998,126.09,133.05799999999999,140.02500000000001,146.99299999999999,153.96,160.928,167.89500000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,141,1,147.50409999999999,0.047440000000000003,126.511,133.50899999999999,140.50700000000001,147.50399999999999,154.50200000000001,161.499,168.49700000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,142,1,148.0224,0.047469999999999998,126.943,133.96899999999999,140.99600000000001,148.02199999999999,155.04900000000001,162.07599999999999,169.102
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,143,1,148.5478,0.047500000000000001,127.38,134.43600000000001,141.49199999999999,148.548,155.60400000000001,162.66,169.71600000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,144,1,149.08070000000001,0.047530000000000003,127.82299999999999,134.90899999999999,141.995,149.08099999999999,156.167,163.25200000000001,170.33799999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,145,1,149.62119999999999,0.047550000000000002,128.27799999999999,135.392,142.50700000000001,149.62100000000001,156.73599999999999,163.85,170.965
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,146,1,150.1694,0.047579999999999997,128.73400000000001,135.87899999999999,143.024,150.16900000000001,157.31399999999999,164.46,171.60499999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,147,1,150.72559999999999,0.04759,129.20699999999999,136.38,143.553,150.726,157.899,165.072,172.245
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,148,1,151.28989999999999,0.04761,129.68100000000001,136.88399999999999,144.08699999999999,151.29,158.49299999999999,165.696,172.899
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,149,1,151.8623,0.047620000000000003,130.167,137.399,144.631,151.86199999999999,159.09399999999999,166.32599999999999,173.55699999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,150,1,152.4425,0.047629999999999999,130.66,137.92099999999999,145.18199999999999,152.44200000000001,159.703,166.964,174.22499999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,151,1,153.02979999999999,0.047629999999999999,131.16300000000001,138.452,145.74100000000001,153.03,160.31899999999999,167.607,174.89599999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,152,1,153.6234,0.047640000000000002,131.66800000000001,138.98599999999999,146.30500000000001,153.62299999999999,160.94200000000001,168.261,175.57900000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,153,1,154.22229999999999,0.047629999999999999,132.185,139.53100000000001,146.87700000000001,154.22200000000001,161.56800000000001,168.91399999999999,176.25899999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,154,1,154.82579999999999,0.047629999999999999,132.703,140.077,147.45099999999999,154.82599999999999,162.19999999999999,169.57499999999999,176.94900000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,155,1,155.43289999999999,0.047620000000000003,133.22800000000001,140.62899999999999,148.03100000000001,155.43299999999999,162.83500000000001,170.23599999999999,177.63800000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,156,1,156.04259999999999,0.047600000000000003,133.76,141.18700000000001,148.61500000000001,156.04300000000001,163.47,170.898,178.32499999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,157,1,156.65389999999999,0.047579999999999997,134.29300000000001,141.74700000000001,149.19999999999999,156.654,164.107,171.56100000000001,179.01499999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,158,1,157.26599999999999,0.047559999999999998,134.827,142.30699999999999,149.786,157.26599999999999,164.74600000000001,172.22499999999999,179.70500000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,159,1,157.8775,0.047539999999999999,135.36099999999999,142.86699999999999,150.37200000000001,157.87799999999999,165.38300000000001,172.88800000000001,180.39400000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,160,1,158.4871,0.047509999999999997,135.898,143.428,150.95699999999999,158.48699999999999,166.017,173.547,181.07599999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,161,1,159.09370000000001,0.047469999999999998,136.43700000000001,143.989,151.542,159.09399999999999,166.64599999999999,174.19800000000001,181.75
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,162,1,159.6962,0.047440000000000003,136.96799999999999,144.54400000000001,152.12,159.696,167.27199999999999,174.84800000000001,182.42400000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,163,1,160.29390000000001,0.047399999999999998,137.5,145.09800000000001,152.696,160.29400000000001,167.892,175.49,183.08799999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,164,1,160.8861,0.047350000000000003,138.03200000000001,145.65,153.268,160.886,168.50399999999999,176.12200000000001,183.74
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,165,1,161.47200000000001,0.047300000000000002,138.559,146.197,153.834,161.47200000000001,169.11,176.74700000000001,184.38499999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,166,1,162.0505,0.04725,139.08000000000001,146.73699999999999,154.39400000000001,162.05000000000001,169.70699999999999,177.364,185.02099999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,167,1,162.6207,0.047199999999999999,139.59399999999999,147.26900000000001,154.94499999999999,162.62100000000001,170.29599999999999,177.97200000000001,185.648
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,168,1,163.1816,0.047140000000000001,140.10400000000001,147.797,155.489,163.18199999999999,170.874,178.566,186.25899999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,169,1,163.7321,0.047070000000000001,140.61099999999999,148.31800000000001,156.02500000000001,163.732,171.43899999999999,179.14599999999999,186.85300000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,170,1,164.27170000000001,0.047010000000000003,141.10400000000001,148.827,156.54900000000001,164.27199999999999,171.994,179.71700000000001,187.43899999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,171,1,164.79939999999999,0.046940000000000003,141.59200000000001,149.328,157.06399999999999,164.79900000000001,172.535,180.27099999999999,188.006
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,172,1,165.31450000000001,0.046870000000000002,142.07,149.81800000000001,157.566,165.31399999999999,173.06299999999999,180.81100000000001,188.559
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,173,1,165.81649999999999,0.046789999999999998,142.541,150.29900000000001,158.05799999999999,165.816,173.57499999999999,181.334,189.09200000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,174,1,166.30500000000001,0.046710000000000002,143.001,150.76900000000001,158.53700000000001,166.30500000000001,174.07300000000001,181.84100000000001,189.60900000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,175,1,166.7799,0.046629999999999998,143.44900000000001,151.226,159.00299999999999,166.78,174.55699999999999,182.334,190.11099999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,176,1,167.2415,0.046550000000000001,143.886,151.67099999999999,159.45599999999999,167.24199999999999,175.02699999999999,182.81200000000001,190.59700000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,177,1,167.68989999999999,0.046460000000000001,144.31700000000001,152.108,159.899,167.69,175.48099999999999,183.27199999999999,191.06299999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,178,1,168.12549999999999,0.046370000000000001,144.738,152.53399999999999,160.33000000000001,168.126,175.92099999999999,183.71700000000001,191.51300000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,179,1,168.54820000000001,0.046280000000000002,145.14699999999999,152.947,160.74799999999999,168.548,176.34899999999999,184.149,191.94900000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,180,1,168.958,0.046190000000000002,145.54499999999999,153.35,161.154,168.958,176.762,184.566,192.37100000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,181,1,169.35489999999999,0.046089999999999999,145.93799999999999,153.744,161.54900000000001,169.35499999999999,177.16,184.96600000000001,192.77199999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,182,1,169.7389,0.045990000000000003,146.32,154.126,161.93299999999999,169.739,177.54499999999999,185.351,193.15799999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,183,1,170.10990000000001,0.04589,146.691,154.49700000000001,162.304,170.11,177.916,185.72300000000001,193.529
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,184,1,170.46799999999999,0.045789999999999997,147.05099999999999,154.857,162.66200000000001,170.46799999999999,178.274,186.07900000000001,193.88499999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,185,1,170.81360000000001,0.045690000000000001,147.4,155.20500000000001,163.00899999999999,170.81399999999999,178.61799999999999,186.423,194.227
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,186,1,171.14680000000001,0.045589999999999999,147.739,155.542,163.34399999999999,171.14699999999999,178.94900000000001,186.75200000000001,194.55500000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,187,1,171.46799999999999,0.04548,148.07300000000001,155.87100000000001,163.66999999999999,171.46799999999999,179.26599999999999,187.065,194.863
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,188,1,171.7773,0.045379999999999997,148.392,156.18700000000001,163.982,171.77699999999999,179.57300000000001,187.36799999999999,195.16300000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,189,1,172.07480000000001,0.045269999999999998,148.70500000000001,156.495,164.285,172.07499999999999,179.86500000000001,187.654,195.44399999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,190,1,172.36060000000001,0.045159999999999999,149.00899999999999,156.79300000000001,164.577,172.36099999999999,180.14400000000001,187.928,195.71199999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,191,1,172.6345,0.045060000000000003,149.298,157.077,164.85599999999999,172.63399999999999,180.41300000000001,188.19200000000001,195.971
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,192,1,172.89670000000001,0.044949999999999997,149.58199999999999,157.35300000000001,165.125,172.89699999999999,180.66800000000001,188.44,196.21199999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,193,1,173.14699999999999,0.044839999999999998,149.85499999999999,157.619,165.38300000000001,173.14699999999999,180.911,188.67500000000001,196.43899999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,194,1,173.38560000000001,0.044729999999999999,150.119,157.875,165.63,173.386,181.14099999999999,188.89699999999999,196.65199999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,195,1,173.61259999999999,0.04462,150.37299999999999,158.119,165.86600000000001,173.613,181.35900000000001,189.10599999999999,196.852
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,196,1,173.828,0.044510000000000001,150.61699999999999,158.35400000000001,166.09100000000001,173.828,181.565,189.30199999999999,197.03899999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,197,1,174.03210000000001,0.044400000000000002,150.851,158.578,166.30500000000001,174.03200000000001,181.75899999999999,189.48599999999999,197.21299999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,198,1,174.2251,0.044290000000000003,151.07599999999999,158.792,166.50899999999999,174.22499999999999,181.94200000000001,189.65799999999999,197.374
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,199,1,174.40710000000001,0.044179999999999997,151.291,158.99600000000001,166.702,174.40700000000001,182.11199999999999,189.81800000000001,197.523
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,200,1,174.57839999999999,0.044069999999999998,151.49700000000001,159.191,166.88499999999999,174.578,182.27199999999999,189.96600000000001,197.65899999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,201,1,174.73920000000001,0.043959999999999999,151.69499999999999,159.376,167.05799999999999,174.739,182.42099999999999,190.102,197.78399999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,202,1,174.8896,0.04385,151.88300000000001,159.55199999999999,167.221,174.89,182.559,190.227,197.89599999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,203,1,175.0301,0.043749999999999997,152.05699999999999,159.715,167.37299999999999,175.03,182.68799999999999,190.345,198.00299999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,204,1,175.1609,0.043639999999999998,152.22900000000001,159.87299999999999,167.517,175.161,182.80500000000001,190.44900000000001,198.09299999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,205,1,175.2824,0.043529999999999999,152.392,160.02199999999999,167.65199999999999,175.28200000000001,182.91200000000001,190.542,198.173
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,206,1,175.39510000000001,0.043430000000000003,152.54300000000001,160.16,167.77799999999999,175.39500000000001,183.01300000000001,190.63,198.24700000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,207,1,175.49950000000001,0.043319999999999997,152.69200000000001,160.29400000000001,167.89699999999999,175.5,183.102,190.70500000000001,198.30699999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,208,1,175.5959,0.043220000000000001,152.828,160.417,168.00700000000001,175.596,183.185,190.774,198.364
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,209,1,175.685,0.043110000000000002,152.964,160.53700000000001,168.11099999999999,175.685,183.25899999999999,190.833,198.40600000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,210,1,175.7672,0.04301,153.08799999999999,160.648,168.20699999999999,175.767,183.327,190.887,198.446
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,211,1,175.8432,0.042909999999999997,153.20699999999999,160.75200000000001,168.298,175.84299999999999,183.38900000000001,190.934,198.47900000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,212,1,175.91329999999999,0.042810000000000001,153.321,160.852,168.38200000000001,175.91300000000001,183.44399999999999,190.97499999999999,198.506
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,213,1,175.97810000000001,0.042709999999999998,153.43,160.946,168.46199999999999,175.97800000000001,183.494,191.01,198.52600000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,214,1,176.03800000000001,0.042610000000000002,153.535,161.036,168.53700000000001,176.03800000000001,183.53899999999999,191.04,198.541
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,215,1,176.09350000000001,0.042509999999999999,153.636,161.12200000000001,168.608,176.09399999999999,183.57900000000001,191.065,198.55099999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,216,1,176.14490000000001,0.042410000000000003,153.73400000000001,161.20400000000001,168.67500000000001,176.14500000000001,183.61500000000001,191.08600000000001,198.55600000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,217,1,176.1925,0.042320000000000003,153.82300000000001,161.28,168.73599999999999,176.19200000000001,183.649,191.10499999999999,198.56200000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,218,1,176.23679999999999,0.042220000000000001,153.91499999999999,161.35499999999999,168.79599999999999,176.23699999999999,183.678,191.11799999999999,198.559
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,219,1,176.27789999999999,0.042130000000000001,153.99799999999999,161.42500000000001,168.851,176.27799999999999,183.70400000000001,191.131,198.55799999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,220,1,176.31620000000001,0.042040000000000001,154.07900000000001,161.49199999999999,168.904,176.316,183.72900000000001,191.14099999999999,198.553
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,221,1,176.3518,0.041950000000000001,154.15799999999999,161.55600000000001,168.95400000000001,176.352,183.75,191.148,198.54599999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,222,1,176.38509999999999,0.041849999999999998,154.24,161.62200000000001,169.00299999999999,176.38499999999999,183.767,191.149,198.53
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,223,1,176.4162,0.041770000000000002,154.309,161.678,169.047,176.416,183.785,191.154,198.523
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,224,1,176.4453,0.041680000000000002,154.38300000000001,161.73699999999999,169.09100000000001,176.44499999999999,183.8,191.154,198.50800000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,225,1,176.47239999999999,0.041590000000000002,154.45400000000001,161.79300000000001,169.13300000000001,176.47200000000001,183.81200000000001,191.15100000000001,198.49100000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,226,1,176.49760000000001,0.041500000000000002,154.524,161.84800000000001,169.173,176.49799999999999,183.822,191.14699999999999,198.47200000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,227,1,176.52109999999999,0.041419999999999998,154.58699999999999,161.898,169.21,176.52099999999999,183.833,191.14400000000001,198.45599999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx,male,month,228,1,176.54320000000001,0.041340000000000002,154.648,161.947,169.245,176.54300000000001,183.84100000000001,191.14,198.43799999999999

Can't render this file because it has a wrong number of fields in line 80.

View File

@ -57,7 +57,6 @@ https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standard
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,58,-0.90059999999999996,6.0823,0.23080999999999999,3.6,4.0999999999999996,4.9000000000000004,6.1,7.9,11,18
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,59,-0.90559999999999996,6.0843999999999996,0.23182,3.5,4.0999999999999996,4.9000000000000004,6.1,7.9,11.1,18.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,female,month,60,-0.91049999999999998,6.0865,0.23280000000000001,3.5,4.0999999999999996,4.9000000000000004,6.1,7.9,11.2,18.5
source,gender,age_unit,age,l,m,s,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,3,-0.30330000000000001,7.6898999999999997,0.17019999999999999,4.8,5.6,6.5,7.7,9.1999999999999993,11,13.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,4,-0.32779999999999998,7.4968000000000004,0.17097000000000001,4.7,5.4,6.3,7.5,8.9,10.8,13.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,male,month,5,-0.3503,7.3207000000000004,0.17166999999999999,4.5999999999999996,5.3,6.2,7.3,8.6999999999999993,10.6,12.9

1 source gender age_unit age l m s sd3neg sd2neg sd1neg sd0 sd1 sd2 sd3
57 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 58 -0.90059999999999996 6.0823 0.23080999999999999 3.6 4.0999999999999996 4.9000000000000004 6.1 7.9 11 18
58 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 59 -0.90559999999999996 6.0843999999999996 0.23182 3.5 4.0999999999999996 4.9000000000000004 6.1 7.9 11.1 18.2
59 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx female month 60 -0.91049999999999998 6.0865 0.23280000000000001 3.5 4.0999999999999996 4.9000000000000004 6.1 7.9 11.2 18.5
source gender age_unit age l m s sd3neg sd2neg sd1neg sd0 sd1 sd2 sd3
60 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 3 -0.30330000000000001 7.6898999999999997 0.17019999999999999 4.8 5.6 6.5 7.7 9.1999999999999993 11 13.4
61 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 4 -0.32779999999999998 7.4968000000000004 0.17097000000000001 4.7 5.4 6.3 7.5 8.9 10.8 13.1
62 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx male month 5 -0.3503 7.3207000000000004 0.17166999999999999 4.5999999999999996 5.3 6.2 7.3 8.6999999999999993 10.6 12.9

View File

@ -57,7 +57,6 @@ https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standard
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,58,-0.2359,8.7824000000000009,0.25633,4.3,5.4,6.8,8.8000000000000007,11.4,15.2,20.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,59,-0.23630000000000001,8.8061000000000007,0.25761000000000001,4.3,5.4,6.9,8.8000000000000007,11.5,15.3,20.7
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,female,month,60,-0.23680000000000001,8.8298000000000005,0.25886999999999999,4.3,5.4,6.9,8.8000000000000007,11.5,15.3,20.8
source,gender,age_unit,age,l,m,s,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,3,0.0027000000000000001,9.7638999999999996,0.16617999999999999,5.9,7,8.3000000000000007,9.8000000000000007,11.5,13.6,16.100000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,4,-0.016500000000000001,9.5839999999999996,0.17263999999999999,5.7,6.8,8.1,9.6,11.4,13.5,16.100000000000001
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,male,month,5,-0.032599999999999997,9.3885000000000005,0.17824000000000001,5.5,6.6,7.9,9.4,11.2,13.4,16.100000000000001

1 source gender age_unit age l m s sd3neg sd2neg sd1neg sd0 sd1 sd2 sd3
57 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 58 -0.2359 8.7824000000000009 0.25633 4.3 5.4 6.8 8.8000000000000007 11.4 15.2 20.5
58 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 59 -0.23630000000000001 8.8061000000000007 0.25761000000000001 4.3 5.4 6.9 8.8000000000000007 11.5 15.3 20.7
59 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx female month 60 -0.23680000000000001 8.8298000000000005 0.25886999999999999 4.3 5.4 6.9 8.8000000000000007 11.5 15.3 20.8
source gender age_unit age l m s sd3neg sd2neg sd1neg sd0 sd1 sd2 sd3
60 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 3 0.0027000000000000001 9.7638999999999996 0.16617999999999999 5.9 7 8.3000000000000007 9.8000000000000007 11.5 13.6 16.100000000000001
61 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 4 -0.016500000000000001 9.5839999999999996 0.17263999999999999 5.7 6.8 8.1 9.6 11.4 13.5 16.100000000000001
62 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx male month 5 -0.032599999999999997 9.3885000000000005 0.17824000000000001 5.5 6.6 7.9 9.4 11.2 13.4 16.100000000000001

View File

@ -13,7 +13,6 @@ https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standard
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-13-weeks_zscores.xlsx,female,week,11,0.064799999999999996,5.5294999999999996,0.12770000000000001,3.8,4.3,4.9000000000000004,5.5,6.3,7.1,8.1
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-13-weeks_zscores.xlsx,female,week,12,0.052499999999999998,5.6882999999999999,0.12691,3.9,4.4000000000000004,5,5.7,6.5,7.3,8.3000000000000007
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-13-weeks_zscores.xlsx,female,week,13,0.0407,5.8392999999999997,0.12622,4,4.5,5.0999999999999996,5.8,6.6,7.5,8.5
source,gender,age_unit,age,l,m,s,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,0,0.38090000000000002,3.2322000000000002,0.14171,2,2.4,2.8,3.2,3.7,4.2,4.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,1,0.1714,4.1872999999999996,0.13724,2.7,3.2,3.6,4.2,4.8,5.5,6.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,2,0.096199999999999994,5.1281999999999996,0.13,3.4,3.9,4.5,5.0999999999999996,5.8,6.6,7.5
@ -75,68 +74,66 @@ https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standard
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,58,-0.34920000000000001,17.868600000000001,0.14674999999999999,11.9,13.5,15.5,17.899999999999999,20.8,24.4,28.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,59,-0.35049999999999998,18.044499999999999,0.14748,12,13.6,15.6,18,21,24.6,29.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_girls_0-to-5-years_zscores.xlsx,female,month,60,-0.3518,18.2193,0.14821000000000001,12.1,13.7,15.8,18.2,21.2,24.9,29.5
source,gender,age_unit,age,l,m,s,sd4neg,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3,sd4
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,61,-0.46810000000000002,18.257899999999999,0.14294999999999999,10.742000000000001,12.352,13.961,15.898999999999999,18.257999999999999,21.169,24.817,29.468,34.118000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,62,-0.47110000000000002,18.4329,0.14349999999999999,10.827999999999999,12.456,14.083,16.042999999999999,18.433,21.385999999999999,25.09,29.823,34.555
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,63,-0.47420000000000001,18.607299999999999,0.14404,10.914999999999999,12.558999999999999,14.204000000000001,16.187000000000001,18.606999999999999,21.600999999999999,25.363,30.178000000000001,34.991999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,64,-0.4773,18.781099999999999,0.14459,11,12.662000000000001,14.324,16.329999999999998,18.780999999999999,21.817,25.637,30.535,35.433
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,65,-0.4803,18.954499999999999,0.14513999999999999,11.085000000000001,12.763999999999999,14.444000000000001,16.472999999999999,18.954000000000001,22.032,25.911000000000001,30.893000000000001,35.875999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,66,-0.4834,19.127600000000001,0.14568999999999999,11.169,12.866,14.564,16.616,19.128,22.247,26.184999999999999,31.253,36.320999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,67,-0.4864,19.3004,0.14624000000000001,11.253,12.968,14.683,16.757999999999999,19.3,22.462,26.46,31.614000000000001,36.768000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,68,-0.4894,19.472999999999999,0.14679,11.337,13.069000000000001,14.801,16.899000000000001,19.472999999999999,22.677,26.734999999999999,31.977,37.218000000000004
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,69,-0.4924,19.645499999999998,0.14735000000000001,11.419,13.169,14.919,17.041,19.646000000000001,22.893000000000001,27.010999999999999,32.341999999999999,37.673000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,70,-0.49540000000000001,19.818000000000001,0.1479,11.503,13.27,15.038,17.181999999999999,19.818000000000001,23.108000000000001,27.288,32.707999999999998,38.128999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,71,-0.49840000000000001,19.9908,0.14845,11.586,13.371,15.156000000000001,17.323,19.991,23.324000000000002,27.565999999999999,33.076999999999998,38.588999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,72,-0.50129999999999997,20.163900000000002,0.14899999999999999,11.669,13.471,15.273999999999999,17.465,20.164000000000001,23.541,27.844999999999999,33.448,39.051000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,73,-0.50429999999999997,20.337700000000002,0.14954999999999999,11.752000000000001,13.571999999999999,15.393000000000001,17.606999999999999,20.338000000000001,23.759,28.126000000000001,33.822000000000003,39.518999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,74,-0.50719999999999998,20.5124,0.15010000000000001,11.835000000000001,13.673,15.512,17.75,20.512,23.978000000000002,28.408999999999999,34.200000000000003,39.991
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,75,-0.51,20.688500000000001,0.15065000000000001,11.919,13.775,15.632,17.893000000000001,20.687999999999999,24.199000000000002,28.695,34.581000000000003,40.468000000000004
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,76,-0.51290000000000002,20.866099999999999,0.1512,12.004,13.878,15.753,18.038,20.866,24.422999999999998,28.983000000000001,34.968000000000004,40.953000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,77,-0.51570000000000005,21.0457,0.15175,12.089,13.981999999999999,15.875,18.184999999999999,21.045999999999999,24.648,29.276,35.36,41.442999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,78,-0.51849999999999996,21.227399999999999,0.15229999999999999,12.175000000000001,14.087,15.997999999999999,18.332999999999998,21.227,24.876999999999999,29.571999999999999,35.756999999999998,41.942
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,79,-0.52129999999999999,21.411300000000001,0.15284,12.263,14.193,16.123999999999999,18.483000000000001,21.411000000000001,25.108000000000001,29.870999999999999,36.158000000000001,42.445999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,80,-0.52400000000000002,21.597899999999999,0.15339,12.352,14.301,16.25,18.635000000000002,21.597999999999999,25.343,30.175999999999998,36.567999999999998,42.96
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,81,-0.52680000000000005,21.787199999999999,0.15393000000000001,12.443,14.411,16.379000000000001,18.79,21.786999999999999,25.581,30.484999999999999,36.982999999999997,43.481999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,82,-0.52939999999999998,21.979500000000002,0.15448000000000001,12.534000000000001,14.522,16.510000000000002,18.946999999999999,21.98,25.823,30.798999999999999,37.405999999999999,44.012999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,83,-0.53210000000000002,22.1751,0.15501999999999999,12.627000000000001,14.635,16.643000000000001,19.106000000000002,22.175000000000001,26.068999999999999,31.117999999999999,37.835999999999999,44.554000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,84,-0.53469999999999995,22.373999999999999,0.15556,12.722,14.75,16.779,19.268000000000001,22.373999999999999,26.32,31.443000000000001,38.274000000000001,45.103999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,85,-0.53720000000000001,22.5762,0.15609999999999999,12.819000000000001,14.867000000000001,16.916,19.433,22.576000000000001,26.574000000000002,31.773,38.719000000000001,45.664000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,86,-0.53979999999999995,22.781600000000001,0.15662999999999999,12.917,14.987,17.056000000000001,19.600999999999999,22.782,26.832000000000001,32.109000000000002,39.170999999999999,46.231999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,87,-0.5423,22.990400000000001,0.15717,13.016999999999999,15.108000000000001,17.199000000000002,19.771999999999998,22.99,27.094999999999999,32.450000000000003,39.631999999999998,46.813000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,88,-0.54469999999999996,23.202500000000001,0.15770000000000001,13.119,15.231,17.343,19.945,23.202000000000002,27.361999999999998,32.795999999999999,40.098999999999997,47.401000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,89,-0.54710000000000003,23.417999999999999,0.15823000000000001,13.222,15.356,17.489999999999998,20.120999999999999,23.417999999999999,27.632999999999999,33.149000000000001,40.573999999999998,48
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,90,-0.54949999999999999,23.636900000000001,0.15876000000000001,13.327,15.483000000000001,17.638999999999999,20.298999999999999,23.637,27.908000000000001,33.506999999999998,41.058,48.61
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,91,-0.55179999999999996,23.859300000000001,0.15928,13.433999999999999,15.612,17.791,20.481000000000002,23.859000000000002,28.187999999999999,33.869999999999997,41.548999999999999,49.228000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,92,-0.55410000000000004,24.0853,0.1598,13.542,15.744,17.946000000000002,20.666,24.085000000000001,28.472000000000001,34.238999999999997,42.048000000000002,49.856999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,93,-0.55630000000000002,24.314900000000002,0.16031999999999999,13.651999999999999,15.877000000000001,18.102,20.853000000000002,24.315000000000001,28.760999999999999,34.613999999999997,42.555,50.497
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,94,-0.5585,24.548200000000001,0.16084000000000001,13.763999999999999,16.013000000000002,18.262,21.044,24.547999999999998,29.053999999999998,34.996000000000002,43.072000000000003,51.149000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,95,-0.56059999999999999,24.785299999999999,0.16134999999999999,13.878,16.151,18.423999999999999,21.238,24.785,29.352,35.383000000000003,43.595999999999997,51.808999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,96,-0.56269999999999998,25.026199999999999,0.16186,13.994,16.291,18.588000000000001,21.434999999999999,25.026,29.655000000000001,35.776000000000003,44.128,52.481000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,97,-0.56469999999999998,25.271000000000001,0.16236999999999999,14.112,16.434000000000001,18.756,21.635000000000002,25.271000000000001,29.963000000000001,36.176000000000002,44.67,53.164000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,98,-0.56669999999999998,25.5197,0.16286999999999999,14.231999999999999,16.579000000000001,18.925999999999998,21.838000000000001,25.52,30.274999999999999,36.582000000000001,45.22,53.857999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,99,-0.56859999999999999,25.772099999999998,0.16336999999999999,14.353,16.725999999999999,19.097999999999999,22.045000000000002,25.771999999999998,30.593,36.994,45.777999999999999,54.561999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,100,-0.57040000000000002,26.028400000000001,0.16386000000000001,14.477,16.875,19.274000000000001,22.254000000000001,26.027999999999999,30.914000000000001,37.411999999999999,46.343000000000004,55.274999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,101,-0.57220000000000004,26.2883,0.16435,14.602,17.027000000000001,19.452000000000002,22.466999999999999,26.288,31.241,37.835999999999999,46.917999999999999,55.999000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,102,-0.57399999999999995,26.5519,0.16483,14.73,17.181000000000001,19.632000000000001,22.683,26.552,31.571999999999999,38.265000000000001,47.499000000000002,56.734000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,103,-0.57569999999999999,26.818999999999999,0.16531999999999999,14.859,17.337,19.815000000000001,22.901,26.818999999999999,31.907,38.701999999999998,48.091999999999999,57.481000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,104,-0.57730000000000004,27.089600000000001,0.16578999999999999,14.989000000000001,17.495000000000001,20.001000000000001,23.123000000000001,27.09,32.247,39.142000000000003,48.688000000000002,58.232999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,105,-0.57889999999999997,27.363499999999998,0.16625999999999999,15.122,17.655000000000001,20.187999999999999,23.347000000000001,27.364000000000001,32.591000000000001,39.588999999999999,49.292999999999999,58.997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,106,-0.58040000000000003,27.640599999999999,0.16672999999999999,15.255000000000001,17.817,20.378,23.574000000000002,27.640999999999998,32.939,40.040999999999997,49.905999999999999,59.771000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,107,-0.58189999999999997,27.9208,0.16719000000000001,15.391,17.98,20.57,23.803000000000001,27.920999999999999,33.29,40.497,50.524999999999999,60.552
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,108,-0.58330000000000004,28.204000000000001,0.16764000000000001,15.528,18.146000000000001,20.763999999999999,24.035,28.204000000000001,33.645000000000003,40.957999999999998,51.149000000000001,61.34
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,109,-0.5847,28.490100000000002,0.16808999999999999,15.666,18.312999999999999,20.96,24.27,28.49,34.003999999999998,41.423999999999999,51.780999999999999,62.137999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,110,-0.58589999999999998,28.7791,0.16854,15.805,18.481999999999999,21.158000000000001,24.506,28.779,34.366999999999997,41.895000000000003,52.418999999999997,62.944000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,111,-0.58720000000000006,29.071100000000001,0.16897000000000001,15.946999999999999,18.652999999999999,21.359000000000002,24.745000000000001,29.071000000000002,34.732999999999997,42.37,53.063000000000002,63.755000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,112,-0.58830000000000005,29.366299999999999,0.16941000000000001,16.088999999999999,18.824999999999999,21.561,24.986999999999998,29.366,35.103999999999999,42.850999999999999,53.713999999999999,64.578000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,113,-0.58950000000000002,29.6646,0.16983000000000001,16.234000000000002,19,21.765999999999998,25.231999999999999,29.664999999999999,35.478000000000002,43.335000000000001,54.371000000000002,65.406999999999996
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,114,-0.59050000000000002,29.9663,0.17025000000000001,16.38,19.175999999999998,21.972999999999999,25.478999999999999,29.966000000000001,35.856000000000002,43.826000000000001,55.034999999999997,66.244
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,115,-0.59150000000000003,30.2715,0.17066000000000001,16.527999999999999,19.355,22.183,25.728999999999999,30.271999999999998,36.238,44.320999999999998,55.704999999999998,67.088999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,116,-0.59250000000000003,30.580500000000001,0.17107,16.678000000000001,19.536000000000001,22.395,25.981999999999999,30.58,36.625,44.823,56.384999999999998,67.947000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,117,-0.59340000000000004,30.8934,0.17146,16.829999999999998,19.72,22.61,26.239000000000001,30.893000000000001,37.017000000000003,45.329000000000001,57.069000000000003,68.808999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,118,-0.59419999999999995,31.2105,0.17186000000000001,16.983000000000001,19.905999999999999,22.827999999999999,26.498999999999999,31.21,37.414000000000001,45.843000000000004,57.764000000000003,69.685000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,119,-0.59499999999999997,31.5319,0.17224,17.14,20.094999999999999,23.048999999999999,26.763000000000002,31.532,37.814999999999998,46.363,58.465000000000003,70.567999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,120,-0.5958,31.857800000000001,0.17262,17.297999999999998,20.286000000000001,23.274000000000001,27.030999999999999,31.858000000000001,38.222999999999999,46.89,59.177,71.465000000000003
source,gender,age_unit,age,l,m,s,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,61,-0.46810000000000002,18.257899999999999,0.14294999999999999,12.352,13.961,15.898999999999999,18.257999999999999,21.169,24.817,29.468
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,62,-0.47110000000000002,18.4329,0.14349999999999999,12.456,14.083,16.042999999999999,18.433,21.385999999999999,25.09,29.823
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,63,-0.47420000000000001,18.607299999999999,0.14404,12.558999999999999,14.204000000000001,16.187000000000001,18.606999999999999,21.600999999999999,25.363,30.178000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,64,-0.4773,18.781099999999999,0.14459,12.662000000000001,14.324,16.329999999999998,18.780999999999999,21.817,25.637,30.535
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,65,-0.4803,18.954499999999999,0.14513999999999999,12.763999999999999,14.444000000000001,16.472999999999999,18.954000000000001,22.032,25.911000000000001,30.893000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,66,-0.4834,19.127600000000001,0.14568999999999999,12.866,14.564,16.616,19.128,22.247,26.184999999999999,31.253
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,67,-0.4864,19.3004,0.14624000000000001,12.968,14.683,16.757999999999999,19.3,22.462,26.46,31.614000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,68,-0.4894,19.472999999999999,0.14679,13.069000000000001,14.801,16.899000000000001,19.472999999999999,22.677,26.734999999999999,31.977
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,69,-0.4924,19.645499999999998,0.14735000000000001,13.169,14.919,17.041,19.646000000000001,22.893000000000001,27.010999999999999,32.341999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,70,-0.49540000000000001,19.818000000000001,0.1479,13.27,15.038,17.181999999999999,19.818000000000001,23.108000000000001,27.288,32.707999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,71,-0.49840000000000001,19.9908,0.14845,13.371,15.156000000000001,17.323,19.991,23.324000000000002,27.565999999999999,33.076999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,72,-0.50129999999999997,20.163900000000002,0.14899999999999999,13.471,15.273999999999999,17.465,20.164000000000001,23.541,27.844999999999999,33.448
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,73,-0.50429999999999997,20.337700000000002,0.14954999999999999,13.571999999999999,15.393000000000001,17.606999999999999,20.338000000000001,23.759,28.126000000000001,33.822000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,74,-0.50719999999999998,20.5124,0.15010000000000001,13.673,15.512,17.75,20.512,23.978000000000002,28.408999999999999,34.200000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,75,-0.51,20.688500000000001,0.15065000000000001,13.775,15.632,17.893000000000001,20.687999999999999,24.199000000000002,28.695,34.581000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,76,-0.51290000000000002,20.866099999999999,0.1512,13.878,15.753,18.038,20.866,24.422999999999998,28.983000000000001,34.968000000000004
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,77,-0.51570000000000005,21.0457,0.15175,13.981999999999999,15.875,18.184999999999999,21.045999999999999,24.648,29.276,35.36
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,78,-0.51849999999999996,21.227399999999999,0.15229999999999999,14.087,15.997999999999999,18.332999999999998,21.227,24.876999999999999,29.571999999999999,35.756999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,79,-0.52129999999999999,21.411300000000001,0.15284,14.193,16.123999999999999,18.483000000000001,21.411000000000001,25.108000000000001,29.870999999999999,36.158000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,80,-0.52400000000000002,21.597899999999999,0.15339,14.301,16.25,18.635000000000002,21.597999999999999,25.343,30.175999999999998,36.567999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,81,-0.52680000000000005,21.787199999999999,0.15393000000000001,14.411,16.379000000000001,18.79,21.786999999999999,25.581,30.484999999999999,36.982999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,82,-0.52939999999999998,21.979500000000002,0.15448000000000001,14.522,16.510000000000002,18.946999999999999,21.98,25.823,30.798999999999999,37.405999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,83,-0.53210000000000002,22.1751,0.15501999999999999,14.635,16.643000000000001,19.106000000000002,22.175000000000001,26.068999999999999,31.117999999999999,37.835999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,84,-0.53469999999999995,22.373999999999999,0.15556,14.75,16.779,19.268000000000001,22.373999999999999,26.32,31.443000000000001,38.274000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,85,-0.53720000000000001,22.5762,0.15609999999999999,14.867000000000001,16.916,19.433,22.576000000000001,26.574000000000002,31.773,38.719000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,86,-0.53979999999999995,22.781600000000001,0.15662999999999999,14.987,17.056000000000001,19.600999999999999,22.782,26.832000000000001,32.109000000000002,39.170999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,87,-0.5423,22.990400000000001,0.15717,15.108000000000001,17.199000000000002,19.771999999999998,22.99,27.094999999999999,32.450000000000003,39.631999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,88,-0.54469999999999996,23.202500000000001,0.15770000000000001,15.231,17.343,19.945,23.202000000000002,27.361999999999998,32.795999999999999,40.098999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,89,-0.54710000000000003,23.417999999999999,0.15823000000000001,15.356,17.489999999999998,20.120999999999999,23.417999999999999,27.632999999999999,33.149000000000001,40.573999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,90,-0.54949999999999999,23.636900000000001,0.15876000000000001,15.483000000000001,17.638999999999999,20.298999999999999,23.637,27.908000000000001,33.506999999999998,41.058
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,91,-0.55179999999999996,23.859300000000001,0.15928,15.612,17.791,20.481000000000002,23.859000000000002,28.187999999999999,33.869999999999997,41.548999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,92,-0.55410000000000004,24.0853,0.1598,15.744,17.946000000000002,20.666,24.085000000000001,28.472000000000001,34.238999999999997,42.048000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,93,-0.55630000000000002,24.314900000000002,0.16031999999999999,15.877000000000001,18.102,20.853000000000002,24.315000000000001,28.760999999999999,34.613999999999997,42.555
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,94,-0.5585,24.548200000000001,0.16084000000000001,16.013000000000002,18.262,21.044,24.547999999999998,29.053999999999998,34.996000000000002,43.072000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,95,-0.56059999999999999,24.785299999999999,0.16134999999999999,16.151,18.423999999999999,21.238,24.785,29.352,35.383000000000003,43.595999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,96,-0.56269999999999998,25.026199999999999,0.16186,16.291,18.588000000000001,21.434999999999999,25.026,29.655000000000001,35.776000000000003,44.128
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,97,-0.56469999999999998,25.271000000000001,0.16236999999999999,16.434000000000001,18.756,21.635000000000002,25.271000000000001,29.963000000000001,36.176000000000002,44.67
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,98,-0.56669999999999998,25.5197,0.16286999999999999,16.579000000000001,18.925999999999998,21.838000000000001,25.52,30.274999999999999,36.582000000000001,45.22
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,99,-0.56859999999999999,25.772099999999998,0.16336999999999999,16.725999999999999,19.097999999999999,22.045000000000002,25.771999999999998,30.593,36.994,45.777999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,100,-0.57040000000000002,26.028400000000001,0.16386000000000001,16.875,19.274000000000001,22.254000000000001,26.027999999999999,30.914000000000001,37.411999999999999,46.343000000000004
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,101,-0.57220000000000004,26.2883,0.16435,17.027000000000001,19.452000000000002,22.466999999999999,26.288,31.241,37.835999999999999,46.917999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,102,-0.57399999999999995,26.5519,0.16483,17.181000000000001,19.632000000000001,22.683,26.552,31.571999999999999,38.265000000000001,47.499000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,103,-0.57569999999999999,26.818999999999999,0.16531999999999999,17.337,19.815000000000001,22.901,26.818999999999999,31.907,38.701999999999998,48.091999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,104,-0.57730000000000004,27.089600000000001,0.16578999999999999,17.495000000000001,20.001000000000001,23.123000000000001,27.09,32.247,39.142000000000003,48.688000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,105,-0.57889999999999997,27.363499999999998,0.16625999999999999,17.655000000000001,20.187999999999999,23.347000000000001,27.364000000000001,32.591000000000001,39.588999999999999,49.292999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,106,-0.58040000000000003,27.640599999999999,0.16672999999999999,17.817,20.378,23.574000000000002,27.640999999999998,32.939,40.040999999999997,49.905999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,107,-0.58189999999999997,27.9208,0.16719000000000001,17.98,20.57,23.803000000000001,27.920999999999999,33.29,40.497,50.524999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,108,-0.58330000000000004,28.204000000000001,0.16764000000000001,18.146000000000001,20.763999999999999,24.035,28.204000000000001,33.645000000000003,40.957999999999998,51.149000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,109,-0.5847,28.490100000000002,0.16808999999999999,18.312999999999999,20.96,24.27,28.49,34.003999999999998,41.423999999999999,51.780999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,110,-0.58589999999999998,28.7791,0.16854,18.481999999999999,21.158000000000001,24.506,28.779,34.366999999999997,41.895000000000003,52.418999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,111,-0.58720000000000006,29.071100000000001,0.16897000000000001,18.652999999999999,21.359000000000002,24.745000000000001,29.071000000000002,34.732999999999997,42.37,53.063000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,112,-0.58830000000000005,29.366299999999999,0.16941000000000001,18.824999999999999,21.561,24.986999999999998,29.366,35.103999999999999,42.850999999999999,53.713999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,113,-0.58950000000000002,29.6646,0.16983000000000001,19,21.765999999999998,25.231999999999999,29.664999999999999,35.478000000000002,43.335000000000001,54.371000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,114,-0.59050000000000002,29.9663,0.17025000000000001,19.175999999999998,21.972999999999999,25.478999999999999,29.966000000000001,35.856000000000002,43.826000000000001,55.034999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,115,-0.59150000000000003,30.2715,0.17066000000000001,19.355,22.183,25.728999999999999,30.271999999999998,36.238,44.320999999999998,55.704999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,116,-0.59250000000000003,30.580500000000001,0.17107,19.536000000000001,22.395,25.981999999999999,30.58,36.625,44.823,56.384999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,117,-0.59340000000000004,30.8934,0.17146,19.72,22.61,26.239000000000001,30.893000000000001,37.017000000000003,45.329000000000001,57.069000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,118,-0.59419999999999995,31.2105,0.17186000000000001,19.905999999999999,22.827999999999999,26.498999999999999,31.21,37.414000000000001,45.843000000000004,57.764000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,119,-0.59499999999999997,31.5319,0.17224,20.094999999999999,23.048999999999999,26.763000000000002,31.532,37.814999999999998,46.363,58.465000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-girls-z-who-2007-exp_7ea58763-36a2-436d-bef0-7fcfbadd2820.xlsx,female,month,120,-0.5958,31.857800000000001,0.17262,20.286000000000001,23.274000000000001,27.030999999999999,31.858000000000001,38.222999999999999,46.89,59.177
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-13-weeks_zscores.xlsx,male,week,0,0.34870000000000001,3.3464,0.14602000000000001,2.1,2.5,2.9,3.3,3.9,4.4000000000000004,5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-13-weeks_zscores.xlsx,male,week,1,0.27760000000000001,3.4878999999999998,0.14482999999999999,2.2000000000000002,2.6,3,3.5,4,4.5999999999999996,5.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-13-weeks_zscores.xlsx,male,week,2,0.2581,3.7528999999999999,0.14141999999999999,2.4,2.8,3.2,3.8,4.3,4.9000000000000004,5.6
@ -151,7 +148,6 @@ https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standard
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-13-weeks_zscores.xlsx,male,week,11,0.184,6.0242000000000004,0.12001000000000001,4.2,4.7,5.3,6,6.8,7.6,8.5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-13-weeks_zscores.xlsx,male,week,12,0.1789,6.2019000000000002,0.1186,4.3,4.9000000000000004,5.5,6.2,7,7.8,8.8000000000000007
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-13-weeks_zscores.xlsx,male,week,13,0.17399999999999999,6.3689999999999998,0.11731999999999999,4.4000000000000004,5,5.7,6.4,7.2,8,9
source,gender,age_unit,age,l,m,s,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,0,0.34870000000000001,3.3464,0.14602000000000001,2.1,2.5,2.9,3.3,3.9,4.4000000000000004,5
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,1,0.22969999999999999,4.4709000000000003,0.13395000000000001,2.9,3.4,3.9,4.5,5.0999999999999996,5.8,6.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,2,0.19700000000000001,5.5674999999999999,0.12385,3.8,4.3,4.9000000000000004,5.6,6.3,7.1,8
@ -213,64 +209,63 @@ https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standard
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,58,-0.1447,18.007300000000001,0.13389000000000001,12.2,13.8,15.8,18,20.6,23.7,27.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,59,-0.1477,18.1722,0.13453000000000001,12.3,14,15.9,18.2,20.8,23.9,27.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/wfa_boys_0-to-5-years_zscores.xlsx,male,month,60,-0.15060000000000001,18.336600000000001,0.13517000000000001,12.4,14.1,16,18.3,21,24.2,27.9
source,gender,age_unit,age,l,m,s,sd4neg,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3,sd4
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,61,-0.2026,18.505700000000001,0.12988,11.07,12.718,14.367000000000001,16.279,18.506,21.109000000000002,24.164999999999999,27.77,31.375
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,62,-0.21299999999999999,18.680199999999999,0.13028000000000001,11.170999999999999,12.833,14.496,16.428000000000001,18.68,21.318999999999999,24.422999999999998,28.093,31.763999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,63,-0.22339999999999999,18.856300000000001,0.13067000000000001,11.272,12.95,14.627000000000001,16.577999999999999,18.856000000000002,21.53,24.683,28.42,32.156999999999996
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,64,-0.23380000000000001,19.033999999999999,0.13105,11.375999999999999,13.067,14.759,16.728999999999999,19.033999999999999,21.744,24.946000000000002,28.75,32.554000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,65,-0.24429999999999999,19.213200000000001,0.13142000000000001,11.48,13.186,14.891999999999999,16.882000000000001,19.213000000000001,21.959,25.21,29.082999999999998,32.956000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,66,-0.25480000000000003,19.393999999999998,0.13178000000000001,11.587,13.307,15.026999999999999,17.036000000000001,19.393999999999998,22.175999999999998,25.477,29.42,33.362000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,67,-0.26529999999999998,19.576499999999999,0.13213,11.694000000000001,13.429,15.164,17.192,19.576000000000001,22.395,25.747,29.76,33.771999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,68,-0.27579999999999999,19.7607,0.13245999999999999,11.804,13.553000000000001,15.302,17.350000000000001,19.760999999999999,22.614999999999998,26.018000000000001,30.102,34.186
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,69,-0.28639999999999999,19.9468,0.13278999999999999,11.914999999999999,13.679,15.442,17.509,19.946999999999999,22.838999999999999,26.292999999999999,30.449000000000002,34.604999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,70,-0.2969,20.134399999999999,0.13311000000000001,12.026999999999999,13.805,15.583,17.670000000000002,20.134,23.062999999999999,26.568999999999999,30.798999999999999,35.029000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,71,-0.3075,20.323499999999999,0.13342000000000001,12.141,13.933999999999999,15.726000000000001,17.832000000000001,20.324000000000002,23.29,26.847999999999999,31.152999999999999,35.457000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,72,-0.318,20.5137,0.13372000000000001,12.256,14.063000000000001,15.87,17.995999999999999,20.513999999999999,23.516999999999999,27.129000000000001,31.507999999999999,35.887999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,73,-0.32850000000000001,20.705200000000001,0.13402,12.371,14.193,16.015000000000001,18.16,20.704999999999998,23.747,27.411999999999999,31.867999999999999,36.323999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,74,-0.33900000000000002,20.8979,0.13431999999999999,12.488,14.324,16.16,18.326000000000001,20.898,23.978000000000002,27.696999999999999,32.231000000000002,36.765000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,75,-0.34939999999999999,21.091799999999999,0.13461999999999999,12.605,14.456,16.306999999999999,18.492000000000001,21.091999999999999,24.21,27.984000000000002,32.597999999999999,37.210999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,76,-0.35980000000000001,21.286999999999999,0.13492999999999999,12.722,14.587999999999999,16.454000000000001,18.658999999999999,21.286999999999999,24.445,28.274999999999999,32.969000000000001,37.664000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,77,-0.37009999999999998,21.4833,0.13522999999999999,12.840999999999999,14.721,16.602,18.827999999999999,21.483000000000001,24.68,28.567,33.343000000000004,38.119999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,78,-0.38040000000000002,21.681000000000001,0.13553999999999999,12.96,14.855,16.751000000000001,18.997,21.681000000000001,24.917999999999999,28.861999999999998,33.722999999999999,38.582999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,79,-0.3906,21.879899999999999,0.13586000000000001,13.079000000000001,14.99,16.899999999999999,19.167000000000002,21.88,25.158000000000001,29.161000000000001,34.106999999999999,39.054000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,80,-0.4007,22.08,0.13618,13.199,15.125,17.05,19.338000000000001,22.08,25.399000000000001,29.460999999999999,34.494999999999997,39.529000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,81,-0.41070000000000001,22.281300000000002,0.13652,13.318,15.259,17.201000000000001,19.510000000000002,22.280999999999999,25.641999999999999,29.765000000000001,34.889000000000003,40.012999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,82,-0.42070000000000002,22.483699999999999,0.13686000000000001,13.438000000000001,15.395,17.352,19.681999999999999,22.484000000000002,25.887,30.071999999999999,35.286999999999999,40.503
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,83,-0.43049999999999999,22.687200000000001,0.13722000000000001,13.558,15.531000000000001,17.503,19.855,22.687000000000001,26.134,30.382000000000001,35.692,41.000999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,84,-0.44019999999999998,22.891500000000001,0.13758999999999999,13.677,15.666,17.655000000000001,20.029,22.891999999999999,26.382000000000001,30.695,36.1,41.506
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,85,-0.44990000000000002,23.096800000000002,0.13797000000000001,13.797000000000001,15.802,17.806999999999999,20.202999999999999,23.097000000000001,26.632000000000001,31.010999999999999,36.515000000000001,42.018999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,86,-0.45939999999999998,23.302900000000001,0.13838,13.914999999999999,15.936999999999999,17.957999999999998,20.376999999999999,23.303000000000001,26.885000000000002,31.33,36.936,42.542000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,87,-0.46879999999999999,23.510100000000001,0.13880000000000001,14.032999999999999,16.071999999999999,18.11,20.552,23.51,27.138000000000002,31.652999999999999,37.363,43.073
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,88,-0.47810000000000002,23.7182,0.13922999999999999,14.151,16.207000000000001,18.262,20.727,23.718,27.393999999999998,31.978999999999999,37.795000000000002,43.612000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,89,-0.48730000000000001,23.927199999999999,0.13969000000000001,14.268000000000001,16.341000000000001,18.414000000000001,20.902999999999999,23.927,27.652000000000001,32.308999999999997,38.235999999999997,44.162999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,90,-0.49640000000000001,24.1371,0.14016000000000001,14.385,16.475000000000001,18.565000000000001,21.077999999999999,24.137,27.911000000000001,32.642000000000003,38.682000000000002,44.722000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,91,-0.50529999999999997,24.347899999999999,0.14065,14.502000000000001,16.609000000000002,18.716999999999999,21.254999999999999,24.347999999999999,28.172000000000001,32.978999999999999,39.134999999999998,45.290999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,92,-0.51419999999999999,24.5595,0.14116999999999999,14.617000000000001,16.742000000000001,18.867999999999999,21.431000000000001,24.56,28.436,33.32,39.597000000000001,45.872999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,93,-0.52290000000000003,24.772200000000002,0.14169999999999999,14.731999999999999,16.875,19.018999999999998,21.606999999999999,24.771999999999998,28.701000000000001,33.664999999999999,40.064999999999998,46.463999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,94,-0.53149999999999997,24.985800000000001,0.14226,14.845000000000001,17.007999999999999,19.170000000000002,21.783999999999999,24.986000000000001,28.969000000000001,34.015000000000001,40.542000000000002,47.069000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,95,-0.53990000000000005,25.200500000000002,0.14283999999999999,14.958,17.14,19.321000000000002,21.960999999999999,25.2,29.239000000000001,34.368000000000002,41.027000000000001,47.686
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,96,-0.54820000000000002,25.4163,0.14344000000000001,15.071,17.271000000000001,19.472000000000001,22.138000000000002,25.416,29.512,34.726999999999997,41.521000000000001,48.314999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,97,-0.55640000000000001,25.633199999999999,0.14407,15.182,17.402000000000001,19.622,22.315999999999999,25.632999999999999,29.786999999999999,35.091000000000001,42.024999999999999,48.959000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,98,-0.56440000000000001,25.851299999999998,0.14471999999999999,15.292,17.532,19.771999999999998,22.494,25.850999999999999,30.064,35.459000000000003,42.537999999999997,49.616999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,99,-0.57220000000000004,26.070599999999999,0.14538999999999999,15.401999999999999,17.661999999999999,19.922000000000001,22.672000000000001,26.071000000000002,30.344000000000001,35.832000000000001,43.06,50.286999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,100,-0.57989999999999997,26.2911,0.14607999999999999,15.510999999999999,17.792000000000002,20.071999999999999,22.850999999999999,26.291,30.626999999999999,36.21,43.591000000000001,50.972000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,101,-0.58730000000000004,26.512799999999999,0.14679,15.62,17.920999999999999,20.222000000000001,23.030999999999999,26.513000000000002,30.911999999999999,36.593000000000004,44.131,51.668999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,102,-0.59460000000000002,26.735800000000001,0.14752000000000001,15.727,18.05,20.372,23.21,26.736000000000001,31.199000000000002,36.981000000000002,44.682000000000002,52.381999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,103,-0.60170000000000001,26.9602,0.14828,15.834,18.178000000000001,20.521999999999998,23.39,26.96,31.49,37.375999999999998,45.244,53.113
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,104,-0.60850000000000004,27.1861,0.14904999999999999,15.94,18.306000000000001,20.672000000000001,23.571000000000002,27.186,31.783999999999999,37.774000000000001,45.814999999999998,53.854999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,105,-0.61519999999999997,27.413699999999999,0.14984,16.045000000000002,18.433,20.821999999999999,23.753,27.414000000000001,32.08,38.179000000000002,46.396999999999998,54.615000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,106,-0.62160000000000004,27.6432,0.15065999999999999,16.149999999999999,18.561,20.972000000000001,23.936,27.643000000000001,32.381,38.591000000000001,46.991999999999997,55.393999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,107,-0.62780000000000002,27.875,0.15149000000000001,16.254000000000001,18.689,21.123000000000001,24.119,27.875,32.685000000000002,39.009,47.597999999999999,56.188000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,108,-0.63370000000000004,28.109200000000001,0.15232999999999999,16.359000000000002,18.817,21.274999999999999,24.305,28.109000000000002,32.993000000000002,39.433,48.213999999999999,56.996000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,109,-0.63929999999999998,28.3459,0.15318999999999999,16.463000000000001,18.945,21.428000000000001,24.492000000000001,28.346,33.305,39.863999999999997,48.843000000000004,57.822000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,110,-0.64459999999999995,28.5854,0.15406,16.568000000000001,19.074999999999999,21.582000000000001,24.681000000000001,28.585000000000001,33.621000000000002,40.301000000000002,49.482999999999997,58.664000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,111,-0.64959999999999996,28.8277,0.15493000000000001,16.672999999999998,19.204999999999998,21.736999999999998,24.870999999999999,28.827999999999999,33.941000000000003,40.744,50.131999999999998,59.518999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,112,-0.65429999999999999,29.0731,0.15581,16.777999999999999,19.335999999999999,21.893999999999998,25.064,29.073,34.265999999999998,41.195,50.792000000000002,60.389000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,113,-0.65849999999999997,29.3217,0.15670000000000001,16.884,19.468,22.052,25.259,29.321999999999999,34.594999999999999,41.652000000000001,51.463000000000001,61.274000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,114,-0.66239999999999999,29.573599999999999,0.15759999999999999,16.989999999999998,19.600999999999999,22.212,25.457000000000001,29.574000000000002,34.929000000000002,42.116,52.146000000000001,62.174999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,115,-0.66590000000000005,29.828900000000001,0.1585,17.096,19.734999999999999,22.373000000000001,25.655999999999999,29.829000000000001,35.268000000000001,42.587000000000003,52.838000000000001,63.088999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,116,-0.66890000000000005,30.087700000000002,0.15939999999999999,17.202999999999999,19.87,22.536999999999999,25.859000000000002,30.088000000000001,35.612000000000002,43.063000000000002,53.537999999999997,64.012
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,117,-0.6714,30.350100000000001,0.16031000000000001,17.309999999999999,20.006,22.701000000000001,26.064,30.35,35.96,43.546999999999997,54.247999999999998,64.948999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,118,-0.67349999999999999,30.616,0.16122,17.417999999999999,20.143000000000001,22.867999999999999,26.271000000000001,30.616,36.313000000000002,44.037999999999997,54.968000000000004,65.897999999999996
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,119,-0.67520000000000002,30.885400000000001,0.16213,17.526,20.280999999999999,23.036000000000001,26.481000000000002,30.885000000000002,36.670999999999999,44.533999999999999,55.695,66.856999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,120,-0.6764,31.1586,0.16305,17.634,20.420000000000002,23.206,26.693999999999999,31.158999999999999,37.034999999999997,45.037999999999997,56.433999999999997,67.828999999999994
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,61,-0.2026,18.505700000000001,0.12988,12.718,14.367000000000001,16.279,18.506,21.109000000000002,24.164999999999999,27.77
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,62,-0.21299999999999999,18.680199999999999,0.13028000000000001,12.833,14.496,16.428000000000001,18.68,21.318999999999999,24.422999999999998,28.093
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,63,-0.22339999999999999,18.856300000000001,0.13067000000000001,12.95,14.627000000000001,16.577999999999999,18.856000000000002,21.53,24.683,28.42
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,64,-0.23380000000000001,19.033999999999999,0.13105,13.067,14.759,16.728999999999999,19.033999999999999,21.744,24.946000000000002,28.75
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,65,-0.24429999999999999,19.213200000000001,0.13142000000000001,13.186,14.891999999999999,16.882000000000001,19.213000000000001,21.959,25.21,29.082999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,66,-0.25480000000000003,19.393999999999998,0.13178000000000001,13.307,15.026999999999999,17.036000000000001,19.393999999999998,22.175999999999998,25.477,29.42
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,67,-0.26529999999999998,19.576499999999999,0.13213,13.429,15.164,17.192,19.576000000000001,22.395,25.747,29.76
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,68,-0.27579999999999999,19.7607,0.13245999999999999,13.553000000000001,15.302,17.350000000000001,19.760999999999999,22.614999999999998,26.018000000000001,30.102
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,69,-0.28639999999999999,19.9468,0.13278999999999999,13.679,15.442,17.509,19.946999999999999,22.838999999999999,26.292999999999999,30.449000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,70,-0.2969,20.134399999999999,0.13311000000000001,13.805,15.583,17.670000000000002,20.134,23.062999999999999,26.568999999999999,30.798999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,71,-0.3075,20.323499999999999,0.13342000000000001,13.933999999999999,15.726000000000001,17.832000000000001,20.324000000000002,23.29,26.847999999999999,31.152999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,72,-0.318,20.5137,0.13372000000000001,14.063000000000001,15.87,17.995999999999999,20.513999999999999,23.516999999999999,27.129000000000001,31.507999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,73,-0.32850000000000001,20.705200000000001,0.13402,14.193,16.015000000000001,18.16,20.704999999999998,23.747,27.411999999999999,31.867999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,74,-0.33900000000000002,20.8979,0.13431999999999999,14.324,16.16,18.326000000000001,20.898,23.978000000000002,27.696999999999999,32.231000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,75,-0.34939999999999999,21.091799999999999,0.13461999999999999,14.456,16.306999999999999,18.492000000000001,21.091999999999999,24.21,27.984000000000002,32.597999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,76,-0.35980000000000001,21.286999999999999,0.13492999999999999,14.587999999999999,16.454000000000001,18.658999999999999,21.286999999999999,24.445,28.274999999999999,32.969000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,77,-0.37009999999999998,21.4833,0.13522999999999999,14.721,16.602,18.827999999999999,21.483000000000001,24.68,28.567,33.343000000000004
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,78,-0.38040000000000002,21.681000000000001,0.13553999999999999,14.855,16.751000000000001,18.997,21.681000000000001,24.917999999999999,28.861999999999998,33.722999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,79,-0.3906,21.879899999999999,0.13586000000000001,14.99,16.899999999999999,19.167000000000002,21.88,25.158000000000001,29.161000000000001,34.106999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,80,-0.4007,22.08,0.13618,15.125,17.05,19.338000000000001,22.08,25.399000000000001,29.460999999999999,34.494999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,81,-0.41070000000000001,22.281300000000002,0.13652,15.259,17.201000000000001,19.510000000000002,22.280999999999999,25.641999999999999,29.765000000000001,34.889000000000003
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,82,-0.42070000000000002,22.483699999999999,0.13686000000000001,15.395,17.352,19.681999999999999,22.484000000000002,25.887,30.071999999999999,35.286999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,83,-0.43049999999999999,22.687200000000001,0.13722000000000001,15.531000000000001,17.503,19.855,22.687000000000001,26.134,30.382000000000001,35.692
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,84,-0.44019999999999998,22.891500000000001,0.13758999999999999,15.666,17.655000000000001,20.029,22.891999999999999,26.382000000000001,30.695,36.1
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,85,-0.44990000000000002,23.096800000000002,0.13797000000000001,15.802,17.806999999999999,20.202999999999999,23.097000000000001,26.632000000000001,31.010999999999999,36.515000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,86,-0.45939999999999998,23.302900000000001,0.13838,15.936999999999999,17.957999999999998,20.376999999999999,23.303000000000001,26.885000000000002,31.33,36.936
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,87,-0.46879999999999999,23.510100000000001,0.13880000000000001,16.071999999999999,18.11,20.552,23.51,27.138000000000002,31.652999999999999,37.363
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,88,-0.47810000000000002,23.7182,0.13922999999999999,16.207000000000001,18.262,20.727,23.718,27.393999999999998,31.978999999999999,37.795000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,89,-0.48730000000000001,23.927199999999999,0.13969000000000001,16.341000000000001,18.414000000000001,20.902999999999999,23.927,27.652000000000001,32.308999999999997,38.235999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,90,-0.49640000000000001,24.1371,0.14016000000000001,16.475000000000001,18.565000000000001,21.077999999999999,24.137,27.911000000000001,32.642000000000003,38.682000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,91,-0.50529999999999997,24.347899999999999,0.14065,16.609000000000002,18.716999999999999,21.254999999999999,24.347999999999999,28.172000000000001,32.978999999999999,39.134999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,92,-0.51419999999999999,24.5595,0.14116999999999999,16.742000000000001,18.867999999999999,21.431000000000001,24.56,28.436,33.32,39.597000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,93,-0.52290000000000003,24.772200000000002,0.14169999999999999,16.875,19.018999999999998,21.606999999999999,24.771999999999998,28.701000000000001,33.664999999999999,40.064999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,94,-0.53149999999999997,24.985800000000001,0.14226,17.007999999999999,19.170000000000002,21.783999999999999,24.986000000000001,28.969000000000001,34.015000000000001,40.542000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,95,-0.53990000000000005,25.200500000000002,0.14283999999999999,17.14,19.321000000000002,21.960999999999999,25.2,29.239000000000001,34.368000000000002,41.027000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,96,-0.54820000000000002,25.4163,0.14344000000000001,17.271000000000001,19.472000000000001,22.138000000000002,25.416,29.512,34.726999999999997,41.521000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,97,-0.55640000000000001,25.633199999999999,0.14407,17.402000000000001,19.622,22.315999999999999,25.632999999999999,29.786999999999999,35.091000000000001,42.024999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,98,-0.56440000000000001,25.851299999999998,0.14471999999999999,17.532,19.771999999999998,22.494,25.850999999999999,30.064,35.459000000000003,42.537999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,99,-0.57220000000000004,26.070599999999999,0.14538999999999999,17.661999999999999,19.922000000000001,22.672000000000001,26.071000000000002,30.344000000000001,35.832000000000001,43.06
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,100,-0.57989999999999997,26.2911,0.14607999999999999,17.792000000000002,20.071999999999999,22.850999999999999,26.291,30.626999999999999,36.21,43.591000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,101,-0.58730000000000004,26.512799999999999,0.14679,17.920999999999999,20.222000000000001,23.030999999999999,26.513000000000002,30.911999999999999,36.593000000000004,44.131
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,102,-0.59460000000000002,26.735800000000001,0.14752000000000001,18.05,20.372,23.21,26.736000000000001,31.199000000000002,36.981000000000002,44.682000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,103,-0.60170000000000001,26.9602,0.14828,18.178000000000001,20.521999999999998,23.39,26.96,31.49,37.375999999999998,45.244
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,104,-0.60850000000000004,27.1861,0.14904999999999999,18.306000000000001,20.672000000000001,23.571000000000002,27.186,31.783999999999999,37.774000000000001,45.814999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,105,-0.61519999999999997,27.413699999999999,0.14984,18.433,20.821999999999999,23.753,27.414000000000001,32.08,38.179000000000002,46.396999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,106,-0.62160000000000004,27.6432,0.15065999999999999,18.561,20.972000000000001,23.936,27.643000000000001,32.381,38.591000000000001,46.991999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,107,-0.62780000000000002,27.875,0.15149000000000001,18.689,21.123000000000001,24.119,27.875,32.685000000000002,39.009,47.597999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,108,-0.63370000000000004,28.109200000000001,0.15232999999999999,18.817,21.274999999999999,24.305,28.109000000000002,32.993000000000002,39.433,48.213999999999999
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,109,-0.63929999999999998,28.3459,0.15318999999999999,18.945,21.428000000000001,24.492000000000001,28.346,33.305,39.863999999999997,48.843000000000004
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,110,-0.64459999999999995,28.5854,0.15406,19.074999999999999,21.582000000000001,24.681000000000001,28.585000000000001,33.621000000000002,40.301000000000002,49.482999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,111,-0.64959999999999996,28.8277,0.15493000000000001,19.204999999999998,21.736999999999998,24.870999999999999,28.827999999999999,33.941000000000003,40.744,50.131999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,112,-0.65429999999999999,29.0731,0.15581,19.335999999999999,21.893999999999998,25.064,29.073,34.265999999999998,41.195,50.792000000000002
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,113,-0.65849999999999997,29.3217,0.15670000000000001,19.468,22.052,25.259,29.321999999999999,34.594999999999999,41.652000000000001,51.463000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,114,-0.66239999999999999,29.573599999999999,0.15759999999999999,19.600999999999999,22.212,25.457000000000001,29.574000000000002,34.929000000000002,42.116,52.146000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,115,-0.66590000000000005,29.828900000000001,0.1585,19.734999999999999,22.373000000000001,25.655999999999999,29.829000000000001,35.268000000000001,42.587000000000003,52.838000000000001
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,116,-0.66890000000000005,30.087700000000002,0.15939999999999999,19.87,22.536999999999999,25.859000000000002,30.088000000000001,35.612000000000002,43.063000000000002,53.537999999999997
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,117,-0.6714,30.350100000000001,0.16031000000000001,20.006,22.701000000000001,26.064,30.35,35.96,43.546999999999997,54.247999999999998
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,118,-0.67349999999999999,30.616,0.16122,20.143000000000001,22.867999999999999,26.271000000000001,30.616,36.313000000000002,44.037999999999997,54.968000000000004
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,119,-0.67520000000000002,30.885400000000001,0.16213,20.280999999999999,23.036000000000001,26.481000000000002,30.885000000000002,36.670999999999999,44.533999999999999,55.695
https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/weight-for-age-(5-10-years)/hfa-boys-z-who-2007-exp_0ff9c43c-8cc0-4c23-9fc6-81290675e08b.xlsx,male,month,120,-0.6764,31.1586,0.16305,20.420000000000002,23.206,26.693999999999999,31.158999999999999,37.034999999999997,45.037999999999997,56.433999999999997

Can't render this file because it has a wrong number of fields in line 78.

View File

@ -130,7 +130,6 @@ https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standard
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,109,-0.38329999999999997,17.9526,0.093630000000000005,13.7,15,16.399999999999999,18,19.7,21.8,24.2
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,109.5,-0.38329999999999997,18.141200000000001,0.093820000000000001,13.9,15.1,16.5,18.100000000000001,20,22,24.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx,female,length,110,-0.38329999999999997,18.3324,0.094009999999999996,14,15.3,16.7,18.3,20.2,22.3,24.7
source,gender,age_unit,age,l,m,s,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,65,-0.38329999999999997,7.2401999999999997,0.091130000000000003,5.6,6.1,6.6,7.2,7.9,8.6999999999999993,9.6999999999999993
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,65.5,-0.38329999999999997,7.3522999999999996,0.091090000000000004,5.7,6.2,6.7,7.4,8.1,8.9,9.8000000000000007
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,66,-0.38329999999999997,7.4630000000000001,0.091039999999999996,5.8,6.3,6.8,7.5,8.1999999999999993,9,10
@ -242,7 +241,6 @@ https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standard
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,119,-0.38329999999999997,22.385100000000001,0.097879999999999995,16.899999999999999,18.5,20.3,22.4,24.7,27.4,30.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,119.5,-0.38329999999999997,22.601199999999999,0.098080000000000001,17.100000000000001,18.7,20.5,22.6,25,27.7,30.9
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx,female,height,120,-0.38329999999999997,22.817299999999999,0.098280000000000006,17.3,18.899999999999999,20.7,22.8,25.2,28,31.2
source,gender,age_unit,age,l,m,s,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,45,-0.35210000000000002,2.4409999999999998,0.091819999999999999,1.9,2,2.2000000000000002,2.4,2.7,3,3.3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,45.5,-0.35210000000000002,2.5244,0.09153,1.9,2.1,2.2999999999999998,2.5,2.8,3.1,3.4
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,46,-0.35210000000000002,2.6076999999999999,0.091240000000000002,2,2.2000000000000002,2.4,2.6,2.9,3.1,3.5
@ -374,7 +372,6 @@ https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standard
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,109,-0.35210000000000002,17.924199999999999,0.086910000000000001,14,15.1,16.5,17.899999999999999,19.600000000000001,21.4,23.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,109.5,-0.35210000000000002,18.095400000000001,0.087230000000000002,14.1,15.3,16.600000000000001,18.100000000000001,19.8,21.7,23.8
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx,male,length,110,-0.35210000000000002,18.268899999999999,0.087550000000000003,14.2,15.4,16.8,18.3,20,21.9,24.1
source,gender,age_unit,age,l,m,s,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,65,-0.35210000000000002,7.4326999999999996,0.082170000000000007,5.9,6.3,6.9,7.4,8.1,8.8000000000000007,9.6
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,65.5,-0.35210000000000002,7.5503999999999998,0.082140000000000005,6,6.4,7,7.6,8.1999999999999993,8.9,9.8000000000000007
https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx,male,height,66,-0.35210000000000002,7.6673,0.082119999999999999,6.1,6.5,7.1,7.7,8.3000000000000007,9.1,9.9

1 source gender age_unit age l m s sd3neg sd2neg sd1neg sd0 sd1 sd2 sd3
130 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 109 -0.38329999999999997 17.9526 0.093630000000000005 13.7 15 16.399999999999999 18 19.7 21.8 24.2
131 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 109.5 -0.38329999999999997 18.141200000000001 0.093820000000000001 13.9 15.1 16.5 18.100000000000001 20 22 24.4
132 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_girls_0-to-2-years_zscores.xlsx female length 110 -0.38329999999999997 18.3324 0.094009999999999996 14 15.3 16.7 18.3 20.2 22.3 24.7
source gender age_unit age l m s sd3neg sd2neg sd1neg sd0 sd1 sd2 sd3
133 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 65 -0.38329999999999997 7.2401999999999997 0.091130000000000003 5.6 6.1 6.6 7.2 7.9 8.6999999999999993 9.6999999999999993
134 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 65.5 -0.38329999999999997 7.3522999999999996 0.091090000000000004 5.7 6.2 6.7 7.4 8.1 8.9 9.8000000000000007
135 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 66 -0.38329999999999997 7.4630000000000001 0.091039999999999996 5.8 6.3 6.8 7.5 8.1999999999999993 9 10
241 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 119 -0.38329999999999997 22.385100000000001 0.097879999999999995 16.899999999999999 18.5 20.3 22.4 24.7 27.4 30.6
242 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 119.5 -0.38329999999999997 22.601199999999999 0.098080000000000001 17.100000000000001 18.7 20.5 22.6 25 27.7 30.9
243 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_girls_2-to-5-years_zscores.xlsx female height 120 -0.38329999999999997 22.817299999999999 0.098280000000000006 17.3 18.899999999999999 20.7 22.8 25.2 28 31.2
source gender age_unit age l m s sd3neg sd2neg sd1neg sd0 sd1 sd2 sd3
244 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 45 -0.35210000000000002 2.4409999999999998 0.091819999999999999 1.9 2 2.2000000000000002 2.4 2.7 3 3.3
245 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 45.5 -0.35210000000000002 2.5244 0.09153 1.9 2.1 2.2999999999999998 2.5 2.8 3.1 3.4
246 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 46 -0.35210000000000002 2.6076999999999999 0.091240000000000002 2 2.2000000000000002 2.4 2.6 2.9 3.1 3.5
372 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 109 -0.35210000000000002 17.924199999999999 0.086910000000000001 14 15.1 16.5 17.899999999999999 19.600000000000001 21.4 23.6
373 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 109.5 -0.35210000000000002 18.095400000000001 0.087230000000000002 14.1 15.3 16.600000000000001 18.100000000000001 19.8 21.7 23.8
374 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfl_boys_0-to-2-years_zscores.xlsx male length 110 -0.35210000000000002 18.268899999999999 0.087550000000000003 14.2 15.4 16.8 18.3 20 21.9 24.1
source gender age_unit age l m s sd3neg sd2neg sd1neg sd0 sd1 sd2 sd3
375 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 65 -0.35210000000000002 7.4326999999999996 0.082170000000000007 5.9 6.3 6.9 7.4 8.1 8.8000000000000007 9.6
376 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 65.5 -0.35210000000000002 7.5503999999999998 0.082140000000000005 6 6.4 7 7.6 8.1999999999999993 8.9 9.8000000000000007
377 https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/wfh_boys_2-to-5-years_zscores.xlsx male height 66 -0.35210000000000002 7.6673 0.082119999999999999 6.1 6.5 7.1 7.7 8.3000000000000007 9.1 9.9